body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.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: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 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: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !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: #6592e6 !important;
  border-color: #6592e6 !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !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: #40b0bf !important;
  border-color: #40b0bf !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: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !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: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !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: #6592e6 !important;
  border-color: #6592e6 !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: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !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: #40b0bf !important;
  border-color: #40b0bf !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: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !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: #205ac5 !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: #266a73 !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: #6592e6;
}
.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: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.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: #a0d8df;
}
.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: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !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='%236592e6' %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-tF6Av7BzYI {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tF6Av7BzYI .mbr-text {
  text-align: center;
  color: #fafafa;
}
.cid-tF6xpdj4Is {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tF6xpdj4Is .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF6xpdj4Is .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF6xpdj4Is .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tF6xpdj4Is .image-wrap img {
    display: block;
    margin: auto;
    width: 20%;
  }
}
.cid-tF6xpdj4Is .mbr-section-title {
  color: #fafafa;
}
.cid-tF6xpdj4Is .mbr-text,
.cid-tF6xpdj4Is .mbr-section-btn {
  color: #bbbbbb;
}
.cid-tF7zOhjPMV {
  padding-top: 0px;
  padding-bottom: 120px;
  background-color: #000000;
}
.cid-tF7zOhjPMV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF7zOhjPMV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF7zOhjPMV .media-container-row {
  justify-content: space-between;
}
.cid-tF7zOhjPMV .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tF7zOhjPMV .text-content {
    max-width: none;
  }
}
.cid-tF7zOhjPMV .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #6592e6;
  border: 2px solid #6592e6;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tF7zOhjPMV .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tF7zOhjPMV .mbr-iconfont-social:hover {
  background-color: #6592e6;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-tF7zOhjPMV .icons {
    justify-content: center !important;
  }
  .cid-tF7zOhjPMV .text-content * {
    text-align: center;
  }
}
.cid-tF7zOhjPMV P {
  color: #fafafa;
  text-align: left;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX4m7fCJVp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX4m7fCJVp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX4m7fCJVp .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX4m7fCJVp .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX4m7fCJVp .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX4m7fCJVp .mbr-section-title {
  color: #22a5e5;
}
.cid-uX4m7fCJVp .mbr-text,
.cid-uX4m7fCJVp .mbr-section-btn,
.cid-uX4m7fCJVp .social-row {
  color: #232323;
}
.cid-uX4m7fCJVp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3Ai9IBC4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3Ai9IBC4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3Ai9IBC4 .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-uX3Ai9IBC4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3Ai9IBC4 .row {
  flex-direction: row-reverse;
}
.cid-uX3Ai9IBC4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3Ai9IBC4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3Ai9IBC4 .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3Ai9IBC4 .mbr-section-title {
  color: #fafafa;
}
.cid-tF7BI7AuPi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tF7BI7AuPi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF7BI7AuPi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF7BI7AuPi .item {
  padding-bottom: 2rem;
}
.cid-tF7BI7AuPi .item-wrapper {
  position: relative;
}
.cid-tF7BI7AuPi .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tF7BI7AuPi .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tF7BI7AuPi .carousel-control,
.cid-tF7BI7AuPi .close {
  background: #1b1b1b;
}
.cid-tF7BI7AuPi .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tF7BI7AuPi .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tF7BI7AuPi .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tF7BI7AuPi .carousel-control-next span {
  margin-left: 5px;
}
.cid-tF7BI7AuPi .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tF7BI7AuPi .close::before {
  content: '\e91a';
}
.cid-tF7BI7AuPi .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tF7BI7AuPi .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tF7BI7AuPi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tF7BI7AuPi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tF7BI7AuPi .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tF7BI7AuPi .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tF7BI7AuPi .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tF7BI7AuPi .carousel-indicators li.active,
.cid-tF7BI7AuPi .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tF7BI7AuPi .carousel-indicators li::after,
.cid-tF7BI7AuPi .carousel-indicators li::before {
  content: none;
}
.cid-tF7BI7AuPi .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tF7BI7AuPi .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tF7BI7AuPi .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tF7BI7AuPi .carousel-indicators {
    display: none;
  }
}
.cid-tF7BI7AuPi .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tF7BI7AuPi .carousel-inner > .active {
  display: block;
}
.cid-tF7BI7AuPi .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tF7BI7AuPi .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tF7BI7AuPi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tF7BI7AuPi .carousel-control,
  .cid-tF7BI7AuPi .carousel-indicators,
  .cid-tF7BI7AuPi .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tF7BI7AuPi .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tF7BI7AuPi .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tF7BI7AuPi .carousel-indicators .active,
.cid-tF7BI7AuPi .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tF7BI7AuPi .carousel-indicators .active {
  background: #fff;
}
.cid-tF7BI7AuPi .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tF7BI7AuPi .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tF7BI7AuPi .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tF7BI7AuPi .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tF7BI7AuPi .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tF7BI7AuPi .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tF7BI7AuPi .carousel {
  width: 100%;
}
.cid-tF7BI7AuPi .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tF7BI7AuPi .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tF7BI7AuPi .modal.fade .modal-dialog,
.cid-tF7BI7AuPi .modal.in .modal-dialog {
  transform: none;
}
.cid-tF7BI7AuPi .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tF7BI7AuPi H6 {
  text-align: center;
}
.cid-tF7BI7AuPi H4 {
  color: #ffffff;
}
.cid-tF7uwBtkPr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tF7uwBtkPr .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tF7uwBtkPr .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tF7uwBtkPr .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tF7uwBtkPr .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tF7uwBtkPr .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tF7uwBtkPr .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tF7uwBtkPr .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-tF7uwBtkPr .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tF7uwBtkPr .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tF7uwBtkPr .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tF7uwBtkPr .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tF7uwBtkPr .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tF7uwBtkPr .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tF7uwBtkPr .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tF7uwBtkPr .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVdRd6nX3t {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uVdRd6nX3t .carousel {
  height: 800px;
}
.cid-uVdRd6nX3t .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uVdRd6nX3t .carousel-item,
.cid-uVdRd6nX3t .carousel-inner {
  height: 100%;
}
.cid-uVdRd6nX3t .carousel-caption {
  bottom: 40px;
  z-index: 1;
}
.cid-uVdRd6nX3t .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uVdRd6nX3t .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uVdRd6nX3t .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uVdRd6nX3t .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uVdRd6nX3t .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uVdRd6nX3t .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uVdRd6nX3t .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uVdRd6nX3t .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uVdRd6nX3t .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uVdRd6nX3t .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uVdRd6nX3t .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uVdRd6nX3t .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uVdRd6nX3t .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uVdRd6nX3t .carousel-indicators li.active,
.cid-uVdRd6nX3t .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uVdRd6nX3t .carousel-indicators li::after,
.cid-uVdRd6nX3t .carousel-indicators li::before {
  content: none;
}
.cid-uVdRd6nX3t .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uVdRd6nX3t .carousel-indicators {
    display: none !important;
  }
}
.cid-uX3BuVhnn9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3BuVhnn9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3BuVhnn9 .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-uX3BuVhnn9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3BuVhnn9 .row {
  flex-direction: row-reverse;
}
.cid-uX3BuVhnn9 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3BuVhnn9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3BuVhnn9 .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3BuVhnn9 .mbr-section-title {
  color: #fafafa;
}
.cid-tFA7pseVLr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA7pseVLr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7pseVLr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7pseVLr .item {
  padding-bottom: 2rem;
}
.cid-tFA7pseVLr .item-wrapper {
  position: relative;
}
.cid-tFA7pseVLr .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA7pseVLr .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA7pseVLr .carousel-control,
.cid-tFA7pseVLr .close {
  background: #1b1b1b;
}
.cid-tFA7pseVLr .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA7pseVLr .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA7pseVLr .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA7pseVLr .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA7pseVLr .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA7pseVLr .close::before {
  content: '\e91a';
}
.cid-tFA7pseVLr .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA7pseVLr .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA7pseVLr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7pseVLr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA7pseVLr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA7pseVLr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA7pseVLr .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA7pseVLr .carousel-indicators li.active,
.cid-tFA7pseVLr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA7pseVLr .carousel-indicators li::after,
.cid-tFA7pseVLr .carousel-indicators li::before {
  content: none;
}
.cid-tFA7pseVLr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA7pseVLr .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA7pseVLr .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA7pseVLr .carousel-indicators {
    display: none;
  }
}
.cid-tFA7pseVLr .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA7pseVLr .carousel-inner > .active {
  display: block;
}
.cid-tFA7pseVLr .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7pseVLr .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA7pseVLr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA7pseVLr .carousel-control,
  .cid-tFA7pseVLr .carousel-indicators,
  .cid-tFA7pseVLr .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA7pseVLr .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA7pseVLr .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA7pseVLr .carousel-indicators .active,
.cid-tFA7pseVLr .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA7pseVLr .carousel-indicators .active {
  background: #fff;
}
.cid-tFA7pseVLr .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA7pseVLr .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA7pseVLr .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA7pseVLr .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA7pseVLr .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA7pseVLr .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA7pseVLr .carousel {
  width: 100%;
}
.cid-tFA7pseVLr .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA7pseVLr .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA7pseVLr .modal.fade .modal-dialog,
.cid-tFA7pseVLr .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA7pseVLr .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA7pseVLr H6 {
  text-align: center;
}
.cid-tFA7ptqlnI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA7ptqlnI .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA7ptqlnI .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA7ptqlnI .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA7ptqlnI .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA7ptqlnI .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA7ptqlnI .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA7ptqlnI .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-tFA7ptqlnI .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA7ptqlnI .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA7ptqlnI .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA7ptqlnI .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA7ptqlnI .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA7ptqlnI .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA7ptqlnI .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA7ptqlnI .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVdTVXiKZF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uVdTVXiKZF .carousel {
  height: 800px;
}
.cid-uVdTVXiKZF .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uVdTVXiKZF .carousel-item,
.cid-uVdTVXiKZF .carousel-inner {
  height: 100%;
}
.cid-uVdTVXiKZF .carousel-caption {
  bottom: 40px;
  z-index: 1;
}
.cid-uVdTVXiKZF .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uVdTVXiKZF .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uVdTVXiKZF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uVdTVXiKZF .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uVdTVXiKZF .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uVdTVXiKZF .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uVdTVXiKZF .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uVdTVXiKZF .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uVdTVXiKZF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uVdTVXiKZF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uVdTVXiKZF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uVdTVXiKZF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uVdTVXiKZF .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uVdTVXiKZF .carousel-indicators li.active,
.cid-uVdTVXiKZF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uVdTVXiKZF .carousel-indicators li::after,
.cid-uVdTVXiKZF .carousel-indicators li::before {
  content: none;
}
.cid-uVdTVXiKZF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uVdTVXiKZF .carousel-indicators {
    display: none !important;
  }
}
.cid-uX3CkH7LUv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3CkH7LUv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3CkH7LUv .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-uX3CkH7LUv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3CkH7LUv .row {
  flex-direction: row-reverse;
}
.cid-uX3CkH7LUv img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3CkH7LUv .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3CkH7LUv .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3CkH7LUv .mbr-section-title {
  color: #fafafa;
}
.cid-tFA7rpOuw8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA7rpOuw8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7rpOuw8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7rpOuw8 .item {
  padding-bottom: 2rem;
}
.cid-tFA7rpOuw8 .item-wrapper {
  position: relative;
}
.cid-tFA7rpOuw8 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA7rpOuw8 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA7rpOuw8 .carousel-control,
.cid-tFA7rpOuw8 .close {
  background: #1b1b1b;
}
.cid-tFA7rpOuw8 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA7rpOuw8 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA7rpOuw8 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA7rpOuw8 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA7rpOuw8 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA7rpOuw8 .close::before {
  content: '\e91a';
}
.cid-tFA7rpOuw8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA7rpOuw8 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA7rpOuw8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7rpOuw8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA7rpOuw8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA7rpOuw8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA7rpOuw8 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA7rpOuw8 .carousel-indicators li.active,
.cid-tFA7rpOuw8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA7rpOuw8 .carousel-indicators li::after,
.cid-tFA7rpOuw8 .carousel-indicators li::before {
  content: none;
}
.cid-tFA7rpOuw8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA7rpOuw8 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA7rpOuw8 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA7rpOuw8 .carousel-indicators {
    display: none;
  }
}
.cid-tFA7rpOuw8 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA7rpOuw8 .carousel-inner > .active {
  display: block;
}
.cid-tFA7rpOuw8 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7rpOuw8 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA7rpOuw8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA7rpOuw8 .carousel-control,
  .cid-tFA7rpOuw8 .carousel-indicators,
  .cid-tFA7rpOuw8 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA7rpOuw8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA7rpOuw8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA7rpOuw8 .carousel-indicators .active,
.cid-tFA7rpOuw8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA7rpOuw8 .carousel-indicators .active {
  background: #fff;
}
.cid-tFA7rpOuw8 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA7rpOuw8 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA7rpOuw8 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA7rpOuw8 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA7rpOuw8 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA7rpOuw8 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA7rpOuw8 .carousel {
  width: 100%;
}
.cid-tFA7rpOuw8 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA7rpOuw8 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA7rpOuw8 .modal.fade .modal-dialog,
.cid-tFA7rpOuw8 .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA7rpOuw8 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA7rpOuw8 H6 {
  text-align: center;
}
.cid-tFA7rqVt3w {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA7rqVt3w .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA7rqVt3w .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA7rqVt3w .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA7rqVt3w .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA7rqVt3w .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA7rqVt3w .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA7rqVt3w .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-tFA7rqVt3w .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA7rqVt3w .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA7rqVt3w .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA7rqVt3w .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA7rqVt3w .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA7rqVt3w .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA7rqVt3w .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA7rqVt3w .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA7t1gOtG {
  background-image: url("../../../assets/images/80-rheem-ii-screenshots-5399.jpeg");
}
.cid-tFA7t1gOtG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7t1gOtG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7t1gOtG .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA7t1gOtG .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA7t1gOtG .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA7t1gOtG .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA7t1gOtG .mbr-text,
.cid-tFA7t1gOtG .mbr-section-btn,
.cid-tFA7t1gOtG .social-row {
  color: #232323;
}
.cid-tFA7t1gOtG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3FV3a1cj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3FV3a1cj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3FV3a1cj .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-uX3FV3a1cj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3FV3a1cj .row {
  flex-direction: row-reverse;
}
.cid-uX3FV3a1cj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3FV3a1cj .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3FV3a1cj .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3FV3a1cj .mbr-section-title {
  color: #fafafa;
}
.cid-tFA7t1CBpj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA7t1CBpj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7t1CBpj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7t1CBpj .item {
  padding-bottom: 2rem;
}
.cid-tFA7t1CBpj .item-wrapper {
  position: relative;
}
.cid-tFA7t1CBpj .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA7t1CBpj .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA7t1CBpj .carousel-control,
.cid-tFA7t1CBpj .close {
  background: #1b1b1b;
}
.cid-tFA7t1CBpj .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA7t1CBpj .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA7t1CBpj .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA7t1CBpj .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA7t1CBpj .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA7t1CBpj .close::before {
  content: '\e91a';
}
.cid-tFA7t1CBpj .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA7t1CBpj .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA7t1CBpj .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7t1CBpj .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA7t1CBpj .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA7t1CBpj .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA7t1CBpj .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA7t1CBpj .carousel-indicators li.active,
.cid-tFA7t1CBpj .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA7t1CBpj .carousel-indicators li::after,
.cid-tFA7t1CBpj .carousel-indicators li::before {
  content: none;
}
.cid-tFA7t1CBpj .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA7t1CBpj .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA7t1CBpj .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA7t1CBpj .carousel-indicators {
    display: none;
  }
}
.cid-tFA7t1CBpj .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA7t1CBpj .carousel-inner > .active {
  display: block;
}
.cid-tFA7t1CBpj .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7t1CBpj .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA7t1CBpj .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA7t1CBpj .carousel-control,
  .cid-tFA7t1CBpj .carousel-indicators,
  .cid-tFA7t1CBpj .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA7t1CBpj .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA7t1CBpj .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA7t1CBpj .carousel-indicators .active,
.cid-tFA7t1CBpj .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA7t1CBpj .carousel-indicators .active {
  background: #fff;
}
.cid-tFA7t1CBpj .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA7t1CBpj .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA7t1CBpj .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA7t1CBpj .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA7t1CBpj .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA7t1CBpj .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA7t1CBpj .carousel {
  width: 100%;
}
.cid-tFA7t1CBpj .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA7t1CBpj .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA7t1CBpj .modal.fade .modal-dialog,
.cid-tFA7t1CBpj .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA7t1CBpj .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA7t1CBpj H6 {
  text-align: center;
}
.cid-tFA7t1CBpj H3 {
  color: #fafafa;
}
.cid-tFA7t2HYyr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA7t2HYyr .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA7t2HYyr .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA7t2HYyr .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA7t2HYyr .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA7t2HYyr .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA7t2HYyr .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA7t2HYyr .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-tFA7t2HYyr .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA7t2HYyr .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA7t2HYyr .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA7t2HYyr .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA7t2HYyr .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA7t2HYyr .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA7t2HYyr .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA7t2HYyr .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWJ5co0HMR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uWJ5co0HMR .carousel {
  height: 800px;
}
.cid-uWJ5co0HMR .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uWJ5co0HMR .carousel-item,
.cid-uWJ5co0HMR .carousel-inner {
  height: 100%;
}
.cid-uWJ5co0HMR .carousel-caption {
  bottom: 40px;
  z-index: 1;
}
.cid-uWJ5co0HMR .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uWJ5co0HMR .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uWJ5co0HMR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uWJ5co0HMR .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uWJ5co0HMR .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uWJ5co0HMR .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uWJ5co0HMR .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uWJ5co0HMR .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWJ5co0HMR .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWJ5co0HMR .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWJ5co0HMR .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWJ5co0HMR .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uWJ5co0HMR .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWJ5co0HMR .carousel-indicators li.active,
.cid-uWJ5co0HMR .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWJ5co0HMR .carousel-indicators li::after,
.cid-uWJ5co0HMR .carousel-indicators li::before {
  content: none;
}
.cid-uWJ5co0HMR .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWJ5co0HMR .carousel-indicators {
    display: none !important;
  }
}
.cid-uWJ5co0HMR H5 {
  color: #fafafa;
}
.cid-uX3IIxyK5C {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3IIxyK5C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3IIxyK5C .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-uX3IIxyK5C .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3IIxyK5C .row {
  flex-direction: row-reverse;
}
.cid-uX3IIxyK5C img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3IIxyK5C .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3IIxyK5C .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3IIxyK5C .mbr-section-title {
  color: #fafafa;
}
.cid-tFA7uEPMez {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA7uEPMez .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7uEPMez .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7uEPMez .item {
  padding-bottom: 2rem;
}
.cid-tFA7uEPMez .item-wrapper {
  position: relative;
}
.cid-tFA7uEPMez .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA7uEPMez .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA7uEPMez .carousel-control,
.cid-tFA7uEPMez .close {
  background: #1b1b1b;
}
.cid-tFA7uEPMez .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA7uEPMez .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA7uEPMez .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA7uEPMez .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA7uEPMez .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA7uEPMez .close::before {
  content: '\e91a';
}
.cid-tFA7uEPMez .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA7uEPMez .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA7uEPMez .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7uEPMez .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA7uEPMez .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA7uEPMez .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA7uEPMez .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA7uEPMez .carousel-indicators li.active,
.cid-tFA7uEPMez .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA7uEPMez .carousel-indicators li::after,
.cid-tFA7uEPMez .carousel-indicators li::before {
  content: none;
}
.cid-tFA7uEPMez .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA7uEPMez .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA7uEPMez .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA7uEPMez .carousel-indicators {
    display: none;
  }
}
.cid-tFA7uEPMez .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA7uEPMez .carousel-inner > .active {
  display: block;
}
.cid-tFA7uEPMez .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7uEPMez .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA7uEPMez .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA7uEPMez .carousel-control,
  .cid-tFA7uEPMez .carousel-indicators,
  .cid-tFA7uEPMez .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA7uEPMez .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA7uEPMez .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA7uEPMez .carousel-indicators .active,
.cid-tFA7uEPMez .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA7uEPMez .carousel-indicators .active {
  background: #fff;
}
.cid-tFA7uEPMez .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA7uEPMez .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA7uEPMez .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA7uEPMez .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA7uEPMez .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA7uEPMez .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA7uEPMez .carousel {
  width: 100%;
}
.cid-tFA7uEPMez .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA7uEPMez .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA7uEPMez .modal.fade .modal-dialog,
.cid-tFA7uEPMez .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA7uEPMez .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA7uEPMez H6 {
  text-align: center;
}
.cid-tFA7uEPMez H3 {
  color: #fafafa;
}
.cid-tFA7uGlMyp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA7uGlMyp .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA7uGlMyp .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA7uGlMyp .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA7uGlMyp .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA7uGlMyp .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA7uGlMyp .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA7uGlMyp .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-tFA7uGlMyp .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA7uGlMyp .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA7uGlMyp .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA7uGlMyp .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA7uGlMyp .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA7uGlMyp .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA7uGlMyp .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA7uGlMyp .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX3K6VsUYX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3K6VsUYX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX3K6VsUYX .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX3K6VsUYX .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX3K6VsUYX .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX3K6VsUYX .mbr-section-title {
  color: #22a5e5;
}
.cid-uX3K6VsUYX .mbr-text,
.cid-uX3K6VsUYX .mbr-section-btn,
.cid-uX3K6VsUYX .social-row {
  color: #232323;
}
.cid-uX3K6VsUYX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3K79sLMo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3K79sLMo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3K79sLMo .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-uX3K79sLMo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3K79sLMo .row {
  flex-direction: row-reverse;
}
.cid-uX3K79sLMo img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3K79sLMo .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3K79sLMo .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3K79sLMo .mbr-section-title {
  color: #fafafa;
}
.cid-tFA7zJcIU9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA7zJcIU9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7zJcIU9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7zJcIU9 .item {
  padding-bottom: 2rem;
}
.cid-tFA7zJcIU9 .item-wrapper {
  position: relative;
}
.cid-tFA7zJcIU9 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA7zJcIU9 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA7zJcIU9 .carousel-control,
.cid-tFA7zJcIU9 .close {
  background: #1b1b1b;
}
.cid-tFA7zJcIU9 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA7zJcIU9 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA7zJcIU9 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA7zJcIU9 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA7zJcIU9 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA7zJcIU9 .close::before {
  content: '\e91a';
}
.cid-tFA7zJcIU9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA7zJcIU9 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA7zJcIU9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7zJcIU9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA7zJcIU9 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA7zJcIU9 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA7zJcIU9 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA7zJcIU9 .carousel-indicators li.active,
.cid-tFA7zJcIU9 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA7zJcIU9 .carousel-indicators li::after,
.cid-tFA7zJcIU9 .carousel-indicators li::before {
  content: none;
}
.cid-tFA7zJcIU9 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA7zJcIU9 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA7zJcIU9 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA7zJcIU9 .carousel-indicators {
    display: none;
  }
}
.cid-tFA7zJcIU9 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA7zJcIU9 .carousel-inner > .active {
  display: block;
}
.cid-tFA7zJcIU9 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7zJcIU9 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA7zJcIU9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA7zJcIU9 .carousel-control,
  .cid-tFA7zJcIU9 .carousel-indicators,
  .cid-tFA7zJcIU9 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA7zJcIU9 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA7zJcIU9 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA7zJcIU9 .carousel-indicators .active,
.cid-tFA7zJcIU9 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA7zJcIU9 .carousel-indicators .active {
  background: #fff;
}
.cid-tFA7zJcIU9 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA7zJcIU9 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA7zJcIU9 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA7zJcIU9 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA7zJcIU9 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA7zJcIU9 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA7zJcIU9 .carousel {
  width: 100%;
}
.cid-tFA7zJcIU9 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA7zJcIU9 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA7zJcIU9 .modal.fade .modal-dialog,
.cid-tFA7zJcIU9 .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA7zJcIU9 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA7zJcIU9 H6 {
  text-align: center;
}
.cid-tFA7zJcIU9 H3 {
  color: #fafafa;
}
.cid-tFA7zKORX6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA7zKORX6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA7zKORX6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA7zKORX6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA7zKORX6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA7zKORX6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA7zKORX6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA7zKORX6 .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-tFA7zKORX6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA7zKORX6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA7zKORX6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA7zKORX6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA7zKORX6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA7zKORX6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA7zKORX6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA7zKORX6 .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWJ6JvWnnG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uWJ6JvWnnG .carousel {
  height: 800px;
}
.cid-uWJ6JvWnnG .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uWJ6JvWnnG .carousel-item,
.cid-uWJ6JvWnnG .carousel-inner {
  height: 100%;
}
.cid-uWJ6JvWnnG .carousel-caption {
  bottom: 40px;
  z-index: 1;
}
.cid-uWJ6JvWnnG .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uWJ6JvWnnG .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uWJ6JvWnnG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uWJ6JvWnnG .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uWJ6JvWnnG .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uWJ6JvWnnG .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uWJ6JvWnnG .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uWJ6JvWnnG .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWJ6JvWnnG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWJ6JvWnnG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWJ6JvWnnG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWJ6JvWnnG .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uWJ6JvWnnG .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWJ6JvWnnG .carousel-indicators li.active,
.cid-uWJ6JvWnnG .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWJ6JvWnnG .carousel-indicators li::after,
.cid-uWJ6JvWnnG .carousel-indicators li::before {
  content: none;
}
.cid-uWJ6JvWnnG .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWJ6JvWnnG .carousel-indicators {
    display: none !important;
  }
}
.cid-uWJ6JvWnnG H5 {
  color: #fafafa;
}
.cid-uX3LgsG1Oz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3LgsG1Oz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3LgsG1Oz .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-uX3LgsG1Oz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3LgsG1Oz .row {
  flex-direction: row-reverse;
}
.cid-uX3LgsG1Oz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3LgsG1Oz .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3LgsG1Oz .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3LgsG1Oz .mbr-section-title {
  color: #fafafa;
}
.cid-tFA7B5xgtL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA7B5xgtL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7B5xgtL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7B5xgtL .item {
  padding-bottom: 2rem;
}
.cid-tFA7B5xgtL .item-wrapper {
  position: relative;
}
.cid-tFA7B5xgtL .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA7B5xgtL .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA7B5xgtL .carousel-control,
.cid-tFA7B5xgtL .close {
  background: #1b1b1b;
}
.cid-tFA7B5xgtL .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA7B5xgtL .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA7B5xgtL .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA7B5xgtL .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA7B5xgtL .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA7B5xgtL .close::before {
  content: '\e91a';
}
.cid-tFA7B5xgtL .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA7B5xgtL .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA7B5xgtL .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7B5xgtL .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA7B5xgtL .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA7B5xgtL .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA7B5xgtL .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA7B5xgtL .carousel-indicators li.active,
.cid-tFA7B5xgtL .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA7B5xgtL .carousel-indicators li::after,
.cid-tFA7B5xgtL .carousel-indicators li::before {
  content: none;
}
.cid-tFA7B5xgtL .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA7B5xgtL .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA7B5xgtL .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA7B5xgtL .carousel-indicators {
    display: none;
  }
}
.cid-tFA7B5xgtL .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA7B5xgtL .carousel-inner > .active {
  display: block;
}
.cid-tFA7B5xgtL .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7B5xgtL .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA7B5xgtL .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA7B5xgtL .carousel-control,
  .cid-tFA7B5xgtL .carousel-indicators,
  .cid-tFA7B5xgtL .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA7B5xgtL .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA7B5xgtL .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA7B5xgtL .carousel-indicators .active,
.cid-tFA7B5xgtL .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA7B5xgtL .carousel-indicators .active {
  background: #fff;
}
.cid-tFA7B5xgtL .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA7B5xgtL .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA7B5xgtL .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA7B5xgtL .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA7B5xgtL .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA7B5xgtL .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA7B5xgtL .carousel {
  width: 100%;
}
.cid-tFA7B5xgtL .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA7B5xgtL .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA7B5xgtL .modal.fade .modal-dialog,
.cid-tFA7B5xgtL .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA7B5xgtL .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA7B5xgtL H6 {
  text-align: center;
}
.cid-tFA7B5xgtL H3 {
  color: #fafafa;
}
.cid-tFA7B6EOwp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA7B6EOwp .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA7B6EOwp .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA7B6EOwp .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA7B6EOwp .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA7B6EOwp .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA7B6EOwp .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA7B6EOwp .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-tFA7B6EOwp .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA7B6EOwp .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA7B6EOwp .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA7B6EOwp .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA7B6EOwp .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA7B6EOwp .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA7B6EOwp .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA7B6EOwp .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX3Luaa2hr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3Luaa2hr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX3Luaa2hr .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX3Luaa2hr .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX3Luaa2hr .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX3Luaa2hr .mbr-section-title {
  color: #22a5e5;
}
.cid-uX3Luaa2hr .mbr-text,
.cid-uX3Luaa2hr .mbr-section-btn,
.cid-uX3Luaa2hr .social-row {
  color: #232323;
}
.cid-uX3Luaa2hr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3Lu15l7i {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3Lu15l7i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3Lu15l7i .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-uX3Lu15l7i .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3Lu15l7i .row {
  flex-direction: row-reverse;
}
.cid-uX3Lu15l7i img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3Lu15l7i .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3Lu15l7i .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3Lu15l7i .mbr-section-title {
  color: #fafafa;
}
.cid-tFA7CBB70a {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #232323;
}
.cid-tFA7CBB70a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7CBB70a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7CBB70a .item {
  padding-bottom: 2rem;
}
.cid-tFA7CBB70a .item-wrapper {
  position: relative;
}
.cid-tFA7CBB70a .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA7CBB70a .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA7CBB70a .carousel-control,
.cid-tFA7CBB70a .close {
  background: #1b1b1b;
}
.cid-tFA7CBB70a .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA7CBB70a .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA7CBB70a .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA7CBB70a .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA7CBB70a .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA7CBB70a .close::before {
  content: '\e91a';
}
.cid-tFA7CBB70a .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA7CBB70a .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA7CBB70a .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7CBB70a .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA7CBB70a .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA7CBB70a .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA7CBB70a .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA7CBB70a .carousel-indicators li.active,
.cid-tFA7CBB70a .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA7CBB70a .carousel-indicators li::after,
.cid-tFA7CBB70a .carousel-indicators li::before {
  content: none;
}
.cid-tFA7CBB70a .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA7CBB70a .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA7CBB70a .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA7CBB70a .carousel-indicators {
    display: none;
  }
}
.cid-tFA7CBB70a .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA7CBB70a .carousel-inner > .active {
  display: block;
}
.cid-tFA7CBB70a .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7CBB70a .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA7CBB70a .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA7CBB70a .carousel-control,
  .cid-tFA7CBB70a .carousel-indicators,
  .cid-tFA7CBB70a .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA7CBB70a .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA7CBB70a .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA7CBB70a .carousel-indicators .active,
.cid-tFA7CBB70a .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA7CBB70a .carousel-indicators .active {
  background: #fff;
}
.cid-tFA7CBB70a .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA7CBB70a .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA7CBB70a .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA7CBB70a .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA7CBB70a .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA7CBB70a .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA7CBB70a .carousel {
  width: 100%;
}
.cid-tFA7CBB70a .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA7CBB70a .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA7CBB70a .modal.fade .modal-dialog,
.cid-tFA7CBB70a .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA7CBB70a .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA7CBB70a H6 {
  text-align: center;
}
.cid-tFA7CBB70a H3 {
  color: #fafafa;
}
.cid-tFA7CCFM4D {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA7CCFM4D .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA7CCFM4D .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA7CCFM4D .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA7CCFM4D .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA7CCFM4D .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA7CCFM4D .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA7CCFM4D .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-tFA7CCFM4D .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA7CCFM4D .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA7CCFM4D .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA7CCFM4D .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA7CCFM4D .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA7CCFM4D .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA7CCFM4D .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA7CCFM4D .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX3UB13HA9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3UB13HA9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX3UB13HA9 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX3UB13HA9 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX3UB13HA9 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX3UB13HA9 .mbr-section-title {
  color: #22a5e5;
}
.cid-uX3UB13HA9 .mbr-text,
.cid-uX3UB13HA9 .mbr-section-btn,
.cid-uX3UB13HA9 .social-row {
  color: #232323;
}
.cid-uX3UB13HA9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3UBgmu1y {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3UBgmu1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3UBgmu1y .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-uX3UBgmu1y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3UBgmu1y .row {
  flex-direction: row-reverse;
}
.cid-uX3UBgmu1y img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3UBgmu1y .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3UBgmu1y .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3UBgmu1y .mbr-section-title {
  color: #fafafa;
}
.cid-tFA7E8UjYR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA7E8UjYR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7E8UjYR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7E8UjYR .item {
  padding-bottom: 2rem;
}
.cid-tFA7E8UjYR .item-wrapper {
  position: relative;
}
.cid-tFA7E8UjYR .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA7E8UjYR .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA7E8UjYR .carousel-control,
.cid-tFA7E8UjYR .close {
  background: #1b1b1b;
}
.cid-tFA7E8UjYR .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA7E8UjYR .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA7E8UjYR .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA7E8UjYR .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA7E8UjYR .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA7E8UjYR .close::before {
  content: '\e91a';
}
.cid-tFA7E8UjYR .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA7E8UjYR .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA7E8UjYR .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7E8UjYR .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA7E8UjYR .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA7E8UjYR .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA7E8UjYR .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA7E8UjYR .carousel-indicators li.active,
.cid-tFA7E8UjYR .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA7E8UjYR .carousel-indicators li::after,
.cid-tFA7E8UjYR .carousel-indicators li::before {
  content: none;
}
.cid-tFA7E8UjYR .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA7E8UjYR .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA7E8UjYR .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA7E8UjYR .carousel-indicators {
    display: none;
  }
}
.cid-tFA7E8UjYR .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA7E8UjYR .carousel-inner > .active {
  display: block;
}
.cid-tFA7E8UjYR .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7E8UjYR .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA7E8UjYR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA7E8UjYR .carousel-control,
  .cid-tFA7E8UjYR .carousel-indicators,
  .cid-tFA7E8UjYR .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA7E8UjYR .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA7E8UjYR .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA7E8UjYR .carousel-indicators .active,
.cid-tFA7E8UjYR .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA7E8UjYR .carousel-indicators .active {
  background: #fff;
}
.cid-tFA7E8UjYR .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA7E8UjYR .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA7E8UjYR .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA7E8UjYR .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA7E8UjYR .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA7E8UjYR .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA7E8UjYR .carousel {
  width: 100%;
}
.cid-tFA7E8UjYR .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA7E8UjYR .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA7E8UjYR .modal.fade .modal-dialog,
.cid-tFA7E8UjYR .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA7E8UjYR .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA7E8UjYR H6 {
  text-align: center;
}
.cid-tFA7E8UjYR H3 {
  color: #fafafa;
}
.cid-tFA7E9XtYm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA7E9XtYm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA7E9XtYm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA7E9XtYm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA7E9XtYm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA7E9XtYm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA7E9XtYm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA7E9XtYm .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-tFA7E9XtYm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA7E9XtYm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA7E9XtYm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA7E9XtYm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA7E9XtYm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA7E9XtYm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA7E9XtYm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA7E9XtYm .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA7FsqIIE {
  background-image: url("../../../assets/images/112-sunburst-designs-screenshots-5005.jpg");
}
.cid-tFA7FsqIIE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7FsqIIE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7FsqIIE .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA7FsqIIE .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA7FsqIIE .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA7FsqIIE .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA7FsqIIE .mbr-text,
.cid-tFA7FsqIIE .mbr-section-btn,
.cid-tFA7FsqIIE .social-row {
  color: #232323;
}
.cid-tFA7FsqIIE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3Yi51CIU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3Yi51CIU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3Yi51CIU .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-uX3Yi51CIU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3Yi51CIU .row {
  flex-direction: row-reverse;
}
.cid-uX3Yi51CIU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3Yi51CIU .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3Yi51CIU .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3Yi51CIU .mbr-section-title {
  color: #fafafa;
}
.cid-tFA7FsLDZG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA7FsLDZG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7FsLDZG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7FsLDZG .item {
  padding-bottom: 2rem;
}
.cid-tFA7FsLDZG .item-wrapper {
  position: relative;
}
.cid-tFA7FsLDZG .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA7FsLDZG .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA7FsLDZG .carousel-control,
.cid-tFA7FsLDZG .close {
  background: #1b1b1b;
}
.cid-tFA7FsLDZG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA7FsLDZG .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA7FsLDZG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA7FsLDZG .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA7FsLDZG .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA7FsLDZG .close::before {
  content: '\e91a';
}
.cid-tFA7FsLDZG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA7FsLDZG .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA7FsLDZG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7FsLDZG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA7FsLDZG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA7FsLDZG .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA7FsLDZG .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA7FsLDZG .carousel-indicators li.active,
.cid-tFA7FsLDZG .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA7FsLDZG .carousel-indicators li::after,
.cid-tFA7FsLDZG .carousel-indicators li::before {
  content: none;
}
.cid-tFA7FsLDZG .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA7FsLDZG .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA7FsLDZG .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA7FsLDZG .carousel-indicators {
    display: none;
  }
}
.cid-tFA7FsLDZG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA7FsLDZG .carousel-inner > .active {
  display: block;
}
.cid-tFA7FsLDZG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7FsLDZG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA7FsLDZG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA7FsLDZG .carousel-control,
  .cid-tFA7FsLDZG .carousel-indicators,
  .cid-tFA7FsLDZG .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA7FsLDZG .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA7FsLDZG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA7FsLDZG .carousel-indicators .active,
.cid-tFA7FsLDZG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA7FsLDZG .carousel-indicators .active {
  background: #fff;
}
.cid-tFA7FsLDZG .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA7FsLDZG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA7FsLDZG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA7FsLDZG .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA7FsLDZG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA7FsLDZG .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA7FsLDZG .carousel {
  width: 100%;
}
.cid-tFA7FsLDZG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA7FsLDZG .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA7FsLDZG .modal.fade .modal-dialog,
.cid-tFA7FsLDZG .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA7FsLDZG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA7FsLDZG H6 {
  text-align: center;
}
.cid-tFA7FsLDZG H3 {
  color: #fafafa;
}
.cid-tFA7FtRhGF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA7FtRhGF .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA7FtRhGF .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA7FtRhGF .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA7FtRhGF .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA7FtRhGF .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA7FtRhGF .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA7FtRhGF .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-tFA7FtRhGF .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA7FtRhGF .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA7FtRhGF .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA7FtRhGF .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA7FtRhGF .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA7FtRhGF .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA7FtRhGF .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA7FtRhGF .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX40RoKBtv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX40RoKBtv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX40RoKBtv .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX40RoKBtv .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX40RoKBtv .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX40RoKBtv .mbr-section-title {
  color: #22a5e5;
}
.cid-uX40RoKBtv .mbr-text,
.cid-uX40RoKBtv .mbr-section-btn,
.cid-uX40RoKBtv .social-row {
  color: #232323;
}
.cid-uX40RoKBtv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX40KN7GS8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX40KN7GS8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX40KN7GS8 .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-uX40KN7GS8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX40KN7GS8 .row {
  flex-direction: row-reverse;
}
.cid-uX40KN7GS8 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX40KN7GS8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX40KN7GS8 .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX40KN7GS8 .mbr-section-title {
  color: #fafafa;
}
.cid-tFA7GTmPUJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA7GTmPUJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7GTmPUJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7GTmPUJ .item {
  padding-bottom: 2rem;
}
.cid-tFA7GTmPUJ .item-wrapper {
  position: relative;
}
.cid-tFA7GTmPUJ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA7GTmPUJ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA7GTmPUJ .carousel-control,
.cid-tFA7GTmPUJ .close {
  background: #1b1b1b;
}
.cid-tFA7GTmPUJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA7GTmPUJ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA7GTmPUJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA7GTmPUJ .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA7GTmPUJ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA7GTmPUJ .close::before {
  content: '\e91a';
}
.cid-tFA7GTmPUJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA7GTmPUJ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA7GTmPUJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7GTmPUJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA7GTmPUJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA7GTmPUJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA7GTmPUJ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA7GTmPUJ .carousel-indicators li.active,
.cid-tFA7GTmPUJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA7GTmPUJ .carousel-indicators li::after,
.cid-tFA7GTmPUJ .carousel-indicators li::before {
  content: none;
}
.cid-tFA7GTmPUJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA7GTmPUJ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA7GTmPUJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA7GTmPUJ .carousel-indicators {
    display: none;
  }
}
.cid-tFA7GTmPUJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA7GTmPUJ .carousel-inner > .active {
  display: block;
}
.cid-tFA7GTmPUJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7GTmPUJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA7GTmPUJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA7GTmPUJ .carousel-control,
  .cid-tFA7GTmPUJ .carousel-indicators,
  .cid-tFA7GTmPUJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA7GTmPUJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA7GTmPUJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA7GTmPUJ .carousel-indicators .active,
.cid-tFA7GTmPUJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA7GTmPUJ .carousel-indicators .active {
  background: #fff;
}
.cid-tFA7GTmPUJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA7GTmPUJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA7GTmPUJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA7GTmPUJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA7GTmPUJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA7GTmPUJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA7GTmPUJ .carousel {
  width: 100%;
}
.cid-tFA7GTmPUJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA7GTmPUJ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA7GTmPUJ .modal.fade .modal-dialog,
.cid-tFA7GTmPUJ .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA7GTmPUJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA7GTmPUJ H6 {
  text-align: center;
}
.cid-tFA7GTmPUJ H3 {
  color: #fafafa;
}
.cid-tFA7GUX5BG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA7GUX5BG .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA7GUX5BG .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA7GUX5BG .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA7GUX5BG .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA7GUX5BG .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA7GUX5BG .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA7GUX5BG .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-tFA7GUX5BG .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA7GUX5BG .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA7GUX5BG .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA7GUX5BG .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA7GUX5BG .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA7GUX5BG .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA7GUX5BG .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA7GUX5BG .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA7JylMDv {
  background-image: url("../../../assets/images/121-shipour-wedding-ii-screenshots-5257.jpeg");
}
.cid-tFA7JylMDv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7JylMDv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7JylMDv .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA7JylMDv .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA7JylMDv .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA7JylMDv .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA7JylMDv .mbr-text,
.cid-tFA7JylMDv .mbr-section-btn,
.cid-tFA7JylMDv .social-row {
  color: #232323;
}
.cid-tFA7JylMDv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3ZblouOb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3ZblouOb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3ZblouOb .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-uX3ZblouOb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3ZblouOb .row {
  flex-direction: row-reverse;
}
.cid-uX3ZblouOb img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3ZblouOb .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3ZblouOb .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3ZblouOb .mbr-section-title {
  color: #fafafa;
}
.cid-tFA7JyGKZ4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA7JyGKZ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7JyGKZ4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7JyGKZ4 .item {
  padding-bottom: 2rem;
}
.cid-tFA7JyGKZ4 .item-wrapper {
  position: relative;
}
.cid-tFA7JyGKZ4 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA7JyGKZ4 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA7JyGKZ4 .carousel-control,
.cid-tFA7JyGKZ4 .close {
  background: #1b1b1b;
}
.cid-tFA7JyGKZ4 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA7JyGKZ4 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA7JyGKZ4 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA7JyGKZ4 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA7JyGKZ4 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA7JyGKZ4 .close::before {
  content: '\e91a';
}
.cid-tFA7JyGKZ4 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA7JyGKZ4 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA7JyGKZ4 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7JyGKZ4 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA7JyGKZ4 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA7JyGKZ4 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA7JyGKZ4 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA7JyGKZ4 .carousel-indicators li.active,
.cid-tFA7JyGKZ4 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA7JyGKZ4 .carousel-indicators li::after,
.cid-tFA7JyGKZ4 .carousel-indicators li::before {
  content: none;
}
.cid-tFA7JyGKZ4 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA7JyGKZ4 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA7JyGKZ4 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA7JyGKZ4 .carousel-indicators {
    display: none;
  }
}
.cid-tFA7JyGKZ4 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA7JyGKZ4 .carousel-inner > .active {
  display: block;
}
.cid-tFA7JyGKZ4 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7JyGKZ4 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA7JyGKZ4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA7JyGKZ4 .carousel-control,
  .cid-tFA7JyGKZ4 .carousel-indicators,
  .cid-tFA7JyGKZ4 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA7JyGKZ4 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA7JyGKZ4 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA7JyGKZ4 .carousel-indicators .active,
.cid-tFA7JyGKZ4 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA7JyGKZ4 .carousel-indicators .active {
  background: #fff;
}
.cid-tFA7JyGKZ4 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA7JyGKZ4 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA7JyGKZ4 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA7JyGKZ4 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA7JyGKZ4 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA7JyGKZ4 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA7JyGKZ4 .carousel {
  width: 100%;
}
.cid-tFA7JyGKZ4 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA7JyGKZ4 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA7JyGKZ4 .modal.fade .modal-dialog,
.cid-tFA7JyGKZ4 .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA7JyGKZ4 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA7JyGKZ4 H6 {
  text-align: center;
}
.cid-tFA7JyGKZ4 H3 {
  color: #fafafa;
}
.cid-tFA7JzJZgP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA7JzJZgP .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA7JzJZgP .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA7JzJZgP .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA7JzJZgP .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA7JzJZgP .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA7JzJZgP .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA7JzJZgP .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-tFA7JzJZgP .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA7JzJZgP .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA7JzJZgP .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA7JzJZgP .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA7JzJZgP .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA7JzJZgP .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA7JzJZgP .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA7JzJZgP .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWKKhI2JQ7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uWKKhI2JQ7 .carousel {
  height: 800px;
}
.cid-uWKKhI2JQ7 .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uWKKhI2JQ7 .carousel-item,
.cid-uWKKhI2JQ7 .carousel-inner {
  height: 100%;
}
.cid-uWKKhI2JQ7 .carousel-caption {
  bottom: 40px;
  z-index: 1;
}
.cid-uWKKhI2JQ7 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uWKKhI2JQ7 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uWKKhI2JQ7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uWKKhI2JQ7 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uWKKhI2JQ7 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uWKKhI2JQ7 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uWKKhI2JQ7 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uWKKhI2JQ7 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWKKhI2JQ7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWKKhI2JQ7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWKKhI2JQ7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWKKhI2JQ7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uWKKhI2JQ7 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWKKhI2JQ7 .carousel-indicators li.active,
.cid-uWKKhI2JQ7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWKKhI2JQ7 .carousel-indicators li::after,
.cid-uWKKhI2JQ7 .carousel-indicators li::before {
  content: none;
}
.cid-uWKKhI2JQ7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWKKhI2JQ7 .carousel-indicators {
    display: none !important;
  }
}
.cid-uX41Bl4tVm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX41Bl4tVm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX41Bl4tVm .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-uX41Bl4tVm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX41Bl4tVm .row {
  flex-direction: row-reverse;
}
.cid-uX41Bl4tVm img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX41Bl4tVm .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX41Bl4tVm .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX41Bl4tVm .mbr-section-title {
  color: #fafafa;
}
.cid-tFA7KUmidR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA7KUmidR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7KUmidR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7KUmidR .item {
  padding-bottom: 2rem;
}
.cid-tFA7KUmidR .item-wrapper {
  position: relative;
}
.cid-tFA7KUmidR .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA7KUmidR .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA7KUmidR .carousel-control,
.cid-tFA7KUmidR .close {
  background: #1b1b1b;
}
.cid-tFA7KUmidR .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA7KUmidR .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA7KUmidR .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA7KUmidR .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA7KUmidR .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA7KUmidR .close::before {
  content: '\e91a';
}
.cid-tFA7KUmidR .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA7KUmidR .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA7KUmidR .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7KUmidR .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA7KUmidR .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA7KUmidR .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA7KUmidR .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA7KUmidR .carousel-indicators li.active,
.cid-tFA7KUmidR .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA7KUmidR .carousel-indicators li::after,
.cid-tFA7KUmidR .carousel-indicators li::before {
  content: none;
}
.cid-tFA7KUmidR .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA7KUmidR .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA7KUmidR .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA7KUmidR .carousel-indicators {
    display: none;
  }
}
.cid-tFA7KUmidR .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA7KUmidR .carousel-inner > .active {
  display: block;
}
.cid-tFA7KUmidR .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7KUmidR .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA7KUmidR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA7KUmidR .carousel-control,
  .cid-tFA7KUmidR .carousel-indicators,
  .cid-tFA7KUmidR .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA7KUmidR .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA7KUmidR .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA7KUmidR .carousel-indicators .active,
.cid-tFA7KUmidR .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA7KUmidR .carousel-indicators .active {
  background: #fff;
}
.cid-tFA7KUmidR .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA7KUmidR .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA7KUmidR .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA7KUmidR .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA7KUmidR .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA7KUmidR .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA7KUmidR .carousel {
  width: 100%;
}
.cid-tFA7KUmidR .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA7KUmidR .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA7KUmidR .modal.fade .modal-dialog,
.cid-tFA7KUmidR .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA7KUmidR .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA7KUmidR H6 {
  text-align: center;
}
.cid-tFA7KUmidR H3 {
  color: #fafafa;
}
.cid-tFA7KVqs2A {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA7KVqs2A .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA7KVqs2A .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA7KVqs2A .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA7KVqs2A .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA7KVqs2A .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA7KVqs2A .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA7KVqs2A .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-tFA7KVqs2A .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA7KVqs2A .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA7KVqs2A .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA7KVqs2A .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA7KVqs2A .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA7KVqs2A .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA7KVqs2A .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA7KVqs2A .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA7PXpDId {
  background-image: url("../../../assets/images/128-afra-start-screenshots-5165.jpeg");
}
.cid-tFA7PXpDId .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7PXpDId .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7PXpDId .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA7PXpDId .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA7PXpDId .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA7PXpDId .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA7PXpDId .mbr-text,
.cid-tFA7PXpDId .mbr-section-btn,
.cid-tFA7PXpDId .social-row {
  color: #232323;
}
.cid-tFA7PXpDId .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX2SxAUsRq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX2SxAUsRq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX2SxAUsRq .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-uX2SxAUsRq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX2SxAUsRq .row {
  flex-direction: row-reverse;
}
.cid-uX2SxAUsRq img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX2SxAUsRq .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX2SxAUsRq .mbr-text {
  color: #fafafa;
}
.cid-uX2SxAUsRq .mbr-section-title {
  color: #fafafa;
}
.cid-tFA7PXLqFR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA7PXLqFR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7PXLqFR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7PXLqFR .item {
  padding-bottom: 2rem;
}
.cid-tFA7PXLqFR .item-wrapper {
  position: relative;
}
.cid-tFA7PXLqFR .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA7PXLqFR .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA7PXLqFR .carousel-control,
.cid-tFA7PXLqFR .close {
  background: #1b1b1b;
}
.cid-tFA7PXLqFR .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA7PXLqFR .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA7PXLqFR .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA7PXLqFR .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA7PXLqFR .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA7PXLqFR .close::before {
  content: '\e91a';
}
.cid-tFA7PXLqFR .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA7PXLqFR .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA7PXLqFR .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7PXLqFR .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA7PXLqFR .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA7PXLqFR .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA7PXLqFR .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA7PXLqFR .carousel-indicators li.active,
.cid-tFA7PXLqFR .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA7PXLqFR .carousel-indicators li::after,
.cid-tFA7PXLqFR .carousel-indicators li::before {
  content: none;
}
.cid-tFA7PXLqFR .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA7PXLqFR .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA7PXLqFR .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA7PXLqFR .carousel-indicators {
    display: none;
  }
}
.cid-tFA7PXLqFR .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA7PXLqFR .carousel-inner > .active {
  display: block;
}
.cid-tFA7PXLqFR .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7PXLqFR .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA7PXLqFR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA7PXLqFR .carousel-control,
  .cid-tFA7PXLqFR .carousel-indicators,
  .cid-tFA7PXLqFR .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA7PXLqFR .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA7PXLqFR .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA7PXLqFR .carousel-indicators .active,
.cid-tFA7PXLqFR .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA7PXLqFR .carousel-indicators .active {
  background: #fff;
}
.cid-tFA7PXLqFR .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA7PXLqFR .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA7PXLqFR .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA7PXLqFR .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA7PXLqFR .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA7PXLqFR .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA7PXLqFR .carousel {
  width: 100%;
}
.cid-tFA7PXLqFR .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA7PXLqFR .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA7PXLqFR .modal.fade .modal-dialog,
.cid-tFA7PXLqFR .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA7PXLqFR .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA7PXLqFR H6 {
  text-align: center;
}
.cid-tFA7PXLqFR H3 {
  color: #fafafa;
}
.cid-tFA7PYANQo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/128-afra-start-screenshots-5165.jpeg");
}
.cid-tFA7PYANQo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7PYANQo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7PYANQo .mbr-text,
.cid-tFA7PYANQo .mbr-section-btn {
  color: #232323;
}
.cid-tFA7PYANQo .card-title,
.cid-tFA7PYANQo .card-box {
  color: #ffffff;
}
.cid-tFA7PYANQo .mbr-text,
.cid-tFA7PYANQo .link-wrap {
  color: #ffffff;
}
.cid-tFA7PYREeQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA7PYREeQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA7PYREeQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA7PYREeQ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA7PYREeQ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA7PYREeQ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA7PYREeQ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA7PYREeQ .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-tFA7PYREeQ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA7PYREeQ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA7PYREeQ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA7PYREeQ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA7PYREeQ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA7PYREeQ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA7PYREeQ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA7PYREeQ .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA7RHuoYU {
  background-image: url("../../../assets/images/130-pr-academy-screenshots-5470.jpeg");
}
.cid-tFA7RHuoYU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7RHuoYU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7RHuoYU .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA7RHuoYU .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA7RHuoYU .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA7RHuoYU .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA7RHuoYU .mbr-text,
.cid-tFA7RHuoYU .mbr-section-btn,
.cid-tFA7RHuoYU .social-row {
  color: #232323;
}
.cid-tFA7RHuoYU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3dsBBaZQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3dsBBaZQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3dsBBaZQ .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-uX3dsBBaZQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3dsBBaZQ .row {
  flex-direction: row-reverse;
}
.cid-uX3dsBBaZQ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3dsBBaZQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3dsBBaZQ .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3dsBBaZQ .mbr-section-title {
  color: #fafafa;
}
.cid-tFA7RHObhv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tFA7RHObhv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7RHObhv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7RHObhv .item {
  padding-bottom: 2rem;
}
.cid-tFA7RHObhv .item-wrapper {
  position: relative;
}
.cid-tFA7RHObhv .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA7RHObhv .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA7RHObhv .carousel-control,
.cid-tFA7RHObhv .close {
  background: #1b1b1b;
}
.cid-tFA7RHObhv .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA7RHObhv .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA7RHObhv .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA7RHObhv .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA7RHObhv .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA7RHObhv .close::before {
  content: '\e91a';
}
.cid-tFA7RHObhv .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA7RHObhv .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA7RHObhv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7RHObhv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA7RHObhv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA7RHObhv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA7RHObhv .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA7RHObhv .carousel-indicators li.active,
.cid-tFA7RHObhv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA7RHObhv .carousel-indicators li::after,
.cid-tFA7RHObhv .carousel-indicators li::before {
  content: none;
}
.cid-tFA7RHObhv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA7RHObhv .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA7RHObhv .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA7RHObhv .carousel-indicators {
    display: none;
  }
}
.cid-tFA7RHObhv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA7RHObhv .carousel-inner > .active {
  display: block;
}
.cid-tFA7RHObhv .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7RHObhv .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA7RHObhv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA7RHObhv .carousel-control,
  .cid-tFA7RHObhv .carousel-indicators,
  .cid-tFA7RHObhv .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA7RHObhv .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA7RHObhv .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA7RHObhv .carousel-indicators .active,
.cid-tFA7RHObhv .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA7RHObhv .carousel-indicators .active {
  background: #fff;
}
.cid-tFA7RHObhv .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA7RHObhv .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA7RHObhv .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA7RHObhv .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA7RHObhv .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA7RHObhv .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA7RHObhv .carousel {
  width: 100%;
}
.cid-tFA7RHObhv .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA7RHObhv .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA7RHObhv .modal.fade .modal-dialog,
.cid-tFA7RHObhv .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA7RHObhv .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA7RHObhv H6 {
  text-align: center;
}
.cid-tFA7RIDW4x {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/130-pr-academy-screenshots-5217.jpeg");
}
.cid-tFA7RIDW4x .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7RIDW4x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7RIDW4x .mbr-text,
.cid-tFA7RIDW4x .mbr-section-btn {
  color: #232323;
}
.cid-tFA7RIDW4x .card-title,
.cid-tFA7RIDW4x .card-box {
  color: #ffffff;
}
.cid-tFA7RIDW4x .mbr-text,
.cid-tFA7RIDW4x .link-wrap {
  color: #ffffff;
}
.cid-tFA7RIUt7i {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA7RIUt7i .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA7RIUt7i .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA7RIUt7i .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA7RIUt7i .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA7RIUt7i .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA7RIUt7i .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA7RIUt7i .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-tFA7RIUt7i .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA7RIUt7i .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA7RIUt7i .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA7RIUt7i .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA7RIUt7i .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA7RIUt7i .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA7RIUt7i .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA7RIUt7i .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA7Tny9Ui {
  background-image: url("../../../assets/images/134-pars-mahoo-screenshots-5339.jpeg");
}
.cid-tFA7Tny9Ui .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7Tny9Ui .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7Tny9Ui .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA7Tny9Ui .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA7Tny9Ui .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA7Tny9Ui .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA7Tny9Ui .mbr-text,
.cid-tFA7Tny9Ui .mbr-section-btn,
.cid-tFA7Tny9Ui .social-row {
  color: #232323;
}
.cid-tFA7Tny9Ui .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3dYUZCoQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3dYUZCoQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3dYUZCoQ .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-uX3dYUZCoQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3dYUZCoQ .row {
  flex-direction: row-reverse;
}
.cid-uX3dYUZCoQ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3dYUZCoQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3dYUZCoQ .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3dYUZCoQ .mbr-section-title {
  color: #fafafa;
}
.cid-tFA7TnSqXc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tFA7TnSqXc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7TnSqXc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7TnSqXc .item {
  padding-bottom: 2rem;
}
.cid-tFA7TnSqXc .item-wrapper {
  position: relative;
}
.cid-tFA7TnSqXc .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA7TnSqXc .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA7TnSqXc .carousel-control,
.cid-tFA7TnSqXc .close {
  background: #1b1b1b;
}
.cid-tFA7TnSqXc .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA7TnSqXc .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA7TnSqXc .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA7TnSqXc .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA7TnSqXc .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA7TnSqXc .close::before {
  content: '\e91a';
}
.cid-tFA7TnSqXc .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA7TnSqXc .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA7TnSqXc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7TnSqXc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA7TnSqXc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA7TnSqXc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA7TnSqXc .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA7TnSqXc .carousel-indicators li.active,
.cid-tFA7TnSqXc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA7TnSqXc .carousel-indicators li::after,
.cid-tFA7TnSqXc .carousel-indicators li::before {
  content: none;
}
.cid-tFA7TnSqXc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA7TnSqXc .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA7TnSqXc .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA7TnSqXc .carousel-indicators {
    display: none;
  }
}
.cid-tFA7TnSqXc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA7TnSqXc .carousel-inner > .active {
  display: block;
}
.cid-tFA7TnSqXc .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7TnSqXc .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA7TnSqXc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA7TnSqXc .carousel-control,
  .cid-tFA7TnSqXc .carousel-indicators,
  .cid-tFA7TnSqXc .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA7TnSqXc .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA7TnSqXc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA7TnSqXc .carousel-indicators .active,
.cid-tFA7TnSqXc .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA7TnSqXc .carousel-indicators .active {
  background: #fff;
}
.cid-tFA7TnSqXc .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA7TnSqXc .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA7TnSqXc .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA7TnSqXc .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA7TnSqXc .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA7TnSqXc .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA7TnSqXc .carousel {
  width: 100%;
}
.cid-tFA7TnSqXc .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA7TnSqXc .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA7TnSqXc .modal.fade .modal-dialog,
.cid-tFA7TnSqXc .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA7TnSqXc .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA7TnSqXc H6 {
  text-align: center;
}
.cid-tFA7ToF4oP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/134-pars-mahoo-screenshots-5339.jpeg");
}
.cid-tFA7ToF4oP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7ToF4oP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7ToF4oP .mbr-text,
.cid-tFA7ToF4oP .mbr-section-btn {
  color: #232323;
}
.cid-tFA7ToF4oP .card-title,
.cid-tFA7ToF4oP .card-box {
  color: #ffffff;
}
.cid-tFA7ToF4oP .mbr-text,
.cid-tFA7ToF4oP .link-wrap {
  color: #ffffff;
}
.cid-tFA7ToWBjD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA7ToWBjD .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA7ToWBjD .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA7ToWBjD .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA7ToWBjD .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA7ToWBjD .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA7ToWBjD .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA7ToWBjD .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-tFA7ToWBjD .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA7ToWBjD .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA7ToWBjD .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA7ToWBjD .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA7ToWBjD .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA7ToWBjD .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA7ToWBjD .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA7ToWBjD .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA7UThydx {
  background-image: url("../../../assets/images/137-helix-fibers-screenshots-5260.jpeg");
}
.cid-tFA7UThydx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7UThydx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7UThydx .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA7UThydx .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA7UThydx .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA7UThydx .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA7UThydx .mbr-text,
.cid-tFA7UThydx .mbr-section-btn,
.cid-tFA7UThydx .social-row {
  color: #232323;
}
.cid-tFA7UThydx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tFA7UTWHSl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tFA7UTWHSl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7UTWHSl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7UTWHSl .item {
  padding-bottom: 2rem;
}
.cid-tFA7UTWHSl .item-wrapper {
  position: relative;
}
.cid-tFA7UTWHSl .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA7UTWHSl .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA7UTWHSl .carousel-control,
.cid-tFA7UTWHSl .close {
  background: #1b1b1b;
}
.cid-tFA7UTWHSl .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA7UTWHSl .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA7UTWHSl .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA7UTWHSl .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA7UTWHSl .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA7UTWHSl .close::before {
  content: '\e91a';
}
.cid-tFA7UTWHSl .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA7UTWHSl .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA7UTWHSl .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7UTWHSl .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA7UTWHSl .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA7UTWHSl .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA7UTWHSl .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA7UTWHSl .carousel-indicators li.active,
.cid-tFA7UTWHSl .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA7UTWHSl .carousel-indicators li::after,
.cid-tFA7UTWHSl .carousel-indicators li::before {
  content: none;
}
.cid-tFA7UTWHSl .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA7UTWHSl .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA7UTWHSl .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA7UTWHSl .carousel-indicators {
    display: none;
  }
}
.cid-tFA7UTWHSl .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA7UTWHSl .carousel-inner > .active {
  display: block;
}
.cid-tFA7UTWHSl .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7UTWHSl .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA7UTWHSl .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA7UTWHSl .carousel-control,
  .cid-tFA7UTWHSl .carousel-indicators,
  .cid-tFA7UTWHSl .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA7UTWHSl .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA7UTWHSl .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA7UTWHSl .carousel-indicators .active,
.cid-tFA7UTWHSl .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA7UTWHSl .carousel-indicators .active {
  background: #fff;
}
.cid-tFA7UTWHSl .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA7UTWHSl .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA7UTWHSl .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA7UTWHSl .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA7UTWHSl .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA7UTWHSl .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA7UTWHSl .carousel {
  width: 100%;
}
.cid-tFA7UTWHSl .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA7UTWHSl .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA7UTWHSl .modal.fade .modal-dialog,
.cid-tFA7UTWHSl .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA7UTWHSl .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA7UTWHSl H6 {
  text-align: center;
}
.cid-tFA7UVFTxx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA7UVFTxx .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA7UVFTxx .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA7UVFTxx .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA7UVFTxx .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA7UVFTxx .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA7UVFTxx .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA7UVFTxx .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-tFA7UVFTxx .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA7UVFTxx .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA7UVFTxx .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA7UVFTxx .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA7UVFTxx .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA7UVFTxx .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA7UVFTxx .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA7UVFTxx .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX3fR045dB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3fR045dB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX3fR045dB .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX3fR045dB .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX3fR045dB .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX3fR045dB .mbr-section-title {
  color: #22a5e5;
}
.cid-uX3fR045dB .mbr-text,
.cid-uX3fR045dB .mbr-section-btn,
.cid-uX3fR045dB .social-row {
  color: #232323;
}
.cid-uX3fR045dB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3eo2pRdN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3eo2pRdN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3eo2pRdN .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-uX3eo2pRdN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3eo2pRdN .row {
  flex-direction: row-reverse;
}
.cid-uX3eo2pRdN img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3eo2pRdN .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3eo2pRdN .mbr-text {
  color: #fafafa;
}
.cid-uX3eo2pRdN .mbr-section-title {
  color: #fafafa;
}
.cid-tFA7Wn3fFB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA7Wn3fFB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7Wn3fFB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7Wn3fFB .item {
  padding-bottom: 2rem;
}
.cid-tFA7Wn3fFB .item-wrapper {
  position: relative;
}
.cid-tFA7Wn3fFB .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA7Wn3fFB .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA7Wn3fFB .carousel-control,
.cid-tFA7Wn3fFB .close {
  background: #1b1b1b;
}
.cid-tFA7Wn3fFB .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA7Wn3fFB .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA7Wn3fFB .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA7Wn3fFB .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA7Wn3fFB .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA7Wn3fFB .close::before {
  content: '\e91a';
}
.cid-tFA7Wn3fFB .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA7Wn3fFB .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA7Wn3fFB .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7Wn3fFB .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA7Wn3fFB .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA7Wn3fFB .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA7Wn3fFB .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA7Wn3fFB .carousel-indicators li.active,
.cid-tFA7Wn3fFB .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA7Wn3fFB .carousel-indicators li::after,
.cid-tFA7Wn3fFB .carousel-indicators li::before {
  content: none;
}
.cid-tFA7Wn3fFB .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA7Wn3fFB .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA7Wn3fFB .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA7Wn3fFB .carousel-indicators {
    display: none;
  }
}
.cid-tFA7Wn3fFB .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA7Wn3fFB .carousel-inner > .active {
  display: block;
}
.cid-tFA7Wn3fFB .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7Wn3fFB .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA7Wn3fFB .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA7Wn3fFB .carousel-control,
  .cid-tFA7Wn3fFB .carousel-indicators,
  .cid-tFA7Wn3fFB .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA7Wn3fFB .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA7Wn3fFB .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA7Wn3fFB .carousel-indicators .active,
.cid-tFA7Wn3fFB .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA7Wn3fFB .carousel-indicators .active {
  background: #fff;
}
.cid-tFA7Wn3fFB .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA7Wn3fFB .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA7Wn3fFB .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA7Wn3fFB .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA7Wn3fFB .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA7Wn3fFB .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA7Wn3fFB .carousel {
  width: 100%;
}
.cid-tFA7Wn3fFB .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA7Wn3fFB .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA7Wn3fFB .modal.fade .modal-dialog,
.cid-tFA7Wn3fFB .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA7Wn3fFB .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA7Wn3fFB H6 {
  text-align: center;
}
.cid-tFA7Wo5DhW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA7Wo5DhW .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA7Wo5DhW .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA7Wo5DhW .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA7Wo5DhW .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA7Wo5DhW .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA7Wo5DhW .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA7Wo5DhW .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-tFA7Wo5DhW .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA7Wo5DhW .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA7Wo5DhW .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA7Wo5DhW .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA7Wo5DhW .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA7Wo5DhW .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA7Wo5DhW .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA7Wo5DhW .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA7XUebm5 {
  background-image: url("../../../assets/images/141-licaps-screenshots-5305.jpeg");
}
.cid-tFA7XUebm5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7XUebm5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7XUebm5 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA7XUebm5 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA7XUebm5 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA7XUebm5 .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA7XUebm5 .mbr-text,
.cid-tFA7XUebm5 .mbr-section-btn,
.cid-tFA7XUebm5 .social-row {
  color: #232323;
}
.cid-tFA7XUebm5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3goAT7Id {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3goAT7Id .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3goAT7Id .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-uX3goAT7Id .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3goAT7Id .row {
  flex-direction: row-reverse;
}
.cid-uX3goAT7Id img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3goAT7Id .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3goAT7Id .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3goAT7Id .mbr-section-title {
  color: #fafafa;
}
.cid-tFA7XUy2GL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA7XUy2GL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7XUy2GL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7XUy2GL .item {
  padding-bottom: 2rem;
}
.cid-tFA7XUy2GL .item-wrapper {
  position: relative;
}
.cid-tFA7XUy2GL .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA7XUy2GL .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA7XUy2GL .carousel-control,
.cid-tFA7XUy2GL .close {
  background: #1b1b1b;
}
.cid-tFA7XUy2GL .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA7XUy2GL .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA7XUy2GL .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA7XUy2GL .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA7XUy2GL .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA7XUy2GL .close::before {
  content: '\e91a';
}
.cid-tFA7XUy2GL .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA7XUy2GL .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA7XUy2GL .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7XUy2GL .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA7XUy2GL .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA7XUy2GL .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA7XUy2GL .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA7XUy2GL .carousel-indicators li.active,
.cid-tFA7XUy2GL .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA7XUy2GL .carousel-indicators li::after,
.cid-tFA7XUy2GL .carousel-indicators li::before {
  content: none;
}
.cid-tFA7XUy2GL .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA7XUy2GL .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA7XUy2GL .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA7XUy2GL .carousel-indicators {
    display: none;
  }
}
.cid-tFA7XUy2GL .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA7XUy2GL .carousel-inner > .active {
  display: block;
}
.cid-tFA7XUy2GL .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7XUy2GL .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA7XUy2GL .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA7XUy2GL .carousel-control,
  .cid-tFA7XUy2GL .carousel-indicators,
  .cid-tFA7XUy2GL .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA7XUy2GL .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA7XUy2GL .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA7XUy2GL .carousel-indicators .active,
.cid-tFA7XUy2GL .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA7XUy2GL .carousel-indicators .active {
  background: #fff;
}
.cid-tFA7XUy2GL .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA7XUy2GL .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA7XUy2GL .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA7XUy2GL .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA7XUy2GL .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA7XUy2GL .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA7XUy2GL .carousel {
  width: 100%;
}
.cid-tFA7XUy2GL .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA7XUy2GL .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA7XUy2GL .modal.fade .modal-dialog,
.cid-tFA7XUy2GL .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA7XUy2GL .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA7XUy2GL H6 {
  text-align: center;
}
.cid-tFA7XUy2GL H3 {
  color: #fafafa;
}
.cid-tFA7XVl1xv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/141-licaps-screenshots-5306.jpeg");
}
.cid-tFA7XVl1xv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7XVl1xv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7XVl1xv .mbr-text,
.cid-tFA7XVl1xv .mbr-section-btn {
  color: #232323;
}
.cid-tFA7XVl1xv .card-title,
.cid-tFA7XVl1xv .card-box {
  color: #ffffff;
}
.cid-tFA7XVl1xv .mbr-text,
.cid-tFA7XVl1xv .link-wrap {
  color: #ffffff;
}
.cid-tFA7XVBve9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA7XVBve9 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA7XVBve9 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA7XVBve9 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA7XVBve9 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA7XVBve9 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA7XVBve9 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA7XVBve9 .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-tFA7XVBve9 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA7XVBve9 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA7XVBve9 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA7XVBve9 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA7XVBve9 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA7XVBve9 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA7XVBve9 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA7XVBve9 .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA7ZFiDhG {
  background-image: url("../../../assets/images/142-roofing-screens-5855.jpeg");
}
.cid-tFA7ZFiDhG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7ZFiDhG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7ZFiDhG .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA7ZFiDhG .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA7ZFiDhG .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA7ZFiDhG .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA7ZFiDhG .mbr-text,
.cid-tFA7ZFiDhG .mbr-section-btn,
.cid-tFA7ZFiDhG .social-row {
  color: #232323;
}
.cid-tFA7ZFiDhG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tFA7ZFCnRx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tFA7ZFCnRx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7ZFCnRx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7ZFCnRx .item {
  padding-bottom: 2rem;
}
.cid-tFA7ZFCnRx .item-wrapper {
  position: relative;
}
.cid-tFA7ZFCnRx .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA7ZFCnRx .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA7ZFCnRx .carousel-control,
.cid-tFA7ZFCnRx .close {
  background: #1b1b1b;
}
.cid-tFA7ZFCnRx .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA7ZFCnRx .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA7ZFCnRx .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA7ZFCnRx .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA7ZFCnRx .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA7ZFCnRx .close::before {
  content: '\e91a';
}
.cid-tFA7ZFCnRx .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA7ZFCnRx .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA7ZFCnRx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7ZFCnRx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA7ZFCnRx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA7ZFCnRx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA7ZFCnRx .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA7ZFCnRx .carousel-indicators li.active,
.cid-tFA7ZFCnRx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA7ZFCnRx .carousel-indicators li::after,
.cid-tFA7ZFCnRx .carousel-indicators li::before {
  content: none;
}
.cid-tFA7ZFCnRx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA7ZFCnRx .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA7ZFCnRx .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA7ZFCnRx .carousel-indicators {
    display: none;
  }
}
.cid-tFA7ZFCnRx .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA7ZFCnRx .carousel-inner > .active {
  display: block;
}
.cid-tFA7ZFCnRx .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7ZFCnRx .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA7ZFCnRx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA7ZFCnRx .carousel-control,
  .cid-tFA7ZFCnRx .carousel-indicators,
  .cid-tFA7ZFCnRx .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA7ZFCnRx .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA7ZFCnRx .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA7ZFCnRx .carousel-indicators .active,
.cid-tFA7ZFCnRx .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA7ZFCnRx .carousel-indicators .active {
  background: #fff;
}
.cid-tFA7ZFCnRx .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA7ZFCnRx .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA7ZFCnRx .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA7ZFCnRx .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA7ZFCnRx .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA7ZFCnRx .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA7ZFCnRx .carousel {
  width: 100%;
}
.cid-tFA7ZFCnRx .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA7ZFCnRx .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA7ZFCnRx .modal.fade .modal-dialog,
.cid-tFA7ZFCnRx .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA7ZFCnRx .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA7ZFCnRx H6 {
  text-align: center;
}
.cid-tFA7ZGoF2c {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/142-roofing-screens-5965.jpeg");
}
.cid-tFA7ZGoF2c .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7ZGoF2c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7ZGoF2c .mbr-text,
.cid-tFA7ZGoF2c .mbr-section-btn {
  color: #232323;
}
.cid-tFA7ZGoF2c .card-title,
.cid-tFA7ZGoF2c .card-box {
  color: #ffffff;
}
.cid-tFA7ZGoF2c .mbr-text,
.cid-tFA7ZGoF2c .link-wrap {
  color: #ffffff;
}
.cid-tFA7ZGFcPP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA7ZGFcPP .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA7ZGFcPP .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA7ZGFcPP .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA7ZGFcPP .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA7ZGFcPP .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA7ZGFcPP .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA7ZGFcPP .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-tFA7ZGFcPP .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA7ZGFcPP .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA7ZGFcPP .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA7ZGFcPP .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA7ZGFcPP .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA7ZGFcPP .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA7ZGFcPP .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA7ZGFcPP .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA81oT9NF {
  background-image: url("../../../assets/images/144-cascade-polygel-screens-5654.jpeg");
}
.cid-tFA81oT9NF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA81oT9NF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA81oT9NF .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA81oT9NF .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA81oT9NF .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA81oT9NF .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA81oT9NF .mbr-text,
.cid-tFA81oT9NF .mbr-section-btn,
.cid-tFA81oT9NF .social-row {
  color: #232323;
}
.cid-tFA81oT9NF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3gT3MGV0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3gT3MGV0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3gT3MGV0 .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-uX3gT3MGV0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3gT3MGV0 .row {
  flex-direction: row-reverse;
}
.cid-uX3gT3MGV0 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3gT3MGV0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3gT3MGV0 .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3gT3MGV0 .mbr-section-title {
  color: #fafafa;
}
.cid-tFA81peQZC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA81peQZC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA81peQZC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA81peQZC .item {
  padding-bottom: 2rem;
}
.cid-tFA81peQZC .item-wrapper {
  position: relative;
}
.cid-tFA81peQZC .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA81peQZC .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA81peQZC .carousel-control,
.cid-tFA81peQZC .close {
  background: #1b1b1b;
}
.cid-tFA81peQZC .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA81peQZC .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA81peQZC .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA81peQZC .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA81peQZC .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA81peQZC .close::before {
  content: '\e91a';
}
.cid-tFA81peQZC .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA81peQZC .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA81peQZC .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA81peQZC .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA81peQZC .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA81peQZC .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA81peQZC .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA81peQZC .carousel-indicators li.active,
.cid-tFA81peQZC .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA81peQZC .carousel-indicators li::after,
.cid-tFA81peQZC .carousel-indicators li::before {
  content: none;
}
.cid-tFA81peQZC .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA81peQZC .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA81peQZC .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA81peQZC .carousel-indicators {
    display: none;
  }
}
.cid-tFA81peQZC .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA81peQZC .carousel-inner > .active {
  display: block;
}
.cid-tFA81peQZC .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA81peQZC .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA81peQZC .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA81peQZC .carousel-control,
  .cid-tFA81peQZC .carousel-indicators,
  .cid-tFA81peQZC .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA81peQZC .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA81peQZC .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA81peQZC .carousel-indicators .active,
.cid-tFA81peQZC .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA81peQZC .carousel-indicators .active {
  background: #fff;
}
.cid-tFA81peQZC .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA81peQZC .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA81peQZC .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA81peQZC .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA81peQZC .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA81peQZC .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA81peQZC .carousel {
  width: 100%;
}
.cid-tFA81peQZC .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA81peQZC .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA81peQZC .modal.fade .modal-dialog,
.cid-tFA81peQZC .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA81peQZC .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA81peQZC H6 {
  text-align: center;
}
.cid-tFA81peQZC H3 {
  color: #fafafa;
}
.cid-tFA81qhkvn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA81qhkvn .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA81qhkvn .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA81qhkvn .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA81qhkvn .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA81qhkvn .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA81qhkvn .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA81qhkvn .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-tFA81qhkvn .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA81qhkvn .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA81qhkvn .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA81qhkvn .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA81qhkvn .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA81qhkvn .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA81qhkvn .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA81qhkvn .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX3hjL1oVS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3hjL1oVS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX3hjL1oVS .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX3hjL1oVS .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX3hjL1oVS .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX3hjL1oVS .mbr-section-title {
  color: #22a5e5;
}
.cid-uX3hjL1oVS .mbr-text,
.cid-uX3hjL1oVS .mbr-section-btn,
.cid-uX3hjL1oVS .social-row {
  color: #232323;
}
.cid-uX3hjL1oVS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3hFxtorv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3hFxtorv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3hFxtorv .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-uX3hFxtorv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3hFxtorv .row {
  flex-direction: row-reverse;
}
.cid-uX3hFxtorv img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3hFxtorv .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3hFxtorv .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3hFxtorv .mbr-section-title {
  color: #fafafa;
}
.cid-tFA84VTeB0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA84VTeB0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA84VTeB0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA84VTeB0 .item {
  padding-bottom: 2rem;
}
.cid-tFA84VTeB0 .item-wrapper {
  position: relative;
}
.cid-tFA84VTeB0 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA84VTeB0 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA84VTeB0 .carousel-control,
.cid-tFA84VTeB0 .close {
  background: #1b1b1b;
}
.cid-tFA84VTeB0 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA84VTeB0 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA84VTeB0 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA84VTeB0 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA84VTeB0 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA84VTeB0 .close::before {
  content: '\e91a';
}
.cid-tFA84VTeB0 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA84VTeB0 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA84VTeB0 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA84VTeB0 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA84VTeB0 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA84VTeB0 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA84VTeB0 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA84VTeB0 .carousel-indicators li.active,
.cid-tFA84VTeB0 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA84VTeB0 .carousel-indicators li::after,
.cid-tFA84VTeB0 .carousel-indicators li::before {
  content: none;
}
.cid-tFA84VTeB0 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA84VTeB0 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA84VTeB0 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA84VTeB0 .carousel-indicators {
    display: none;
  }
}
.cid-tFA84VTeB0 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA84VTeB0 .carousel-inner > .active {
  display: block;
}
.cid-tFA84VTeB0 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA84VTeB0 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA84VTeB0 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA84VTeB0 .carousel-control,
  .cid-tFA84VTeB0 .carousel-indicators,
  .cid-tFA84VTeB0 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA84VTeB0 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA84VTeB0 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA84VTeB0 .carousel-indicators .active,
.cid-tFA84VTeB0 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA84VTeB0 .carousel-indicators .active {
  background: #fff;
}
.cid-tFA84VTeB0 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA84VTeB0 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA84VTeB0 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA84VTeB0 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA84VTeB0 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA84VTeB0 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA84VTeB0 .carousel {
  width: 100%;
}
.cid-tFA84VTeB0 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA84VTeB0 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA84VTeB0 .modal.fade .modal-dialog,
.cid-tFA84VTeB0 .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA84VTeB0 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA84VTeB0 H6 {
  text-align: center;
}
.cid-tFA84VTeB0 H3 {
  color: #fafafa;
}
.cid-tFA84WGk4H {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/149-genuss-helper-screenshots-5870.jpeg");
}
.cid-tFA84WGk4H .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA84WGk4H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA84WGk4H .mbr-text,
.cid-tFA84WGk4H .mbr-section-btn {
  color: #232323;
}
.cid-tFA84WGk4H .card-title,
.cid-tFA84WGk4H .card-box {
  color: #ffffff;
}
.cid-tFA84WGk4H .mbr-text,
.cid-tFA84WGk4H .link-wrap {
  color: #ffffff;
}
.cid-tFA84WX3Ky {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA84WX3Ky .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA84WX3Ky .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA84WX3Ky .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA84WX3Ky .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA84WX3Ky .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA84WX3Ky .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA84WX3Ky .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-tFA84WX3Ky .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA84WX3Ky .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA84WX3Ky .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA84WX3Ky .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA84WX3Ky .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA84WX3Ky .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA84WX3Ky .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA84WX3Ky .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA86Oqjlw {
  background-image: url("../../../assets/images/150-luxe-detox-screenshots-5119.jpeg");
}
.cid-tFA86Oqjlw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA86Oqjlw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA86Oqjlw .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA86Oqjlw .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA86Oqjlw .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA86Oqjlw .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA86Oqjlw .mbr-text,
.cid-tFA86Oqjlw .mbr-section-btn,
.cid-tFA86Oqjlw .social-row {
  color: #232323;
}
.cid-tFA86Oqjlw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3plbAFAM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3plbAFAM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3plbAFAM .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-uX3plbAFAM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3plbAFAM .row {
  flex-direction: row-reverse;
}
.cid-uX3plbAFAM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3plbAFAM .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3plbAFAM .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3plbAFAM .mbr-section-title {
  color: #fafafa;
}
.cid-tFA86OLo9e {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA86OLo9e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA86OLo9e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA86OLo9e .item {
  padding-bottom: 2rem;
}
.cid-tFA86OLo9e .item-wrapper {
  position: relative;
}
.cid-tFA86OLo9e .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA86OLo9e .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA86OLo9e .carousel-control,
.cid-tFA86OLo9e .close {
  background: #1b1b1b;
}
.cid-tFA86OLo9e .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA86OLo9e .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA86OLo9e .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA86OLo9e .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA86OLo9e .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA86OLo9e .close::before {
  content: '\e91a';
}
.cid-tFA86OLo9e .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA86OLo9e .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA86OLo9e .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA86OLo9e .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA86OLo9e .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA86OLo9e .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA86OLo9e .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA86OLo9e .carousel-indicators li.active,
.cid-tFA86OLo9e .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA86OLo9e .carousel-indicators li::after,
.cid-tFA86OLo9e .carousel-indicators li::before {
  content: none;
}
.cid-tFA86OLo9e .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA86OLo9e .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA86OLo9e .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA86OLo9e .carousel-indicators {
    display: none;
  }
}
.cid-tFA86OLo9e .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA86OLo9e .carousel-inner > .active {
  display: block;
}
.cid-tFA86OLo9e .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA86OLo9e .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA86OLo9e .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA86OLo9e .carousel-control,
  .cid-tFA86OLo9e .carousel-indicators,
  .cid-tFA86OLo9e .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA86OLo9e .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA86OLo9e .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA86OLo9e .carousel-indicators .active,
.cid-tFA86OLo9e .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA86OLo9e .carousel-indicators .active {
  background: #fff;
}
.cid-tFA86OLo9e .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA86OLo9e .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA86OLo9e .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA86OLo9e .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA86OLo9e .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA86OLo9e .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA86OLo9e .carousel {
  width: 100%;
}
.cid-tFA86OLo9e .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA86OLo9e .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA86OLo9e .modal.fade .modal-dialog,
.cid-tFA86OLo9e .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA86OLo9e .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA86OLo9e H6 {
  text-align: center;
}
.cid-tFA86OLo9e H3 {
  color: #fafafa;
}
.cid-tFA86Pw8kH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/150-luxe-detox-screenshots-5456.jpeg");
}
.cid-tFA86Pw8kH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA86Pw8kH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA86Pw8kH .mbr-text,
.cid-tFA86Pw8kH .mbr-section-btn {
  color: #232323;
}
.cid-tFA86Pw8kH .card-title,
.cid-tFA86Pw8kH .card-box {
  color: #ffffff;
}
.cid-tFA86Pw8kH .mbr-text,
.cid-tFA86Pw8kH .link-wrap {
  color: #ffffff;
}
.cid-tFA86PRPER {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA86PRPER .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA86PRPER .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA86PRPER .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA86PRPER .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA86PRPER .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA86PRPER .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA86PRPER .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-tFA86PRPER .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA86PRPER .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA86PRPER .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA86PRPER .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA86PRPER .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA86PRPER .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA86PRPER .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA86PRPER .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA88sEf69 {
  background-image: url("../../../assets/images/152-reposture-screenshots-5605.jpeg");
}
.cid-tFA88sEf69 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA88sEf69 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA88sEf69 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA88sEf69 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA88sEf69 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA88sEf69 .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA88sEf69 .mbr-text,
.cid-tFA88sEf69 .mbr-section-btn,
.cid-tFA88sEf69 .social-row {
  color: #232323;
}
.cid-tFA88sEf69 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3pRxYqS5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3pRxYqS5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3pRxYqS5 .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-uX3pRxYqS5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3pRxYqS5 .row {
  flex-direction: row-reverse;
}
.cid-uX3pRxYqS5 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3pRxYqS5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3pRxYqS5 .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3pRxYqS5 .mbr-section-title {
  color: #fafafa;
}
.cid-tFA88sZYuq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA88sZYuq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA88sZYuq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA88sZYuq .item {
  padding-bottom: 2rem;
}
.cid-tFA88sZYuq .item-wrapper {
  position: relative;
}
.cid-tFA88sZYuq .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA88sZYuq .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA88sZYuq .carousel-control,
.cid-tFA88sZYuq .close {
  background: #1b1b1b;
}
.cid-tFA88sZYuq .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA88sZYuq .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA88sZYuq .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA88sZYuq .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA88sZYuq .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA88sZYuq .close::before {
  content: '\e91a';
}
.cid-tFA88sZYuq .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA88sZYuq .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA88sZYuq .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA88sZYuq .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA88sZYuq .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA88sZYuq .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA88sZYuq .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA88sZYuq .carousel-indicators li.active,
.cid-tFA88sZYuq .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA88sZYuq .carousel-indicators li::after,
.cid-tFA88sZYuq .carousel-indicators li::before {
  content: none;
}
.cid-tFA88sZYuq .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA88sZYuq .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA88sZYuq .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA88sZYuq .carousel-indicators {
    display: none;
  }
}
.cid-tFA88sZYuq .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA88sZYuq .carousel-inner > .active {
  display: block;
}
.cid-tFA88sZYuq .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA88sZYuq .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA88sZYuq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA88sZYuq .carousel-control,
  .cid-tFA88sZYuq .carousel-indicators,
  .cid-tFA88sZYuq .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA88sZYuq .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA88sZYuq .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA88sZYuq .carousel-indicators .active,
.cid-tFA88sZYuq .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA88sZYuq .carousel-indicators .active {
  background: #fff;
}
.cid-tFA88sZYuq .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA88sZYuq .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA88sZYuq .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA88sZYuq .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA88sZYuq .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA88sZYuq .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA88sZYuq .carousel {
  width: 100%;
}
.cid-tFA88sZYuq .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA88sZYuq .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA88sZYuq .modal.fade .modal-dialog,
.cid-tFA88sZYuq .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA88sZYuq .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA88sZYuq H6 {
  text-align: center;
}
.cid-tFA88sZYuq H3 {
  color: #fafafa;
}
.cid-tFA88tLFjm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/152-reposture-screenshots-5484.jpeg");
}
.cid-tFA88tLFjm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA88tLFjm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA88tLFjm .mbr-text,
.cid-tFA88tLFjm .mbr-section-btn {
  color: #232323;
}
.cid-tFA88tLFjm .card-title,
.cid-tFA88tLFjm .card-box {
  color: #ffffff;
}
.cid-tFA88tLFjm .mbr-text,
.cid-tFA88tLFjm .link-wrap {
  color: #ffffff;
}
.cid-tFA88u2lxW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA88u2lxW .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA88u2lxW .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA88u2lxW .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA88u2lxW .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA88u2lxW .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA88u2lxW .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA88u2lxW .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-tFA88u2lxW .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA88u2lxW .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA88u2lxW .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA88u2lxW .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA88u2lxW .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA88u2lxW .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA88u2lxW .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA88u2lxW .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA8a9M3Xx {
  background-image: url("../../../assets/images/164-my-addon-screenshots-5074.jpeg");
}
.cid-tFA8a9M3Xx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8a9M3Xx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8a9M3Xx .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA8a9M3Xx .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA8a9M3Xx .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA8a9M3Xx .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA8a9M3Xx .mbr-text,
.cid-tFA8a9M3Xx .mbr-section-btn,
.cid-tFA8a9M3Xx .social-row {
  color: #232323;
}
.cid-tFA8a9M3Xx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3q8VsA86 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3q8VsA86 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3q8VsA86 .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-uX3q8VsA86 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3q8VsA86 .row {
  flex-direction: row-reverse;
}
.cid-uX3q8VsA86 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3q8VsA86 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3q8VsA86 .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3q8VsA86 .mbr-section-title {
  color: #fafafa;
}
.cid-tFA8aa6llU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA8aa6llU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8aa6llU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8aa6llU .item {
  padding-bottom: 2rem;
}
.cid-tFA8aa6llU .item-wrapper {
  position: relative;
}
.cid-tFA8aa6llU .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8aa6llU .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8aa6llU .carousel-control,
.cid-tFA8aa6llU .close {
  background: #1b1b1b;
}
.cid-tFA8aa6llU .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8aa6llU .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8aa6llU .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8aa6llU .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8aa6llU .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8aa6llU .close::before {
  content: '\e91a';
}
.cid-tFA8aa6llU .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8aa6llU .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8aa6llU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8aa6llU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8aa6llU .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8aa6llU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8aa6llU .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8aa6llU .carousel-indicators li.active,
.cid-tFA8aa6llU .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8aa6llU .carousel-indicators li::after,
.cid-tFA8aa6llU .carousel-indicators li::before {
  content: none;
}
.cid-tFA8aa6llU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8aa6llU .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8aa6llU .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8aa6llU .carousel-indicators {
    display: none;
  }
}
.cid-tFA8aa6llU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8aa6llU .carousel-inner > .active {
  display: block;
}
.cid-tFA8aa6llU .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8aa6llU .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8aa6llU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8aa6llU .carousel-control,
  .cid-tFA8aa6llU .carousel-indicators,
  .cid-tFA8aa6llU .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8aa6llU .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8aa6llU .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8aa6llU .carousel-indicators .active,
.cid-tFA8aa6llU .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8aa6llU .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8aa6llU .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8aa6llU .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8aa6llU .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8aa6llU .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8aa6llU .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8aa6llU .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8aa6llU .carousel {
  width: 100%;
}
.cid-tFA8aa6llU .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8aa6llU .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8aa6llU .modal.fade .modal-dialog,
.cid-tFA8aa6llU .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8aa6llU .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8aa6llU H6 {
  text-align: center;
}
.cid-tFA8aa6llU H3 {
  color: #fafafa;
}
.cid-tFA8abaaBh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8abaaBh .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8abaaBh .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8abaaBh .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8abaaBh .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8abaaBh .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8abaaBh .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8abaaBh .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-tFA8abaaBh .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8abaaBh .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8abaaBh .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8abaaBh .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8abaaBh .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8abaaBh .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8abaaBh .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8abaaBh .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX4p7U3hW0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX4p7U3hW0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX4p7U3hW0 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX4p7U3hW0 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX4p7U3hW0 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX4p7U3hW0 .mbr-section-title {
  color: #22a5e5;
}
.cid-uX4p7U3hW0 .mbr-text,
.cid-uX4p7U3hW0 .mbr-section-btn,
.cid-uX4p7U3hW0 .social-row {
  color: #232323;
}
.cid-uX4p7U3hW0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3qAN0x65 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3qAN0x65 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3qAN0x65 .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-uX3qAN0x65 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3qAN0x65 .row {
  flex-direction: row-reverse;
}
.cid-uX3qAN0x65 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3qAN0x65 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3qAN0x65 .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3qAN0x65 .mbr-section-title {
  color: #fafafa;
}
.cid-tFA8cbbEZC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tFA8cbbEZC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8cbbEZC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8cbbEZC .item {
  padding-bottom: 2rem;
}
.cid-tFA8cbbEZC .item-wrapper {
  position: relative;
}
.cid-tFA8cbbEZC .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8cbbEZC .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8cbbEZC .carousel-control,
.cid-tFA8cbbEZC .close {
  background: #1b1b1b;
}
.cid-tFA8cbbEZC .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8cbbEZC .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8cbbEZC .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8cbbEZC .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8cbbEZC .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8cbbEZC .close::before {
  content: '\e91a';
}
.cid-tFA8cbbEZC .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8cbbEZC .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8cbbEZC .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8cbbEZC .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8cbbEZC .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8cbbEZC .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8cbbEZC .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8cbbEZC .carousel-indicators li.active,
.cid-tFA8cbbEZC .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8cbbEZC .carousel-indicators li::after,
.cid-tFA8cbbEZC .carousel-indicators li::before {
  content: none;
}
.cid-tFA8cbbEZC .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8cbbEZC .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8cbbEZC .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8cbbEZC .carousel-indicators {
    display: none;
  }
}
.cid-tFA8cbbEZC .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8cbbEZC .carousel-inner > .active {
  display: block;
}
.cid-tFA8cbbEZC .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8cbbEZC .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8cbbEZC .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8cbbEZC .carousel-control,
  .cid-tFA8cbbEZC .carousel-indicators,
  .cid-tFA8cbbEZC .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8cbbEZC .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8cbbEZC .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8cbbEZC .carousel-indicators .active,
.cid-tFA8cbbEZC .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8cbbEZC .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8cbbEZC .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8cbbEZC .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8cbbEZC .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8cbbEZC .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8cbbEZC .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8cbbEZC .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8cbbEZC .carousel {
  width: 100%;
}
.cid-tFA8cbbEZC .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8cbbEZC .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8cbbEZC .modal.fade .modal-dialog,
.cid-tFA8cbbEZC .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8cbbEZC .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8cbbEZC H6 {
  text-align: center;
}
.cid-tFA8cbY4qI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/168-churnbaby-ice-cream-screenshots-5737.jpeg");
}
.cid-tFA8cbY4qI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8cbY4qI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8cbY4qI .mbr-text,
.cid-tFA8cbY4qI .mbr-section-btn {
  color: #232323;
}
.cid-tFA8cbY4qI .card-title,
.cid-tFA8cbY4qI .card-box {
  color: #ffffff;
}
.cid-tFA8cbY4qI .mbr-text,
.cid-tFA8cbY4qI .link-wrap {
  color: #ffffff;
}
.cid-tFA8ccfAFD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8ccfAFD .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8ccfAFD .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8ccfAFD .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8ccfAFD .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8ccfAFD .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8ccfAFD .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8ccfAFD .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-tFA8ccfAFD .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8ccfAFD .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8ccfAFD .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8ccfAFD .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8ccfAFD .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8ccfAFD .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8ccfAFD .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8ccfAFD .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWKLmNZKqD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uWKLmNZKqD .carousel {
  height: 800px;
}
.cid-uWKLmNZKqD .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uWKLmNZKqD .carousel-item,
.cid-uWKLmNZKqD .carousel-inner {
  height: 100%;
}
.cid-uWKLmNZKqD .carousel-caption {
  bottom: 40px;
  z-index: 1;
}
.cid-uWKLmNZKqD .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uWKLmNZKqD .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uWKLmNZKqD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uWKLmNZKqD .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uWKLmNZKqD .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uWKLmNZKqD .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uWKLmNZKqD .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uWKLmNZKqD .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWKLmNZKqD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWKLmNZKqD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWKLmNZKqD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWKLmNZKqD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uWKLmNZKqD .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWKLmNZKqD .carousel-indicators li.active,
.cid-uWKLmNZKqD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWKLmNZKqD .carousel-indicators li::after,
.cid-uWKLmNZKqD .carousel-indicators li::before {
  content: none;
}
.cid-uWKLmNZKqD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWKLmNZKqD .carousel-indicators {
    display: none !important;
  }
}
.cid-uX3qU8YZEZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3qU8YZEZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3qU8YZEZ .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-uX3qU8YZEZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3qU8YZEZ .row {
  flex-direction: row-reverse;
}
.cid-uX3qU8YZEZ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3qU8YZEZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3qU8YZEZ .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3qU8YZEZ .mbr-section-title {
  color: #fafafa;
}
.cid-tFA8dZXsup {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA8dZXsup .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8dZXsup .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8dZXsup .item {
  padding-bottom: 2rem;
}
.cid-tFA8dZXsup .item-wrapper {
  position: relative;
}
.cid-tFA8dZXsup .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8dZXsup .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8dZXsup .carousel-control,
.cid-tFA8dZXsup .close {
  background: #1b1b1b;
}
.cid-tFA8dZXsup .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8dZXsup .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8dZXsup .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8dZXsup .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8dZXsup .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8dZXsup .close::before {
  content: '\e91a';
}
.cid-tFA8dZXsup .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8dZXsup .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8dZXsup .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8dZXsup .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8dZXsup .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8dZXsup .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8dZXsup .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8dZXsup .carousel-indicators li.active,
.cid-tFA8dZXsup .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8dZXsup .carousel-indicators li::after,
.cid-tFA8dZXsup .carousel-indicators li::before {
  content: none;
}
.cid-tFA8dZXsup .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8dZXsup .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8dZXsup .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8dZXsup .carousel-indicators {
    display: none;
  }
}
.cid-tFA8dZXsup .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8dZXsup .carousel-inner > .active {
  display: block;
}
.cid-tFA8dZXsup .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8dZXsup .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8dZXsup .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8dZXsup .carousel-control,
  .cid-tFA8dZXsup .carousel-indicators,
  .cid-tFA8dZXsup .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8dZXsup .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8dZXsup .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8dZXsup .carousel-indicators .active,
.cid-tFA8dZXsup .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8dZXsup .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8dZXsup .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8dZXsup .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8dZXsup .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8dZXsup .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8dZXsup .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8dZXsup .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8dZXsup .carousel {
  width: 100%;
}
.cid-tFA8dZXsup .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8dZXsup .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8dZXsup .modal.fade .modal-dialog,
.cid-tFA8dZXsup .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8dZXsup .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8dZXsup H6 {
  text-align: center;
}
.cid-tFA8dZXsup H3 {
  color: #fafafa;
}
.cid-tFA8e11mGS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8e11mGS .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8e11mGS .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8e11mGS .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8e11mGS .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8e11mGS .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8e11mGS .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8e11mGS .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-tFA8e11mGS .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8e11mGS .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8e11mGS .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8e11mGS .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8e11mGS .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8e11mGS .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8e11mGS .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8e11mGS .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA8fMlmVr {
  background-image: url("../../../assets/images/176-three-products-screenshots-5108.jpeg");
}
.cid-tFA8fMlmVr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8fMlmVr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8fMlmVr .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA8fMlmVr .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA8fMlmVr .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA8fMlmVr .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA8fMlmVr .mbr-text,
.cid-tFA8fMlmVr .mbr-section-btn,
.cid-tFA8fMlmVr .social-row {
  color: #232323;
}
.cid-tFA8fMlmVr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tFA8fMGJEy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tFA8fMGJEy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8fMGJEy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8fMGJEy .item {
  padding-bottom: 2rem;
}
.cid-tFA8fMGJEy .item-wrapper {
  position: relative;
}
.cid-tFA8fMGJEy .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8fMGJEy .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8fMGJEy .carousel-control,
.cid-tFA8fMGJEy .close {
  background: #1b1b1b;
}
.cid-tFA8fMGJEy .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8fMGJEy .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8fMGJEy .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8fMGJEy .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8fMGJEy .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8fMGJEy .close::before {
  content: '\e91a';
}
.cid-tFA8fMGJEy .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8fMGJEy .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8fMGJEy .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8fMGJEy .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8fMGJEy .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8fMGJEy .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8fMGJEy .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8fMGJEy .carousel-indicators li.active,
.cid-tFA8fMGJEy .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8fMGJEy .carousel-indicators li::after,
.cid-tFA8fMGJEy .carousel-indicators li::before {
  content: none;
}
.cid-tFA8fMGJEy .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8fMGJEy .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8fMGJEy .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8fMGJEy .carousel-indicators {
    display: none;
  }
}
.cid-tFA8fMGJEy .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8fMGJEy .carousel-inner > .active {
  display: block;
}
.cid-tFA8fMGJEy .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8fMGJEy .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8fMGJEy .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8fMGJEy .carousel-control,
  .cid-tFA8fMGJEy .carousel-indicators,
  .cid-tFA8fMGJEy .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8fMGJEy .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8fMGJEy .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8fMGJEy .carousel-indicators .active,
.cid-tFA8fMGJEy .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8fMGJEy .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8fMGJEy .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8fMGJEy .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8fMGJEy .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8fMGJEy .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8fMGJEy .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8fMGJEy .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8fMGJEy .carousel {
  width: 100%;
}
.cid-tFA8fMGJEy .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8fMGJEy .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8fMGJEy .modal.fade .modal-dialog,
.cid-tFA8fMGJEy .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8fMGJEy .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8fMGJEy H6 {
  text-align: center;
}
.cid-tFA8fNsx6K {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/07-1920x700.jpg");
}
.cid-tFA8fNsx6K .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8fNsx6K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8fNsx6K .mbr-text,
.cid-tFA8fNsx6K .mbr-section-btn {
  color: #232323;
}
.cid-tFA8fNsx6K .card-title,
.cid-tFA8fNsx6K .card-box {
  color: #ffffff;
}
.cid-tFA8fNsx6K .mbr-text,
.cid-tFA8fNsx6K .link-wrap {
  color: #ffffff;
}
.cid-tFA8fNIi9W {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8fNIi9W .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8fNIi9W .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8fNIi9W .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8fNIi9W .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8fNIi9W .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8fNIi9W .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8fNIi9W .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-tFA8fNIi9W .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8fNIi9W .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8fNIi9W .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8fNIi9W .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8fNIi9W .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8fNIi9W .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8fNIi9W .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8fNIi9W .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWKMhTABGW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uWKMhTABGW .carousel {
  height: 800px;
}
.cid-uWKMhTABGW .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uWKMhTABGW .carousel-item,
.cid-uWKMhTABGW .carousel-inner {
  height: 100%;
}
.cid-uWKMhTABGW .carousel-caption {
  bottom: 40px;
  z-index: 1;
}
.cid-uWKMhTABGW .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uWKMhTABGW .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uWKMhTABGW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uWKMhTABGW .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uWKMhTABGW .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uWKMhTABGW .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uWKMhTABGW .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uWKMhTABGW .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWKMhTABGW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWKMhTABGW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWKMhTABGW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWKMhTABGW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uWKMhTABGW .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWKMhTABGW .carousel-indicators li.active,
.cid-uWKMhTABGW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWKMhTABGW .carousel-indicators li::after,
.cid-uWKMhTABGW .carousel-indicators li::before {
  content: none;
}
.cid-uWKMhTABGW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWKMhTABGW .carousel-indicators {
    display: none !important;
  }
}
.cid-uX3rgLYQk0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3rgLYQk0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3rgLYQk0 .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-uX3rgLYQk0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3rgLYQk0 .row {
  flex-direction: row-reverse;
}
.cid-uX3rgLYQk0 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3rgLYQk0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3rgLYQk0 .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3rgLYQk0 .mbr-section-title {
  color: #fafafa;
}
.cid-tFA8iuYb32 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA8iuYb32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8iuYb32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8iuYb32 .item {
  padding-bottom: 2rem;
}
.cid-tFA8iuYb32 .item-wrapper {
  position: relative;
}
.cid-tFA8iuYb32 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8iuYb32 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8iuYb32 .carousel-control,
.cid-tFA8iuYb32 .close {
  background: #1b1b1b;
}
.cid-tFA8iuYb32 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8iuYb32 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8iuYb32 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8iuYb32 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8iuYb32 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8iuYb32 .close::before {
  content: '\e91a';
}
.cid-tFA8iuYb32 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8iuYb32 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8iuYb32 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8iuYb32 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8iuYb32 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8iuYb32 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8iuYb32 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8iuYb32 .carousel-indicators li.active,
.cid-tFA8iuYb32 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8iuYb32 .carousel-indicators li::after,
.cid-tFA8iuYb32 .carousel-indicators li::before {
  content: none;
}
.cid-tFA8iuYb32 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8iuYb32 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8iuYb32 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8iuYb32 .carousel-indicators {
    display: none;
  }
}
.cid-tFA8iuYb32 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8iuYb32 .carousel-inner > .active {
  display: block;
}
.cid-tFA8iuYb32 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8iuYb32 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8iuYb32 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8iuYb32 .carousel-control,
  .cid-tFA8iuYb32 .carousel-indicators,
  .cid-tFA8iuYb32 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8iuYb32 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8iuYb32 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8iuYb32 .carousel-indicators .active,
.cid-tFA8iuYb32 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8iuYb32 .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8iuYb32 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8iuYb32 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8iuYb32 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8iuYb32 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8iuYb32 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8iuYb32 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8iuYb32 .carousel {
  width: 100%;
}
.cid-tFA8iuYb32 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8iuYb32 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8iuYb32 .modal.fade .modal-dialog,
.cid-tFA8iuYb32 .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8iuYb32 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8iuYb32 H6 {
  text-align: center;
}
.cid-tFA8iuYb32 H3 {
  color: #fafafa;
}
.cid-tFA8iw48KB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8iw48KB .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8iw48KB .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8iw48KB .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8iw48KB .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8iw48KB .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8iw48KB .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8iw48KB .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-tFA8iw48KB .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8iw48KB .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8iw48KB .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8iw48KB .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8iw48KB .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8iw48KB .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8iw48KB .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8iw48KB .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA8kfTUkR {
  background-image: url("../../../assets/images/183-royal-chai-screenshots-5272.jpeg");
}
.cid-tFA8kfTUkR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8kfTUkR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8kfTUkR .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA8kfTUkR .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA8kfTUkR .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA8kfTUkR .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA8kfTUkR .mbr-text,
.cid-tFA8kfTUkR .mbr-section-btn,
.cid-tFA8kfTUkR .social-row {
  color: #232323;
}
.cid-tFA8kfTUkR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3rLC5IGh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3rLC5IGh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3rLC5IGh .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-uX3rLC5IGh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3rLC5IGh .row {
  flex-direction: row-reverse;
}
.cid-uX3rLC5IGh img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3rLC5IGh .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3rLC5IGh .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3rLC5IGh .mbr-section-title {
  color: #fafafa;
}
.cid-tFA8kgdXCa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA8kgdXCa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8kgdXCa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8kgdXCa .item {
  padding-bottom: 2rem;
}
.cid-tFA8kgdXCa .item-wrapper {
  position: relative;
}
.cid-tFA8kgdXCa .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8kgdXCa .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8kgdXCa .carousel-control,
.cid-tFA8kgdXCa .close {
  background: #1b1b1b;
}
.cid-tFA8kgdXCa .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8kgdXCa .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8kgdXCa .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8kgdXCa .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8kgdXCa .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8kgdXCa .close::before {
  content: '\e91a';
}
.cid-tFA8kgdXCa .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8kgdXCa .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8kgdXCa .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8kgdXCa .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8kgdXCa .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8kgdXCa .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8kgdXCa .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8kgdXCa .carousel-indicators li.active,
.cid-tFA8kgdXCa .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8kgdXCa .carousel-indicators li::after,
.cid-tFA8kgdXCa .carousel-indicators li::before {
  content: none;
}
.cid-tFA8kgdXCa .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8kgdXCa .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8kgdXCa .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8kgdXCa .carousel-indicators {
    display: none;
  }
}
.cid-tFA8kgdXCa .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8kgdXCa .carousel-inner > .active {
  display: block;
}
.cid-tFA8kgdXCa .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8kgdXCa .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8kgdXCa .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8kgdXCa .carousel-control,
  .cid-tFA8kgdXCa .carousel-indicators,
  .cid-tFA8kgdXCa .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8kgdXCa .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8kgdXCa .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8kgdXCa .carousel-indicators .active,
.cid-tFA8kgdXCa .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8kgdXCa .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8kgdXCa .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8kgdXCa .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8kgdXCa .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8kgdXCa .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8kgdXCa .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8kgdXCa .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8kgdXCa .carousel {
  width: 100%;
}
.cid-tFA8kgdXCa .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8kgdXCa .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8kgdXCa .modal.fade .modal-dialog,
.cid-tFA8kgdXCa .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8kgdXCa .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8kgdXCa H6 {
  text-align: center;
}
.cid-tFA8kgdXCa H3 {
  color: #fafafa;
}
.cid-tFA8kh2cNZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/183-royal-chai-screenshots-5711.jpeg");
}
.cid-tFA8kh2cNZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8kh2cNZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8kh2cNZ .mbr-text,
.cid-tFA8kh2cNZ .mbr-section-btn {
  color: #232323;
}
.cid-tFA8kh2cNZ .card-title,
.cid-tFA8kh2cNZ .card-box {
  color: #ffffff;
}
.cid-tFA8kh2cNZ .mbr-text,
.cid-tFA8kh2cNZ .link-wrap {
  color: #ffffff;
}
.cid-tFA8khk0OE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8khk0OE .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8khk0OE .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8khk0OE .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8khk0OE .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8khk0OE .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8khk0OE .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8khk0OE .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-tFA8khk0OE .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8khk0OE .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8khk0OE .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8khk0OE .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8khk0OE .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8khk0OE .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8khk0OE .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8khk0OE .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA8mexd6B .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8mexd6B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/185-glove-screenshots-5982-596x335.jpeg");
}
.cid-tFA8mexd6B .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA8mexd6B .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA8mexd6B .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA8mexd6B .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA8mexd6B .mbr-text,
.cid-tFA8mexd6B .mbr-section-btn,
.cid-tFA8mexd6B .social-row {
  color: #232323;
}
.cid-tFA8mexd6B .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tFA8meRmst {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tFA8meRmst .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8meRmst .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8meRmst .item {
  padding-bottom: 2rem;
}
.cid-tFA8meRmst .item-wrapper {
  position: relative;
}
.cid-tFA8meRmst .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8meRmst .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8meRmst .carousel-control,
.cid-tFA8meRmst .close {
  background: #1b1b1b;
}
.cid-tFA8meRmst .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8meRmst .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8meRmst .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8meRmst .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8meRmst .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8meRmst .close::before {
  content: '\e91a';
}
.cid-tFA8meRmst .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8meRmst .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8meRmst .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8meRmst .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8meRmst .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8meRmst .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8meRmst .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8meRmst .carousel-indicators li.active,
.cid-tFA8meRmst .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8meRmst .carousel-indicators li::after,
.cid-tFA8meRmst .carousel-indicators li::before {
  content: none;
}
.cid-tFA8meRmst .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8meRmst .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8meRmst .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8meRmst .carousel-indicators {
    display: none;
  }
}
.cid-tFA8meRmst .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8meRmst .carousel-inner > .active {
  display: block;
}
.cid-tFA8meRmst .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8meRmst .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8meRmst .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8meRmst .carousel-control,
  .cid-tFA8meRmst .carousel-indicators,
  .cid-tFA8meRmst .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8meRmst .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8meRmst .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8meRmst .carousel-indicators .active,
.cid-tFA8meRmst .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8meRmst .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8meRmst .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8meRmst .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8meRmst .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8meRmst .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8meRmst .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8meRmst .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8meRmst .carousel {
  width: 100%;
}
.cid-tFA8meRmst .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8meRmst .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8meRmst .modal.fade .modal-dialog,
.cid-tFA8meRmst .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8meRmst .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8meRmst H6 {
  text-align: center;
}
.cid-tFA8mfEIGP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/185-glove-screenshots-5131.jpeg");
}
.cid-tFA8mfEIGP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8mfEIGP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8mfEIGP .mbr-text,
.cid-tFA8mfEIGP .mbr-section-btn {
  color: #232323;
}
.cid-tFA8mfEIGP .card-title,
.cid-tFA8mfEIGP .card-box {
  color: #ffffff;
}
.cid-tFA8mfEIGP .mbr-text,
.cid-tFA8mfEIGP .link-wrap {
  color: #ffffff;
}
.cid-tFA8mfVocB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8mfVocB .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8mfVocB .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8mfVocB .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8mfVocB .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8mfVocB .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8mfVocB .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8mfVocB .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-tFA8mfVocB .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8mfVocB .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8mfVocB .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8mfVocB .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8mfVocB .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8mfVocB .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8mfVocB .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8mfVocB .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX3sjfnsEG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3sjfnsEG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX3sjfnsEG .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX3sjfnsEG .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX3sjfnsEG .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX3sjfnsEG .mbr-section-title {
  color: #22a5e5;
}
.cid-uX3sjfnsEG .mbr-text,
.cid-uX3sjfnsEG .mbr-section-btn,
.cid-uX3sjfnsEG .social-row {
  color: #232323;
}
.cid-uX3sjfnsEG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3sdxvUem {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3sdxvUem .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3sdxvUem .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-uX3sdxvUem .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3sdxvUem .row {
  flex-direction: row-reverse;
}
.cid-uX3sdxvUem img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3sdxvUem .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3sdxvUem .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3sdxvUem .mbr-section-title {
  color: #fafafa;
}
.cid-tFA8o3f76E {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA8o3f76E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8o3f76E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8o3f76E .item {
  padding-bottom: 2rem;
}
.cid-tFA8o3f76E .item-wrapper {
  position: relative;
}
.cid-tFA8o3f76E .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8o3f76E .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8o3f76E .carousel-control,
.cid-tFA8o3f76E .close {
  background: #1b1b1b;
}
.cid-tFA8o3f76E .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8o3f76E .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8o3f76E .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8o3f76E .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8o3f76E .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8o3f76E .close::before {
  content: '\e91a';
}
.cid-tFA8o3f76E .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8o3f76E .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8o3f76E .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8o3f76E .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8o3f76E .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8o3f76E .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8o3f76E .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8o3f76E .carousel-indicators li.active,
.cid-tFA8o3f76E .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8o3f76E .carousel-indicators li::after,
.cid-tFA8o3f76E .carousel-indicators li::before {
  content: none;
}
.cid-tFA8o3f76E .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8o3f76E .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8o3f76E .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8o3f76E .carousel-indicators {
    display: none;
  }
}
.cid-tFA8o3f76E .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8o3f76E .carousel-inner > .active {
  display: block;
}
.cid-tFA8o3f76E .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8o3f76E .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8o3f76E .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8o3f76E .carousel-control,
  .cid-tFA8o3f76E .carousel-indicators,
  .cid-tFA8o3f76E .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8o3f76E .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8o3f76E .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8o3f76E .carousel-indicators .active,
.cid-tFA8o3f76E .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8o3f76E .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8o3f76E .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8o3f76E .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8o3f76E .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8o3f76E .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8o3f76E .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8o3f76E .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8o3f76E .carousel {
  width: 100%;
}
.cid-tFA8o3f76E .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8o3f76E .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8o3f76E .modal.fade .modal-dialog,
.cid-tFA8o3f76E .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8o3f76E .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8o3f76E H6 {
  text-align: center;
}
.cid-tFA8o3f76E H3 {
  color: #fafafa;
}
.cid-tFA8o41Pz6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/187-churnbaby-ice-cream-ii-screenshots-5101.jpeg");
}
.cid-tFA8o41Pz6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8o41Pz6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8o41Pz6 .mbr-text,
.cid-tFA8o41Pz6 .mbr-section-btn {
  color: #232323;
}
.cid-tFA8o41Pz6 .card-title,
.cid-tFA8o41Pz6 .card-box {
  color: #ffffff;
}
.cid-tFA8o41Pz6 .mbr-text,
.cid-tFA8o41Pz6 .link-wrap {
  color: #ffffff;
}
.cid-tFA8o4knTF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8o4knTF .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8o4knTF .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8o4knTF .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8o4knTF .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8o4knTF .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8o4knTF .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8o4knTF .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-tFA8o4knTF .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8o4knTF .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8o4knTF .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8o4knTF .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8o4knTF .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8o4knTF .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8o4knTF .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8o4knTF .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA8s0Om9K {
  background-image: url("../../../assets/images/199-jlcpcb-pov-screenshots-5159.jpeg");
}
.cid-tFA8s0Om9K .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8s0Om9K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8s0Om9K .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA8s0Om9K .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA8s0Om9K .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA8s0Om9K .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA8s0Om9K .mbr-text,
.cid-tFA8s0Om9K .mbr-section-btn,
.cid-tFA8s0Om9K .social-row {
  color: #232323;
}
.cid-tFA8s0Om9K .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3CM9zJPl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3CM9zJPl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3CM9zJPl .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-uX3CM9zJPl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3CM9zJPl .row {
  flex-direction: row-reverse;
}
.cid-uX3CM9zJPl img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3CM9zJPl .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3CM9zJPl .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3CM9zJPl .mbr-section-title {
  color: #fafafa;
}
.cid-tFA8s199gI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA8s199gI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8s199gI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8s199gI .item {
  padding-bottom: 2rem;
}
.cid-tFA8s199gI .item-wrapper {
  position: relative;
}
.cid-tFA8s199gI .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8s199gI .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8s199gI .carousel-control,
.cid-tFA8s199gI .close {
  background: #1b1b1b;
}
.cid-tFA8s199gI .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8s199gI .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8s199gI .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8s199gI .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8s199gI .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8s199gI .close::before {
  content: '\e91a';
}
.cid-tFA8s199gI .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8s199gI .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8s199gI .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8s199gI .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8s199gI .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8s199gI .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8s199gI .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8s199gI .carousel-indicators li.active,
.cid-tFA8s199gI .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8s199gI .carousel-indicators li::after,
.cid-tFA8s199gI .carousel-indicators li::before {
  content: none;
}
.cid-tFA8s199gI .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8s199gI .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8s199gI .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8s199gI .carousel-indicators {
    display: none;
  }
}
.cid-tFA8s199gI .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8s199gI .carousel-inner > .active {
  display: block;
}
.cid-tFA8s199gI .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8s199gI .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8s199gI .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8s199gI .carousel-control,
  .cid-tFA8s199gI .carousel-indicators,
  .cid-tFA8s199gI .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8s199gI .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8s199gI .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8s199gI .carousel-indicators .active,
.cid-tFA8s199gI .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8s199gI .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8s199gI .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8s199gI .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8s199gI .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8s199gI .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8s199gI .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8s199gI .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8s199gI .carousel {
  width: 100%;
}
.cid-tFA8s199gI .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8s199gI .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8s199gI .modal.fade .modal-dialog,
.cid-tFA8s199gI .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8s199gI .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8s199gI H6 {
  text-align: center;
}
.cid-tFA8s199gI H3 {
  color: #fafafa;
}
.cid-tFA8s1U3mv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/199-jlcpcb-pov-screenshots-5158.jpeg");
}
.cid-tFA8s1U3mv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8s1U3mv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8s1U3mv .mbr-text,
.cid-tFA8s1U3mv .mbr-section-btn {
  color: #232323;
}
.cid-tFA8s1U3mv .card-title,
.cid-tFA8s1U3mv .card-box {
  color: #ffffff;
}
.cid-tFA8s1U3mv .mbr-text,
.cid-tFA8s1U3mv .link-wrap {
  color: #ffffff;
}
.cid-tFA8s2drtj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8s2drtj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8s2drtj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8s2drtj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8s2drtj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8s2drtj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8s2drtj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8s2drtj .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-tFA8s2drtj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8s2drtj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8s2drtj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8s2drtj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8s2drtj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8s2drtj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8s2drtj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8s2drtj .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA8u5v2NR {
  background-image: url("../../../assets/images/200-kreative-systems-screenshots-5319.jpeg");
}
.cid-tFA8u5v2NR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8u5v2NR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8u5v2NR .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA8u5v2NR .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA8u5v2NR .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA8u5v2NR .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA8u5v2NR .mbr-text,
.cid-tFA8u5v2NR .mbr-section-btn,
.cid-tFA8u5v2NR .social-row {
  color: #232323;
}
.cid-tFA8u5v2NR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3EJp0UJG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3EJp0UJG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3EJp0UJG .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-uX3EJp0UJG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3EJp0UJG .row {
  flex-direction: row-reverse;
}
.cid-uX3EJp0UJG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3EJp0UJG .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3EJp0UJG .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3EJp0UJG .mbr-section-title {
  color: #fafafa;
}
.cid-tFA8u5PHJb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA8u5PHJb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8u5PHJb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8u5PHJb .item {
  padding-bottom: 2rem;
}
.cid-tFA8u5PHJb .item-wrapper {
  position: relative;
}
.cid-tFA8u5PHJb .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8u5PHJb .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8u5PHJb .carousel-control,
.cid-tFA8u5PHJb .close {
  background: #1b1b1b;
}
.cid-tFA8u5PHJb .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8u5PHJb .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8u5PHJb .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8u5PHJb .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8u5PHJb .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8u5PHJb .close::before {
  content: '\e91a';
}
.cid-tFA8u5PHJb .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8u5PHJb .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8u5PHJb .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8u5PHJb .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8u5PHJb .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8u5PHJb .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8u5PHJb .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8u5PHJb .carousel-indicators li.active,
.cid-tFA8u5PHJb .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8u5PHJb .carousel-indicators li::after,
.cid-tFA8u5PHJb .carousel-indicators li::before {
  content: none;
}
.cid-tFA8u5PHJb .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8u5PHJb .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8u5PHJb .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8u5PHJb .carousel-indicators {
    display: none;
  }
}
.cid-tFA8u5PHJb .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8u5PHJb .carousel-inner > .active {
  display: block;
}
.cid-tFA8u5PHJb .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8u5PHJb .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8u5PHJb .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8u5PHJb .carousel-control,
  .cid-tFA8u5PHJb .carousel-indicators,
  .cid-tFA8u5PHJb .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8u5PHJb .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8u5PHJb .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8u5PHJb .carousel-indicators .active,
.cid-tFA8u5PHJb .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8u5PHJb .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8u5PHJb .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8u5PHJb .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8u5PHJb .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8u5PHJb .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8u5PHJb .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8u5PHJb .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8u5PHJb .carousel {
  width: 100%;
}
.cid-tFA8u5PHJb .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8u5PHJb .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8u5PHJb .modal.fade .modal-dialog,
.cid-tFA8u5PHJb .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8u5PHJb .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8u5PHJb H6 {
  text-align: center;
}
.cid-tFA8u5PHJb H3 {
  color: #fafafa;
}
.cid-tFA8u6SpwZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8u6SpwZ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8u6SpwZ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8u6SpwZ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8u6SpwZ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8u6SpwZ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8u6SpwZ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8u6SpwZ .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-tFA8u6SpwZ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8u6SpwZ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8u6SpwZ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8u6SpwZ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8u6SpwZ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8u6SpwZ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8u6SpwZ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8u6SpwZ .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX4orkL0ic .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX4orkL0ic .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX4orkL0ic .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX4orkL0ic .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX4orkL0ic .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX4orkL0ic .mbr-section-title {
  color: #22a5e5;
}
.cid-uX4orkL0ic .mbr-text,
.cid-uX4orkL0ic .mbr-section-btn,
.cid-uX4orkL0ic .social-row {
  color: #232323;
}
.cid-uX4orkL0ic .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3Fccaw3K {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3Fccaw3K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3Fccaw3K .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-uX3Fccaw3K .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3Fccaw3K .row {
  flex-direction: row-reverse;
}
.cid-uX3Fccaw3K img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3Fccaw3K .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3Fccaw3K .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3Fccaw3K .mbr-section-title {
  color: #fafafa;
}
.cid-tFA8wfXX7Y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA8wfXX7Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8wfXX7Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8wfXX7Y .item {
  padding-bottom: 2rem;
}
.cid-tFA8wfXX7Y .item-wrapper {
  position: relative;
}
.cid-tFA8wfXX7Y .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8wfXX7Y .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8wfXX7Y .carousel-control,
.cid-tFA8wfXX7Y .close {
  background: #1b1b1b;
}
.cid-tFA8wfXX7Y .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8wfXX7Y .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8wfXX7Y .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8wfXX7Y .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8wfXX7Y .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8wfXX7Y .close::before {
  content: '\e91a';
}
.cid-tFA8wfXX7Y .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8wfXX7Y .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8wfXX7Y .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8wfXX7Y .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8wfXX7Y .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8wfXX7Y .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8wfXX7Y .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8wfXX7Y .carousel-indicators li.active,
.cid-tFA8wfXX7Y .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8wfXX7Y .carousel-indicators li::after,
.cid-tFA8wfXX7Y .carousel-indicators li::before {
  content: none;
}
.cid-tFA8wfXX7Y .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8wfXX7Y .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8wfXX7Y .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8wfXX7Y .carousel-indicators {
    display: none;
  }
}
.cid-tFA8wfXX7Y .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8wfXX7Y .carousel-inner > .active {
  display: block;
}
.cid-tFA8wfXX7Y .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8wfXX7Y .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8wfXX7Y .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8wfXX7Y .carousel-control,
  .cid-tFA8wfXX7Y .carousel-indicators,
  .cid-tFA8wfXX7Y .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8wfXX7Y .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8wfXX7Y .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8wfXX7Y .carousel-indicators .active,
.cid-tFA8wfXX7Y .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8wfXX7Y .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8wfXX7Y .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8wfXX7Y .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8wfXX7Y .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8wfXX7Y .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8wfXX7Y .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8wfXX7Y .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8wfXX7Y .carousel {
  width: 100%;
}
.cid-tFA8wfXX7Y .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8wfXX7Y .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8wfXX7Y .modal.fade .modal-dialog,
.cid-tFA8wfXX7Y .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8wfXX7Y .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8wfXX7Y H6 {
  text-align: center;
}
.cid-tFA8wfXX7Y H3 {
  color: #fafafa;
}
.cid-tFA8wh0RU1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8wh0RU1 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8wh0RU1 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8wh0RU1 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8wh0RU1 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8wh0RU1 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8wh0RU1 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8wh0RU1 .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-tFA8wh0RU1 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8wh0RU1 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8wh0RU1 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8wh0RU1 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8wh0RU1 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8wh0RU1 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8wh0RU1 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8wh0RU1 .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX3FMcDbaY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3FMcDbaY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX3FMcDbaY .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX3FMcDbaY .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX3FMcDbaY .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX3FMcDbaY .mbr-section-title {
  color: #22a5e5;
}
.cid-uX3FMcDbaY .mbr-text,
.cid-uX3FMcDbaY .mbr-section-btn,
.cid-uX3FMcDbaY .social-row {
  color: #232323;
}
.cid-uX3FMcDbaY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3FBrqFCK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3FBrqFCK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3FBrqFCK .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-uX3FBrqFCK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3FBrqFCK .row {
  flex-direction: row-reverse;
}
.cid-uX3FBrqFCK img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3FBrqFCK .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3FBrqFCK .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3FBrqFCK .mbr-section-title {
  color: #fafafa;
}
.cid-tFA8yeW6mH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA8yeW6mH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8yeW6mH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8yeW6mH .item {
  padding-bottom: 2rem;
}
.cid-tFA8yeW6mH .item-wrapper {
  position: relative;
}
.cid-tFA8yeW6mH .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8yeW6mH .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8yeW6mH .carousel-control,
.cid-tFA8yeW6mH .close {
  background: #1b1b1b;
}
.cid-tFA8yeW6mH .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8yeW6mH .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8yeW6mH .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8yeW6mH .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8yeW6mH .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8yeW6mH .close::before {
  content: '\e91a';
}
.cid-tFA8yeW6mH .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8yeW6mH .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8yeW6mH .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8yeW6mH .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8yeW6mH .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8yeW6mH .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8yeW6mH .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8yeW6mH .carousel-indicators li.active,
.cid-tFA8yeW6mH .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8yeW6mH .carousel-indicators li::after,
.cid-tFA8yeW6mH .carousel-indicators li::before {
  content: none;
}
.cid-tFA8yeW6mH .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8yeW6mH .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8yeW6mH .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8yeW6mH .carousel-indicators {
    display: none;
  }
}
.cid-tFA8yeW6mH .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8yeW6mH .carousel-inner > .active {
  display: block;
}
.cid-tFA8yeW6mH .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8yeW6mH .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8yeW6mH .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8yeW6mH .carousel-control,
  .cid-tFA8yeW6mH .carousel-indicators,
  .cid-tFA8yeW6mH .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8yeW6mH .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8yeW6mH .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8yeW6mH .carousel-indicators .active,
.cid-tFA8yeW6mH .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8yeW6mH .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8yeW6mH .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8yeW6mH .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8yeW6mH .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8yeW6mH .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8yeW6mH .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8yeW6mH .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8yeW6mH .carousel {
  width: 100%;
}
.cid-tFA8yeW6mH .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8yeW6mH .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8yeW6mH .modal.fade .modal-dialog,
.cid-tFA8yeW6mH .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8yeW6mH .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8yeW6mH H6 {
  text-align: center;
}
.cid-tFA8yeW6mH H3 {
  color: #fafafa;
}
.cid-tFA8yg1PVj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8yg1PVj .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8yg1PVj .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8yg1PVj .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8yg1PVj .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8yg1PVj .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8yg1PVj .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8yg1PVj .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-tFA8yg1PVj .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8yg1PVj .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8yg1PVj .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8yg1PVj .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8yg1PVj .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8yg1PVj .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8yg1PVj .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8yg1PVj .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX3GKd2oft .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3GKd2oft .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX3GKd2oft .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX3GKd2oft .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX3GKd2oft .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX3GKd2oft .mbr-section-title {
  color: #22a5e5;
}
.cid-uX3GKd2oft .mbr-text,
.cid-uX3GKd2oft .mbr-section-btn,
.cid-uX3GKd2oft .social-row {
  color: #232323;
}
.cid-uX3GKd2oft .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3GD2bqpU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3GD2bqpU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3GD2bqpU .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-uX3GD2bqpU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3GD2bqpU .row {
  flex-direction: row-reverse;
}
.cid-uX3GD2bqpU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3GD2bqpU .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3GD2bqpU .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3GD2bqpU .mbr-section-title {
  color: #fafafa;
}
.cid-tFA8AgaNjo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA8AgaNjo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8AgaNjo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8AgaNjo .item {
  padding-bottom: 2rem;
}
.cid-tFA8AgaNjo .item-wrapper {
  position: relative;
}
.cid-tFA8AgaNjo .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8AgaNjo .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8AgaNjo .carousel-control,
.cid-tFA8AgaNjo .close {
  background: #1b1b1b;
}
.cid-tFA8AgaNjo .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8AgaNjo .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8AgaNjo .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8AgaNjo .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8AgaNjo .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8AgaNjo .close::before {
  content: '\e91a';
}
.cid-tFA8AgaNjo .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8AgaNjo .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8AgaNjo .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8AgaNjo .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8AgaNjo .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8AgaNjo .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8AgaNjo .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8AgaNjo .carousel-indicators li.active,
.cid-tFA8AgaNjo .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8AgaNjo .carousel-indicators li::after,
.cid-tFA8AgaNjo .carousel-indicators li::before {
  content: none;
}
.cid-tFA8AgaNjo .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8AgaNjo .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8AgaNjo .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8AgaNjo .carousel-indicators {
    display: none;
  }
}
.cid-tFA8AgaNjo .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8AgaNjo .carousel-inner > .active {
  display: block;
}
.cid-tFA8AgaNjo .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8AgaNjo .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8AgaNjo .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8AgaNjo .carousel-control,
  .cid-tFA8AgaNjo .carousel-indicators,
  .cid-tFA8AgaNjo .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8AgaNjo .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8AgaNjo .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8AgaNjo .carousel-indicators .active,
.cid-tFA8AgaNjo .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8AgaNjo .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8AgaNjo .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8AgaNjo .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8AgaNjo .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8AgaNjo .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8AgaNjo .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8AgaNjo .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8AgaNjo .carousel {
  width: 100%;
}
.cid-tFA8AgaNjo .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8AgaNjo .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8AgaNjo .modal.fade .modal-dialog,
.cid-tFA8AgaNjo .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8AgaNjo .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8AgaNjo H6 {
  text-align: center;
}
.cid-tFA8AgaNjo H3 {
  color: #fafafa;
}
.cid-tFA8AgZNje {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/07-1920x700.jpg");
}
.cid-tFA8AgZNje .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8AgZNje .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8AgZNje .mbr-text,
.cid-tFA8AgZNje .mbr-section-btn {
  color: #232323;
}
.cid-tFA8AgZNje .card-title,
.cid-tFA8AgZNje .card-box {
  color: #ffffff;
}
.cid-tFA8AgZNje .mbr-text,
.cid-tFA8AgZNje .link-wrap {
  color: #ffffff;
}
.cid-tFA8AhgGyu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8AhgGyu .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8AhgGyu .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8AhgGyu .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8AhgGyu .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8AhgGyu .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8AhgGyu .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8AhgGyu .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-tFA8AhgGyu .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8AhgGyu .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8AhgGyu .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8AhgGyu .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8AhgGyu .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8AhgGyu .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8AhgGyu .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8AhgGyu .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA8ClfAiE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8ClfAiE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/214-jlcpcb-logo-reveal-screenshots-5560-596x335.jpeg");
}
.cid-tFA8ClfAiE .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA8ClfAiE .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA8ClfAiE .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA8ClfAiE .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA8ClfAiE .mbr-text,
.cid-tFA8ClfAiE .mbr-section-btn,
.cid-tFA8ClfAiE .social-row {
  color: #232323;
}
.cid-tFA8ClfAiE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3HDvCQSA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3HDvCQSA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3HDvCQSA .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-uX3HDvCQSA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3HDvCQSA .row {
  flex-direction: row-reverse;
}
.cid-uX3HDvCQSA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3HDvCQSA .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3HDvCQSA .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3HDvCQSA .mbr-section-title {
  color: #fafafa;
}
.cid-tFA8ClBwhf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tFA8ClBwhf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8ClBwhf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8ClBwhf .item {
  padding-bottom: 2rem;
}
.cid-tFA8ClBwhf .item-wrapper {
  position: relative;
}
.cid-tFA8ClBwhf .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8ClBwhf .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8ClBwhf .carousel-control,
.cid-tFA8ClBwhf .close {
  background: #1b1b1b;
}
.cid-tFA8ClBwhf .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8ClBwhf .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8ClBwhf .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8ClBwhf .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8ClBwhf .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8ClBwhf .close::before {
  content: '\e91a';
}
.cid-tFA8ClBwhf .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8ClBwhf .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8ClBwhf .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8ClBwhf .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8ClBwhf .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8ClBwhf .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8ClBwhf .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8ClBwhf .carousel-indicators li.active,
.cid-tFA8ClBwhf .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8ClBwhf .carousel-indicators li::after,
.cid-tFA8ClBwhf .carousel-indicators li::before {
  content: none;
}
.cid-tFA8ClBwhf .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8ClBwhf .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8ClBwhf .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8ClBwhf .carousel-indicators {
    display: none;
  }
}
.cid-tFA8ClBwhf .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8ClBwhf .carousel-inner > .active {
  display: block;
}
.cid-tFA8ClBwhf .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8ClBwhf .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8ClBwhf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8ClBwhf .carousel-control,
  .cid-tFA8ClBwhf .carousel-indicators,
  .cid-tFA8ClBwhf .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8ClBwhf .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8ClBwhf .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8ClBwhf .carousel-indicators .active,
.cid-tFA8ClBwhf .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8ClBwhf .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8ClBwhf .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8ClBwhf .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8ClBwhf .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8ClBwhf .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8ClBwhf .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8ClBwhf .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8ClBwhf .carousel {
  width: 100%;
}
.cid-tFA8ClBwhf .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8ClBwhf .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8ClBwhf .modal.fade .modal-dialog,
.cid-tFA8ClBwhf .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8ClBwhf .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8ClBwhf H6 {
  text-align: center;
}
.cid-tFA8CmoVUO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/214-jlcpcb-logo-reveal-screenshots-5029.jpeg");
}
.cid-tFA8CmoVUO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8CmoVUO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8CmoVUO .mbr-text,
.cid-tFA8CmoVUO .mbr-section-btn {
  color: #232323;
}
.cid-tFA8CmoVUO .card-title,
.cid-tFA8CmoVUO .card-box {
  color: #ffffff;
}
.cid-tFA8CmoVUO .mbr-text,
.cid-tFA8CmoVUO .link-wrap {
  color: #ffffff;
}
.cid-tFA8CmE8o0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8CmE8o0 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8CmE8o0 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8CmE8o0 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8CmE8o0 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8CmE8o0 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8CmE8o0 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8CmE8o0 .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-tFA8CmE8o0 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8CmE8o0 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8CmE8o0 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8CmE8o0 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8CmE8o0 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8CmE8o0 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8CmE8o0 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8CmE8o0 .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX3Ixo52to .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3Ixo52to .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX3Ixo52to .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX3Ixo52to .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX3Ixo52to .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX3Ixo52to .mbr-section-title {
  color: #22a5e5;
}
.cid-uX3Ixo52to .mbr-text,
.cid-uX3Ixo52to .mbr-section-btn,
.cid-uX3Ixo52to .social-row {
  color: #232323;
}
.cid-uX3Ixo52to .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX4fDDVGhd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uX4fDDVGhd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX4fDDVGhd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX4fDDVGhd .row {
  flex-direction: row-reverse;
}
.cid-uX4fDDVGhd .video-wrapper iframe {
  width: 100%;
}
.cid-uX4fDDVGhd .mbr-section-title,
.cid-uX4fDDVGhd .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uX4fDDVGhd .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX4fDDVGhd .mbr-section-subtitle {
  color: #ff9966;
}
.cid-uX4fDDVGhd .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX4fDDVGhd .mbr-section-title {
  color: #ffe161;
}
.cid-tFA8EBPZFg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA8EBPZFg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8EBPZFg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8EBPZFg .item {
  padding-bottom: 2rem;
}
.cid-tFA8EBPZFg .item-wrapper {
  position: relative;
}
.cid-tFA8EBPZFg .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8EBPZFg .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8EBPZFg .carousel-control,
.cid-tFA8EBPZFg .close {
  background: #1b1b1b;
}
.cid-tFA8EBPZFg .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8EBPZFg .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8EBPZFg .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8EBPZFg .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8EBPZFg .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8EBPZFg .close::before {
  content: '\e91a';
}
.cid-tFA8EBPZFg .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8EBPZFg .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8EBPZFg .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8EBPZFg .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8EBPZFg .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8EBPZFg .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8EBPZFg .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8EBPZFg .carousel-indicators li.active,
.cid-tFA8EBPZFg .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8EBPZFg .carousel-indicators li::after,
.cid-tFA8EBPZFg .carousel-indicators li::before {
  content: none;
}
.cid-tFA8EBPZFg .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8EBPZFg .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8EBPZFg .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8EBPZFg .carousel-indicators {
    display: none;
  }
}
.cid-tFA8EBPZFg .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8EBPZFg .carousel-inner > .active {
  display: block;
}
.cid-tFA8EBPZFg .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8EBPZFg .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8EBPZFg .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8EBPZFg .carousel-control,
  .cid-tFA8EBPZFg .carousel-indicators,
  .cid-tFA8EBPZFg .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8EBPZFg .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8EBPZFg .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8EBPZFg .carousel-indicators .active,
.cid-tFA8EBPZFg .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8EBPZFg .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8EBPZFg .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8EBPZFg .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8EBPZFg .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8EBPZFg .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8EBPZFg .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8EBPZFg .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8EBPZFg .carousel {
  width: 100%;
}
.cid-tFA8EBPZFg .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8EBPZFg .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8EBPZFg .modal.fade .modal-dialog,
.cid-tFA8EBPZFg .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8EBPZFg .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8EBPZFg H6 {
  text-align: center;
}
.cid-tFA8EBPZFg H3 {
  color: #fafafa;
}
.cid-tFA8ECRmJ9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8ECRmJ9 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8ECRmJ9 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8ECRmJ9 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8ECRmJ9 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8ECRmJ9 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8ECRmJ9 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8ECRmJ9 .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-tFA8ECRmJ9 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8ECRmJ9 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8ECRmJ9 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8ECRmJ9 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8ECRmJ9 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8ECRmJ9 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8ECRmJ9 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8ECRmJ9 .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX4qGrU4sN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX4qGrU4sN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX4qGrU4sN .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX4qGrU4sN .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX4qGrU4sN .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX4qGrU4sN .mbr-section-title {
  color: #22a5e5;
}
.cid-uX4qGrU4sN .mbr-text,
.cid-uX4qGrU4sN .mbr-section-btn,
.cid-uX4qGrU4sN .social-row {
  color: #232323;
}
.cid-uX4qGrU4sN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3J8P9xIk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3J8P9xIk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3J8P9xIk .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-uX3J8P9xIk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3J8P9xIk .row {
  flex-direction: row-reverse;
}
.cid-uX3J8P9xIk img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3J8P9xIk .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3J8P9xIk .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3J8P9xIk .mbr-section-title {
  color: #fafafa;
}
.cid-tFA8H1pguj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA8H1pguj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8H1pguj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8H1pguj .item {
  padding-bottom: 2rem;
}
.cid-tFA8H1pguj .item-wrapper {
  position: relative;
}
.cid-tFA8H1pguj .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8H1pguj .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8H1pguj .carousel-control,
.cid-tFA8H1pguj .close {
  background: #1b1b1b;
}
.cid-tFA8H1pguj .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8H1pguj .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8H1pguj .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8H1pguj .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8H1pguj .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8H1pguj .close::before {
  content: '\e91a';
}
.cid-tFA8H1pguj .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8H1pguj .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8H1pguj .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8H1pguj .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8H1pguj .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8H1pguj .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8H1pguj .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8H1pguj .carousel-indicators li.active,
.cid-tFA8H1pguj .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8H1pguj .carousel-indicators li::after,
.cid-tFA8H1pguj .carousel-indicators li::before {
  content: none;
}
.cid-tFA8H1pguj .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8H1pguj .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8H1pguj .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8H1pguj .carousel-indicators {
    display: none;
  }
}
.cid-tFA8H1pguj .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8H1pguj .carousel-inner > .active {
  display: block;
}
.cid-tFA8H1pguj .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8H1pguj .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8H1pguj .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8H1pguj .carousel-control,
  .cid-tFA8H1pguj .carousel-indicators,
  .cid-tFA8H1pguj .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8H1pguj .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8H1pguj .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8H1pguj .carousel-indicators .active,
.cid-tFA8H1pguj .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8H1pguj .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8H1pguj .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8H1pguj .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8H1pguj .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8H1pguj .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8H1pguj .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8H1pguj .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8H1pguj .carousel {
  width: 100%;
}
.cid-tFA8H1pguj .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8H1pguj .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8H1pguj .modal.fade .modal-dialog,
.cid-tFA8H1pguj .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8H1pguj .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8H1pguj H6 {
  text-align: center;
}
.cid-tFA8H1pguj H3 {
  color: #fafafa;
}
.cid-tFA8H2u8Sn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8H2u8Sn .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8H2u8Sn .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8H2u8Sn .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8H2u8Sn .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8H2u8Sn .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8H2u8Sn .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8H2u8Sn .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-tFA8H2u8Sn .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8H2u8Sn .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8H2u8Sn .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8H2u8Sn .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8H2u8Sn .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8H2u8Sn .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8H2u8Sn .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8H2u8Sn .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA8JQRePK {
  background-image: url("../../../assets/images/218-garlic-screenshots-5020.jpg");
}
.cid-tFA8JQRePK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8JQRePK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8JQRePK .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA8JQRePK .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA8JQRePK .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA8JQRePK .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA8JQRePK .mbr-text,
.cid-tFA8JQRePK .mbr-section-btn,
.cid-tFA8JQRePK .social-row {
  color: #232323;
}
.cid-tFA8JQRePK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tFA8JRdPxn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tFA8JRdPxn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8JRdPxn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8JRdPxn .item {
  padding-bottom: 2rem;
}
.cid-tFA8JRdPxn .item-wrapper {
  position: relative;
}
.cid-tFA8JRdPxn .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8JRdPxn .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8JRdPxn .carousel-control,
.cid-tFA8JRdPxn .close {
  background: #1b1b1b;
}
.cid-tFA8JRdPxn .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8JRdPxn .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8JRdPxn .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8JRdPxn .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8JRdPxn .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8JRdPxn .close::before {
  content: '\e91a';
}
.cid-tFA8JRdPxn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8JRdPxn .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8JRdPxn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8JRdPxn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8JRdPxn .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8JRdPxn .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8JRdPxn .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8JRdPxn .carousel-indicators li.active,
.cid-tFA8JRdPxn .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8JRdPxn .carousel-indicators li::after,
.cid-tFA8JRdPxn .carousel-indicators li::before {
  content: none;
}
.cid-tFA8JRdPxn .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8JRdPxn .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8JRdPxn .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8JRdPxn .carousel-indicators {
    display: none;
  }
}
.cid-tFA8JRdPxn .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8JRdPxn .carousel-inner > .active {
  display: block;
}
.cid-tFA8JRdPxn .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8JRdPxn .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8JRdPxn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8JRdPxn .carousel-control,
  .cid-tFA8JRdPxn .carousel-indicators,
  .cid-tFA8JRdPxn .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8JRdPxn .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8JRdPxn .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8JRdPxn .carousel-indicators .active,
.cid-tFA8JRdPxn .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8JRdPxn .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8JRdPxn .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8JRdPxn .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8JRdPxn .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8JRdPxn .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8JRdPxn .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8JRdPxn .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8JRdPxn .carousel {
  width: 100%;
}
.cid-tFA8JRdPxn .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8JRdPxn .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8JRdPxn .modal.fade .modal-dialog,
.cid-tFA8JRdPxn .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8JRdPxn .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8JRdPxn H6 {
  text-align: center;
}
.cid-tFA8JRY13s {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/07-1920x700.jpg");
}
.cid-tFA8JRY13s .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8JRY13s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8JRY13s .mbr-text,
.cid-tFA8JRY13s .mbr-section-btn {
  color: #232323;
}
.cid-tFA8JRY13s .card-title,
.cid-tFA8JRY13s .card-box {
  color: #ffffff;
}
.cid-tFA8JRY13s .mbr-text,
.cid-tFA8JRY13s .link-wrap {
  color: #ffffff;
}
.cid-tFA8JSkrH4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8JSkrH4 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8JSkrH4 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8JSkrH4 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8JSkrH4 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8JSkrH4 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8JSkrH4 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8JSkrH4 .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-tFA8JSkrH4 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8JSkrH4 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8JSkrH4 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8JSkrH4 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8JSkrH4 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8JSkrH4 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8JSkrH4 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8JSkrH4 .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX3JsMyefh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3JsMyefh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX3JsMyefh .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX3JsMyefh .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX3JsMyefh .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX3JsMyefh .mbr-section-title {
  color: #22a5e5;
}
.cid-uX3JsMyefh .mbr-text,
.cid-uX3JsMyefh .mbr-section-btn,
.cid-uX3JsMyefh .social-row {
  color: #232323;
}
.cid-uX3JsMyefh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3JqxtB4g {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3JqxtB4g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3JqxtB4g .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-uX3JqxtB4g .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3JqxtB4g .row {
  flex-direction: row-reverse;
}
.cid-uX3JqxtB4g img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3JqxtB4g .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3JqxtB4g .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3JqxtB4g .mbr-section-title {
  color: #fafafa;
}
.cid-tFA8M9F4IZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA8M9F4IZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8M9F4IZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8M9F4IZ .item {
  padding-bottom: 2rem;
}
.cid-tFA8M9F4IZ .item-wrapper {
  position: relative;
}
.cid-tFA8M9F4IZ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8M9F4IZ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8M9F4IZ .carousel-control,
.cid-tFA8M9F4IZ .close {
  background: #1b1b1b;
}
.cid-tFA8M9F4IZ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8M9F4IZ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8M9F4IZ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8M9F4IZ .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8M9F4IZ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8M9F4IZ .close::before {
  content: '\e91a';
}
.cid-tFA8M9F4IZ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8M9F4IZ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8M9F4IZ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8M9F4IZ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8M9F4IZ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8M9F4IZ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8M9F4IZ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8M9F4IZ .carousel-indicators li.active,
.cid-tFA8M9F4IZ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8M9F4IZ .carousel-indicators li::after,
.cid-tFA8M9F4IZ .carousel-indicators li::before {
  content: none;
}
.cid-tFA8M9F4IZ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8M9F4IZ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8M9F4IZ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8M9F4IZ .carousel-indicators {
    display: none;
  }
}
.cid-tFA8M9F4IZ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8M9F4IZ .carousel-inner > .active {
  display: block;
}
.cid-tFA8M9F4IZ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8M9F4IZ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8M9F4IZ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8M9F4IZ .carousel-control,
  .cid-tFA8M9F4IZ .carousel-indicators,
  .cid-tFA8M9F4IZ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8M9F4IZ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8M9F4IZ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8M9F4IZ .carousel-indicators .active,
.cid-tFA8M9F4IZ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8M9F4IZ .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8M9F4IZ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8M9F4IZ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8M9F4IZ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8M9F4IZ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8M9F4IZ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8M9F4IZ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8M9F4IZ .carousel {
  width: 100%;
}
.cid-tFA8M9F4IZ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8M9F4IZ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8M9F4IZ .modal.fade .modal-dialog,
.cid-tFA8M9F4IZ .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8M9F4IZ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8M9F4IZ H6 {
  text-align: center;
}
.cid-tFA8M9F4IZ H3 {
  color: #fafafa;
}
.cid-tFA8MaLCoE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8MaLCoE .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8MaLCoE .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8MaLCoE .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8MaLCoE .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8MaLCoE .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8MaLCoE .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8MaLCoE .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-tFA8MaLCoE .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8MaLCoE .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8MaLCoE .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8MaLCoE .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8MaLCoE .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8MaLCoE .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8MaLCoE .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8MaLCoE .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA8OmOrGe {
  background-image: url("../../../assets/images/221-staransun-screenshots-5730.jpg");
}
.cid-tFA8OmOrGe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8OmOrGe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8OmOrGe .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA8OmOrGe .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA8OmOrGe .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA8OmOrGe .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA8OmOrGe .mbr-text,
.cid-tFA8OmOrGe .mbr-section-btn,
.cid-tFA8OmOrGe .social-row {
  color: #232323;
}
.cid-tFA8OmOrGe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3JPgYGs2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3JPgYGs2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3JPgYGs2 .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-uX3JPgYGs2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3JPgYGs2 .row {
  flex-direction: row-reverse;
}
.cid-uX3JPgYGs2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3JPgYGs2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3JPgYGs2 .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3JPgYGs2 .mbr-section-title {
  color: #fafafa;
}
.cid-tFA8On9e0F {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA8On9e0F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8On9e0F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8On9e0F .item {
  padding-bottom: 2rem;
}
.cid-tFA8On9e0F .item-wrapper {
  position: relative;
}
.cid-tFA8On9e0F .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8On9e0F .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8On9e0F .carousel-control,
.cid-tFA8On9e0F .close {
  background: #1b1b1b;
}
.cid-tFA8On9e0F .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8On9e0F .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8On9e0F .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8On9e0F .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8On9e0F .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8On9e0F .close::before {
  content: '\e91a';
}
.cid-tFA8On9e0F .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8On9e0F .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8On9e0F .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8On9e0F .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8On9e0F .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8On9e0F .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8On9e0F .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8On9e0F .carousel-indicators li.active,
.cid-tFA8On9e0F .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8On9e0F .carousel-indicators li::after,
.cid-tFA8On9e0F .carousel-indicators li::before {
  content: none;
}
.cid-tFA8On9e0F .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8On9e0F .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8On9e0F .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8On9e0F .carousel-indicators {
    display: none;
  }
}
.cid-tFA8On9e0F .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8On9e0F .carousel-inner > .active {
  display: block;
}
.cid-tFA8On9e0F .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8On9e0F .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8On9e0F .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8On9e0F .carousel-control,
  .cid-tFA8On9e0F .carousel-indicators,
  .cid-tFA8On9e0F .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8On9e0F .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8On9e0F .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8On9e0F .carousel-indicators .active,
.cid-tFA8On9e0F .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8On9e0F .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8On9e0F .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8On9e0F .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8On9e0F .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8On9e0F .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8On9e0F .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8On9e0F .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8On9e0F .carousel {
  width: 100%;
}
.cid-tFA8On9e0F .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8On9e0F .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8On9e0F .modal.fade .modal-dialog,
.cid-tFA8On9e0F .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8On9e0F .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8On9e0F H6 {
  text-align: center;
}
.cid-tFA8On9e0F H3 {
  color: #fafafa;
}
.cid-tFA8OnUSGm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/221-staransun-screenshots-5292.jpeg");
}
.cid-tFA8OnUSGm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8OnUSGm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8OnUSGm .mbr-text,
.cid-tFA8OnUSGm .mbr-section-btn {
  color: #232323;
}
.cid-tFA8OnUSGm .card-title,
.cid-tFA8OnUSGm .card-box {
  color: #ffffff;
}
.cid-tFA8OnUSGm .mbr-text,
.cid-tFA8OnUSGm .link-wrap {
  color: #ffffff;
}
.cid-tFA8OoeqON {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8OoeqON .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8OoeqON .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8OoeqON .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8OoeqON .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8OoeqON .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8OoeqON .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8OoeqON .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-tFA8OoeqON .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8OoeqON .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8OoeqON .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8OoeqON .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8OoeqON .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8OoeqON .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8OoeqON .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8OoeqON .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA8QOnx5N {
  background-image: url("../../../assets/images/228-prime-screen-shots-5411.jpg");
}
.cid-tFA8QOnx5N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8QOnx5N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8QOnx5N .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA8QOnx5N .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA8QOnx5N .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA8QOnx5N .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA8QOnx5N .mbr-text,
.cid-tFA8QOnx5N .mbr-section-btn,
.cid-tFA8QOnx5N .social-row {
  color: #232323;
}
.cid-tFA8QOnx5N .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3KM5BsVH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3KM5BsVH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3KM5BsVH .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-uX3KM5BsVH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3KM5BsVH .row {
  flex-direction: row-reverse;
}
.cid-uX3KM5BsVH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3KM5BsVH .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3KM5BsVH .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3KM5BsVH .mbr-section-title {
  color: #fafafa;
}
.cid-tFA8QOIH8T {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA8QOIH8T .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8QOIH8T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8QOIH8T .item {
  padding-bottom: 2rem;
}
.cid-tFA8QOIH8T .item-wrapper {
  position: relative;
}
.cid-tFA8QOIH8T .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8QOIH8T .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8QOIH8T .carousel-control,
.cid-tFA8QOIH8T .close {
  background: #1b1b1b;
}
.cid-tFA8QOIH8T .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8QOIH8T .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8QOIH8T .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8QOIH8T .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8QOIH8T .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8QOIH8T .close::before {
  content: '\e91a';
}
.cid-tFA8QOIH8T .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8QOIH8T .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8QOIH8T .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8QOIH8T .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8QOIH8T .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8QOIH8T .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8QOIH8T .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8QOIH8T .carousel-indicators li.active,
.cid-tFA8QOIH8T .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8QOIH8T .carousel-indicators li::after,
.cid-tFA8QOIH8T .carousel-indicators li::before {
  content: none;
}
.cid-tFA8QOIH8T .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8QOIH8T .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8QOIH8T .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8QOIH8T .carousel-indicators {
    display: none;
  }
}
.cid-tFA8QOIH8T .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8QOIH8T .carousel-inner > .active {
  display: block;
}
.cid-tFA8QOIH8T .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8QOIH8T .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8QOIH8T .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8QOIH8T .carousel-control,
  .cid-tFA8QOIH8T .carousel-indicators,
  .cid-tFA8QOIH8T .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8QOIH8T .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8QOIH8T .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8QOIH8T .carousel-indicators .active,
.cid-tFA8QOIH8T .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8QOIH8T .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8QOIH8T .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8QOIH8T .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8QOIH8T .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8QOIH8T .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8QOIH8T .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8QOIH8T .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8QOIH8T .carousel {
  width: 100%;
}
.cid-tFA8QOIH8T .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8QOIH8T .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8QOIH8T .modal.fade .modal-dialog,
.cid-tFA8QOIH8T .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8QOIH8T .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8QOIH8T H6 {
  text-align: center;
}
.cid-tFA8QOIH8T H3 {
  color: #fafafa;
}
.cid-tFA8QPN1Vb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8QPN1Vb .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8QPN1Vb .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8QPN1Vb .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8QPN1Vb .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8QPN1Vb .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8QPN1Vb .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8QPN1Vb .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-tFA8QPN1Vb .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8QPN1Vb .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8QPN1Vb .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8QPN1Vb .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8QPN1Vb .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8QPN1Vb .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8QPN1Vb .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8QPN1Vb .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWQLxg5aDB {
  background-image: url("../../../assets/images/spsp.jpg");
}
.cid-uWQLxg5aDB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQLxg5aDB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWQLxg5aDB .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uWQLxg5aDB .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uWQLxg5aDB .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uWQLxg5aDB .mbr-section-title {
  color: #22a5e5;
}
.cid-uWQLxg5aDB .mbr-text,
.cid-uWQLxg5aDB .mbr-section-btn,
.cid-uWQLxg5aDB .social-row {
  color: #232323;
}
.cid-uWQLxg5aDB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uWQJMe4rPm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uWQJMe4rPm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQJMe4rPm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWQJMe4rPm .row {
  flex-direction: row-reverse;
}
.cid-uWQJMe4rPm .video-wrapper iframe {
  width: 100%;
}
.cid-uWQJMe4rPm .mbr-section-title,
.cid-uWQJMe4rPm .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uWQJMe4rPm .text-wrapper {
    padding: 2rem;
  }
}
.cid-uWQJMe4rPm .mbr-section-subtitle {
  color: #ff9966;
}
.cid-uWQJMe4rPm .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uWQJMe4rPm .mbr-section-title {
  color: #ffe161;
}
.cid-tFA8Ug2sKG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA8Ug2sKG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8Ug2sKG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8Ug2sKG .item {
  padding-bottom: 2rem;
}
.cid-tFA8Ug2sKG .item-wrapper {
  position: relative;
}
.cid-tFA8Ug2sKG .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8Ug2sKG .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8Ug2sKG .carousel-control,
.cid-tFA8Ug2sKG .close {
  background: #1b1b1b;
}
.cid-tFA8Ug2sKG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8Ug2sKG .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8Ug2sKG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8Ug2sKG .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8Ug2sKG .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8Ug2sKG .close::before {
  content: '\e91a';
}
.cid-tFA8Ug2sKG .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8Ug2sKG .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8Ug2sKG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8Ug2sKG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8Ug2sKG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8Ug2sKG .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8Ug2sKG .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8Ug2sKG .carousel-indicators li.active,
.cid-tFA8Ug2sKG .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8Ug2sKG .carousel-indicators li::after,
.cid-tFA8Ug2sKG .carousel-indicators li::before {
  content: none;
}
.cid-tFA8Ug2sKG .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8Ug2sKG .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8Ug2sKG .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8Ug2sKG .carousel-indicators {
    display: none;
  }
}
.cid-tFA8Ug2sKG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8Ug2sKG .carousel-inner > .active {
  display: block;
}
.cid-tFA8Ug2sKG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8Ug2sKG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8Ug2sKG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8Ug2sKG .carousel-control,
  .cid-tFA8Ug2sKG .carousel-indicators,
  .cid-tFA8Ug2sKG .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8Ug2sKG .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8Ug2sKG .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8Ug2sKG .carousel-indicators .active,
.cid-tFA8Ug2sKG .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8Ug2sKG .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8Ug2sKG .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8Ug2sKG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8Ug2sKG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8Ug2sKG .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8Ug2sKG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8Ug2sKG .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8Ug2sKG .carousel {
  width: 100%;
}
.cid-tFA8Ug2sKG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8Ug2sKG .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8Ug2sKG .modal.fade .modal-dialog,
.cid-tFA8Ug2sKG .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8Ug2sKG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8Ug2sKG H6 {
  text-align: center;
}
.cid-tFA8Ug2sKG H3 {
  color: #fafafa;
}
.cid-tFA8Uh7Y78 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8Uh7Y78 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8Uh7Y78 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8Uh7Y78 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8Uh7Y78 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8Uh7Y78 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8Uh7Y78 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8Uh7Y78 .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-tFA8Uh7Y78 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8Uh7Y78 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8Uh7Y78 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8Uh7Y78 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8Uh7Y78 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8Uh7Y78 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8Uh7Y78 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8Uh7Y78 .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX3XNfFnit .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3XNfFnit .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX3XNfFnit .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX3XNfFnit .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX3XNfFnit .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX3XNfFnit .mbr-section-title {
  color: #22a5e5;
}
.cid-uX3XNfFnit .mbr-text,
.cid-uX3XNfFnit .mbr-section-btn,
.cid-uX3XNfFnit .social-row {
  color: #232323;
}
.cid-uX3XNfFnit .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3XNrBn5y {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3XNrBn5y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3XNrBn5y .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-uX3XNrBn5y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3XNrBn5y .row {
  flex-direction: row-reverse;
}
.cid-uX3XNrBn5y img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3XNrBn5y .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3XNrBn5y .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3XNrBn5y .mbr-section-title {
  color: #fafafa;
}
.cid-tFA8YRtZny {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA8YRtZny .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA8YRtZny .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA8YRtZny .item {
  padding-bottom: 2rem;
}
.cid-tFA8YRtZny .item-wrapper {
  position: relative;
}
.cid-tFA8YRtZny .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA8YRtZny .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA8YRtZny .carousel-control,
.cid-tFA8YRtZny .close {
  background: #1b1b1b;
}
.cid-tFA8YRtZny .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA8YRtZny .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA8YRtZny .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA8YRtZny .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA8YRtZny .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA8YRtZny .close::before {
  content: '\e91a';
}
.cid-tFA8YRtZny .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA8YRtZny .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA8YRtZny .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8YRtZny .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA8YRtZny .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA8YRtZny .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA8YRtZny .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA8YRtZny .carousel-indicators li.active,
.cid-tFA8YRtZny .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA8YRtZny .carousel-indicators li::after,
.cid-tFA8YRtZny .carousel-indicators li::before {
  content: none;
}
.cid-tFA8YRtZny .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA8YRtZny .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA8YRtZny .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA8YRtZny .carousel-indicators {
    display: none;
  }
}
.cid-tFA8YRtZny .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA8YRtZny .carousel-inner > .active {
  display: block;
}
.cid-tFA8YRtZny .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA8YRtZny .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA8YRtZny .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA8YRtZny .carousel-control,
  .cid-tFA8YRtZny .carousel-indicators,
  .cid-tFA8YRtZny .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA8YRtZny .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA8YRtZny .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA8YRtZny .carousel-indicators .active,
.cid-tFA8YRtZny .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA8YRtZny .carousel-indicators .active {
  background: #fff;
}
.cid-tFA8YRtZny .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA8YRtZny .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA8YRtZny .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA8YRtZny .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA8YRtZny .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA8YRtZny .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA8YRtZny .carousel {
  width: 100%;
}
.cid-tFA8YRtZny .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA8YRtZny .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA8YRtZny .modal.fade .modal-dialog,
.cid-tFA8YRtZny .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA8YRtZny .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA8YRtZny H6 {
  text-align: center;
}
.cid-tFA8YRtZny H3 {
  color: #fafafa;
}
.cid-tFA8YSvk9f {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA8YSvk9f .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA8YSvk9f .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA8YSvk9f .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA8YSvk9f .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA8YSvk9f .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA8YSvk9f .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA8YSvk9f .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-tFA8YSvk9f .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA8YSvk9f .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA8YSvk9f .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA8YSvk9f .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA8YSvk9f .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA8YSvk9f .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA8YSvk9f .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA8YSvk9f .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA929AH8I {
  background-image: url("../../../assets/images/240-engo-ii-screenshots-5202.jpg");
}
.cid-tFA929AH8I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA929AH8I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA929AH8I .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA929AH8I .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA929AH8I .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA929AH8I .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA929AH8I .mbr-text,
.cid-tFA929AH8I .mbr-section-btn,
.cid-tFA929AH8I .social-row {
  color: #232323;
}
.cid-tFA929AH8I .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tFA92afVgo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tFA92afVgo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA92afVgo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA92afVgo .item {
  padding-bottom: 2rem;
}
.cid-tFA92afVgo .item-wrapper {
  position: relative;
}
.cid-tFA92afVgo .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA92afVgo .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA92afVgo .carousel-control,
.cid-tFA92afVgo .close {
  background: #1b1b1b;
}
.cid-tFA92afVgo .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA92afVgo .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA92afVgo .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA92afVgo .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA92afVgo .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA92afVgo .close::before {
  content: '\e91a';
}
.cid-tFA92afVgo .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA92afVgo .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA92afVgo .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA92afVgo .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA92afVgo .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA92afVgo .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA92afVgo .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA92afVgo .carousel-indicators li.active,
.cid-tFA92afVgo .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA92afVgo .carousel-indicators li::after,
.cid-tFA92afVgo .carousel-indicators li::before {
  content: none;
}
.cid-tFA92afVgo .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA92afVgo .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA92afVgo .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA92afVgo .carousel-indicators {
    display: none;
  }
}
.cid-tFA92afVgo .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA92afVgo .carousel-inner > .active {
  display: block;
}
.cid-tFA92afVgo .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA92afVgo .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA92afVgo .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA92afVgo .carousel-control,
  .cid-tFA92afVgo .carousel-indicators,
  .cid-tFA92afVgo .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA92afVgo .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA92afVgo .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA92afVgo .carousel-indicators .active,
.cid-tFA92afVgo .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA92afVgo .carousel-indicators .active {
  background: #fff;
}
.cid-tFA92afVgo .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA92afVgo .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA92afVgo .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA92afVgo .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA92afVgo .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA92afVgo .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA92afVgo .carousel {
  width: 100%;
}
.cid-tFA92afVgo .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA92afVgo .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA92afVgo .modal.fade .modal-dialog,
.cid-tFA92afVgo .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA92afVgo .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA92afVgo H6 {
  text-align: center;
}
.cid-tFA92c7UrP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/240-engo-ii-screenshots-5202.jpeg");
}
.cid-tFA92c7UrP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA92c7UrP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA92c7UrP .mbr-text,
.cid-tFA92c7UrP .mbr-section-btn {
  color: #232323;
}
.cid-tFA92c7UrP .card-title,
.cid-tFA92c7UrP .card-box {
  color: #ffffff;
}
.cid-tFA92c7UrP .mbr-text,
.cid-tFA92c7UrP .link-wrap {
  color: #ffffff;
}
.cid-tFA92creOy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA92creOy .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA92creOy .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA92creOy .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA92creOy .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA92creOy .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA92creOy .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA92creOy .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-tFA92creOy .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA92creOy .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA92creOy .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA92creOy .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA92creOy .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA92creOy .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA92creOy .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA92creOy .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX3YEpF4Cz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3YEpF4Cz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX3YEpF4Cz .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX3YEpF4Cz .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX3YEpF4Cz .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX3YEpF4Cz .mbr-section-title {
  color: #22a5e5;
}
.cid-uX3YEpF4Cz .mbr-text,
.cid-uX3YEpF4Cz .mbr-section-btn,
.cid-uX3YEpF4Cz .social-row {
  color: #232323;
}
.cid-uX3YEpF4Cz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3YEgzz5g {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3YEgzz5g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3YEgzz5g .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-uX3YEgzz5g .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3YEgzz5g .row {
  flex-direction: row-reverse;
}
.cid-uX3YEgzz5g img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3YEgzz5g .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3YEgzz5g .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3YEgzz5g .mbr-section-title {
  color: #fafafa;
}
.cid-tFA94IT3Iu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA94IT3Iu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA94IT3Iu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA94IT3Iu .item {
  padding-bottom: 2rem;
}
.cid-tFA94IT3Iu .item-wrapper {
  position: relative;
}
.cid-tFA94IT3Iu .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA94IT3Iu .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA94IT3Iu .carousel-control,
.cid-tFA94IT3Iu .close {
  background: #1b1b1b;
}
.cid-tFA94IT3Iu .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA94IT3Iu .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA94IT3Iu .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA94IT3Iu .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA94IT3Iu .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA94IT3Iu .close::before {
  content: '\e91a';
}
.cid-tFA94IT3Iu .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA94IT3Iu .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA94IT3Iu .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA94IT3Iu .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA94IT3Iu .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA94IT3Iu .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA94IT3Iu .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA94IT3Iu .carousel-indicators li.active,
.cid-tFA94IT3Iu .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA94IT3Iu .carousel-indicators li::after,
.cid-tFA94IT3Iu .carousel-indicators li::before {
  content: none;
}
.cid-tFA94IT3Iu .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA94IT3Iu .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA94IT3Iu .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA94IT3Iu .carousel-indicators {
    display: none;
  }
}
.cid-tFA94IT3Iu .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA94IT3Iu .carousel-inner > .active {
  display: block;
}
.cid-tFA94IT3Iu .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA94IT3Iu .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA94IT3Iu .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA94IT3Iu .carousel-control,
  .cid-tFA94IT3Iu .carousel-indicators,
  .cid-tFA94IT3Iu .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA94IT3Iu .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA94IT3Iu .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA94IT3Iu .carousel-indicators .active,
.cid-tFA94IT3Iu .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA94IT3Iu .carousel-indicators .active {
  background: #fff;
}
.cid-tFA94IT3Iu .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA94IT3Iu .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA94IT3Iu .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA94IT3Iu .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA94IT3Iu .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA94IT3Iu .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA94IT3Iu .carousel {
  width: 100%;
}
.cid-tFA94IT3Iu .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA94IT3Iu .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA94IT3Iu .modal.fade .modal-dialog,
.cid-tFA94IT3Iu .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA94IT3Iu .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA94IT3Iu H6 {
  text-align: center;
}
.cid-tFA94IT3Iu H3 {
  color: #fafafa;
}
.cid-tFA94JHVJh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/242-love-of-chocolate-screenshots-5936.jpeg");
}
.cid-tFA94JHVJh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA94JHVJh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA94JHVJh .mbr-text,
.cid-tFA94JHVJh .mbr-section-btn {
  color: #232323;
}
.cid-tFA94JHVJh .card-title,
.cid-tFA94JHVJh .card-box {
  color: #ffffff;
}
.cid-tFA94JHVJh .mbr-text,
.cid-tFA94JHVJh .link-wrap {
  color: #ffffff;
}
.cid-tFA94JZuIo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA94JZuIo .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA94JZuIo .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA94JZuIo .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA94JZuIo .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA94JZuIo .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA94JZuIo .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA94JZuIo .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-tFA94JZuIo .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA94JZuIo .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA94JZuIo .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA94JZuIo .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA94JZuIo .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA94JZuIo .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA94JZuIo .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA94JZuIo .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA97gLxHa {
  background-image: url("../../../assets/images/244-shipour-wedding-screenshots-5405.jpg");
}
.cid-tFA97gLxHa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA97gLxHa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA97gLxHa .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA97gLxHa .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA97gLxHa .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA97gLxHa .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA97gLxHa .mbr-text,
.cid-tFA97gLxHa .mbr-section-btn,
.cid-tFA97gLxHa .social-row {
  color: #232323;
}
.cid-tFA97gLxHa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3ZXwignj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3ZXwignj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3ZXwignj .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-uX3ZXwignj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3ZXwignj .row {
  flex-direction: row-reverse;
}
.cid-uX3ZXwignj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3ZXwignj .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3ZXwignj .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3ZXwignj .mbr-section-title {
  color: #fafafa;
}
.cid-tFA97h69d1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tFA97h69d1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA97h69d1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA97h69d1 .item {
  padding-bottom: 2rem;
}
.cid-tFA97h69d1 .item-wrapper {
  position: relative;
}
.cid-tFA97h69d1 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA97h69d1 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA97h69d1 .carousel-control,
.cid-tFA97h69d1 .close {
  background: #1b1b1b;
}
.cid-tFA97h69d1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA97h69d1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA97h69d1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA97h69d1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA97h69d1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA97h69d1 .close::before {
  content: '\e91a';
}
.cid-tFA97h69d1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA97h69d1 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA97h69d1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA97h69d1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA97h69d1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA97h69d1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA97h69d1 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA97h69d1 .carousel-indicators li.active,
.cid-tFA97h69d1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA97h69d1 .carousel-indicators li::after,
.cid-tFA97h69d1 .carousel-indicators li::before {
  content: none;
}
.cid-tFA97h69d1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA97h69d1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA97h69d1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA97h69d1 .carousel-indicators {
    display: none;
  }
}
.cid-tFA97h69d1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA97h69d1 .carousel-inner > .active {
  display: block;
}
.cid-tFA97h69d1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA97h69d1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA97h69d1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA97h69d1 .carousel-control,
  .cid-tFA97h69d1 .carousel-indicators,
  .cid-tFA97h69d1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA97h69d1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA97h69d1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA97h69d1 .carousel-indicators .active,
.cid-tFA97h69d1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA97h69d1 .carousel-indicators .active {
  background: #fff;
}
.cid-tFA97h69d1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA97h69d1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA97h69d1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA97h69d1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA97h69d1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA97h69d1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA97h69d1 .carousel {
  width: 100%;
}
.cid-tFA97h69d1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA97h69d1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA97h69d1 .modal.fade .modal-dialog,
.cid-tFA97h69d1 .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA97h69d1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA97h69d1 H6 {
  text-align: center;
}
.cid-tFA97hUiSl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/244-shipour-wedding-screenshots-5405.jpeg");
}
.cid-tFA97hUiSl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA97hUiSl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA97hUiSl .mbr-text,
.cid-tFA97hUiSl .mbr-section-btn {
  color: #232323;
}
.cid-tFA97hUiSl .card-title,
.cid-tFA97hUiSl .card-box {
  color: #ffffff;
}
.cid-tFA97hUiSl .mbr-text,
.cid-tFA97hUiSl .link-wrap {
  color: #ffffff;
}
.cid-tFA97iad4u {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA97iad4u .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA97iad4u .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA97iad4u .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA97iad4u .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA97iad4u .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA97iad4u .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA97iad4u .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-tFA97iad4u .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA97iad4u .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA97iad4u .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA97iad4u .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA97iad4u .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA97iad4u .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA97iad4u .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA97iad4u .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX41cShlCo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX41cShlCo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX41cShlCo .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX41cShlCo .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX41cShlCo .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX41cShlCo .mbr-section-title {
  color: #22a5e5;
}
.cid-uX41cShlCo .mbr-text,
.cid-uX41cShlCo .mbr-section-btn,
.cid-uX41cShlCo .social-row {
  color: #232323;
}
.cid-uX41cShlCo .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX41dky6i6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX41dky6i6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX41dky6i6 .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-uX41dky6i6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX41dky6i6 .row {
  flex-direction: row-reverse;
}
.cid-uX41dky6i6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX41dky6i6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX41dky6i6 .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX41dky6i6 .mbr-section-title {
  color: #fafafa;
}
.cid-tFA99H6oXF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA99H6oXF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA99H6oXF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA99H6oXF .item {
  padding-bottom: 2rem;
}
.cid-tFA99H6oXF .item-wrapper {
  position: relative;
}
.cid-tFA99H6oXF .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA99H6oXF .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA99H6oXF .carousel-control,
.cid-tFA99H6oXF .close {
  background: #1b1b1b;
}
.cid-tFA99H6oXF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA99H6oXF .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA99H6oXF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA99H6oXF .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA99H6oXF .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA99H6oXF .close::before {
  content: '\e91a';
}
.cid-tFA99H6oXF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA99H6oXF .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA99H6oXF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA99H6oXF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA99H6oXF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA99H6oXF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA99H6oXF .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA99H6oXF .carousel-indicators li.active,
.cid-tFA99H6oXF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA99H6oXF .carousel-indicators li::after,
.cid-tFA99H6oXF .carousel-indicators li::before {
  content: none;
}
.cid-tFA99H6oXF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA99H6oXF .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA99H6oXF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA99H6oXF .carousel-indicators {
    display: none;
  }
}
.cid-tFA99H6oXF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA99H6oXF .carousel-inner > .active {
  display: block;
}
.cid-tFA99H6oXF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA99H6oXF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA99H6oXF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA99H6oXF .carousel-control,
  .cid-tFA99H6oXF .carousel-indicators,
  .cid-tFA99H6oXF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA99H6oXF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA99H6oXF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA99H6oXF .carousel-indicators .active,
.cid-tFA99H6oXF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA99H6oXF .carousel-indicators .active {
  background: #fff;
}
.cid-tFA99H6oXF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA99H6oXF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA99H6oXF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA99H6oXF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA99H6oXF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA99H6oXF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA99H6oXF .carousel {
  width: 100%;
}
.cid-tFA99H6oXF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA99H6oXF .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA99H6oXF .modal.fade .modal-dialog,
.cid-tFA99H6oXF .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA99H6oXF .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA99H6oXF H6 {
  text-align: center;
}
.cid-tFA99H6oXF H3 {
  color: #fafafa;
}
.cid-tFA99IaxDc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA99IaxDc .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA99IaxDc .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA99IaxDc .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA99IaxDc .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA99IaxDc .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA99IaxDc .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA99IaxDc .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-tFA99IaxDc .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA99IaxDc .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA99IaxDc .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA99IaxDc .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA99IaxDc .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA99IaxDc .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA99IaxDc .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA99IaxDc .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA9ccigUg {
  background-image: url("../../../assets/images/251-shipour-wedding-iii-screenshots-5401.jpeg");
}
.cid-tFA9ccigUg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA9ccigUg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA9ccigUg .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA9ccigUg .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA9ccigUg .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA9ccigUg .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA9ccigUg .mbr-text,
.cid-tFA9ccigUg .mbr-section-btn,
.cid-tFA9ccigUg .social-row {
  color: #232323;
}
.cid-tFA9ccigUg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3ZAVusek {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3ZAVusek .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3ZAVusek .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-uX3ZAVusek .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3ZAVusek .row {
  flex-direction: row-reverse;
}
.cid-uX3ZAVusek img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3ZAVusek .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3ZAVusek .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3ZAVusek .mbr-section-title {
  color: #fafafa;
}
.cid-tFA9ccEuao {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tFA9ccEuao .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA9ccEuao .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA9ccEuao .item {
  padding-bottom: 2rem;
}
.cid-tFA9ccEuao .item-wrapper {
  position: relative;
}
.cid-tFA9ccEuao .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA9ccEuao .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA9ccEuao .carousel-control,
.cid-tFA9ccEuao .close {
  background: #1b1b1b;
}
.cid-tFA9ccEuao .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA9ccEuao .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA9ccEuao .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA9ccEuao .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA9ccEuao .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA9ccEuao .close::before {
  content: '\e91a';
}
.cid-tFA9ccEuao .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA9ccEuao .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA9ccEuao .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA9ccEuao .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA9ccEuao .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA9ccEuao .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA9ccEuao .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA9ccEuao .carousel-indicators li.active,
.cid-tFA9ccEuao .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA9ccEuao .carousel-indicators li::after,
.cid-tFA9ccEuao .carousel-indicators li::before {
  content: none;
}
.cid-tFA9ccEuao .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA9ccEuao .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA9ccEuao .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA9ccEuao .carousel-indicators {
    display: none;
  }
}
.cid-tFA9ccEuao .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA9ccEuao .carousel-inner > .active {
  display: block;
}
.cid-tFA9ccEuao .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA9ccEuao .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA9ccEuao .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA9ccEuao .carousel-control,
  .cid-tFA9ccEuao .carousel-indicators,
  .cid-tFA9ccEuao .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA9ccEuao .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA9ccEuao .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA9ccEuao .carousel-indicators .active,
.cid-tFA9ccEuao .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA9ccEuao .carousel-indicators .active {
  background: #fff;
}
.cid-tFA9ccEuao .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA9ccEuao .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA9ccEuao .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA9ccEuao .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA9ccEuao .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA9ccEuao .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA9ccEuao .carousel {
  width: 100%;
}
.cid-tFA9ccEuao .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA9ccEuao .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA9ccEuao .modal.fade .modal-dialog,
.cid-tFA9ccEuao .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA9ccEuao .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA9ccEuao H6 {
  text-align: center;
}
.cid-tFA9cdrDDt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/251-shipour-wedding-iii-screenshots-5401.jpeg");
}
.cid-tFA9cdrDDt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA9cdrDDt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA9cdrDDt .mbr-text,
.cid-tFA9cdrDDt .mbr-section-btn {
  color: #232323;
}
.cid-tFA9cdrDDt .card-title,
.cid-tFA9cdrDDt .card-box {
  color: #ffffff;
}
.cid-tFA9cdrDDt .mbr-text,
.cid-tFA9cdrDDt .link-wrap {
  color: #ffffff;
}
.cid-tFA9cdISuu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA9cdISuu .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA9cdISuu .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA9cdISuu .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA9cdISuu .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA9cdISuu .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA9cdISuu .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA9cdISuu .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-tFA9cdISuu .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA9cdISuu .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA9cdISuu .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA9cdISuu .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA9cdISuu .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA9cdISuu .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA9cdISuu .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA9cdISuu .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX40jiOCyp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX40jiOCyp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX40jiOCyp .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX40jiOCyp .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX40jiOCyp .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX40jiOCyp .mbr-section-title {
  color: #22a5e5;
}
.cid-uX40jiOCyp .mbr-text,
.cid-uX40jiOCyp .mbr-section-btn,
.cid-uX40jiOCyp .social-row {
  color: #232323;
}
.cid-uX40jiOCyp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX40j9eAPD {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX40j9eAPD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX40j9eAPD .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-uX40j9eAPD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX40j9eAPD .row {
  flex-direction: row-reverse;
}
.cid-uX40j9eAPD img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX40j9eAPD .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX40j9eAPD .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX40j9eAPD .mbr-section-title {
  color: #fafafa;
}
.cid-tFA9eSko3X {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA9eSko3X .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA9eSko3X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA9eSko3X .item {
  padding-bottom: 2rem;
}
.cid-tFA9eSko3X .item-wrapper {
  position: relative;
}
.cid-tFA9eSko3X .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA9eSko3X .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA9eSko3X .carousel-control,
.cid-tFA9eSko3X .close {
  background: #1b1b1b;
}
.cid-tFA9eSko3X .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA9eSko3X .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA9eSko3X .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA9eSko3X .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA9eSko3X .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA9eSko3X .close::before {
  content: '\e91a';
}
.cid-tFA9eSko3X .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA9eSko3X .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA9eSko3X .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA9eSko3X .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA9eSko3X .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA9eSko3X .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA9eSko3X .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA9eSko3X .carousel-indicators li.active,
.cid-tFA9eSko3X .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA9eSko3X .carousel-indicators li::after,
.cid-tFA9eSko3X .carousel-indicators li::before {
  content: none;
}
.cid-tFA9eSko3X .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA9eSko3X .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA9eSko3X .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA9eSko3X .carousel-indicators {
    display: none;
  }
}
.cid-tFA9eSko3X .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA9eSko3X .carousel-inner > .active {
  display: block;
}
.cid-tFA9eSko3X .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA9eSko3X .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA9eSko3X .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA9eSko3X .carousel-control,
  .cid-tFA9eSko3X .carousel-indicators,
  .cid-tFA9eSko3X .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA9eSko3X .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA9eSko3X .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA9eSko3X .carousel-indicators .active,
.cid-tFA9eSko3X .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA9eSko3X .carousel-indicators .active {
  background: #fff;
}
.cid-tFA9eSko3X .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA9eSko3X .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA9eSko3X .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA9eSko3X .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA9eSko3X .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA9eSko3X .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA9eSko3X .carousel {
  width: 100%;
}
.cid-tFA9eSko3X .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA9eSko3X .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA9eSko3X .modal.fade .modal-dialog,
.cid-tFA9eSko3X .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA9eSko3X .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA9eSko3X H6 {
  text-align: center;
}
.cid-tFA9eSko3X H3 {
  color: #fafafa;
}
.cid-tFA9eToBoq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA9eToBoq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA9eToBoq .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA9eToBoq .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA9eToBoq .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA9eToBoq .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA9eToBoq .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA9eToBoq .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-tFA9eToBoq .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA9eToBoq .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA9eToBoq .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA9eToBoq .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA9eToBoq .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA9eToBoq .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA9eToBoq .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA9eToBoq .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX4jqa8Tcx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX4jqa8Tcx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX4jqa8Tcx .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX4jqa8Tcx .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX4jqa8Tcx .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX4jqa8Tcx .mbr-section-title {
  color: #22a5e5;
}
.cid-uX4jqa8Tcx .mbr-text,
.cid-uX4jqa8Tcx .mbr-section-btn,
.cid-uX4jqa8Tcx .social-row {
  color: #232323;
}
.cid-uX4jqa8Tcx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX45Upp6QN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX45Upp6QN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX45Upp6QN .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-uX45Upp6QN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX45Upp6QN .row {
  flex-direction: row-reverse;
}
.cid-uX45Upp6QN img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX45Upp6QN .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX45Upp6QN .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX45Upp6QN .mbr-section-title {
  color: #fafafa;
}
.cid-tFA9kHvQkK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA9kHvQkK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA9kHvQkK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA9kHvQkK .item {
  padding-bottom: 2rem;
}
.cid-tFA9kHvQkK .item-wrapper {
  position: relative;
}
.cid-tFA9kHvQkK .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA9kHvQkK .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA9kHvQkK .carousel-control,
.cid-tFA9kHvQkK .close {
  background: #1b1b1b;
}
.cid-tFA9kHvQkK .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA9kHvQkK .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA9kHvQkK .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA9kHvQkK .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA9kHvQkK .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA9kHvQkK .close::before {
  content: '\e91a';
}
.cid-tFA9kHvQkK .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA9kHvQkK .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA9kHvQkK .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA9kHvQkK .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA9kHvQkK .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA9kHvQkK .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA9kHvQkK .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA9kHvQkK .carousel-indicators li.active,
.cid-tFA9kHvQkK .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA9kHvQkK .carousel-indicators li::after,
.cid-tFA9kHvQkK .carousel-indicators li::before {
  content: none;
}
.cid-tFA9kHvQkK .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA9kHvQkK .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA9kHvQkK .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA9kHvQkK .carousel-indicators {
    display: none;
  }
}
.cid-tFA9kHvQkK .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA9kHvQkK .carousel-inner > .active {
  display: block;
}
.cid-tFA9kHvQkK .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA9kHvQkK .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA9kHvQkK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA9kHvQkK .carousel-control,
  .cid-tFA9kHvQkK .carousel-indicators,
  .cid-tFA9kHvQkK .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA9kHvQkK .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA9kHvQkK .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA9kHvQkK .carousel-indicators .active,
.cid-tFA9kHvQkK .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA9kHvQkK .carousel-indicators .active {
  background: #fff;
}
.cid-tFA9kHvQkK .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA9kHvQkK .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA9kHvQkK .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA9kHvQkK .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA9kHvQkK .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA9kHvQkK .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA9kHvQkK .carousel {
  width: 100%;
}
.cid-tFA9kHvQkK .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA9kHvQkK .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA9kHvQkK .modal.fade .modal-dialog,
.cid-tFA9kHvQkK .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA9kHvQkK .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA9kHvQkK H6 {
  text-align: center;
}
.cid-tFA9kHvQkK H3 {
  color: #fafafa;
}
.cid-tFA9kIjvUn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/259-light-bulbs-screenshots-5819.jpeg");
}
.cid-tFA9kIjvUn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA9kIjvUn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA9kIjvUn .mbr-text,
.cid-tFA9kIjvUn .mbr-section-btn {
  color: #232323;
}
.cid-tFA9kIjvUn .card-title,
.cid-tFA9kIjvUn .card-box {
  color: #ffffff;
}
.cid-tFA9kIjvUn .mbr-text,
.cid-tFA9kIjvUn .link-wrap {
  color: #ffffff;
}
.cid-tFA9kIAKLm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA9kIAKLm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA9kIAKLm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA9kIAKLm .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA9kIAKLm .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA9kIAKLm .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA9kIAKLm .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA9kIAKLm .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-tFA9kIAKLm .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA9kIAKLm .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA9kIAKLm .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA9kIAKLm .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA9kIAKLm .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA9kIAKLm .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA9kIAKLm .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA9kIAKLm .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tF7wnJlcYS {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tF7wnJlcYS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF7wnJlcYS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tF7wnJlcYS .text-wrapper {
    padding: 2rem;
  }
}
.cid-tF7wnJlcYS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tF7wnJlcYS .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tF7wnJlcYS .mbr-text {
  color: #fafafa;
}
.cid-tF7wnJlcYS .name {
  color: #fafafa;
}
.cid-tF7wnJlcYS .position {
  color: #fafafa;
}
.cid-tGqMAF8kjo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #e43f3f;
}
.cid-tGqMAF8kjo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGqMAF8kjo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGqMAF8kjo .nav-tabs .nav-item.open .nav-link:focus,
.cid-tGqMAF8kjo .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tGqMAF8kjo .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #ffe161;
}
@media (max-width: 767px) {
  .cid-tGqMAF8kjo .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-tGqMAF8kjo .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-tGqMAF8kjo .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-tGqMAF8kjo .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-tGqMAF8kjo .nav-link,
.cid-tGqMAF8kjo .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-tGqMAF8kjo .nav-tabs .nav-link.active {
  color: #ffe161;
  border-bottom: 3px solid #ffe161;
}
.cid-tGqMAF8kjo H4 {
  text-align: center;
  color: #ffe161;
}
.cid-tGqMAF8kjo H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tGqMAF8kjo P {
  color: #000000;
}
.cid-tF7w56fLLO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/07-1920x700.jpg");
}
.cid-tF7w56fLLO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF7w56fLLO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF7w56fLLO .mbr-text,
.cid-tF7w56fLLO .mbr-section-btn {
  color: #232323;
}
.cid-tF7w56fLLO .card-title,
.cid-tF7w56fLLO .card-box {
  color: #ffffff;
}
.cid-tF7w56fLLO .mbr-text,
.cid-tF7w56fLLO .link-wrap {
  color: #ffffff;
}
.cid-tF7w56zFMs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tF7w56zFMs .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tF7w56zFMs .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tF7w56zFMs .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tF7w56zFMs .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tF7w56zFMs .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tF7w56zFMs .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tF7w56zFMs .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-tF7w56zFMs .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tF7w56zFMs .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tF7w56zFMs .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tF7w56zFMs .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tF7w56zFMs .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tF7w56zFMs .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tF7w56zFMs .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tF7w56zFMs .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFPIoYQ4JC {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tFPIoYQ4JC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFPIoYQ4JC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFGjdnm9nM {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #22a5e5;
}
.cid-tFGjdnm9nM .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tFGjdnm9nM form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tFGjdnm9nM form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tFGjdnm9nM form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tFPICV9fGM {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #22a5e5;
}
.cid-tFGiYh8jte {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFGiYh8jte .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFGiYh8jte .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFGiYh8jte .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFGiYh8jte .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFGiYh8jte .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFGiYh8jte .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFGiYh8jte .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-tFGiYh8jte .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFGiYh8jte .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFGiYh8jte .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFGiYh8jte .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFGiYh8jte .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFGiYh8jte .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFGiYh8jte .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFGiYh8jte .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFA7MlpZcX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7MlpZcX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/126-old-male-screenshots-5508-596x335.jpeg");
}
.cid-tFA7MlpZcX .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tFA7MlpZcX .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tFA7MlpZcX .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tFA7MlpZcX .mbr-section-title {
  color: #22a5e5;
}
.cid-tFA7MlpZcX .mbr-text,
.cid-tFA7MlpZcX .mbr-section-btn,
.cid-tFA7MlpZcX .social-row {
  color: #232323;
}
.cid-tFA7MlpZcX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tFA7MlJGaJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tFA7MlJGaJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA7MlJGaJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA7MlJGaJ .item {
  padding-bottom: 2rem;
}
.cid-tFA7MlJGaJ .item-wrapper {
  position: relative;
}
.cid-tFA7MlJGaJ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA7MlJGaJ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA7MlJGaJ .carousel-control,
.cid-tFA7MlJGaJ .close {
  background: #1b1b1b;
}
.cid-tFA7MlJGaJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA7MlJGaJ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA7MlJGaJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA7MlJGaJ .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA7MlJGaJ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA7MlJGaJ .close::before {
  content: '\e91a';
}
.cid-tFA7MlJGaJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA7MlJGaJ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA7MlJGaJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7MlJGaJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA7MlJGaJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA7MlJGaJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA7MlJGaJ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA7MlJGaJ .carousel-indicators li.active,
.cid-tFA7MlJGaJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA7MlJGaJ .carousel-indicators li::after,
.cid-tFA7MlJGaJ .carousel-indicators li::before {
  content: none;
}
.cid-tFA7MlJGaJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA7MlJGaJ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA7MlJGaJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA7MlJGaJ .carousel-indicators {
    display: none;
  }
}
.cid-tFA7MlJGaJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA7MlJGaJ .carousel-inner > .active {
  display: block;
}
.cid-tFA7MlJGaJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA7MlJGaJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA7MlJGaJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA7MlJGaJ .carousel-control,
  .cid-tFA7MlJGaJ .carousel-indicators,
  .cid-tFA7MlJGaJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA7MlJGaJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA7MlJGaJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA7MlJGaJ .carousel-indicators .active,
.cid-tFA7MlJGaJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA7MlJGaJ .carousel-indicators .active {
  background: #fff;
}
.cid-tFA7MlJGaJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA7MlJGaJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA7MlJGaJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA7MlJGaJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA7MlJGaJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA7MlJGaJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA7MlJGaJ .carousel {
  width: 100%;
}
.cid-tFA7MlJGaJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA7MlJGaJ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA7MlJGaJ .modal.fade .modal-dialog,
.cid-tFA7MlJGaJ .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA7MlJGaJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA7MlJGaJ H6 {
  text-align: center;
}
.cid-tFA7MmNTyG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA7MmNTyG .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA7MmNTyG .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA7MmNTyG .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA7MmNTyG .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA7MmNTyG .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA7MmNTyG .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA7MmNTyG .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-tFA7MmNTyG .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA7MmNTyG .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA7MmNTyG .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA7MmNTyG .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA7MmNTyG .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA7MmNTyG .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA7MmNTyG .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA7MmNTyG .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFQadpPKFz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tFQadpPKFz blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-tFQadpPKFz .mbr-section-title {
  color: #000000;
}
.cid-tFQadpPKFz .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tFTpyTSsRp {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tFTpyTSsRp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFTpyTSsRp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFTpyTSsRp .timeline-element {
  position: relative;
}
.cid-tFTpyTSsRp .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-tFTpyTSsRp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tFTpyTSsRp .mbr-section-title,
.cid-tFTpyTSsRp .mbr-section-subtitle,
.cid-tFTpyTSsRp .timeline-date {
  text-align: center;
}
.cid-tFTpyTSsRp .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-tFTpyTSsRp .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-tFTpyTSsRp .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-tFTpyTSsRp .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-tFTpyTSsRp .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-tFTpyTSsRp .row:after {
    height: calc(100% - 20px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tFTpyTSsRp .timeline-date-wrapper,
  .cid-tFTpyTSsRp .timeline-text-wrapper,
  .cid-tFTpyTSsRp .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-tFTpyTSsRp .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-tFTpyTSsRp .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tFTpyTSsRp .timeline-date-wrapper,
  .cid-tFTpyTSsRp .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tFTpyTSsRp .timeline-date-wrapper,
  .cid-tFTpyTSsRp .timeline-text-wrapper,
  .cid-tFTpyTSsRp .image-wrapper {
    padding: 2rem;
  }
}
.cid-tFTpyTSsRp .mbr-text {
  color: #bbbbbb;
}
.cid-tFTpyTSsRp .mbr-timeline-title {
  color: #ffffff;
}
.cid-tFTpyTSsRp .mbr-timeline-date {
  color: #fafafa;
}
.cid-tFTp9dvUmw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFTp9dvUmw .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFTp9dvUmw .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFTp9dvUmw .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFTp9dvUmw .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFTp9dvUmw .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFTp9dvUmw .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFTp9dvUmw .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-tFTp9dvUmw .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFTp9dvUmw .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFTp9dvUmw .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFTp9dvUmw .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFTp9dvUmw .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFTp9dvUmw .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFTp9dvUmw .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFTp9dvUmw .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tG2KReEJ4m {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tG2KReEJ4m img,
.cid-tG2KReEJ4m .item-img {
  width: 100%;
}
.cid-tG2KReEJ4m .item:focus,
.cid-tG2KReEJ4m span:focus {
  outline: none;
}
.cid-tG2KReEJ4m .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tG2KReEJ4m .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tG2KReEJ4m .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tG2KReEJ4m .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tG2KReEJ4m .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tG2KReEJ4m .mbr-section-title {
  color: #ffffff;
}
.cid-tG2KReEJ4m .mbr-text,
.cid-tG2KReEJ4m .mbr-section-btn {
  text-align: center;
}
.cid-tG2KReEJ4m .item-title {
  text-align: center;
}
.cid-tG2KReEJ4m .item-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tG2KReEJ4m .mbr-section-subtitle {
  color: #fafafa;
}
.cid-tG2KRgFYT7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tG2KRgFYT7 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tG2KRgFYT7 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tG2KRgFYT7 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tG2KRgFYT7 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tG2KRgFYT7 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tG2KRgFYT7 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tG2KRgFYT7 .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-tG2KRgFYT7 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tG2KRgFYT7 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tG2KRgFYT7 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tG2KRgFYT7 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tG2KRgFYT7 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tG2KRgFYT7 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tG2KRgFYT7 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tG2KRgFYT7 .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX6dAEBOZH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX6dAEBOZH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX6dAEBOZH .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX6dAEBOZH .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX6dAEBOZH .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX6dAEBOZH .mbr-section-title {
  color: #ff9966;
}
.cid-uX6dAEBOZH .mbr-text,
.cid-uX6dAEBOZH .mbr-section-btn,
.cid-uX6dAEBOZH .social-row {
  color: #232323;
}
.cid-uX6dAEBOZH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX6dUlX3N2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX6dUlX3N2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX6dUlX3N2 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX6dUlX3N2 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX6dUlX3N2 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX6dUlX3N2 .mbr-section-title {
  color: #ff9966;
}
.cid-uX6dUlX3N2 .mbr-text,
.cid-uX6dUlX3N2 .mbr-section-btn,
.cid-uX6dUlX3N2 .social-row {
  color: #232323;
}
.cid-uX6dUlX3N2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tG2OsoaVeO {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tG2OsoaVeO img,
.cid-tG2OsoaVeO .item-img {
  width: 100%;
}
.cid-tG2OsoaVeO .item:focus,
.cid-tG2OsoaVeO span:focus {
  outline: none;
}
.cid-tG2OsoaVeO .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tG2OsoaVeO .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tG2OsoaVeO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tG2OsoaVeO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tG2OsoaVeO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tG2OsoaVeO .mbr-section-title {
  color: #ffffff;
}
.cid-tG2OsoaVeO .mbr-text,
.cid-tG2OsoaVeO .mbr-section-btn {
  text-align: center;
}
.cid-tG2OsoaVeO .item-title {
  text-align: center;
}
.cid-tG2OsoaVeO .item-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tG2OsoaVeO .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-tG2YYS25Mo {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uX60pY1mVs {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/frame-106.jpg");
}
.cid-uX60pY1mVs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX60pY1mVs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX60pY1mVs .mbr-iconfont {
  margin: auto;
  display: inline-flex;
  font-size: 2rem;
  color: #ff9966;
  width: 40px;
  justify-content: center;
  align-items: center;
}
.cid-uX60pY1mVs .card-title,
.cid-uX60pY1mVs .iconfont-wrapper {
  color: #bbbbbb;
}
.cid-uX60pY1mVs .card-text {
  color: #fafafa;
}
.cid-uX60pY1mVs .mbr-section-title {
  color: #fafafa;
}
.cid-uX60pY1mVs .mbr-section-subtitle {
  color: #232323;
}
.cid-uX60pY1mVs .content-head {
  max-width: 800px;
}
.cid-tG2OspXzj3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tG2OspXzj3 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tG2OspXzj3 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tG2OspXzj3 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tG2OspXzj3 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tG2OspXzj3 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tG2OspXzj3 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tG2OspXzj3 .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-tG2OspXzj3 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tG2OspXzj3 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tG2OspXzj3 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tG2OspXzj3 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tG2OspXzj3 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tG2OspXzj3 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tG2OspXzj3 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tG2OspXzj3 .media-container-row .mbr-text {
  color: #232323;
}
.cid-tGCKKz4rSY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tGCKKz4rSY nav.navbar {
  position: fixed;
}
.cid-tGCKKz4rSY .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-tGCKKz4rSY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tGCKKz4rSY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGCKKz4rSY .dropdown-item:hover,
.cid-tGCKKz4rSY .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tGCKKz4rSY .dropdown-item:hover span {
  color: white;
}
.cid-tGCKKz4rSY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGCKKz4rSY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGCKKz4rSY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGCKKz4rSY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGCKKz4rSY .nav-link {
  position: relative;
}
.cid-tGCKKz4rSY .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tGCKKz4rSY .container {
    flex-wrap: wrap;
  }
}
.cid-tGCKKz4rSY .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tGCKKz4rSY .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tGCKKz4rSY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGCKKz4rSY .dropdown-menu,
.cid-tGCKKz4rSY .navbar.opened {
  background: #ff9966 !important;
}
.cid-tGCKKz4rSY .nav-item:focus,
.cid-tGCKKz4rSY .nav-link:focus {
  outline: none;
}
.cid-tGCKKz4rSY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGCKKz4rSY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGCKKz4rSY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGCKKz4rSY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGCKKz4rSY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGCKKz4rSY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGCKKz4rSY .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: #ff9966;
}
.cid-tGCKKz4rSY .navbar.opened {
  transition: all 0.3s;
}
.cid-tGCKKz4rSY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGCKKz4rSY .navbar .navbar-logo img {
  width: auto;
}
.cid-tGCKKz4rSY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGCKKz4rSY .navbar.collapsed {
  justify-content: center;
}
.cid-tGCKKz4rSY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGCKKz4rSY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGCKKz4rSY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tGCKKz4rSY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGCKKz4rSY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGCKKz4rSY .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-tGCKKz4rSY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGCKKz4rSY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGCKKz4rSY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGCKKz4rSY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGCKKz4rSY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGCKKz4rSY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGCKKz4rSY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGCKKz4rSY .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-tGCKKz4rSY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGCKKz4rSY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGCKKz4rSY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGCKKz4rSY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGCKKz4rSY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGCKKz4rSY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tGCKKz4rSY .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tGCKKz4rSY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGCKKz4rSY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGCKKz4rSY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGCKKz4rSY .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-tGCKKz4rSY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGCKKz4rSY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGCKKz4rSY .dropdown-item.active,
.cid-tGCKKz4rSY .dropdown-item:active {
  background-color: transparent;
}
.cid-tGCKKz4rSY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGCKKz4rSY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGCKKz4rSY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGCKKz4rSY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tGCKKz4rSY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGCKKz4rSY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGCKKz4rSY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGCKKz4rSY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGCKKz4rSY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGCKKz4rSY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tGCKKz4rSY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGCKKz4rSY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGCKKz4rSY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGCKKz4rSY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGCKKz4rSY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGCKKz4rSY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGCKKz4rSY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGCKKz4rSY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGCKKz4rSY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tGCKKz4rSY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGCKKz4rSY .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-tGCKKz4rSY .navbar {
    height: 70px;
  }
  .cid-tGCKKz4rSY .navbar.opened {
    height: auto;
  }
  .cid-tGCKKz4rSY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGCNbNHU3t {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tGCNbNHU3t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGCNbNHU3t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGCNbNHU3t .video-wrapper iframe {
  width: 100%;
}
.cid-tGCNbNHU3t .mbr-section-title,
.cid-tGCNbNHU3t .mbr-section-subtitle,
.cid-tGCNbNHU3t .mbr-text {
  text-align: center;
}
.cid-tGCNbNHU3t .mbr-section-subtitle {
  color: #fafafa;
}
.cid-uX5SDTVJS7 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX5SDTVJS7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX5SDTVJS7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX5SDTVJS7 .video-wrapper iframe {
  width: 100%;
}
.cid-uX5SDTVJS7 .mbr-section-title,
.cid-uX5SDTVJS7 .mbr-section-subtitle,
.cid-uX5SDTVJS7 .mbr-text {
  text-align: center;
}
.cid-uX5SDTVJS7 .mbr-text {
  color: #bbbbbb;
}
.cid-tGCKKyG2TG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tGCKKyG2TG .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tGCKKyG2TG .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tGCKKyG2TG .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tGCKKyG2TG .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tGCKKyG2TG .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tGCKKyG2TG .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tGCKKyG2TG .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-tGCKKyG2TG .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tGCKKyG2TG .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tGCKKyG2TG .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tGCKKyG2TG .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tGCKKyG2TG .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tGCKKyG2TG .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tGCKKyG2TG .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tGCKKyG2TG .media-container-row .mbr-text {
  color: #232323;
}
.cid-tGHRVCDSQI {
  background-image: url("../../../assets/images/335970012-1354714421737890-7881895587324545401-n.jpg");
}
.cid-tGHRVCDSQI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGHRVCDSQI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGHRVCDSQI .mbr-section-title {
  color: #e43f3f;
}
.cid-tGHRVCDSQI .mbr-section-subtitle {
  color: #e6c63b;
}
.cid-uWKUMm2c9r {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uWKUMm2c9r nav.navbar {
  position: fixed;
}
.cid-uWKUMm2c9r .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-uWKUMm2c9r .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uWKUMm2c9r .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uWKUMm2c9r .dropdown-item:hover,
.cid-uWKUMm2c9r .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uWKUMm2c9r .dropdown-item:hover span {
  color: white;
}
.cid-uWKUMm2c9r .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWKUMm2c9r .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWKUMm2c9r .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWKUMm2c9r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWKUMm2c9r .nav-link {
  position: relative;
}
.cid-uWKUMm2c9r .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWKUMm2c9r .container {
    flex-wrap: wrap;
  }
}
.cid-uWKUMm2c9r .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWKUMm2c9r .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uWKUMm2c9r .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uWKUMm2c9r .dropdown-menu,
.cid-uWKUMm2c9r .navbar.opened {
  background: #ff9966 !important;
}
.cid-uWKUMm2c9r .nav-item:focus,
.cid-uWKUMm2c9r .nav-link:focus {
  outline: none;
}
.cid-uWKUMm2c9r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWKUMm2c9r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWKUMm2c9r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWKUMm2c9r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWKUMm2c9r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWKUMm2c9r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWKUMm2c9r .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: #ff9966;
}
.cid-uWKUMm2c9r .navbar.opened {
  transition: all 0.3s;
}
.cid-uWKUMm2c9r .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWKUMm2c9r .navbar .navbar-logo img {
  width: auto;
}
.cid-uWKUMm2c9r .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWKUMm2c9r .navbar.collapsed {
  justify-content: center;
}
.cid-uWKUMm2c9r .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWKUMm2c9r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWKUMm2c9r .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWKUMm2c9r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWKUMm2c9r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWKUMm2c9r .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-uWKUMm2c9r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWKUMm2c9r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWKUMm2c9r .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWKUMm2c9r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWKUMm2c9r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWKUMm2c9r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWKUMm2c9r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWKUMm2c9r .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-uWKUMm2c9r .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWKUMm2c9r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWKUMm2c9r .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWKUMm2c9r .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWKUMm2c9r .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWKUMm2c9r .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uWKUMm2c9r .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uWKUMm2c9r .navbar.navbar-short {
  min-height: 60px;
}
.cid-uWKUMm2c9r .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWKUMm2c9r .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uWKUMm2c9r .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-uWKUMm2c9r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWKUMm2c9r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWKUMm2c9r .dropdown-item.active,
.cid-uWKUMm2c9r .dropdown-item:active {
  background-color: transparent;
}
.cid-uWKUMm2c9r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWKUMm2c9r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWKUMm2c9r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWKUMm2c9r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-uWKUMm2c9r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWKUMm2c9r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWKUMm2c9r ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWKUMm2c9r .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uWKUMm2c9r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWKUMm2c9r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uWKUMm2c9r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWKUMm2c9r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWKUMm2c9r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWKUMm2c9r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWKUMm2c9r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWKUMm2c9r nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWKUMm2c9r nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWKUMm2c9r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWKUMm2c9r .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uWKUMm2c9r a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWKUMm2c9r .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-uWKUMm2c9r .navbar {
    height: 70px;
  }
  .cid-uWKUMm2c9r .navbar.opened {
    height: auto;
  }
  .cid-uWKUMm2c9r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWKUMlAsnW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uWKUMlAsnW .carousel {
  height: 800px;
}
.cid-uWKUMlAsnW .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uWKUMlAsnW .carousel-item,
.cid-uWKUMlAsnW .carousel-inner {
  height: 100%;
}
.cid-uWKUMlAsnW .carousel-caption {
  bottom: 40px;
  z-index: 1;
}
.cid-uWKUMlAsnW .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uWKUMlAsnW .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uWKUMlAsnW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uWKUMlAsnW .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uWKUMlAsnW .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uWKUMlAsnW .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uWKUMlAsnW .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uWKUMlAsnW .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWKUMlAsnW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWKUMlAsnW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWKUMlAsnW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWKUMlAsnW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uWKUMlAsnW .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWKUMlAsnW .carousel-indicators li.active,
.cid-uWKUMlAsnW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWKUMlAsnW .carousel-indicators li::after,
.cid-uWKUMlAsnW .carousel-indicators li::before {
  content: none;
}
.cid-uWKUMlAsnW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWKUMlAsnW .carousel-indicators {
    display: none !important;
  }
}
.cid-uX5I4HOZk6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uX5I4HOZk6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX5I4HOZk6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX5I4HOZk6 .row {
  flex-direction: row-reverse;
}
.cid-uX5I4HOZk6 .video-wrapper iframe {
  width: 100%;
}
.cid-uX5I4HOZk6 .mbr-section-title,
.cid-uX5I4HOZk6 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uX5I4HOZk6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX5I4HOZk6 .mbr-section-subtitle {
  color: #ff9966;
}
.cid-uX5I4HOZk6 .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX5I4HOZk6 .mbr-section-title {
  color: #ffe161;
}
.cid-uWKUMmdPVX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWKUMmdPVX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWKUMmdPVX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWKUMmdPVX .item {
  padding-bottom: 2rem;
}
.cid-uWKUMmdPVX .item-wrapper {
  position: relative;
}
.cid-uWKUMmdPVX .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uWKUMmdPVX .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uWKUMmdPVX .carousel-control,
.cid-uWKUMmdPVX .close {
  background: #1b1b1b;
}
.cid-uWKUMmdPVX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uWKUMmdPVX .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uWKUMmdPVX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uWKUMmdPVX .carousel-control-next span {
  margin-left: 5px;
}
.cid-uWKUMmdPVX .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uWKUMmdPVX .close::before {
  content: '\e91a';
}
.cid-uWKUMmdPVX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uWKUMmdPVX .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWKUMmdPVX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWKUMmdPVX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWKUMmdPVX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWKUMmdPVX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uWKUMmdPVX .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWKUMmdPVX .carousel-indicators li.active,
.cid-uWKUMmdPVX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWKUMmdPVX .carousel-indicators li::after,
.cid-uWKUMmdPVX .carousel-indicators li::before {
  content: none;
}
.cid-uWKUMmdPVX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWKUMmdPVX .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uWKUMmdPVX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uWKUMmdPVX .carousel-indicators {
    display: none;
  }
}
.cid-uWKUMmdPVX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uWKUMmdPVX .carousel-inner > .active {
  display: block;
}
.cid-uWKUMmdPVX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWKUMmdPVX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uWKUMmdPVX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uWKUMmdPVX .carousel-control,
  .cid-uWKUMmdPVX .carousel-indicators,
  .cid-uWKUMmdPVX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uWKUMmdPVX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uWKUMmdPVX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uWKUMmdPVX .carousel-indicators .active,
.cid-uWKUMmdPVX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uWKUMmdPVX .carousel-indicators .active {
  background: #fff;
}
.cid-uWKUMmdPVX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uWKUMmdPVX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uWKUMmdPVX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uWKUMmdPVX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uWKUMmdPVX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uWKUMmdPVX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uWKUMmdPVX .carousel {
  width: 100%;
}
.cid-uWKUMmdPVX .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uWKUMmdPVX .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uWKUMmdPVX .modal.fade .modal-dialog,
.cid-uWKUMmdPVX .modal.in .modal-dialog {
  transform: none;
}
.cid-uWKUMmdPVX .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uWKUMmdPVX H6 {
  text-align: center;
}
.cid-uWKUMmdPVX H3 {
  color: #fafafa;
}
.cid-uWKUMmPa3B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-uWKUMmPa3B .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uWKUMmPa3B .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uWKUMmPa3B .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uWKUMmPa3B .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uWKUMmPa3B .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uWKUMmPa3B .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uWKUMmPa3B .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-uWKUMmPa3B .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uWKUMmPa3B .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uWKUMmPa3B .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uWKUMmPa3B .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uWKUMmPa3B .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uWKUMmPa3B .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uWKUMmPa3B .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uWKUMmPa3B .media-container-row .mbr-text {
  color: #232323;
}
.cid-uWKWb9Vz3f {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uWKWb9Vz3f nav.navbar {
  position: fixed;
}
.cid-uWKWb9Vz3f .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-uWKWb9Vz3f .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uWKWb9Vz3f .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uWKWb9Vz3f .dropdown-item:hover,
.cid-uWKWb9Vz3f .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uWKWb9Vz3f .dropdown-item:hover span {
  color: white;
}
.cid-uWKWb9Vz3f .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWKWb9Vz3f .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWKWb9Vz3f .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWKWb9Vz3f .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWKWb9Vz3f .nav-link {
  position: relative;
}
.cid-uWKWb9Vz3f .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWKWb9Vz3f .container {
    flex-wrap: wrap;
  }
}
.cid-uWKWb9Vz3f .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWKWb9Vz3f .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uWKWb9Vz3f .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uWKWb9Vz3f .dropdown-menu,
.cid-uWKWb9Vz3f .navbar.opened {
  background: #ff9966 !important;
}
.cid-uWKWb9Vz3f .nav-item:focus,
.cid-uWKWb9Vz3f .nav-link:focus {
  outline: none;
}
.cid-uWKWb9Vz3f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWKWb9Vz3f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWKWb9Vz3f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWKWb9Vz3f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWKWb9Vz3f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWKWb9Vz3f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWKWb9Vz3f .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: #ff9966;
}
.cid-uWKWb9Vz3f .navbar.opened {
  transition: all 0.3s;
}
.cid-uWKWb9Vz3f .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWKWb9Vz3f .navbar .navbar-logo img {
  width: auto;
}
.cid-uWKWb9Vz3f .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWKWb9Vz3f .navbar.collapsed {
  justify-content: center;
}
.cid-uWKWb9Vz3f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWKWb9Vz3f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWKWb9Vz3f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWKWb9Vz3f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWKWb9Vz3f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWKWb9Vz3f .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-uWKWb9Vz3f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWKWb9Vz3f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWKWb9Vz3f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWKWb9Vz3f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWKWb9Vz3f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWKWb9Vz3f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWKWb9Vz3f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWKWb9Vz3f .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-uWKWb9Vz3f .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWKWb9Vz3f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWKWb9Vz3f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWKWb9Vz3f .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWKWb9Vz3f .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWKWb9Vz3f .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uWKWb9Vz3f .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uWKWb9Vz3f .navbar.navbar-short {
  min-height: 60px;
}
.cid-uWKWb9Vz3f .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWKWb9Vz3f .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uWKWb9Vz3f .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-uWKWb9Vz3f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWKWb9Vz3f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWKWb9Vz3f .dropdown-item.active,
.cid-uWKWb9Vz3f .dropdown-item:active {
  background-color: transparent;
}
.cid-uWKWb9Vz3f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWKWb9Vz3f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWKWb9Vz3f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWKWb9Vz3f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-uWKWb9Vz3f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWKWb9Vz3f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWKWb9Vz3f ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWKWb9Vz3f .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uWKWb9Vz3f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWKWb9Vz3f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uWKWb9Vz3f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWKWb9Vz3f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWKWb9Vz3f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWKWb9Vz3f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWKWb9Vz3f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWKWb9Vz3f nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWKWb9Vz3f nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWKWb9Vz3f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWKWb9Vz3f .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uWKWb9Vz3f a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWKWb9Vz3f .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-uWKWb9Vz3f .navbar {
    height: 70px;
  }
  .cid-uWKWb9Vz3f .navbar.opened {
    height: auto;
  }
  .cid-uWKWb9Vz3f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWKWb9ueBX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uWKWb9ueBX .carousel {
  height: 800px;
}
.cid-uWKWb9ueBX .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uWKWb9ueBX .carousel-item,
.cid-uWKWb9ueBX .carousel-inner {
  height: 100%;
}
.cid-uWKWb9ueBX .carousel-caption {
  bottom: 40px;
  z-index: 1;
}
.cid-uWKWb9ueBX .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uWKWb9ueBX .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uWKWb9ueBX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uWKWb9ueBX .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uWKWb9ueBX .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uWKWb9ueBX .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uWKWb9ueBX .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uWKWb9ueBX .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWKWb9ueBX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWKWb9ueBX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWKWb9ueBX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWKWb9ueBX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uWKWb9ueBX .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWKWb9ueBX .carousel-indicators li.active,
.cid-uWKWb9ueBX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWKWb9ueBX .carousel-indicators li::after,
.cid-uWKWb9ueBX .carousel-indicators li::before {
  content: none;
}
.cid-uWKWb9ueBX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWKWb9ueBX .carousel-indicators {
    display: none !important;
  }
}
.cid-uX45nGxEjH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX45nGxEjH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX45nGxEjH .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-uX45nGxEjH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX45nGxEjH .row {
  flex-direction: row-reverse;
}
.cid-uX45nGxEjH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX45nGxEjH .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX45nGxEjH .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX45nGxEjH .mbr-section-title {
  color: #fafafa;
}
.cid-uWKWba73yB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWKWba73yB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWKWba73yB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWKWba73yB .item {
  padding-bottom: 2rem;
}
.cid-uWKWba73yB .item-wrapper {
  position: relative;
}
.cid-uWKWba73yB .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uWKWba73yB .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uWKWba73yB .carousel-control,
.cid-uWKWba73yB .close {
  background: #1b1b1b;
}
.cid-uWKWba73yB .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uWKWba73yB .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uWKWba73yB .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uWKWba73yB .carousel-control-next span {
  margin-left: 5px;
}
.cid-uWKWba73yB .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uWKWba73yB .close::before {
  content: '\e91a';
}
.cid-uWKWba73yB .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uWKWba73yB .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWKWba73yB .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWKWba73yB .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWKWba73yB .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWKWba73yB .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uWKWba73yB .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWKWba73yB .carousel-indicators li.active,
.cid-uWKWba73yB .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWKWba73yB .carousel-indicators li::after,
.cid-uWKWba73yB .carousel-indicators li::before {
  content: none;
}
.cid-uWKWba73yB .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWKWba73yB .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uWKWba73yB .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uWKWba73yB .carousel-indicators {
    display: none;
  }
}
.cid-uWKWba73yB .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uWKWba73yB .carousel-inner > .active {
  display: block;
}
.cid-uWKWba73yB .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWKWba73yB .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uWKWba73yB .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uWKWba73yB .carousel-control,
  .cid-uWKWba73yB .carousel-indicators,
  .cid-uWKWba73yB .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uWKWba73yB .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uWKWba73yB .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uWKWba73yB .carousel-indicators .active,
.cid-uWKWba73yB .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uWKWba73yB .carousel-indicators .active {
  background: #fff;
}
.cid-uWKWba73yB .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uWKWba73yB .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uWKWba73yB .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uWKWba73yB .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uWKWba73yB .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uWKWba73yB .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uWKWba73yB .carousel {
  width: 100%;
}
.cid-uWKWba73yB .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uWKWba73yB .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uWKWba73yB .modal.fade .modal-dialog,
.cid-uWKWba73yB .modal.in .modal-dialog {
  transform: none;
}
.cid-uWKWba73yB .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uWKWba73yB H6 {
  text-align: center;
}
.cid-uWKWba73yB H3 {
  color: #fafafa;
}
.cid-uWKWbaCvxb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-uWKWbaCvxb .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uWKWbaCvxb .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uWKWbaCvxb .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uWKWbaCvxb .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uWKWbaCvxb .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uWKWbaCvxb .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uWKWbaCvxb .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-uWKWbaCvxb .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uWKWbaCvxb .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uWKWbaCvxb .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uWKWbaCvxb .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uWKWbaCvxb .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uWKWbaCvxb .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uWKWbaCvxb .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uWKWbaCvxb .media-container-row .mbr-text {
  color: #232323;
}
.cid-uWKX9fuHgD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uWKX9fuHgD nav.navbar {
  position: fixed;
}
.cid-uWKX9fuHgD .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-uWKX9fuHgD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uWKX9fuHgD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uWKX9fuHgD .dropdown-item:hover,
.cid-uWKX9fuHgD .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uWKX9fuHgD .dropdown-item:hover span {
  color: white;
}
.cid-uWKX9fuHgD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWKX9fuHgD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWKX9fuHgD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWKX9fuHgD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWKX9fuHgD .nav-link {
  position: relative;
}
.cid-uWKX9fuHgD .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWKX9fuHgD .container {
    flex-wrap: wrap;
  }
}
.cid-uWKX9fuHgD .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWKX9fuHgD .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uWKX9fuHgD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uWKX9fuHgD .dropdown-menu,
.cid-uWKX9fuHgD .navbar.opened {
  background: #ff9966 !important;
}
.cid-uWKX9fuHgD .nav-item:focus,
.cid-uWKX9fuHgD .nav-link:focus {
  outline: none;
}
.cid-uWKX9fuHgD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWKX9fuHgD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWKX9fuHgD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWKX9fuHgD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWKX9fuHgD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWKX9fuHgD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWKX9fuHgD .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: #ff9966;
}
.cid-uWKX9fuHgD .navbar.opened {
  transition: all 0.3s;
}
.cid-uWKX9fuHgD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWKX9fuHgD .navbar .navbar-logo img {
  width: auto;
}
.cid-uWKX9fuHgD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWKX9fuHgD .navbar.collapsed {
  justify-content: center;
}
.cid-uWKX9fuHgD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWKX9fuHgD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWKX9fuHgD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWKX9fuHgD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWKX9fuHgD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWKX9fuHgD .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-uWKX9fuHgD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWKX9fuHgD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWKX9fuHgD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWKX9fuHgD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWKX9fuHgD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWKX9fuHgD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWKX9fuHgD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWKX9fuHgD .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-uWKX9fuHgD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWKX9fuHgD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWKX9fuHgD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWKX9fuHgD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWKX9fuHgD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWKX9fuHgD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uWKX9fuHgD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uWKX9fuHgD .navbar.navbar-short {
  min-height: 60px;
}
.cid-uWKX9fuHgD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWKX9fuHgD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uWKX9fuHgD .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-uWKX9fuHgD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWKX9fuHgD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWKX9fuHgD .dropdown-item.active,
.cid-uWKX9fuHgD .dropdown-item:active {
  background-color: transparent;
}
.cid-uWKX9fuHgD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWKX9fuHgD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWKX9fuHgD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWKX9fuHgD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-uWKX9fuHgD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWKX9fuHgD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWKX9fuHgD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWKX9fuHgD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uWKX9fuHgD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWKX9fuHgD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uWKX9fuHgD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWKX9fuHgD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWKX9fuHgD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWKX9fuHgD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWKX9fuHgD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWKX9fuHgD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWKX9fuHgD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWKX9fuHgD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWKX9fuHgD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uWKX9fuHgD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWKX9fuHgD .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-uWKX9fuHgD .navbar {
    height: 70px;
  }
  .cid-uWKX9fuHgD .navbar.opened {
    height: auto;
  }
  .cid-uWKX9fuHgD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWKX9eY4fl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uWKX9eY4fl .carousel {
  height: 800px;
}
.cid-uWKX9eY4fl .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uWKX9eY4fl .carousel-item,
.cid-uWKX9eY4fl .carousel-inner {
  height: 100%;
}
.cid-uWKX9eY4fl .carousel-caption {
  bottom: 40px;
  z-index: 1;
}
.cid-uWKX9eY4fl .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uWKX9eY4fl .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uWKX9eY4fl .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uWKX9eY4fl .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uWKX9eY4fl .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uWKX9eY4fl .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uWKX9eY4fl .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uWKX9eY4fl .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWKX9eY4fl .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWKX9eY4fl .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWKX9eY4fl .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWKX9eY4fl .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uWKX9eY4fl .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWKX9eY4fl .carousel-indicators li.active,
.cid-uWKX9eY4fl .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWKX9eY4fl .carousel-indicators li::after,
.cid-uWKX9eY4fl .carousel-indicators li::before {
  content: none;
}
.cid-uWKX9eY4fl .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWKX9eY4fl .carousel-indicators {
    display: none !important;
  }
}
.cid-uX4cSHAvlD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uX4cSHAvlD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX4cSHAvlD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX4cSHAvlD .row {
  flex-direction: row-reverse;
}
.cid-uX4cSHAvlD .video-wrapper iframe {
  width: 100%;
}
.cid-uX4cSHAvlD .mbr-section-title,
.cid-uX4cSHAvlD .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uX4cSHAvlD .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX4cSHAvlD .mbr-section-subtitle {
  color: #ff9966;
}
.cid-uX4cSHAvlD .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX4cSHAvlD .mbr-section-title {
  color: #ffe161;
}
.cid-uWKX9fF9h2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWKX9fF9h2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWKX9fF9h2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWKX9fF9h2 .item {
  padding-bottom: 2rem;
}
.cid-uWKX9fF9h2 .item-wrapper {
  position: relative;
}
.cid-uWKX9fF9h2 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uWKX9fF9h2 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uWKX9fF9h2 .carousel-control,
.cid-uWKX9fF9h2 .close {
  background: #1b1b1b;
}
.cid-uWKX9fF9h2 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uWKX9fF9h2 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uWKX9fF9h2 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uWKX9fF9h2 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uWKX9fF9h2 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uWKX9fF9h2 .close::before {
  content: '\e91a';
}
.cid-uWKX9fF9h2 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uWKX9fF9h2 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWKX9fF9h2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWKX9fF9h2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWKX9fF9h2 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWKX9fF9h2 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uWKX9fF9h2 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWKX9fF9h2 .carousel-indicators li.active,
.cid-uWKX9fF9h2 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWKX9fF9h2 .carousel-indicators li::after,
.cid-uWKX9fF9h2 .carousel-indicators li::before {
  content: none;
}
.cid-uWKX9fF9h2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWKX9fF9h2 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uWKX9fF9h2 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uWKX9fF9h2 .carousel-indicators {
    display: none;
  }
}
.cid-uWKX9fF9h2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uWKX9fF9h2 .carousel-inner > .active {
  display: block;
}
.cid-uWKX9fF9h2 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWKX9fF9h2 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uWKX9fF9h2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uWKX9fF9h2 .carousel-control,
  .cid-uWKX9fF9h2 .carousel-indicators,
  .cid-uWKX9fF9h2 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uWKX9fF9h2 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uWKX9fF9h2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uWKX9fF9h2 .carousel-indicators .active,
.cid-uWKX9fF9h2 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uWKX9fF9h2 .carousel-indicators .active {
  background: #fff;
}
.cid-uWKX9fF9h2 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uWKX9fF9h2 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uWKX9fF9h2 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uWKX9fF9h2 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uWKX9fF9h2 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uWKX9fF9h2 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uWKX9fF9h2 .carousel {
  width: 100%;
}
.cid-uWKX9fF9h2 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uWKX9fF9h2 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uWKX9fF9h2 .modal.fade .modal-dialog,
.cid-uWKX9fF9h2 .modal.in .modal-dialog {
  transform: none;
}
.cid-uWKX9fF9h2 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uWKX9fF9h2 H6 {
  text-align: center;
}
.cid-uWKX9fF9h2 H3 {
  color: #fafafa;
}
.cid-uWKX9gcS2r {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-uWKX9gcS2r .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uWKX9gcS2r .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uWKX9gcS2r .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uWKX9gcS2r .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uWKX9gcS2r .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uWKX9gcS2r .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uWKX9gcS2r .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-uWKX9gcS2r .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uWKX9gcS2r .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uWKX9gcS2r .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uWKX9gcS2r .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uWKX9gcS2r .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uWKX9gcS2r .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uWKX9gcS2r .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uWKX9gcS2r .media-container-row .mbr-text {
  color: #232323;
}
.cid-uWKYXYcLnv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uWKYXYcLnv nav.navbar {
  position: fixed;
}
.cid-uWKYXYcLnv .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-uWKYXYcLnv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uWKYXYcLnv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uWKYXYcLnv .dropdown-item:hover,
.cid-uWKYXYcLnv .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uWKYXYcLnv .dropdown-item:hover span {
  color: white;
}
.cid-uWKYXYcLnv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWKYXYcLnv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWKYXYcLnv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWKYXYcLnv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWKYXYcLnv .nav-link {
  position: relative;
}
.cid-uWKYXYcLnv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWKYXYcLnv .container {
    flex-wrap: wrap;
  }
}
.cid-uWKYXYcLnv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWKYXYcLnv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uWKYXYcLnv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uWKYXYcLnv .dropdown-menu,
.cid-uWKYXYcLnv .navbar.opened {
  background: #ff9966 !important;
}
.cid-uWKYXYcLnv .nav-item:focus,
.cid-uWKYXYcLnv .nav-link:focus {
  outline: none;
}
.cid-uWKYXYcLnv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWKYXYcLnv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWKYXYcLnv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWKYXYcLnv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWKYXYcLnv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWKYXYcLnv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWKYXYcLnv .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: #ff9966;
}
.cid-uWKYXYcLnv .navbar.opened {
  transition: all 0.3s;
}
.cid-uWKYXYcLnv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWKYXYcLnv .navbar .navbar-logo img {
  width: auto;
}
.cid-uWKYXYcLnv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWKYXYcLnv .navbar.collapsed {
  justify-content: center;
}
.cid-uWKYXYcLnv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWKYXYcLnv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWKYXYcLnv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWKYXYcLnv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWKYXYcLnv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWKYXYcLnv .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-uWKYXYcLnv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWKYXYcLnv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWKYXYcLnv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWKYXYcLnv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWKYXYcLnv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWKYXYcLnv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWKYXYcLnv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWKYXYcLnv .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-uWKYXYcLnv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWKYXYcLnv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWKYXYcLnv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWKYXYcLnv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWKYXYcLnv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWKYXYcLnv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uWKYXYcLnv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uWKYXYcLnv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uWKYXYcLnv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWKYXYcLnv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uWKYXYcLnv .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-uWKYXYcLnv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWKYXYcLnv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWKYXYcLnv .dropdown-item.active,
.cid-uWKYXYcLnv .dropdown-item:active {
  background-color: transparent;
}
.cid-uWKYXYcLnv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWKYXYcLnv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWKYXYcLnv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWKYXYcLnv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-uWKYXYcLnv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWKYXYcLnv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWKYXYcLnv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWKYXYcLnv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uWKYXYcLnv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWKYXYcLnv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uWKYXYcLnv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWKYXYcLnv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWKYXYcLnv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWKYXYcLnv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWKYXYcLnv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWKYXYcLnv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWKYXYcLnv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWKYXYcLnv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWKYXYcLnv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uWKYXYcLnv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWKYXYcLnv .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-uWKYXYcLnv .navbar {
    height: 70px;
  }
  .cid-uWKYXYcLnv .navbar.opened {
    height: auto;
  }
  .cid-uWKYXYcLnv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX43X1puCv {
  background-image: url("../../../assets/images/frame-161.jpg");
}
.cid-uX43X1puCv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX43X1puCv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX43X1puCv .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX43X1puCv .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX43X1puCv .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX43X1puCv .mbr-section-title {
  color: #22a5e5;
}
.cid-uX43X1puCv .mbr-text,
.cid-uX43X1puCv .mbr-section-btn,
.cid-uX43X1puCv .social-row {
  color: #232323;
}
.cid-uX43X1puCv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX43WNLny4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX43WNLny4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX43WNLny4 .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-uX43WNLny4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX43WNLny4 .row {
  flex-direction: row-reverse;
}
.cid-uX43WNLny4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX43WNLny4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX43WNLny4 .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX43WNLny4 .mbr-section-title {
  color: #fafafa;
}
.cid-uWKYXYqaog {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWKYXYqaog .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWKYXYqaog .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWKYXYqaog .item {
  padding-bottom: 2rem;
}
.cid-uWKYXYqaog .item-wrapper {
  position: relative;
}
.cid-uWKYXYqaog .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uWKYXYqaog .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uWKYXYqaog .carousel-control,
.cid-uWKYXYqaog .close {
  background: #1b1b1b;
}
.cid-uWKYXYqaog .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uWKYXYqaog .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uWKYXYqaog .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uWKYXYqaog .carousel-control-next span {
  margin-left: 5px;
}
.cid-uWKYXYqaog .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uWKYXYqaog .close::before {
  content: '\e91a';
}
.cid-uWKYXYqaog .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uWKYXYqaog .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWKYXYqaog .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWKYXYqaog .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWKYXYqaog .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWKYXYqaog .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uWKYXYqaog .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWKYXYqaog .carousel-indicators li.active,
.cid-uWKYXYqaog .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWKYXYqaog .carousel-indicators li::after,
.cid-uWKYXYqaog .carousel-indicators li::before {
  content: none;
}
.cid-uWKYXYqaog .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWKYXYqaog .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uWKYXYqaog .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uWKYXYqaog .carousel-indicators {
    display: none;
  }
}
.cid-uWKYXYqaog .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uWKYXYqaog .carousel-inner > .active {
  display: block;
}
.cid-uWKYXYqaog .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWKYXYqaog .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uWKYXYqaog .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uWKYXYqaog .carousel-control,
  .cid-uWKYXYqaog .carousel-indicators,
  .cid-uWKYXYqaog .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uWKYXYqaog .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uWKYXYqaog .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uWKYXYqaog .carousel-indicators .active,
.cid-uWKYXYqaog .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uWKYXYqaog .carousel-indicators .active {
  background: #fff;
}
.cid-uWKYXYqaog .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uWKYXYqaog .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uWKYXYqaog .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uWKYXYqaog .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uWKYXYqaog .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uWKYXYqaog .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uWKYXYqaog .carousel {
  width: 100%;
}
.cid-uWKYXYqaog .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uWKYXYqaog .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uWKYXYqaog .modal.fade .modal-dialog,
.cid-uWKYXYqaog .modal.in .modal-dialog {
  transform: none;
}
.cid-uWKYXYqaog .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uWKYXYqaog H6 {
  text-align: center;
}
.cid-uWKYXYqaog H3 {
  color: #fafafa;
}
.cid-uWKYXYYmM2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-uWKYXYYmM2 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uWKYXYYmM2 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uWKYXYYmM2 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uWKYXYYmM2 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uWKYXYYmM2 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uWKYXYYmM2 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uWKYXYYmM2 .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-uWKYXYYmM2 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uWKYXYYmM2 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uWKYXYYmM2 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uWKYXYYmM2 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uWKYXYYmM2 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uWKYXYYmM2 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uWKYXYYmM2 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uWKYXYYmM2 .media-container-row .mbr-text {
  color: #232323;
}
.cid-uWL0MFCRda {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uWL0MFCRda nav.navbar {
  position: fixed;
}
.cid-uWL0MFCRda .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-uWL0MFCRda .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uWL0MFCRda .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uWL0MFCRda .dropdown-item:hover,
.cid-uWL0MFCRda .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uWL0MFCRda .dropdown-item:hover span {
  color: white;
}
.cid-uWL0MFCRda .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWL0MFCRda .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWL0MFCRda .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWL0MFCRda .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWL0MFCRda .nav-link {
  position: relative;
}
.cid-uWL0MFCRda .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWL0MFCRda .container {
    flex-wrap: wrap;
  }
}
.cid-uWL0MFCRda .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWL0MFCRda .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uWL0MFCRda .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uWL0MFCRda .dropdown-menu,
.cid-uWL0MFCRda .navbar.opened {
  background: #ff9966 !important;
}
.cid-uWL0MFCRda .nav-item:focus,
.cid-uWL0MFCRda .nav-link:focus {
  outline: none;
}
.cid-uWL0MFCRda .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWL0MFCRda .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWL0MFCRda .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWL0MFCRda .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWL0MFCRda .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWL0MFCRda .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWL0MFCRda .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: #ff9966;
}
.cid-uWL0MFCRda .navbar.opened {
  transition: all 0.3s;
}
.cid-uWL0MFCRda .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWL0MFCRda .navbar .navbar-logo img {
  width: auto;
}
.cid-uWL0MFCRda .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWL0MFCRda .navbar.collapsed {
  justify-content: center;
}
.cid-uWL0MFCRda .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWL0MFCRda .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWL0MFCRda .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWL0MFCRda .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWL0MFCRda .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWL0MFCRda .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-uWL0MFCRda .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWL0MFCRda .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWL0MFCRda .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWL0MFCRda .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWL0MFCRda .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWL0MFCRda .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWL0MFCRda .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWL0MFCRda .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-uWL0MFCRda .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWL0MFCRda .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWL0MFCRda .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWL0MFCRda .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWL0MFCRda .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWL0MFCRda .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uWL0MFCRda .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uWL0MFCRda .navbar.navbar-short {
  min-height: 60px;
}
.cid-uWL0MFCRda .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWL0MFCRda .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uWL0MFCRda .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-uWL0MFCRda .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWL0MFCRda .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWL0MFCRda .dropdown-item.active,
.cid-uWL0MFCRda .dropdown-item:active {
  background-color: transparent;
}
.cid-uWL0MFCRda .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWL0MFCRda .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWL0MFCRda .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWL0MFCRda .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-uWL0MFCRda .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWL0MFCRda .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWL0MFCRda ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWL0MFCRda .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uWL0MFCRda button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWL0MFCRda button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uWL0MFCRda button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWL0MFCRda button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWL0MFCRda button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWL0MFCRda button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWL0MFCRda nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWL0MFCRda nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWL0MFCRda nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWL0MFCRda nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWL0MFCRda .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uWL0MFCRda a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWL0MFCRda .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-uWL0MFCRda .navbar {
    height: 70px;
  }
  .cid-uWL0MFCRda .navbar.opened {
    height: auto;
  }
  .cid-uWL0MFCRda .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX43Az4qRf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX43Az4qRf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX43Az4qRf .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX43Az4qRf .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX43Az4qRf .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX43Az4qRf .mbr-section-title {
  color: #22a5e5;
}
.cid-uX43Az4qRf .mbr-text,
.cid-uX43Az4qRf .mbr-section-btn,
.cid-uX43Az4qRf .social-row {
  color: #232323;
}
.cid-uX43Az4qRf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX43Ad1jRC {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX43Ad1jRC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX43Ad1jRC .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-uX43Ad1jRC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX43Ad1jRC .row {
  flex-direction: row-reverse;
}
.cid-uX43Ad1jRC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX43Ad1jRC .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX43Ad1jRC .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX43Ad1jRC .mbr-section-title {
  color: #fafafa;
}
.cid-uWL0MFN6P7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWL0MFN6P7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWL0MFN6P7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWL0MFN6P7 .item {
  padding-bottom: 2rem;
}
.cid-uWL0MFN6P7 .item-wrapper {
  position: relative;
}
.cid-uWL0MFN6P7 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uWL0MFN6P7 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uWL0MFN6P7 .carousel-control,
.cid-uWL0MFN6P7 .close {
  background: #1b1b1b;
}
.cid-uWL0MFN6P7 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uWL0MFN6P7 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uWL0MFN6P7 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uWL0MFN6P7 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uWL0MFN6P7 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uWL0MFN6P7 .close::before {
  content: '\e91a';
}
.cid-uWL0MFN6P7 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uWL0MFN6P7 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWL0MFN6P7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWL0MFN6P7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWL0MFN6P7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWL0MFN6P7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uWL0MFN6P7 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWL0MFN6P7 .carousel-indicators li.active,
.cid-uWL0MFN6P7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWL0MFN6P7 .carousel-indicators li::after,
.cid-uWL0MFN6P7 .carousel-indicators li::before {
  content: none;
}
.cid-uWL0MFN6P7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWL0MFN6P7 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uWL0MFN6P7 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uWL0MFN6P7 .carousel-indicators {
    display: none;
  }
}
.cid-uWL0MFN6P7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uWL0MFN6P7 .carousel-inner > .active {
  display: block;
}
.cid-uWL0MFN6P7 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWL0MFN6P7 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uWL0MFN6P7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uWL0MFN6P7 .carousel-control,
  .cid-uWL0MFN6P7 .carousel-indicators,
  .cid-uWL0MFN6P7 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uWL0MFN6P7 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uWL0MFN6P7 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uWL0MFN6P7 .carousel-indicators .active,
.cid-uWL0MFN6P7 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uWL0MFN6P7 .carousel-indicators .active {
  background: #fff;
}
.cid-uWL0MFN6P7 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uWL0MFN6P7 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uWL0MFN6P7 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uWL0MFN6P7 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uWL0MFN6P7 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uWL0MFN6P7 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uWL0MFN6P7 .carousel {
  width: 100%;
}
.cid-uWL0MFN6P7 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uWL0MFN6P7 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uWL0MFN6P7 .modal.fade .modal-dialog,
.cid-uWL0MFN6P7 .modal.in .modal-dialog {
  transform: none;
}
.cid-uWL0MFN6P7 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uWL0MFN6P7 H6 {
  text-align: center;
}
.cid-uWL0MFN6P7 H3 {
  color: #fafafa;
}
.cid-uWL0MGjy4Y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-uWL0MGjy4Y .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uWL0MGjy4Y .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uWL0MGjy4Y .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uWL0MGjy4Y .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uWL0MGjy4Y .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uWL0MGjy4Y .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uWL0MGjy4Y .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-uWL0MGjy4Y .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uWL0MGjy4Y .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uWL0MGjy4Y .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uWL0MGjy4Y .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uWL0MGjy4Y .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uWL0MGjy4Y .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uWL0MGjy4Y .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uWL0MGjy4Y .media-container-row .mbr-text {
  color: #232323;
}
.cid-uWP0iXRmMQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uWP0iXRmMQ nav.navbar {
  position: fixed;
}
.cid-uWP0iXRmMQ .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-uWP0iXRmMQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uWP0iXRmMQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uWP0iXRmMQ .dropdown-item:hover,
.cid-uWP0iXRmMQ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uWP0iXRmMQ .dropdown-item:hover span {
  color: white;
}
.cid-uWP0iXRmMQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWP0iXRmMQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWP0iXRmMQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWP0iXRmMQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWP0iXRmMQ .nav-link {
  position: relative;
}
.cid-uWP0iXRmMQ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWP0iXRmMQ .container {
    flex-wrap: wrap;
  }
}
.cid-uWP0iXRmMQ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWP0iXRmMQ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uWP0iXRmMQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uWP0iXRmMQ .dropdown-menu,
.cid-uWP0iXRmMQ .navbar.opened {
  background: #ff9966 !important;
}
.cid-uWP0iXRmMQ .nav-item:focus,
.cid-uWP0iXRmMQ .nav-link:focus {
  outline: none;
}
.cid-uWP0iXRmMQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWP0iXRmMQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWP0iXRmMQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWP0iXRmMQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWP0iXRmMQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWP0iXRmMQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWP0iXRmMQ .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: #ff9966;
}
.cid-uWP0iXRmMQ .navbar.opened {
  transition: all 0.3s;
}
.cid-uWP0iXRmMQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWP0iXRmMQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uWP0iXRmMQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWP0iXRmMQ .navbar.collapsed {
  justify-content: center;
}
.cid-uWP0iXRmMQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWP0iXRmMQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWP0iXRmMQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWP0iXRmMQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWP0iXRmMQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWP0iXRmMQ .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-uWP0iXRmMQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWP0iXRmMQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWP0iXRmMQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWP0iXRmMQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWP0iXRmMQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWP0iXRmMQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWP0iXRmMQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWP0iXRmMQ .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-uWP0iXRmMQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWP0iXRmMQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWP0iXRmMQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWP0iXRmMQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWP0iXRmMQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWP0iXRmMQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uWP0iXRmMQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uWP0iXRmMQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uWP0iXRmMQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWP0iXRmMQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uWP0iXRmMQ .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-uWP0iXRmMQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWP0iXRmMQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWP0iXRmMQ .dropdown-item.active,
.cid-uWP0iXRmMQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uWP0iXRmMQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWP0iXRmMQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWP0iXRmMQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWP0iXRmMQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-uWP0iXRmMQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWP0iXRmMQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWP0iXRmMQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWP0iXRmMQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uWP0iXRmMQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWP0iXRmMQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uWP0iXRmMQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWP0iXRmMQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWP0iXRmMQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWP0iXRmMQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWP0iXRmMQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWP0iXRmMQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWP0iXRmMQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWP0iXRmMQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWP0iXRmMQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uWP0iXRmMQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWP0iXRmMQ .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-uWP0iXRmMQ .navbar {
    height: 70px;
  }
  .cid-uWP0iXRmMQ .navbar.opened {
    height: auto;
  }
  .cid-uWP0iXRmMQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWP0iY6NRz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uWP0iY6NRz .carousel {
  height: 800px;
}
.cid-uWP0iY6NRz .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uWP0iY6NRz .carousel-item,
.cid-uWP0iY6NRz .carousel-inner {
  height: 100%;
}
.cid-uWP0iY6NRz .carousel-caption {
  bottom: 40px;
  z-index: 1;
}
.cid-uWP0iY6NRz .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uWP0iY6NRz .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uWP0iY6NRz .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uWP0iY6NRz .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uWP0iY6NRz .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uWP0iY6NRz .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uWP0iY6NRz .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uWP0iY6NRz .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWP0iY6NRz .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWP0iY6NRz .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWP0iY6NRz .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWP0iY6NRz .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uWP0iY6NRz .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWP0iY6NRz .carousel-indicators li.active,
.cid-uWP0iY6NRz .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWP0iY6NRz .carousel-indicators li::after,
.cid-uWP0iY6NRz .carousel-indicators li::before {
  content: none;
}
.cid-uWP0iY6NRz .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWP0iY6NRz .carousel-indicators {
    display: none !important;
  }
}
.cid-uX44kWIXS9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX44kWIXS9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX44kWIXS9 .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-uX44kWIXS9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX44kWIXS9 .row {
  flex-direction: row-reverse;
}
.cid-uX44kWIXS9 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX44kWIXS9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX44kWIXS9 .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX44kWIXS9 .mbr-section-title {
  color: #fafafa;
}
.cid-uWP0iYIx5G {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWP0iYIx5G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWP0iYIx5G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWP0iYIx5G .item {
  padding-bottom: 2rem;
}
.cid-uWP0iYIx5G .item-wrapper {
  position: relative;
}
.cid-uWP0iYIx5G .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uWP0iYIx5G .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uWP0iYIx5G .carousel-control,
.cid-uWP0iYIx5G .close {
  background: #1b1b1b;
}
.cid-uWP0iYIx5G .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uWP0iYIx5G .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uWP0iYIx5G .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uWP0iYIx5G .carousel-control-next span {
  margin-left: 5px;
}
.cid-uWP0iYIx5G .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uWP0iYIx5G .close::before {
  content: '\e91a';
}
.cid-uWP0iYIx5G .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uWP0iYIx5G .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWP0iYIx5G .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWP0iYIx5G .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWP0iYIx5G .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWP0iYIx5G .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uWP0iYIx5G .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWP0iYIx5G .carousel-indicators li.active,
.cid-uWP0iYIx5G .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWP0iYIx5G .carousel-indicators li::after,
.cid-uWP0iYIx5G .carousel-indicators li::before {
  content: none;
}
.cid-uWP0iYIx5G .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWP0iYIx5G .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uWP0iYIx5G .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uWP0iYIx5G .carousel-indicators {
    display: none;
  }
}
.cid-uWP0iYIx5G .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uWP0iYIx5G .carousel-inner > .active {
  display: block;
}
.cid-uWP0iYIx5G .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWP0iYIx5G .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uWP0iYIx5G .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uWP0iYIx5G .carousel-control,
  .cid-uWP0iYIx5G .carousel-indicators,
  .cid-uWP0iYIx5G .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uWP0iYIx5G .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uWP0iYIx5G .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uWP0iYIx5G .carousel-indicators .active,
.cid-uWP0iYIx5G .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uWP0iYIx5G .carousel-indicators .active {
  background: #fff;
}
.cid-uWP0iYIx5G .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uWP0iYIx5G .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uWP0iYIx5G .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uWP0iYIx5G .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uWP0iYIx5G .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uWP0iYIx5G .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uWP0iYIx5G .carousel {
  width: 100%;
}
.cid-uWP0iYIx5G .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uWP0iYIx5G .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uWP0iYIx5G .modal.fade .modal-dialog,
.cid-uWP0iYIx5G .modal.in .modal-dialog {
  transform: none;
}
.cid-uWP0iYIx5G .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uWP0iYIx5G H6 {
  text-align: center;
}
.cid-uWP0iYIx5G H3 {
  color: #fafafa;
}
.cid-uWP0iZmjN9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-uWP0iZmjN9 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uWP0iZmjN9 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uWP0iZmjN9 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uWP0iZmjN9 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uWP0iZmjN9 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uWP0iZmjN9 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uWP0iZmjN9 .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-uWP0iZmjN9 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uWP0iZmjN9 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uWP0iZmjN9 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uWP0iZmjN9 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uWP0iZmjN9 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uWP0iZmjN9 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uWP0iZmjN9 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uWP0iZmjN9 .media-container-row .mbr-text {
  color: #232323;
}
.cid-uWP1YjZjGP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uWP1YjZjGP nav.navbar {
  position: fixed;
}
.cid-uWP1YjZjGP .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-uWP1YjZjGP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uWP1YjZjGP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uWP1YjZjGP .dropdown-item:hover,
.cid-uWP1YjZjGP .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uWP1YjZjGP .dropdown-item:hover span {
  color: white;
}
.cid-uWP1YjZjGP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWP1YjZjGP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWP1YjZjGP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWP1YjZjGP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWP1YjZjGP .nav-link {
  position: relative;
}
.cid-uWP1YjZjGP .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWP1YjZjGP .container {
    flex-wrap: wrap;
  }
}
.cid-uWP1YjZjGP .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWP1YjZjGP .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uWP1YjZjGP .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uWP1YjZjGP .dropdown-menu,
.cid-uWP1YjZjGP .navbar.opened {
  background: #ff9966 !important;
}
.cid-uWP1YjZjGP .nav-item:focus,
.cid-uWP1YjZjGP .nav-link:focus {
  outline: none;
}
.cid-uWP1YjZjGP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWP1YjZjGP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWP1YjZjGP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWP1YjZjGP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWP1YjZjGP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWP1YjZjGP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWP1YjZjGP .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: #ff9966;
}
.cid-uWP1YjZjGP .navbar.opened {
  transition: all 0.3s;
}
.cid-uWP1YjZjGP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWP1YjZjGP .navbar .navbar-logo img {
  width: auto;
}
.cid-uWP1YjZjGP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWP1YjZjGP .navbar.collapsed {
  justify-content: center;
}
.cid-uWP1YjZjGP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWP1YjZjGP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWP1YjZjGP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWP1YjZjGP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWP1YjZjGP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWP1YjZjGP .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-uWP1YjZjGP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWP1YjZjGP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWP1YjZjGP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWP1YjZjGP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWP1YjZjGP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWP1YjZjGP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWP1YjZjGP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWP1YjZjGP .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-uWP1YjZjGP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWP1YjZjGP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWP1YjZjGP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWP1YjZjGP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWP1YjZjGP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWP1YjZjGP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uWP1YjZjGP .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uWP1YjZjGP .navbar.navbar-short {
  min-height: 60px;
}
.cid-uWP1YjZjGP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWP1YjZjGP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uWP1YjZjGP .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-uWP1YjZjGP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWP1YjZjGP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWP1YjZjGP .dropdown-item.active,
.cid-uWP1YjZjGP .dropdown-item:active {
  background-color: transparent;
}
.cid-uWP1YjZjGP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWP1YjZjGP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWP1YjZjGP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWP1YjZjGP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-uWP1YjZjGP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWP1YjZjGP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWP1YjZjGP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWP1YjZjGP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uWP1YjZjGP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWP1YjZjGP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uWP1YjZjGP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWP1YjZjGP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWP1YjZjGP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWP1YjZjGP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWP1YjZjGP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWP1YjZjGP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWP1YjZjGP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWP1YjZjGP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWP1YjZjGP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uWP1YjZjGP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWP1YjZjGP .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-uWP1YjZjGP .navbar {
    height: 70px;
  }
  .cid-uWP1YjZjGP .navbar.opened {
    height: auto;
  }
  .cid-uWP1YjZjGP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWP2qFTu7k {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uWP2qFTu7k .carousel {
  height: 800px;
}
.cid-uWP2qFTu7k .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uWP2qFTu7k .carousel-item,
.cid-uWP2qFTu7k .carousel-inner {
  height: 100%;
}
.cid-uWP2qFTu7k .carousel-caption {
  bottom: 40px;
  z-index: 1;
}
.cid-uWP2qFTu7k .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uWP2qFTu7k .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uWP2qFTu7k .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uWP2qFTu7k .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uWP2qFTu7k .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uWP2qFTu7k .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uWP2qFTu7k .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uWP2qFTu7k .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWP2qFTu7k .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWP2qFTu7k .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWP2qFTu7k .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWP2qFTu7k .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uWP2qFTu7k .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWP2qFTu7k .carousel-indicators li.active,
.cid-uWP2qFTu7k .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWP2qFTu7k .carousel-indicators li::after,
.cid-uWP2qFTu7k .carousel-indicators li::before {
  content: none;
}
.cid-uWP2qFTu7k .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWP2qFTu7k .carousel-indicators {
    display: none !important;
  }
}
.cid-uX43htqRDS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX43htqRDS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX43htqRDS .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-uX43htqRDS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX43htqRDS .row {
  flex-direction: row-reverse;
}
.cid-uX43htqRDS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX43htqRDS .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX43htqRDS .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX43htqRDS .mbr-section-title {
  color: #fafafa;
}
.cid-uWP1YkurqY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWP1YkurqY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWP1YkurqY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWP1YkurqY .item {
  padding-bottom: 2rem;
}
.cid-uWP1YkurqY .item-wrapper {
  position: relative;
}
.cid-uWP1YkurqY .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uWP1YkurqY .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uWP1YkurqY .carousel-control,
.cid-uWP1YkurqY .close {
  background: #1b1b1b;
}
.cid-uWP1YkurqY .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uWP1YkurqY .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uWP1YkurqY .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uWP1YkurqY .carousel-control-next span {
  margin-left: 5px;
}
.cid-uWP1YkurqY .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uWP1YkurqY .close::before {
  content: '\e91a';
}
.cid-uWP1YkurqY .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uWP1YkurqY .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWP1YkurqY .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWP1YkurqY .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWP1YkurqY .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWP1YkurqY .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uWP1YkurqY .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWP1YkurqY .carousel-indicators li.active,
.cid-uWP1YkurqY .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWP1YkurqY .carousel-indicators li::after,
.cid-uWP1YkurqY .carousel-indicators li::before {
  content: none;
}
.cid-uWP1YkurqY .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWP1YkurqY .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uWP1YkurqY .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uWP1YkurqY .carousel-indicators {
    display: none;
  }
}
.cid-uWP1YkurqY .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uWP1YkurqY .carousel-inner > .active {
  display: block;
}
.cid-uWP1YkurqY .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWP1YkurqY .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uWP1YkurqY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uWP1YkurqY .carousel-control,
  .cid-uWP1YkurqY .carousel-indicators,
  .cid-uWP1YkurqY .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uWP1YkurqY .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uWP1YkurqY .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uWP1YkurqY .carousel-indicators .active,
.cid-uWP1YkurqY .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uWP1YkurqY .carousel-indicators .active {
  background: #fff;
}
.cid-uWP1YkurqY .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uWP1YkurqY .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uWP1YkurqY .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uWP1YkurqY .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uWP1YkurqY .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uWP1YkurqY .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uWP1YkurqY .carousel {
  width: 100%;
}
.cid-uWP1YkurqY .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uWP1YkurqY .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uWP1YkurqY .modal.fade .modal-dialog,
.cid-uWP1YkurqY .modal.in .modal-dialog {
  transform: none;
}
.cid-uWP1YkurqY .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uWP1YkurqY H6 {
  text-align: center;
}
.cid-uWP1YkurqY H3 {
  color: #fafafa;
}
.cid-uWP1YkTBiA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-uWP1YkTBiA .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uWP1YkTBiA .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uWP1YkTBiA .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uWP1YkTBiA .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uWP1YkTBiA .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uWP1YkTBiA .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uWP1YkTBiA .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-uWP1YkTBiA .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uWP1YkTBiA .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uWP1YkTBiA .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uWP1YkTBiA .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uWP1YkTBiA .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uWP1YkTBiA .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uWP1YkTBiA .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uWP1YkTBiA .media-container-row .mbr-text {
  color: #232323;
}
.cid-tG3L19pqrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tG3L19pqrS nav.navbar {
  position: fixed;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tG3L19pqrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tG3L19pqrS .dropdown-item:hover,
.cid-tG3L19pqrS .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tG3L19pqrS .dropdown-item:hover span {
  color: white;
}
.cid-tG3L19pqrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tG3L19pqrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tG3L19pqrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tG3L19pqrS .nav-link {
  position: relative;
}
.cid-tG3L19pqrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tG3L19pqrS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown-menu,
.cid-tG3L19pqrS .navbar.opened {
  background: #ff9966 !important;
}
.cid-tG3L19pqrS .nav-item:focus,
.cid-tG3L19pqrS .nav-link:focus {
  outline: none;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tG3L19pqrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tG3L19pqrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tG3L19pqrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tG3L19pqrS .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: #ff9966;
}
.cid-tG3L19pqrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tG3L19pqrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tG3L19pqrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tG3L19pqrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tG3L19pqrS .navbar.collapsed {
  justify-content: center;
}
.cid-tG3L19pqrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tG3L19pqrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tG3L19pqrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tG3L19pqrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tG3L19pqrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tG3L19pqrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tG3L19pqrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tG3L19pqrS .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-tG3L19pqrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tG3L19pqrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tG3L19pqrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tG3L19pqrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tG3L19pqrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tG3L19pqrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tG3L19pqrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tG3L19pqrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tG3L19pqrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tG3L19pqrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tG3L19pqrS .dropdown-item.active,
.cid-tG3L19pqrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tG3L19pqrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tG3L19pqrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-tG3L19pqrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tG3L19pqrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tG3L19pqrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tG3L19pqrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tG3L19pqrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tG3L19pqrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tG3L19pqrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tG3L19pqrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tG3L19pqrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tG3L19pqrS .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-tG3L19pqrS .navbar {
    height: 70px;
  }
  .cid-tG3L19pqrS .navbar.opened {
    height: auto;
  }
  .cid-tG3L19pqrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWZ8isoPxC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWZ8isoPxC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uWZ8isoPxC .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uWZ8isoPxC .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uWZ8isoPxC .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uWZ8isoPxC .mbr-section-title {
  color: #22a5e5;
}
.cid-uWZ8isoPxC .mbr-text,
.cid-uWZ8isoPxC .mbr-section-btn,
.cid-uWZ8isoPxC .social-row {
  color: #232323;
}
.cid-uWZ8isoPxC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX4aIEZedw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uX4aIEZedw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX4aIEZedw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX4aIEZedw .row {
  flex-direction: row-reverse;
}
.cid-uX4aIEZedw .video-wrapper iframe {
  width: 100%;
}
.cid-uX4aIEZedw .mbr-section-title,
.cid-uX4aIEZedw .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uX4aIEZedw .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX4aIEZedw .mbr-section-subtitle {
  color: #ff9966;
}
.cid-uX4aIEZedw .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX4aIEZedw .mbr-section-title {
  color: #ffe161;
}
.cid-tFA9hFo4fC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tFA9hFo4fC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFA9hFo4fC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFA9hFo4fC .item {
  padding-bottom: 2rem;
}
.cid-tFA9hFo4fC .item-wrapper {
  position: relative;
}
.cid-tFA9hFo4fC .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tFA9hFo4fC .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tFA9hFo4fC .carousel-control,
.cid-tFA9hFo4fC .close {
  background: #1b1b1b;
}
.cid-tFA9hFo4fC .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tFA9hFo4fC .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tFA9hFo4fC .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tFA9hFo4fC .carousel-control-next span {
  margin-left: 5px;
}
.cid-tFA9hFo4fC .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tFA9hFo4fC .close::before {
  content: '\e91a';
}
.cid-tFA9hFo4fC .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tFA9hFo4fC .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tFA9hFo4fC .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA9hFo4fC .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFA9hFo4fC .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tFA9hFo4fC .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tFA9hFo4fC .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tFA9hFo4fC .carousel-indicators li.active,
.cid-tFA9hFo4fC .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tFA9hFo4fC .carousel-indicators li::after,
.cid-tFA9hFo4fC .carousel-indicators li::before {
  content: none;
}
.cid-tFA9hFo4fC .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tFA9hFo4fC .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tFA9hFo4fC .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tFA9hFo4fC .carousel-indicators {
    display: none;
  }
}
.cid-tFA9hFo4fC .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tFA9hFo4fC .carousel-inner > .active {
  display: block;
}
.cid-tFA9hFo4fC .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tFA9hFo4fC .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tFA9hFo4fC .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tFA9hFo4fC .carousel-control,
  .cid-tFA9hFo4fC .carousel-indicators,
  .cid-tFA9hFo4fC .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tFA9hFo4fC .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tFA9hFo4fC .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tFA9hFo4fC .carousel-indicators .active,
.cid-tFA9hFo4fC .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tFA9hFo4fC .carousel-indicators .active {
  background: #fff;
}
.cid-tFA9hFo4fC .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tFA9hFo4fC .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tFA9hFo4fC .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tFA9hFo4fC .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tFA9hFo4fC .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tFA9hFo4fC .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tFA9hFo4fC .carousel {
  width: 100%;
}
.cid-tFA9hFo4fC .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tFA9hFo4fC .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tFA9hFo4fC .modal.fade .modal-dialog,
.cid-tFA9hFo4fC .modal.in .modal-dialog {
  transform: none;
}
.cid-tFA9hFo4fC .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tFA9hFo4fC H6 {
  text-align: center;
}
.cid-tFA9hFo4fC H3 {
  color: #fafafa;
}
.cid-tFA9hGpAJ3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-tFA9hGpAJ3 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tFA9hGpAJ3 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tFA9hGpAJ3 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tFA9hGpAJ3 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tFA9hGpAJ3 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tFA9hGpAJ3 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tFA9hGpAJ3 .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-tFA9hGpAJ3 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tFA9hGpAJ3 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFA9hGpAJ3 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tFA9hGpAJ3 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFA9hGpAJ3 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFA9hGpAJ3 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tFA9hGpAJ3 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFA9hGpAJ3 .media-container-row .mbr-text {
  color: #232323;
}
.cid-uWPdEQk8Ms {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uWPdEQk8Ms nav.navbar {
  position: fixed;
}
.cid-uWPdEQk8Ms .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-uWPdEQk8Ms .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uWPdEQk8Ms .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uWPdEQk8Ms .dropdown-item:hover,
.cid-uWPdEQk8Ms .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uWPdEQk8Ms .dropdown-item:hover span {
  color: white;
}
.cid-uWPdEQk8Ms .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWPdEQk8Ms .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWPdEQk8Ms .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWPdEQk8Ms .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWPdEQk8Ms .nav-link {
  position: relative;
}
.cid-uWPdEQk8Ms .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWPdEQk8Ms .container {
    flex-wrap: wrap;
  }
}
.cid-uWPdEQk8Ms .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWPdEQk8Ms .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uWPdEQk8Ms .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uWPdEQk8Ms .dropdown-menu,
.cid-uWPdEQk8Ms .navbar.opened {
  background: #ff9966 !important;
}
.cid-uWPdEQk8Ms .nav-item:focus,
.cid-uWPdEQk8Ms .nav-link:focus {
  outline: none;
}
.cid-uWPdEQk8Ms .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWPdEQk8Ms .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWPdEQk8Ms .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWPdEQk8Ms .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWPdEQk8Ms .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWPdEQk8Ms .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWPdEQk8Ms .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: #ff9966;
}
.cid-uWPdEQk8Ms .navbar.opened {
  transition: all 0.3s;
}
.cid-uWPdEQk8Ms .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWPdEQk8Ms .navbar .navbar-logo img {
  width: auto;
}
.cid-uWPdEQk8Ms .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWPdEQk8Ms .navbar.collapsed {
  justify-content: center;
}
.cid-uWPdEQk8Ms .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWPdEQk8Ms .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWPdEQk8Ms .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWPdEQk8Ms .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWPdEQk8Ms .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWPdEQk8Ms .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-uWPdEQk8Ms .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWPdEQk8Ms .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWPdEQk8Ms .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWPdEQk8Ms .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWPdEQk8Ms .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWPdEQk8Ms .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWPdEQk8Ms .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWPdEQk8Ms .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-uWPdEQk8Ms .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWPdEQk8Ms .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWPdEQk8Ms .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWPdEQk8Ms .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWPdEQk8Ms .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWPdEQk8Ms .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uWPdEQk8Ms .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uWPdEQk8Ms .navbar.navbar-short {
  min-height: 60px;
}
.cid-uWPdEQk8Ms .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWPdEQk8Ms .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uWPdEQk8Ms .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-uWPdEQk8Ms .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWPdEQk8Ms .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWPdEQk8Ms .dropdown-item.active,
.cid-uWPdEQk8Ms .dropdown-item:active {
  background-color: transparent;
}
.cid-uWPdEQk8Ms .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWPdEQk8Ms .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWPdEQk8Ms .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWPdEQk8Ms .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-uWPdEQk8Ms .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWPdEQk8Ms .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWPdEQk8Ms ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWPdEQk8Ms .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uWPdEQk8Ms button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWPdEQk8Ms button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uWPdEQk8Ms button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWPdEQk8Ms button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWPdEQk8Ms button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWPdEQk8Ms button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWPdEQk8Ms nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWPdEQk8Ms nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWPdEQk8Ms nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWPdEQk8Ms nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWPdEQk8Ms .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uWPdEQk8Ms a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWPdEQk8Ms .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-uWPdEQk8Ms .navbar {
    height: 70px;
  }
  .cid-uWPdEQk8Ms .navbar.opened {
    height: auto;
  }
  .cid-uWPdEQk8Ms .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX3BbMKnkY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3BbMKnkY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX3BbMKnkY .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX3BbMKnkY .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX3BbMKnkY .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX3BbMKnkY .mbr-section-title {
  color: #22a5e5;
}
.cid-uX3BbMKnkY .mbr-text,
.cid-uX3BbMKnkY .mbr-section-btn,
.cid-uX3BbMKnkY .social-row {
  color: #232323;
}
.cid-uX3BbMKnkY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX3AZEJ233 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX3AZEJ233 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX3AZEJ233 .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-uX3AZEJ233 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX3AZEJ233 .row {
  flex-direction: row-reverse;
}
.cid-uX3AZEJ233 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX3AZEJ233 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX3AZEJ233 .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX3AZEJ233 .mbr-section-title {
  color: #fafafa;
}
.cid-uWPdERwgs4 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #232323;
}
.cid-uWPdERwgs4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWPdERwgs4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWPdERwgs4 .item {
  padding-bottom: 2rem;
}
.cid-uWPdERwgs4 .item-wrapper {
  position: relative;
}
.cid-uWPdERwgs4 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uWPdERwgs4 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uWPdERwgs4 .carousel-control,
.cid-uWPdERwgs4 .close {
  background: #1b1b1b;
}
.cid-uWPdERwgs4 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uWPdERwgs4 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uWPdERwgs4 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uWPdERwgs4 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uWPdERwgs4 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uWPdERwgs4 .close::before {
  content: '\e91a';
}
.cid-uWPdERwgs4 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uWPdERwgs4 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWPdERwgs4 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWPdERwgs4 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWPdERwgs4 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWPdERwgs4 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uWPdERwgs4 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWPdERwgs4 .carousel-indicators li.active,
.cid-uWPdERwgs4 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWPdERwgs4 .carousel-indicators li::after,
.cid-uWPdERwgs4 .carousel-indicators li::before {
  content: none;
}
.cid-uWPdERwgs4 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWPdERwgs4 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uWPdERwgs4 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uWPdERwgs4 .carousel-indicators {
    display: none;
  }
}
.cid-uWPdERwgs4 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uWPdERwgs4 .carousel-inner > .active {
  display: block;
}
.cid-uWPdERwgs4 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWPdERwgs4 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uWPdERwgs4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uWPdERwgs4 .carousel-control,
  .cid-uWPdERwgs4 .carousel-indicators,
  .cid-uWPdERwgs4 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uWPdERwgs4 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uWPdERwgs4 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uWPdERwgs4 .carousel-indicators .active,
.cid-uWPdERwgs4 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uWPdERwgs4 .carousel-indicators .active {
  background: #fff;
}
.cid-uWPdERwgs4 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uWPdERwgs4 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uWPdERwgs4 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uWPdERwgs4 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uWPdERwgs4 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uWPdERwgs4 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uWPdERwgs4 .carousel {
  width: 100%;
}
.cid-uWPdERwgs4 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uWPdERwgs4 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uWPdERwgs4 .modal.fade .modal-dialog,
.cid-uWPdERwgs4 .modal.in .modal-dialog {
  transform: none;
}
.cid-uWPdERwgs4 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uWPdERwgs4 H6 {
  text-align: center;
}
.cid-uWPdERwgs4 H3 {
  color: #fafafa;
}
.cid-uWPdESeufe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-uWPdESeufe .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uWPdESeufe .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uWPdESeufe .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uWPdESeufe .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uWPdESeufe .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uWPdESeufe .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uWPdESeufe .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-uWPdESeufe .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uWPdESeufe .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uWPdESeufe .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uWPdESeufe .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uWPdESeufe .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uWPdESeufe .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uWPdESeufe .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uWPdESeufe .media-container-row .mbr-text {
  color: #232323;
}
.cid-uWQBORBR26 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uWQBORBR26 nav.navbar {
  position: fixed;
}
.cid-uWQBORBR26 .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-uWQBORBR26 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uWQBORBR26 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uWQBORBR26 .dropdown-item:hover,
.cid-uWQBORBR26 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uWQBORBR26 .dropdown-item:hover span {
  color: white;
}
.cid-uWQBORBR26 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWQBORBR26 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWQBORBR26 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWQBORBR26 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWQBORBR26 .nav-link {
  position: relative;
}
.cid-uWQBORBR26 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWQBORBR26 .container {
    flex-wrap: wrap;
  }
}
.cid-uWQBORBR26 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWQBORBR26 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uWQBORBR26 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uWQBORBR26 .dropdown-menu,
.cid-uWQBORBR26 .navbar.opened {
  background: #ff9966 !important;
}
.cid-uWQBORBR26 .nav-item:focus,
.cid-uWQBORBR26 .nav-link:focus {
  outline: none;
}
.cid-uWQBORBR26 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWQBORBR26 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWQBORBR26 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWQBORBR26 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWQBORBR26 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWQBORBR26 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWQBORBR26 .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: #ff9966;
}
.cid-uWQBORBR26 .navbar.opened {
  transition: all 0.3s;
}
.cid-uWQBORBR26 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWQBORBR26 .navbar .navbar-logo img {
  width: auto;
}
.cid-uWQBORBR26 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWQBORBR26 .navbar.collapsed {
  justify-content: center;
}
.cid-uWQBORBR26 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWQBORBR26 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWQBORBR26 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWQBORBR26 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWQBORBR26 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWQBORBR26 .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-uWQBORBR26 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWQBORBR26 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWQBORBR26 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWQBORBR26 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWQBORBR26 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWQBORBR26 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWQBORBR26 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWQBORBR26 .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-uWQBORBR26 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWQBORBR26 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWQBORBR26 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWQBORBR26 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWQBORBR26 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWQBORBR26 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uWQBORBR26 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uWQBORBR26 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uWQBORBR26 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWQBORBR26 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uWQBORBR26 .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-uWQBORBR26 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWQBORBR26 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWQBORBR26 .dropdown-item.active,
.cid-uWQBORBR26 .dropdown-item:active {
  background-color: transparent;
}
.cid-uWQBORBR26 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWQBORBR26 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWQBORBR26 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWQBORBR26 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-uWQBORBR26 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWQBORBR26 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWQBORBR26 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWQBORBR26 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uWQBORBR26 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWQBORBR26 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uWQBORBR26 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWQBORBR26 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWQBORBR26 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWQBORBR26 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWQBORBR26 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWQBORBR26 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWQBORBR26 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWQBORBR26 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWQBORBR26 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uWQBORBR26 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWQBORBR26 .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-uWQBORBR26 .navbar {
    height: 70px;
  }
  .cid-uWQBORBR26 .navbar.opened {
    height: auto;
  }
  .cid-uWQBORBR26 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uX5JJ2JCr6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX5JJ2JCr6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/blc.png");
}
.cid-uX5JJ2JCr6 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uX5JJ2JCr6 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uX5JJ2JCr6 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uX5JJ2JCr6 .mbr-section-title {
  color: #22a5e5;
}
.cid-uX5JJ2JCr6 .mbr-text,
.cid-uX5JJ2JCr6 .mbr-section-btn,
.cid-uX5JJ2JCr6 .social-row {
  color: #232323;
}
.cid-uX5JJ2JCr6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX41V8Aagr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX41V8Aagr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX41V8Aagr .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-uX41V8Aagr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX41V8Aagr .row {
  flex-direction: row-reverse;
}
.cid-uX41V8Aagr img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX41V8Aagr .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX41V8Aagr .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX41V8Aagr .mbr-section-title {
  color: #fafafa;
}
.cid-uWQBOSgaKo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWQBOSgaKo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQBOSgaKo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWQBOSgaKo .item {
  padding-bottom: 2rem;
}
.cid-uWQBOSgaKo .item-wrapper {
  position: relative;
}
.cid-uWQBOSgaKo .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uWQBOSgaKo .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uWQBOSgaKo .carousel-control,
.cid-uWQBOSgaKo .close {
  background: #1b1b1b;
}
.cid-uWQBOSgaKo .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uWQBOSgaKo .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uWQBOSgaKo .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uWQBOSgaKo .carousel-control-next span {
  margin-left: 5px;
}
.cid-uWQBOSgaKo .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uWQBOSgaKo .close::before {
  content: '\e91a';
}
.cid-uWQBOSgaKo .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uWQBOSgaKo .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWQBOSgaKo .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWQBOSgaKo .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWQBOSgaKo .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWQBOSgaKo .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uWQBOSgaKo .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWQBOSgaKo .carousel-indicators li.active,
.cid-uWQBOSgaKo .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWQBOSgaKo .carousel-indicators li::after,
.cid-uWQBOSgaKo .carousel-indicators li::before {
  content: none;
}
.cid-uWQBOSgaKo .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWQBOSgaKo .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uWQBOSgaKo .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uWQBOSgaKo .carousel-indicators {
    display: none;
  }
}
.cid-uWQBOSgaKo .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uWQBOSgaKo .carousel-inner > .active {
  display: block;
}
.cid-uWQBOSgaKo .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWQBOSgaKo .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uWQBOSgaKo .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uWQBOSgaKo .carousel-control,
  .cid-uWQBOSgaKo .carousel-indicators,
  .cid-uWQBOSgaKo .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uWQBOSgaKo .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uWQBOSgaKo .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uWQBOSgaKo .carousel-indicators .active,
.cid-uWQBOSgaKo .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uWQBOSgaKo .carousel-indicators .active {
  background: #fff;
}
.cid-uWQBOSgaKo .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uWQBOSgaKo .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uWQBOSgaKo .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uWQBOSgaKo .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uWQBOSgaKo .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uWQBOSgaKo .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uWQBOSgaKo .carousel {
  width: 100%;
}
.cid-uWQBOSgaKo .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uWQBOSgaKo .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uWQBOSgaKo .modal.fade .modal-dialog,
.cid-uWQBOSgaKo .modal.in .modal-dialog {
  transform: none;
}
.cid-uWQBOSgaKo .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uWQBOSgaKo H6 {
  text-align: center;
}
.cid-uWQBOSgaKo H3 {
  color: #fafafa;
}
.cid-uWQBOSJzav {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-uWQBOSJzav .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uWQBOSJzav .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uWQBOSJzav .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uWQBOSJzav .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uWQBOSJzav .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uWQBOSJzav .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uWQBOSJzav .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-uWQBOSJzav .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uWQBOSJzav .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uWQBOSJzav .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uWQBOSJzav .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uWQBOSJzav .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uWQBOSJzav .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uWQBOSJzav .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uWQBOSJzav .media-container-row .mbr-text {
  color: #232323;
}
.cid-uWQCYpXNbt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uWQCYpXNbt nav.navbar {
  position: fixed;
}
.cid-uWQCYpXNbt .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-uWQCYpXNbt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uWQCYpXNbt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uWQCYpXNbt .dropdown-item:hover,
.cid-uWQCYpXNbt .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uWQCYpXNbt .dropdown-item:hover span {
  color: white;
}
.cid-uWQCYpXNbt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWQCYpXNbt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWQCYpXNbt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWQCYpXNbt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWQCYpXNbt .nav-link {
  position: relative;
}
.cid-uWQCYpXNbt .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWQCYpXNbt .container {
    flex-wrap: wrap;
  }
}
.cid-uWQCYpXNbt .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWQCYpXNbt .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uWQCYpXNbt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uWQCYpXNbt .dropdown-menu,
.cid-uWQCYpXNbt .navbar.opened {
  background: #ff9966 !important;
}
.cid-uWQCYpXNbt .nav-item:focus,
.cid-uWQCYpXNbt .nav-link:focus {
  outline: none;
}
.cid-uWQCYpXNbt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWQCYpXNbt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWQCYpXNbt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWQCYpXNbt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWQCYpXNbt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWQCYpXNbt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWQCYpXNbt .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: #ff9966;
}
.cid-uWQCYpXNbt .navbar.opened {
  transition: all 0.3s;
}
.cid-uWQCYpXNbt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWQCYpXNbt .navbar .navbar-logo img {
  width: auto;
}
.cid-uWQCYpXNbt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWQCYpXNbt .navbar.collapsed {
  justify-content: center;
}
.cid-uWQCYpXNbt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWQCYpXNbt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWQCYpXNbt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWQCYpXNbt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWQCYpXNbt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWQCYpXNbt .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-uWQCYpXNbt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWQCYpXNbt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWQCYpXNbt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWQCYpXNbt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWQCYpXNbt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWQCYpXNbt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWQCYpXNbt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWQCYpXNbt .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-uWQCYpXNbt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWQCYpXNbt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWQCYpXNbt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWQCYpXNbt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWQCYpXNbt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWQCYpXNbt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uWQCYpXNbt .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uWQCYpXNbt .navbar.navbar-short {
  min-height: 60px;
}
.cid-uWQCYpXNbt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWQCYpXNbt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uWQCYpXNbt .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-uWQCYpXNbt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWQCYpXNbt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWQCYpXNbt .dropdown-item.active,
.cid-uWQCYpXNbt .dropdown-item:active {
  background-color: transparent;
}
.cid-uWQCYpXNbt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWQCYpXNbt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWQCYpXNbt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWQCYpXNbt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-uWQCYpXNbt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWQCYpXNbt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWQCYpXNbt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWQCYpXNbt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uWQCYpXNbt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWQCYpXNbt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uWQCYpXNbt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWQCYpXNbt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWQCYpXNbt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWQCYpXNbt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWQCYpXNbt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWQCYpXNbt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWQCYpXNbt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWQCYpXNbt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWQCYpXNbt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uWQCYpXNbt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWQCYpXNbt .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-uWQCYpXNbt .navbar {
    height: 70px;
  }
  .cid-uWQCYpXNbt .navbar.opened {
    height: auto;
  }
  .cid-uWQCYpXNbt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWQE3FIDfb {
  background-image: url("../../../assets/images/pr2.png");
}
.cid-uWQE3FIDfb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQE3FIDfb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWQE3FIDfb .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uWQE3FIDfb .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uWQE3FIDfb .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uWQE3FIDfb .mbr-section-title {
  color: #22a5e5;
}
.cid-uWQE3FIDfb .mbr-text,
.cid-uWQE3FIDfb .mbr-section-btn,
.cid-uWQE3FIDfb .social-row {
  color: #232323;
}
.cid-uWQE3FIDfb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX4eJ26Yid {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uX4eJ26Yid .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX4eJ26Yid .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uX4eJ26Yid .row {
  flex-direction: row-reverse;
}
.cid-uX4eJ26Yid .video-wrapper iframe {
  width: 100%;
}
.cid-uX4eJ26Yid .mbr-section-title,
.cid-uX4eJ26Yid .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uX4eJ26Yid .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX4eJ26Yid .mbr-section-subtitle {
  color: #ff9966;
}
.cid-uX4eJ26Yid .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX4eJ26Yid .mbr-section-title {
  color: #ffe161;
}
.cid-uWQCYqBbp6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWQCYqBbp6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQCYqBbp6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWQCYqBbp6 .item {
  padding-bottom: 2rem;
}
.cid-uWQCYqBbp6 .item-wrapper {
  position: relative;
}
.cid-uWQCYqBbp6 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uWQCYqBbp6 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uWQCYqBbp6 .carousel-control,
.cid-uWQCYqBbp6 .close {
  background: #1b1b1b;
}
.cid-uWQCYqBbp6 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uWQCYqBbp6 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uWQCYqBbp6 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uWQCYqBbp6 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uWQCYqBbp6 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uWQCYqBbp6 .close::before {
  content: '\e91a';
}
.cid-uWQCYqBbp6 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uWQCYqBbp6 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWQCYqBbp6 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWQCYqBbp6 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWQCYqBbp6 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWQCYqBbp6 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uWQCYqBbp6 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWQCYqBbp6 .carousel-indicators li.active,
.cid-uWQCYqBbp6 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWQCYqBbp6 .carousel-indicators li::after,
.cid-uWQCYqBbp6 .carousel-indicators li::before {
  content: none;
}
.cid-uWQCYqBbp6 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWQCYqBbp6 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uWQCYqBbp6 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uWQCYqBbp6 .carousel-indicators {
    display: none;
  }
}
.cid-uWQCYqBbp6 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uWQCYqBbp6 .carousel-inner > .active {
  display: block;
}
.cid-uWQCYqBbp6 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWQCYqBbp6 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uWQCYqBbp6 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uWQCYqBbp6 .carousel-control,
  .cid-uWQCYqBbp6 .carousel-indicators,
  .cid-uWQCYqBbp6 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uWQCYqBbp6 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uWQCYqBbp6 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uWQCYqBbp6 .carousel-indicators .active,
.cid-uWQCYqBbp6 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uWQCYqBbp6 .carousel-indicators .active {
  background: #fff;
}
.cid-uWQCYqBbp6 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uWQCYqBbp6 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uWQCYqBbp6 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uWQCYqBbp6 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uWQCYqBbp6 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uWQCYqBbp6 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uWQCYqBbp6 .carousel {
  width: 100%;
}
.cid-uWQCYqBbp6 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uWQCYqBbp6 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uWQCYqBbp6 .modal.fade .modal-dialog,
.cid-uWQCYqBbp6 .modal.in .modal-dialog {
  transform: none;
}
.cid-uWQCYqBbp6 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uWQCYqBbp6 H6 {
  text-align: center;
}
.cid-uWQCYqBbp6 H3 {
  color: #fafafa;
}
.cid-uWQCYqYJgg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-uWQCYqYJgg .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uWQCYqYJgg .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uWQCYqYJgg .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uWQCYqYJgg .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uWQCYqYJgg .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uWQCYqYJgg .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uWQCYqYJgg .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-uWQCYqYJgg .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uWQCYqYJgg .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uWQCYqYJgg .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uWQCYqYJgg .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uWQCYqYJgg .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uWQCYqYJgg .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uWQCYqYJgg .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uWQCYqYJgg .media-container-row .mbr-text {
  color: #232323;
}
.cid-uWQEPhGqHv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uWQEPhGqHv nav.navbar {
  position: fixed;
}
.cid-uWQEPhGqHv .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-uWQEPhGqHv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uWQEPhGqHv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uWQEPhGqHv .dropdown-item:hover,
.cid-uWQEPhGqHv .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uWQEPhGqHv .dropdown-item:hover span {
  color: white;
}
.cid-uWQEPhGqHv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWQEPhGqHv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWQEPhGqHv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWQEPhGqHv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWQEPhGqHv .nav-link {
  position: relative;
}
.cid-uWQEPhGqHv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWQEPhGqHv .container {
    flex-wrap: wrap;
  }
}
.cid-uWQEPhGqHv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWQEPhGqHv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uWQEPhGqHv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uWQEPhGqHv .dropdown-menu,
.cid-uWQEPhGqHv .navbar.opened {
  background: #ff9966 !important;
}
.cid-uWQEPhGqHv .nav-item:focus,
.cid-uWQEPhGqHv .nav-link:focus {
  outline: none;
}
.cid-uWQEPhGqHv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWQEPhGqHv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWQEPhGqHv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWQEPhGqHv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWQEPhGqHv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWQEPhGqHv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWQEPhGqHv .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: #ff9966;
}
.cid-uWQEPhGqHv .navbar.opened {
  transition: all 0.3s;
}
.cid-uWQEPhGqHv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWQEPhGqHv .navbar .navbar-logo img {
  width: auto;
}
.cid-uWQEPhGqHv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWQEPhGqHv .navbar.collapsed {
  justify-content: center;
}
.cid-uWQEPhGqHv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWQEPhGqHv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWQEPhGqHv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWQEPhGqHv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWQEPhGqHv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWQEPhGqHv .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-uWQEPhGqHv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWQEPhGqHv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWQEPhGqHv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWQEPhGqHv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWQEPhGqHv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWQEPhGqHv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWQEPhGqHv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWQEPhGqHv .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-uWQEPhGqHv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWQEPhGqHv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWQEPhGqHv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWQEPhGqHv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWQEPhGqHv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWQEPhGqHv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uWQEPhGqHv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uWQEPhGqHv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uWQEPhGqHv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWQEPhGqHv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uWQEPhGqHv .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-uWQEPhGqHv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWQEPhGqHv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWQEPhGqHv .dropdown-item.active,
.cid-uWQEPhGqHv .dropdown-item:active {
  background-color: transparent;
}
.cid-uWQEPhGqHv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWQEPhGqHv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWQEPhGqHv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWQEPhGqHv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-uWQEPhGqHv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWQEPhGqHv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWQEPhGqHv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWQEPhGqHv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uWQEPhGqHv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWQEPhGqHv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uWQEPhGqHv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWQEPhGqHv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWQEPhGqHv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWQEPhGqHv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWQEPhGqHv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWQEPhGqHv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWQEPhGqHv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWQEPhGqHv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWQEPhGqHv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uWQEPhGqHv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWQEPhGqHv .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-uWQEPhGqHv .navbar {
    height: 70px;
  }
  .cid-uWQEPhGqHv .navbar.opened {
    height: auto;
  }
  .cid-uWQEPhGqHv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWQEPhhJbn {
  background-image: url("../../../assets/images/frame-269.jpg");
}
.cid-uWQEPhhJbn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQEPhhJbn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWQEPhhJbn .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uWQEPhhJbn .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uWQEPhhJbn .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uWQEPhhJbn .mbr-section-title {
  color: #22a5e5;
}
.cid-uWQEPhhJbn .mbr-text,
.cid-uWQEPhhJbn .mbr-section-btn,
.cid-uWQEPhhJbn .social-row {
  color: #232323;
}
.cid-uWQEPhhJbn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX42ELbt0v {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX42ELbt0v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX42ELbt0v .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-uX42ELbt0v .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX42ELbt0v .row {
  flex-direction: row-reverse;
}
.cid-uX42ELbt0v img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX42ELbt0v .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX42ELbt0v .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX42ELbt0v .mbr-section-title {
  color: #fafafa;
}
.cid-uWQEPi8ZJh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWQEPi8ZJh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQEPi8ZJh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWQEPi8ZJh .item {
  padding-bottom: 2rem;
}
.cid-uWQEPi8ZJh .item-wrapper {
  position: relative;
}
.cid-uWQEPi8ZJh .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uWQEPi8ZJh .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uWQEPi8ZJh .carousel-control,
.cid-uWQEPi8ZJh .close {
  background: #1b1b1b;
}
.cid-uWQEPi8ZJh .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uWQEPi8ZJh .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uWQEPi8ZJh .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uWQEPi8ZJh .carousel-control-next span {
  margin-left: 5px;
}
.cid-uWQEPi8ZJh .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uWQEPi8ZJh .close::before {
  content: '\e91a';
}
.cid-uWQEPi8ZJh .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uWQEPi8ZJh .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWQEPi8ZJh .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWQEPi8ZJh .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWQEPi8ZJh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWQEPi8ZJh .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uWQEPi8ZJh .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWQEPi8ZJh .carousel-indicators li.active,
.cid-uWQEPi8ZJh .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWQEPi8ZJh .carousel-indicators li::after,
.cid-uWQEPi8ZJh .carousel-indicators li::before {
  content: none;
}
.cid-uWQEPi8ZJh .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWQEPi8ZJh .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uWQEPi8ZJh .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uWQEPi8ZJh .carousel-indicators {
    display: none;
  }
}
.cid-uWQEPi8ZJh .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uWQEPi8ZJh .carousel-inner > .active {
  display: block;
}
.cid-uWQEPi8ZJh .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWQEPi8ZJh .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uWQEPi8ZJh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uWQEPi8ZJh .carousel-control,
  .cid-uWQEPi8ZJh .carousel-indicators,
  .cid-uWQEPi8ZJh .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uWQEPi8ZJh .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uWQEPi8ZJh .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uWQEPi8ZJh .carousel-indicators .active,
.cid-uWQEPi8ZJh .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uWQEPi8ZJh .carousel-indicators .active {
  background: #fff;
}
.cid-uWQEPi8ZJh .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uWQEPi8ZJh .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uWQEPi8ZJh .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uWQEPi8ZJh .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uWQEPi8ZJh .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uWQEPi8ZJh .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uWQEPi8ZJh .carousel {
  width: 100%;
}
.cid-uWQEPi8ZJh .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uWQEPi8ZJh .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uWQEPi8ZJh .modal.fade .modal-dialog,
.cid-uWQEPi8ZJh .modal.in .modal-dialog {
  transform: none;
}
.cid-uWQEPi8ZJh .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uWQEPi8ZJh H6 {
  text-align: center;
}
.cid-uWQEPi8ZJh H3 {
  color: #fafafa;
}
.cid-uWQEPiJsC2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-uWQEPiJsC2 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uWQEPiJsC2 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uWQEPiJsC2 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uWQEPiJsC2 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uWQEPiJsC2 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uWQEPiJsC2 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uWQEPiJsC2 .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-uWQEPiJsC2 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uWQEPiJsC2 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uWQEPiJsC2 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uWQEPiJsC2 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uWQEPiJsC2 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uWQEPiJsC2 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uWQEPiJsC2 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uWQEPiJsC2 .media-container-row .mbr-text {
  color: #232323;
}
.cid-uWQFV2btx3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uWQFV2btx3 nav.navbar {
  position: fixed;
}
.cid-uWQFV2btx3 .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-uWQFV2btx3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uWQFV2btx3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uWQFV2btx3 .dropdown-item:hover,
.cid-uWQFV2btx3 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uWQFV2btx3 .dropdown-item:hover span {
  color: white;
}
.cid-uWQFV2btx3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWQFV2btx3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWQFV2btx3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWQFV2btx3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWQFV2btx3 .nav-link {
  position: relative;
}
.cid-uWQFV2btx3 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWQFV2btx3 .container {
    flex-wrap: wrap;
  }
}
.cid-uWQFV2btx3 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uWQFV2btx3 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uWQFV2btx3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uWQFV2btx3 .dropdown-menu,
.cid-uWQFV2btx3 .navbar.opened {
  background: #ff9966 !important;
}
.cid-uWQFV2btx3 .nav-item:focus,
.cid-uWQFV2btx3 .nav-link:focus {
  outline: none;
}
.cid-uWQFV2btx3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWQFV2btx3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWQFV2btx3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWQFV2btx3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWQFV2btx3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWQFV2btx3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWQFV2btx3 .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: #ff9966;
}
.cid-uWQFV2btx3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uWQFV2btx3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWQFV2btx3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uWQFV2btx3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWQFV2btx3 .navbar.collapsed {
  justify-content: center;
}
.cid-uWQFV2btx3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWQFV2btx3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uWQFV2btx3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uWQFV2btx3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWQFV2btx3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWQFV2btx3 .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-uWQFV2btx3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWQFV2btx3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWQFV2btx3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWQFV2btx3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWQFV2btx3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWQFV2btx3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWQFV2btx3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWQFV2btx3 .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-uWQFV2btx3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWQFV2btx3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWQFV2btx3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWQFV2btx3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWQFV2btx3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWQFV2btx3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uWQFV2btx3 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uWQFV2btx3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uWQFV2btx3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWQFV2btx3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uWQFV2btx3 .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-uWQFV2btx3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWQFV2btx3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWQFV2btx3 .dropdown-item.active,
.cid-uWQFV2btx3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uWQFV2btx3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWQFV2btx3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWQFV2btx3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWQFV2btx3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-uWQFV2btx3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWQFV2btx3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWQFV2btx3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWQFV2btx3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uWQFV2btx3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWQFV2btx3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uWQFV2btx3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWQFV2btx3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWQFV2btx3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWQFV2btx3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWQFV2btx3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWQFV2btx3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWQFV2btx3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWQFV2btx3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWQFV2btx3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uWQFV2btx3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWQFV2btx3 .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-uWQFV2btx3 .navbar {
    height: 70px;
  }
  .cid-uWQFV2btx3 .navbar.opened {
    height: auto;
  }
  .cid-uWQFV2btx3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWQFV1YOME {
  background-image: url("../../../assets/images/frame-278.jpg");
}
.cid-uWQFV1YOME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQFV1YOME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWQFV1YOME .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uWQFV1YOME .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uWQFV1YOME .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uWQFV1YOME .mbr-section-title {
  color: #22a5e5;
}
.cid-uWQFV1YOME .mbr-text,
.cid-uWQFV1YOME .mbr-section-btn,
.cid-uWQFV1YOME .social-row {
  color: #232323;
}
.cid-uWQFV1YOME .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uX42WPaOy8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uX42WPaOy8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uX42WPaOy8 .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-uX42WPaOy8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uX42WPaOy8 .row {
  flex-direction: row-reverse;
}
.cid-uX42WPaOy8 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uX42WPaOy8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uX42WPaOy8 .mbr-text {
  color: #fafafa;
  text-align: left;
}
.cid-uX42WPaOy8 .mbr-section-title {
  color: #fafafa;
}
.cid-uWQFV2wOQu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uWQFV2wOQu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQFV2wOQu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWQFV2wOQu .item {
  padding-bottom: 2rem;
}
.cid-uWQFV2wOQu .item-wrapper {
  position: relative;
}
.cid-uWQFV2wOQu .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uWQFV2wOQu .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uWQFV2wOQu .carousel-control,
.cid-uWQFV2wOQu .close {
  background: #1b1b1b;
}
.cid-uWQFV2wOQu .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uWQFV2wOQu .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uWQFV2wOQu .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uWQFV2wOQu .carousel-control-next span {
  margin-left: 5px;
}
.cid-uWQFV2wOQu .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uWQFV2wOQu .close::before {
  content: '\e91a';
}
.cid-uWQFV2wOQu .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uWQFV2wOQu .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWQFV2wOQu .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWQFV2wOQu .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWQFV2wOQu .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWQFV2wOQu .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uWQFV2wOQu .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWQFV2wOQu .carousel-indicators li.active,
.cid-uWQFV2wOQu .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWQFV2wOQu .carousel-indicators li::after,
.cid-uWQFV2wOQu .carousel-indicators li::before {
  content: none;
}
.cid-uWQFV2wOQu .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWQFV2wOQu .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uWQFV2wOQu .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uWQFV2wOQu .carousel-indicators {
    display: none;
  }
}
.cid-uWQFV2wOQu .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uWQFV2wOQu .carousel-inner > .active {
  display: block;
}
.cid-uWQFV2wOQu .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWQFV2wOQu .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uWQFV2wOQu .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uWQFV2wOQu .carousel-control,
  .cid-uWQFV2wOQu .carousel-indicators,
  .cid-uWQFV2wOQu .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uWQFV2wOQu .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uWQFV2wOQu .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uWQFV2wOQu .carousel-indicators .active,
.cid-uWQFV2wOQu .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uWQFV2wOQu .carousel-indicators .active {
  background: #fff;
}
.cid-uWQFV2wOQu .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uWQFV2wOQu .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uWQFV2wOQu .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uWQFV2wOQu .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uWQFV2wOQu .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uWQFV2wOQu .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uWQFV2wOQu .carousel {
  width: 100%;
}
.cid-uWQFV2wOQu .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uWQFV2wOQu .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uWQFV2wOQu .modal.fade .modal-dialog,
.cid-uWQFV2wOQu .modal.in .modal-dialog {
  transform: none;
}
.cid-uWQFV2wOQu .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uWQFV2wOQu H6 {
  text-align: center;
}
.cid-uWQFV2wOQu H3 {
  color: #fafafa;
}
.cid-uWQFV2U7v6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff9966;
}
.cid-uWQFV2U7v6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uWQFV2U7v6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uWQFV2U7v6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uWQFV2U7v6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uWQFV2U7v6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uWQFV2U7v6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uWQFV2U7v6 .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-uWQFV2U7v6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uWQFV2U7v6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uWQFV2U7v6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uWQFV2U7v6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uWQFV2U7v6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uWQFV2U7v6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uWQFV2U7v6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uWQFV2U7v6 .media-container-row .mbr-text {
  color: #232323;
}
