body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.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: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.7rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2.125rem;
}
/* ---- 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.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.245rem + (1.7 - 1.245) * ((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: #7eac55 !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: #7eac55 !important;
  border-color: #7eac55 !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: #537238 !important;
  border-color: #537238 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #537238 !important;
  border-color: #537238 !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: #7eac55;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #537238 !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: #7eac55 !important;
  border-color: #7eac55 !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: #7eac55 !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: #4c6833 !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 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-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
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: #bfd6ab;
}
.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: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #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-uMc6Jd3KGB {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uMc6Jd3KGB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMc6Jd3KGB .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-uMc6Jd3KGB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMc6Jd3KGB .row {
  flex-direction: row-reverse;
}
.cid-uMc6Jd3KGB img {
  width: 100%;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  position: relative !important;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  position: absolute !important;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fafafa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #beb06e;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTEDvBDHDY {
  background-image: url("../../../assets/images/17.04.18-1920x1080.jpeg");
}
.cid-tTEDvBDHDY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTEDvBDHDY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTEDvBDHDY .mbr-section-title {
  color: #beb06e;
}
.cid-tTEDvBDHDY .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tTEDvBDHDY .mbr-section-btn {
  margin-top: 30px;
}
.cid-tTEDvBDHDY .mbr-text,
.cid-tTEDvBDHDY .mbr-section-btn {
  color: #beb06e;
}
.cid-usmajD0n7h {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f4fab7;
}
@media (max-width: 991px) {
  .cid-usmajD0n7h .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-usmajD0n7h .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-usmajD0n7h li {
  background: none;
  border: none;
  margin-bottom: 0.31rem;
}
.cid-usmajD0n7h li:nth-child(1) .mbr-iconfont {
  color: #6592e6;
}
.cid-usmajD0n7h li:nth-child(2) .mbr-iconfont {
  color: #ff6666;
}
.cid-usmajD0n7h li:nth-child(3) .mbr-iconfont {
  color: #47b5ed;
}
.cid-usmajD0n7h li:nth-child(4) .mbr-iconfont {
  color: #7eac55;
}
.cid-usmajD0n7h li:nth-child(5) .mbr-iconfont {
  color: #ffe161;
}
.cid-usmajD0n7h li:nth-child(6) .mbr-iconfont {
  color: #ff9966;
}
.cid-usmajD0n7h li .mbr-iconfont {
  margin-right: 1.25rem;
  display: inline-block;
  vertical-align: middle;
}
.cid-usmajD0n7h ul {
  padding-top: 30px;
  border-top: 2px solid #d6d2cd;
  list-style: none;
}
.cid-usmajD0n7h .mbr-section-title {
  margin-bottom: 5rem;
  color: #7eac55;
  text-align: center;
}
.cid-usmajD0n7h .mbr-text {
  margin-bottom: 3.75rem;
}
.cid-usmajD0n7h .mbr-section-btn {
  margin-top: 8.75rem;
}
.cid-usmajD0n7h .mbr-text,
.cid-usmajD0n7h .mbr-section-btn {
  color: #1d1e22;
}
.cid-utUB4qro4c {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #f4fab7;
}
.cid-utUB4qro4c .mbr-section-subtitle {
  color: #7eac55;
}
.cid-utUzsRuNnp {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f4fab7;
}
.cid-utUzsRuNnp .mbr-section-subtitle {
  color: #7eac55;
  text-align: center;
}
.cid-uMc8Q8HzMn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4fab7;
}
.cid-uMc8Q8HzMn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMc8Q8HzMn .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-uMc8Q8HzMn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMc8Q8HzMn .row {
  flex-direction: row-reverse;
}
.cid-uMc8Q8HzMn img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMc8Q8HzMn .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMc8Q8HzMn .mbr-section-title {
  color: #7eac55;
}
.cid-uu6BpxUfwQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f4fab7;
}
.cid-uu6BpxUfwQ .mbr-section-title {
  margin-bottom: 50px;
  color: #7eac55;
}
.cid-uu6BpxUfwQ .container-table {
  margin: 0 auto;
}
.cid-uu6BpxUfwQ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uu6BpxUfwQ tbody tr:nth-child(odd) {
  background-color: #f5f4f6;
}
.cid-uu6BpxUfwQ .dataTables_wrapper {
  display: block;
}
.cid-uu6BpxUfwQ .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uu6BpxUfwQ .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uu6BpxUfwQ .head-item {
  color: #000000;
  min-width: 110px;
  letter-spacing: 2px;
}
.cid-uu6BpxUfwQ .body-item {
  color: #212529;
}
.cid-uu6BpxUfwQ table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
  border: 1px solid #7eac55;
}
.cid-uu6BpxUfwQ table th {
  padding: 24px 15px 20px 15px;
  border-top: none;
  transition: all .2s;
  border-bottom: none;
  border-left: 1px solid #7eac55;
}
.cid-uu6BpxUfwQ table td {
  padding: 24px 15px 20px 15px;
  border-top: 1px solid #7eac55;
  border-left: 1px solid #7eac55;
}
.cid-uu6BpxUfwQ .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uu6BpxUfwQ .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uu6BpxUfwQ .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uu6BpxUfwQ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uu6BpxUfwQ .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uu6BpxUfwQ .dataTables_filter {
    text-align: center;
  }
  .cid-uu6BpxUfwQ .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uu6BpxUfwQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uu6BpxUfwQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usmJfDHHdM {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f4fab7;
}
.cid-usmJfDHHdM .mbr-fallback-image.disabled {
  display: none;
}
.cid-usmJfDHHdM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usmKJhdVhY {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #f4fab7;
}
.cid-usmKJhdVhY .mbr-fallback-image.disabled {
  display: none;
}
.cid-usmKJhdVhY .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-usmKJhdVhY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usmKJhdVhY .row {
  flex-direction: row-reverse;
}
.cid-usmKJhdVhY img {
  width: 100%;
}
.cid-usvePSi19W {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4fab7;
}
.cid-usvePSi19W .mbr-fallback-image.disabled {
  display: none;
}
.cid-usvePSi19W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usvePSi19W .mbr-section-head {
  margin-bottom: 32px;
}
.cid-usvePSi19W .mbr-section-title {
  color: #24262b;
}
.cid-usvePSi19W .mbr-section-subtitle {
  color: #24262b;
}
.cid-usvePSi19W .items-row {
  row-gap: 32px;
}
.cid-usvePSi19W .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-usvePSi19W .item-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  background: #f4fab7;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-usvePSi19W .item-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}
.cid-usvePSi19W .item-img {
  height: 100%;
}
@media (max-width: 1199px) {
  .cid-usvePSi19W .item-img {
    height: auto;
    width: 100%;
  }
}
.cid-usvePSi19W .item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-usvePSi19W .item-img img {
    aspect-ratio: 1.27272727;
  }
}
.cid-usvePSi19W .item-content {
  width: 50%;
  flex-shrink: 0;
  padding: 80px 40px;
}
@media (max-width: 1199px) {
  .cid-usvePSi19W .item-content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-usvePSi19W .item-content {
    text-align: center;
  }
}
.cid-usvePSi19W .card-title {
  margin-bottom: 16px;
  color: #000000;
}
.cid-usvePSi19W .card-text {
  display: inline;
  color: #24262b;
  border-bottom: 2px solid transparent;
  transition: 0.3s all;
}
.cid-usvePSi19W .card-text:hover {
  color: #6592e6 !important;
  border-bottom: 2px solid #6592e6;
}
.cid-usvePSi19W .mbr-section-btn {
  margin-top: 20px;
}
.cid-tTH0d1yJCQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f4fab7;
}
.cid-tTH0d1yJCQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTH0d1yJCQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTH0d1yJCQ .item {
  padding-bottom: 2rem;
}
.cid-tTH0d1yJCQ .item-wrapper {
  position: relative;
}
.cid-tTH0d1yJCQ .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-tTH0d1yJCQ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tTH0d1yJCQ .carousel-control,
.cid-tTH0d1yJCQ .close {
  background: #1b1b1b;
}
.cid-tTH0d1yJCQ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tTH0d1yJCQ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tTH0d1yJCQ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tTH0d1yJCQ .carousel-control-next span {
  margin-left: 5px;
}
.cid-tTH0d1yJCQ .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-tTH0d1yJCQ .close::before {
  content: '\e91a';
}
.cid-tTH0d1yJCQ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tTH0d1yJCQ .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-tTH0d1yJCQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tTH0d1yJCQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tTH0d1yJCQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tTH0d1yJCQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tTH0d1yJCQ .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-tTH0d1yJCQ .carousel-indicators li.active,
.cid-tTH0d1yJCQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tTH0d1yJCQ .carousel-indicators li::after,
.cid-tTH0d1yJCQ .carousel-indicators li::before {
  content: none;
}
.cid-tTH0d1yJCQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tTH0d1yJCQ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tTH0d1yJCQ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tTH0d1yJCQ .carousel-indicators {
    display: none;
  }
}
.cid-tTH0d1yJCQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tTH0d1yJCQ .carousel-inner > .active {
  display: block;
}
.cid-tTH0d1yJCQ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tTH0d1yJCQ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tTH0d1yJCQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tTH0d1yJCQ .carousel-control,
  .cid-tTH0d1yJCQ .carousel-indicators,
  .cid-tTH0d1yJCQ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tTH0d1yJCQ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tTH0d1yJCQ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tTH0d1yJCQ .carousel-indicators .active,
.cid-tTH0d1yJCQ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tTH0d1yJCQ .carousel-indicators .active {
  background: #fff;
}
.cid-tTH0d1yJCQ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tTH0d1yJCQ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tTH0d1yJCQ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tTH0d1yJCQ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tTH0d1yJCQ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tTH0d1yJCQ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tTH0d1yJCQ .carousel {
  width: 100%;
}
.cid-tTH0d1yJCQ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tTH0d1yJCQ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tTH0d1yJCQ .modal.fade .modal-dialog,
.cid-tTH0d1yJCQ .modal.in .modal-dialog {
  transform: none;
}
.cid-tTH0d1yJCQ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tTH0d1yJCQ H6 {
  text-align: center;
}
.cid-tTH0d1yJCQ H4 {
  text-align: left;
}
.cid-tTH0d1yJCQ H3 {
  text-align: center;
}
.cid-tTH0ODUZpD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f4fab7;
}
.cid-tTH0ODUZpD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTH0ODUZpD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTH0ODUZpD .item {
  padding-bottom: 2rem;
}
.cid-tTH0ODUZpD .item-wrapper {
  position: relative;
}
.cid-tTH0ODUZpD .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-tTH0ODUZpD .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tTH0ODUZpD .carousel-control,
.cid-tTH0ODUZpD .close {
  background: #1b1b1b;
}
.cid-tTH0ODUZpD .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tTH0ODUZpD .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tTH0ODUZpD .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tTH0ODUZpD .carousel-control-next span {
  margin-left: 5px;
}
.cid-tTH0ODUZpD .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-tTH0ODUZpD .close::before {
  content: '\e91a';
}
.cid-tTH0ODUZpD .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tTH0ODUZpD .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-tTH0ODUZpD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tTH0ODUZpD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tTH0ODUZpD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tTH0ODUZpD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tTH0ODUZpD .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-tTH0ODUZpD .carousel-indicators li.active,
.cid-tTH0ODUZpD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tTH0ODUZpD .carousel-indicators li::after,
.cid-tTH0ODUZpD .carousel-indicators li::before {
  content: none;
}
.cid-tTH0ODUZpD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tTH0ODUZpD .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tTH0ODUZpD .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tTH0ODUZpD .carousel-indicators {
    display: none;
  }
}
.cid-tTH0ODUZpD .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tTH0ODUZpD .carousel-inner > .active {
  display: block;
}
.cid-tTH0ODUZpD .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tTH0ODUZpD .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tTH0ODUZpD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tTH0ODUZpD .carousel-control,
  .cid-tTH0ODUZpD .carousel-indicators,
  .cid-tTH0ODUZpD .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tTH0ODUZpD .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tTH0ODUZpD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tTH0ODUZpD .carousel-indicators .active,
.cid-tTH0ODUZpD .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tTH0ODUZpD .carousel-indicators .active {
  background: #fff;
}
.cid-tTH0ODUZpD .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tTH0ODUZpD .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tTH0ODUZpD .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tTH0ODUZpD .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tTH0ODUZpD .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tTH0ODUZpD .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tTH0ODUZpD .carousel {
  width: 100%;
}
.cid-tTH0ODUZpD .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tTH0ODUZpD .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tTH0ODUZpD .modal.fade .modal-dialog,
.cid-tTH0ODUZpD .modal.in .modal-dialog {
  transform: none;
}
.cid-tTH0ODUZpD .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tTH0ODUZpD H6 {
  text-align: center;
}
.cid-tTH0ODUZpD H4 {
  text-align: left;
}
.cid-usmMqDlqFg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f4fab7;
}
.cid-usmMqDlqFg .mbr-fallback-image.disabled {
  display: none;
}
.cid-usmMqDlqFg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usmMqDlqFg .mbr-section-title DIV {
  text-align: center;
}
.cid-usmMqDlqFg .mbr-section-title {
  text-align: center;
}
.cid-usmMqDlqFg .mbr-section-subtitle {
  color: #fa4529;
}
.cid-sFzDs3t9EG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f4fab7;
}
.cid-sFzDs3t9EG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sFzDs3t9EG form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sFzDs3t9EG form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sFzDs3t9EG form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sFzDs3t9EG .mbr-section-title {
  color: #000000;
}
.cid-sFzDs3t9EG .mbr-section-subtitle {
  color: #000000;
}
.cid-uu0vh5w8rW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f4fab7;
}
.cid-uu0vh5w8rW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uu0vh5w8rW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uu0vh5w8rW .container,
.cid-uu0vh5w8rW .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uu0vh5w8rW .container,
  .cid-uu0vh5w8rW .container-fluid {
    padding: 0 20px;
  }
}
.cid-uu0vh5w8rW .row {
  position: relative;
  padding: 100px 16px;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background-color: #f4fab7;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uu0vh5w8rW .row {
    padding: 85px 8px;
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uu0vh5w8rW .map-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .cid-uu0vh5w8rW .map-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uu0vh5w8rW .map-wrapper .google-map iframe {
  height: 300px;
}
@media (max-width: 992px) {
  .cid-uu0vh5w8rW .map-wrapper .google-map iframe {
    height: 250px;
  }
}
.cid-uu0vh5w8rW .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uu0vh5w8rW .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uu0vh5w8rW .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uu0vh5w8rW .mbr-iconfont {
  font-size: 32px;
  display: block;
  margin-right: 10px;
}
.cid-uu0vh5w8rW .address-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-uu0vh5w8rW .address-wrapper {
    display: block;
  }
}
.cid-uu0vh5w8rW .address-wrapper .text-wrapper {
  display: flex;
  margin-bottom: 35px;
}
@media (max-width: 992px) {
  .cid-uu0vh5w8rW .address-wrapper .text-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uu0vh5w8rW .address-wrapper .text-wrapper .text-wrap .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-uu0vh5w8rW .address-wrapper .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uu0vh5w8rW .links-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-uu0vh5w8rW .links-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uu0vh5w8rW .links-wrapper .links-wrap {
    margin-bottom: 20px;
  }
}
.cid-uu0vh5w8rW .links-wrapper .links-wrap a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uu0vh5w8rW .links-wrapper .links-wrap a:hover .mbr-email,
.cid-uu0vh5w8rW .links-wrapper .links-wrap a:hover .mbr-phone {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .cid-uu0vh5w8rW .links-wrapper .links-wrap a {
    margin-bottom: 20px;
  }
}
.cid-uu0vh5w8rW .links-wrapper .links-wrap a .mbr-email,
.cid-uu0vh5w8rW .links-wrapper .links-wrap a .mbr-phone {
  margin-bottom: 0;
}
.cid-uu0vh5w8rW .mbr-section-title {
  color: #3d4045;
}
.cid-uu0vh5w8rW .mbr-section-subtitle,
.cid-uu0vh5w8rW .mbr-iconfont {
  color: #3d4045;
}
.cid-uu0vh5w8rW .mbr-email {
  color: #3d4045;
}
.cid-uu0vh5w8rW .mbr-phone {
  color: #3d4045;
}
.cid-uu0uynZXbV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f4fab7;
}
.cid-uu0uynZXbV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uu0uynZXbV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uu0uynZXbV .container,
.cid-uu0uynZXbV .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uu0uynZXbV .container,
  .cid-uu0uynZXbV .container-fluid {
    padding: 0 20px;
  }
}
.cid-uu0uynZXbV .row {
  position: relative;
  padding: 100px 16px;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background-color: #f4fab7;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uu0uynZXbV .row {
    padding: 85px 8px;
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uu0uynZXbV .map-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .cid-uu0uynZXbV .map-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uu0uynZXbV .map-wrapper .google-map iframe {
  height: 300px;
}
@media (max-width: 992px) {
  .cid-uu0uynZXbV .map-wrapper .google-map iframe {
    height: 250px;
  }
}
.cid-uu0uynZXbV .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uu0uynZXbV .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uu0uynZXbV .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uu0uynZXbV .mbr-iconfont {
  font-size: 32px;
  display: block;
  margin-right: 10px;
}
.cid-uu0uynZXbV .address-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-uu0uynZXbV .address-wrapper {
    display: block;
  }
}
.cid-uu0uynZXbV .address-wrapper .text-wrapper {
  display: flex;
  margin-bottom: 35px;
}
@media (max-width: 992px) {
  .cid-uu0uynZXbV .address-wrapper .text-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uu0uynZXbV .address-wrapper .text-wrapper .text-wrap .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-uu0uynZXbV .address-wrapper .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uu0uynZXbV .links-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-uu0uynZXbV .links-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uu0uynZXbV .links-wrapper .links-wrap {
    margin-bottom: 20px;
  }
}
.cid-uu0uynZXbV .links-wrapper .links-wrap a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uu0uynZXbV .links-wrapper .links-wrap a:hover .mbr-email,
.cid-uu0uynZXbV .links-wrapper .links-wrap a:hover .mbr-phone {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .cid-uu0uynZXbV .links-wrapper .links-wrap a {
    margin-bottom: 20px;
  }
}
.cid-uu0uynZXbV .links-wrapper .links-wrap a .mbr-email,
.cid-uu0uynZXbV .links-wrapper .links-wrap a .mbr-phone {
  margin-bottom: 0;
}
.cid-uu0uynZXbV .mbr-section-title {
  color: #3d4045;
}
.cid-uu0uynZXbV .mbr-section-subtitle,
.cid-uu0uynZXbV .mbr-iconfont {
  color: #3d4045;
}
.cid-uu0uynZXbV .mbr-email {
  color: #3d4045;
}
.cid-uu0uynZXbV .mbr-phone {
  color: #3d4045;
}
.cid-sFCygHrmNf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sFCygHrmNf .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sFCygHrmNf .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sFCygHrmNf .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sFCygHrmNf .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sFCygHrmNf .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sFCygHrmNf .row .foot-menu li p {
  margin: 0;
}
.cid-sFCygHrmNf .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sFCygHrmNf .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sFCygHrmNf .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sFCygHrmNf .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sFCygHrmNf .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sFCygHrmNf .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFCygHrmNf .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sFCygHrmNf .row .row-copirayt p {
  width: 100%;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  position: relative !important;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  position: absolute !important;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fafafa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #beb06e;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ubS886JJam {
  background-image: url("../../../assets/images/product-main-2000x1200.jpg");
}
.cid-ubS886JJam .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubS886JJam .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubS886JJam .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ubS886JJam .container-fluid {
    padding: 0 30px;
  }
}
.cid-ubS886JJam .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ubS886JJam .container {
    padding: 0 30px;
  }
}
.cid-ubS886JJam .title-wrapper {
  margin-top: 20%;
  padding: 0 8%;
}
@media (max-width: 992px) {
  .cid-ubS886JJam .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-ubS886JJam .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-ubS886JJam .title-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ubS886JJam .mbr-section-title {
  color: #ffffff;
}
.cid-ubS886JJam .mbr-text {
  color: #ffffff;
}
.cid-ucKk1Nv6QX {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ucKk1Nv6QX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucKk1Nv6QX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucKk1Nv6QX .container {
    padding: 0 30px;
  }
}
.cid-ucKk1Nv6QX .row {
  justify-content: center;
}
.cid-ucKk1Nv6QX .title-wrapper {
  margin-bottom: 55px;
}
.cid-ucKk1Nv6QX .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-ucKk1Nv6QX .title-wrapper .link-wrapper:hover .mbr-link {
  color: #ff6839;
}
.cid-ucKk1Nv6QX .title-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-out;
}
.cid-ucKk1Nv6QX .card {
  padding: 0 8px;
}
.cid-ucKk1Nv6QX .card:nth-child(2n) {
  padding: 80px 8px 0;
}
@media (max-width: 992px) {
  .cid-ucKk1Nv6QX .card:nth-child(2n) {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-ucKk1Nv6QX .card {
    padding: 0 12px;
  }
}
.cid-ucKk1Nv6QX .card a {
  display: block;
}
.cid-ucKk1Nv6QX .card a:hover .image-wrapper .mbr-iconfont {
  opacity: 1;
}
.cid-ucKk1Nv6QX .card a:hover .image-wrapper::before {
  opacity: .5;
}
.cid-ucKk1Nv6QX .card a .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cid-ucKk1Nv6QX .card a .image-wrapper img {
  height: 215px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-ucKk1Nv6QX .card a .image-wrapper img {
    height: 250px;
    margin-bottom: 22px;
  }
}
.cid-ucKk1Nv6QX .card a .image-wrapper .mbr-iconfont {
  position: absolute;
  font-size: 22px;
  color: #ffffff;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.cid-ucKk1Nv6QX .card a .image-wrapper:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background-color: #ffffff;
  opacity: 0;
  border-radius: 10px;
  transition: all 0.3s ease-out;
  pointer-events: none;
}
.cid-ucKk1Nv6QX .text-wrapper {
  margin-top: 44px;
}
.cid-ucKk1Nv6QX .text-wrapper .mbr-text {
  margin: 0;
}
.cid-ucKk1Nv6QX .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ucKk1Nv6QX .mbr-link {
  color: #000000;
  text-align: center;
}
.cid-ucKk1Nv6QX .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ubSbv0Gw2l {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f3f7;
}
.cid-ubSbv0Gw2l ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-ubSbv0Gw2l li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-ubSbv0Gw2l ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-ubSbv0Gw2l H3 {
  color: #000000;
}
.cid-ubSbv0Gw2l .list {
  color: #6c758f;
}
.cid-ubSbv0Gw2l .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubSbv0Gw2l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubSd5fgO0a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ubSd5fgO0a .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubSd5fgO0a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubSd5fgO0a .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ubSd5fgO0a .container-fluid {
    padding: 0;
  }
}
.cid-ubSd5fgO0a .container-fluid .row {
  padding: 0;
}
.cid-ubSd5fgO0a .card {
  padding: 0;
}
.cid-ubSd5fgO0a .card:first-child {
  padding: 140px 170px;
  background-color: #f9f9f9;
}
@media (max-width: 1200px) {
  .cid-ubSd5fgO0a .card:first-child {
    padding: 100px 90px;
  }
}
@media (max-width: 992px) {
  .cid-ubSd5fgO0a .card:first-child {
    padding: 110px 30px;
  }
}
.cid-ubSd5fgO0a .card .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-ubSd5fgO0a .card .text-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-position: inside;
  list-style-type: none;
  counter-reset: myCounter;
  line-height: 1.625;
}
.cid-ubSd5fgO0a .card .text-wrapper .list li {
  margin-bottom: 30px;
  position: relative;
  list-style-type: none;
  min-height: 18px;
  padding-left: 40px;
}
.cid-ubSd5fgO0a .card .text-wrapper .list li::before {
  counter-increment: myCounter;
  content: counter(myCounter);
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  color: #b1b0b5;
}
.cid-ubSd5fgO0a .card:last-child {
  position: relative;
}
.cid-ubSd5fgO0a .card:last-child img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ubSd5fgO0a .card:last-child .desc-wrapper {
  display: flex;
  height: 100%;
  align-items: flex-end;
  padding: 22px 50px;
}
@media (max-width: 992px) {
  .cid-ubSd5fgO0a .card:last-child .desc-wrapper {
    padding: 200px 30px 30px 30px;
  }
}
.cid-ubSd5fgO0a .card:last-child .desc-wrapper .mbr-desc {
  width: 100%;
  margin: 25px 0;
  position: relative;
}
.cid-ubSd5fgO0a .mbr-section-title {
  color: #000000;
}
.cid-ubSd5fgO0a .list {
  color: #000000;
}
.cid-ubSd5fgO0a .mbr-desc {
  color: #000000;
}
.cid-sFCygHrmNf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-sFCygHrmNf .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sFCygHrmNf .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sFCygHrmNf .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sFCygHrmNf .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sFCygHrmNf .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sFCygHrmNf .row .foot-menu li p {
  margin: 0;
}
.cid-sFCygHrmNf .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sFCygHrmNf .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sFCygHrmNf .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sFCygHrmNf .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sFCygHrmNf .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sFCygHrmNf .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFCygHrmNf .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sFCygHrmNf .row .row-copirayt p {
  width: 100%;
}
.cid-ubTMwoD1wV .navbar-dropdown {
  position: relative !important;
}
.cid-ubTMwoD1wV .navbar-dropdown {
  position: absolute !important;
}
.cid-ubTMwoD1wV .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-ubTMwoD1wV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ubTMwoD1wV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ubTMwoD1wV .dropdown-item:hover,
.cid-ubTMwoD1wV .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-ubTMwoD1wV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ubTMwoD1wV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ubTMwoD1wV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ubTMwoD1wV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ubTMwoD1wV .nav-link {
  position: relative;
}
.cid-ubTMwoD1wV .container {
  display: flex;
  margin: auto;
}
.cid-ubTMwoD1wV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ubTMwoD1wV .dropdown-menu,
.cid-ubTMwoD1wV .navbar.opened {
  background: #fafafa !important;
}
.cid-ubTMwoD1wV .nav-item:focus,
.cid-ubTMwoD1wV .nav-link:focus {
  outline: none;
}
.cid-ubTMwoD1wV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ubTMwoD1wV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ubTMwoD1wV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ubTMwoD1wV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubTMwoD1wV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ubTMwoD1wV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ubTMwoD1wV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-ubTMwoD1wV .navbar.opened {
  transition: all 0.3s;
}
.cid-ubTMwoD1wV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ubTMwoD1wV .navbar .navbar-logo img {
  width: auto;
}
.cid-ubTMwoD1wV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ubTMwoD1wV .navbar.collapsed {
  justify-content: center;
}
.cid-ubTMwoD1wV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ubTMwoD1wV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ubTMwoD1wV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-ubTMwoD1wV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ubTMwoD1wV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ubTMwoD1wV .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-ubTMwoD1wV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ubTMwoD1wV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ubTMwoD1wV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ubTMwoD1wV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ubTMwoD1wV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ubTMwoD1wV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ubTMwoD1wV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ubTMwoD1wV .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-ubTMwoD1wV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ubTMwoD1wV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ubTMwoD1wV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ubTMwoD1wV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ubTMwoD1wV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ubTMwoD1wV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ubTMwoD1wV .navbar.navbar-short {
  min-height: 60px;
}
.cid-ubTMwoD1wV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ubTMwoD1wV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ubTMwoD1wV .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-ubTMwoD1wV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ubTMwoD1wV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ubTMwoD1wV .dropdown-item.active,
.cid-ubTMwoD1wV .dropdown-item:active {
  background-color: transparent;
}
.cid-ubTMwoD1wV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ubTMwoD1wV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ubTMwoD1wV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ubTMwoD1wV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-ubTMwoD1wV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ubTMwoD1wV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ubTMwoD1wV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ubTMwoD1wV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ubTMwoD1wV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ubTMwoD1wV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #beb06e;
}
.cid-ubTMwoD1wV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ubTMwoD1wV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubTMwoD1wV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubTMwoD1wV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ubTMwoD1wV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubTMwoD1wV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ubTMwoD1wV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ubTMwoD1wV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubTMwoD1wV .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ubTMwoD1wV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ubTMwoD1wV .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-ubTMwoD1wV .navbar {
    height: 70px;
  }
  .cid-ubTMwoD1wV .navbar.opened {
    height: auto;
  }
  .cid-ubTMwoD1wV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ubTMwnRtTq {
  background-image: url("../../../assets/images/0804z9845-scaled-1-2000x1335.jpg");
}
.cid-ubTMwnRtTq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubTMwnRtTq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubTMwnRtTq .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ubTMwnRtTq .container-fluid {
    padding: 0 30px;
  }
}
.cid-ubTMwnRtTq .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ubTMwnRtTq .container {
    padding: 0 30px;
  }
}
.cid-ubTMwnRtTq .title-wrapper {
  margin-top: 20%;
  padding: 0 8%;
}
@media (max-width: 992px) {
  .cid-ubTMwnRtTq .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-ubTMwnRtTq .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-ubTMwnRtTq .title-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ubTMwnRtTq .mbr-section-title {
  color: #ffffff;
}
.cid-ubTMwnRtTq .mbr-text {
  color: #ffffff;
}
.cid-ubTNW4QAkC {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ubTNW4QAkC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubTNW4QAkC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubTNW4QAkC .row {
  align-items: stretch;
  justify-content: center;
}
.cid-ubTNW4QAkC .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-ubTNW4QAkC .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-ubTPO4zX6F {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ubTPO4zX6F .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubTPO4zX6F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubTPO4zX6F .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ubTPO4zX6F .container-fluid {
    padding: 0;
  }
}
.cid-ubTPO4zX6F .container-fluid .row {
  padding: 0;
}
.cid-ubTPO4zX6F .card {
  padding: 0;
}
.cid-ubTPO4zX6F .card:first-child {
  padding: 140px 170px;
  background-color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-ubTPO4zX6F .card:first-child {
    padding: 100px 90px;
  }
}
@media (max-width: 992px) {
  .cid-ubTPO4zX6F .card:first-child {
    padding: 110px 30px;
  }
}
.cid-ubTPO4zX6F .card .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-ubTPO4zX6F .card .text-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-position: inside;
  list-style-type: none;
  counter-reset: myCounter;
  line-height: 1.625;
}
.cid-ubTPO4zX6F .card .text-wrapper .list li {
  margin-bottom: 30px;
  position: relative;
  list-style-type: none;
  min-height: 18px;
  padding-left: 40px;
}
.cid-ubTPO4zX6F .card .text-wrapper .list li::before {
  counter-increment: myCounter;
  content: counter(myCounter);
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  color: #b1b0b5;
}
.cid-ubTPO4zX6F .card:last-child {
  position: relative;
}
.cid-ubTPO4zX6F .card:last-child img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ubTPO4zX6F .card:last-child .desc-wrapper {
  display: flex;
  height: 100%;
  align-items: flex-end;
  padding: 22px 50px;
}
@media (max-width: 992px) {
  .cid-ubTPO4zX6F .card:last-child .desc-wrapper {
    padding: 200px 30px 30px 30px;
  }
}
.cid-ubTPO4zX6F .card:last-child .desc-wrapper .mbr-desc {
  width: 100%;
  margin: 25px 0;
  position: relative;
}
.cid-ubTPO4zX6F .mbr-section-title {
  color: #000000;
}
.cid-ubTPO4zX6F .list {
  color: #000000;
}
.cid-ubTPO4zX6F .mbr-desc {
  color: #ffffff;
}
.cid-ubTRxQ1dym {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ubTRxQ1dym .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubTRxQ1dym .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubTRxQ1dym .mbr-section-title {
  color: #fa4529;
}
.cid-ubTSqLafge {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-ubTSqLafge .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubTSqLafge .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubTSqLafge .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ubTSqLafge .text-wrapper .mbr-text {
  margin: 32px 0 0 0;
}
.cid-ubTSqLafge .tags-wrapper {
  margin-bottom: 32px;
}
.cid-ubTSqLafge .tags-wrapper .tags-wrap {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-ubTSqLafge .tags-wrapper .tags-wrap .mbr-tag {
  padding: 8px 12px;
  background-color: #7eac55;
  border-radius: 40px;
  margin: 0 10px 10px 0;
}
.cid-ubTSqLafge .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-ubTSqLafge .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-ubTSqLafge .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ubTSqLafge .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-ubTSqLafge .image-wrapper img {
  width: 100%;
  max-height: 650px;
  border-radius: 60px;
  object-fit: cover;
}
.cid-ubTSqLafge .mbr-section-title {
  color: #101511;
  text-align: center;
}
.cid-ubTSqLafge .mbr-tag,
.cid-ubTSqLafge .tags-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-ubTVz59w80 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ubTVz59w80 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubTVz59w80 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubTVz59w80 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-ubTVz59w80 .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-ubTVz59w80 .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 450px;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-ubTVz59w80 .row .img-item img {
    min-height: 300px;
  }
}
.cid-ubTMwq5wqc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ubTMwq5wqc .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ubTMwq5wqc .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ubTMwq5wqc .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ubTMwq5wqc .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ubTMwq5wqc .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ubTMwq5wqc .row .foot-menu li p {
  margin: 0;
}
.cid-ubTMwq5wqc .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ubTMwq5wqc .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ubTMwq5wqc .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ubTMwq5wqc .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ubTMwq5wqc .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ubTMwq5wqc .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ubTMwq5wqc .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ubTMwq5wqc .row .row-copirayt p {
  width: 100%;
}
.cid-ubZQDX5iyb .navbar-dropdown {
  position: relative !important;
}
.cid-ubZQDX5iyb .navbar-dropdown {
  position: absolute !important;
}
.cid-ubZQDX5iyb .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-ubZQDX5iyb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ubZQDX5iyb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ubZQDX5iyb .dropdown-item:hover,
.cid-ubZQDX5iyb .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-ubZQDX5iyb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ubZQDX5iyb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ubZQDX5iyb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ubZQDX5iyb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ubZQDX5iyb .nav-link {
  position: relative;
}
.cid-ubZQDX5iyb .container {
  display: flex;
  margin: auto;
}
.cid-ubZQDX5iyb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ubZQDX5iyb .dropdown-menu,
.cid-ubZQDX5iyb .navbar.opened {
  background: #fafafa !important;
}
.cid-ubZQDX5iyb .nav-item:focus,
.cid-ubZQDX5iyb .nav-link:focus {
  outline: none;
}
.cid-ubZQDX5iyb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ubZQDX5iyb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ubZQDX5iyb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ubZQDX5iyb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubZQDX5iyb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ubZQDX5iyb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ubZQDX5iyb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-ubZQDX5iyb .navbar.opened {
  transition: all 0.3s;
}
.cid-ubZQDX5iyb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ubZQDX5iyb .navbar .navbar-logo img {
  width: auto;
}
.cid-ubZQDX5iyb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ubZQDX5iyb .navbar.collapsed {
  justify-content: center;
}
.cid-ubZQDX5iyb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ubZQDX5iyb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ubZQDX5iyb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-ubZQDX5iyb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ubZQDX5iyb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ubZQDX5iyb .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-ubZQDX5iyb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ubZQDX5iyb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ubZQDX5iyb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ubZQDX5iyb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ubZQDX5iyb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ubZQDX5iyb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ubZQDX5iyb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ubZQDX5iyb .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-ubZQDX5iyb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ubZQDX5iyb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ubZQDX5iyb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ubZQDX5iyb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ubZQDX5iyb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ubZQDX5iyb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ubZQDX5iyb .navbar.navbar-short {
  min-height: 60px;
}
.cid-ubZQDX5iyb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ubZQDX5iyb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ubZQDX5iyb .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-ubZQDX5iyb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ubZQDX5iyb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ubZQDX5iyb .dropdown-item.active,
.cid-ubZQDX5iyb .dropdown-item:active {
  background-color: transparent;
}
.cid-ubZQDX5iyb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ubZQDX5iyb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ubZQDX5iyb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ubZQDX5iyb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-ubZQDX5iyb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ubZQDX5iyb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ubZQDX5iyb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ubZQDX5iyb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ubZQDX5iyb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ubZQDX5iyb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #beb06e;
}
.cid-ubZQDX5iyb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ubZQDX5iyb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubZQDX5iyb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubZQDX5iyb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ubZQDX5iyb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubZQDX5iyb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ubZQDX5iyb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ubZQDX5iyb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubZQDX5iyb .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ubZQDX5iyb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ubZQDX5iyb .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-ubZQDX5iyb .navbar {
    height: 70px;
  }
  .cid-ubZQDX5iyb .navbar.opened {
    height: auto;
  }
  .cid-ubZQDX5iyb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ubZQDWLwor {
  background-image: url("../../../assets/images/6892055c6dd743c714209f1ca731b93f-1920x1280.jpeg");
}
.cid-ubZQDWLwor .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubZQDWLwor .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubZQDWLwor .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ubZQDWLwor .container-fluid {
    padding: 0 30px;
  }
}
.cid-ubZQDWLwor .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ubZQDWLwor .container {
    padding: 0 30px;
  }
}
.cid-ubZQDWLwor .title-wrapper {
  margin-top: 20%;
  padding: 0 8%;
}
@media (max-width: 992px) {
  .cid-ubZQDWLwor .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-ubZQDWLwor .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-ubZQDWLwor .title-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ubZQDWLwor .mbr-section-title {
  color: #ffffff;
}
.cid-ubZQDWLwor .mbr-text {
  color: #ffffff;
}
.cid-ubZRzIZsYz {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ubZS6fMkuJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ubZS6fMkuJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubZS6fMkuJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ubZS6fMkuJ .container {
    padding: 0 30px;
  }
}
.cid-ubZS6fMkuJ .row {
  justify-content: center;
}
.cid-ubZS6fMkuJ .title-wrapper {
  margin-bottom: 55px;
}
.cid-ubZS6fMkuJ .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-ubZS6fMkuJ .title-wrapper .link-wrapper:hover .mbr-link {
  color: #ff6839;
}
.cid-ubZS6fMkuJ .title-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-out;
}
.cid-ubZS6fMkuJ .card {
  padding: 0 8px;
}
.cid-ubZS6fMkuJ .card:nth-child(2n) {
  padding: 80px 8px 0;
}
@media (max-width: 992px) {
  .cid-ubZS6fMkuJ .card:nth-child(2n) {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-ubZS6fMkuJ .card {
    padding: 0 12px;
  }
}
.cid-ubZS6fMkuJ .card a {
  display: block;
}
.cid-ubZS6fMkuJ .card a:hover .image-wrapper .mbr-iconfont {
  opacity: 1;
}
.cid-ubZS6fMkuJ .card a:hover .image-wrapper::before {
  opacity: .5;
}
.cid-ubZS6fMkuJ .card a .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cid-ubZS6fMkuJ .card a .image-wrapper img {
  height: 215px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-ubZS6fMkuJ .card a .image-wrapper img {
    height: 250px;
    margin-bottom: 22px;
  }
}
.cid-ubZS6fMkuJ .card a .image-wrapper .mbr-iconfont {
  position: absolute;
  font-size: 22px;
  color: #ffffff;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.cid-ubZS6fMkuJ .card a .image-wrapper:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background-color: #ffffff;
  opacity: 0;
  border-radius: 10px;
  transition: all 0.3s ease-out;
  pointer-events: none;
}
.cid-ubZS6fMkuJ .text-wrapper {
  margin-top: 44px;
}
.cid-ubZS6fMkuJ .text-wrapper .mbr-text {
  margin: 0;
}
.cid-ubZS6fMkuJ .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ubZS6fMkuJ .mbr-link {
  color: #000000;
  text-align: center;
}
.cid-ubZS6fMkuJ .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ubZTSED3gm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ubZTSED3gm .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-ubZUadsUsw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ubZUadsUsw .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-ubZUaWRCpw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ubZUaWRCpw .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-ubZUCYsWU4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ubZUCYsWU4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubZUCYsWU4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubZUCYsWU4 .card-wrapper {
  background: #7eac55;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ubZUCYsWU4 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ubZUCYsWU4 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ubZUCYsWU4 .card-wrapper {
    padding: 4rem;
  }
}
.cid-ubZUCYsWU4 .mbr-text,
.cid-ubZUCYsWU4 .mbr-section-btn {
  color: #ffffff;
}
.cid-ubZUCYsWU4 .card-title,
.cid-ubZUCYsWU4 .card-box {
  text-align: left;
}
.cid-ubZQDYOLv9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ubZQDYOLv9 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ubZQDYOLv9 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ubZQDYOLv9 .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ubZQDYOLv9 .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ubZQDYOLv9 .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ubZQDYOLv9 .row .foot-menu li p {
  margin: 0;
}
.cid-ubZQDYOLv9 .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ubZQDYOLv9 .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ubZQDYOLv9 .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ubZQDYOLv9 .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ubZQDYOLv9 .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ubZQDYOLv9 .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ubZQDYOLv9 .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ubZQDYOLv9 .row .row-copirayt p {
  width: 100%;
}
.cid-ubZQDX5iyb .navbar-dropdown {
  position: relative !important;
}
.cid-ubZQDX5iyb .navbar-dropdown {
  position: absolute !important;
}
.cid-ubZQDX5iyb .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-ubZQDX5iyb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ubZQDX5iyb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ubZQDX5iyb .dropdown-item:hover,
.cid-ubZQDX5iyb .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-ubZQDX5iyb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ubZQDX5iyb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ubZQDX5iyb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ubZQDX5iyb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ubZQDX5iyb .nav-link {
  position: relative;
}
.cid-ubZQDX5iyb .container {
  display: flex;
  margin: auto;
}
.cid-ubZQDX5iyb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ubZQDX5iyb .dropdown-menu,
.cid-ubZQDX5iyb .navbar.opened {
  background: #fafafa !important;
}
.cid-ubZQDX5iyb .nav-item:focus,
.cid-ubZQDX5iyb .nav-link:focus {
  outline: none;
}
.cid-ubZQDX5iyb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ubZQDX5iyb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ubZQDX5iyb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ubZQDX5iyb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ubZQDX5iyb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ubZQDX5iyb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ubZQDX5iyb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-ubZQDX5iyb .navbar.opened {
  transition: all 0.3s;
}
.cid-ubZQDX5iyb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ubZQDX5iyb .navbar .navbar-logo img {
  width: auto;
}
.cid-ubZQDX5iyb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ubZQDX5iyb .navbar.collapsed {
  justify-content: center;
}
.cid-ubZQDX5iyb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ubZQDX5iyb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ubZQDX5iyb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-ubZQDX5iyb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ubZQDX5iyb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ubZQDX5iyb .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-ubZQDX5iyb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ubZQDX5iyb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ubZQDX5iyb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ubZQDX5iyb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ubZQDX5iyb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ubZQDX5iyb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ubZQDX5iyb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ubZQDX5iyb .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-ubZQDX5iyb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ubZQDX5iyb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ubZQDX5iyb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ubZQDX5iyb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ubZQDX5iyb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ubZQDX5iyb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ubZQDX5iyb .navbar.navbar-short {
  min-height: 60px;
}
.cid-ubZQDX5iyb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ubZQDX5iyb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ubZQDX5iyb .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-ubZQDX5iyb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ubZQDX5iyb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ubZQDX5iyb .dropdown-item.active,
.cid-ubZQDX5iyb .dropdown-item:active {
  background-color: transparent;
}
.cid-ubZQDX5iyb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ubZQDX5iyb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ubZQDX5iyb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ubZQDX5iyb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-ubZQDX5iyb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ubZQDX5iyb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ubZQDX5iyb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ubZQDX5iyb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ubZQDX5iyb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ubZQDX5iyb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #beb06e;
}
.cid-ubZQDX5iyb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ubZQDX5iyb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubZQDX5iyb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ubZQDX5iyb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ubZQDX5iyb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubZQDX5iyb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ubZQDX5iyb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ubZQDX5iyb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ubZQDX5iyb .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ubZQDX5iyb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ubZQDX5iyb .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-ubZQDX5iyb .navbar {
    height: 70px;
  }
  .cid-ubZQDX5iyb .navbar.opened {
    height: auto;
  }
  .cid-ubZQDX5iyb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uc3tTzbDQ3 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ecf4e9;
}
.cid-uc3tTzbDQ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc3tTzbDQ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc3tTzbDQ3 .row {
  flex-direction: row-reverse;
}
.cid-ubZQDYOLv9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ubZQDYOLv9 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ubZQDYOLv9 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ubZQDYOLv9 .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ubZQDYOLv9 .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ubZQDYOLv9 .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ubZQDYOLv9 .row .foot-menu li p {
  margin: 0;
}
.cid-ubZQDYOLv9 .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ubZQDYOLv9 .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ubZQDYOLv9 .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ubZQDYOLv9 .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ubZQDYOLv9 .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ubZQDYOLv9 .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ubZQDYOLv9 .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ubZQDYOLv9 .row .row-copirayt p {
  width: 100%;
}
.cid-usmSzYMUxt .navbar-dropdown {
  position: relative !important;
}
.cid-usmSzYMUxt .navbar-dropdown {
  position: absolute !important;
}
.cid-usmSzYMUxt .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-usmSzYMUxt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-usmSzYMUxt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-usmSzYMUxt .dropdown-item:hover,
.cid-usmSzYMUxt .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-usmSzYMUxt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-usmSzYMUxt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-usmSzYMUxt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-usmSzYMUxt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-usmSzYMUxt .nav-link {
  position: relative;
}
.cid-usmSzYMUxt .container {
  display: flex;
  margin: auto;
}
.cid-usmSzYMUxt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-usmSzYMUxt .dropdown-menu,
.cid-usmSzYMUxt .navbar.opened {
  background: #fafafa !important;
}
.cid-usmSzYMUxt .nav-item:focus,
.cid-usmSzYMUxt .nav-link:focus {
  outline: none;
}
.cid-usmSzYMUxt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-usmSzYMUxt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-usmSzYMUxt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-usmSzYMUxt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-usmSzYMUxt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-usmSzYMUxt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-usmSzYMUxt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-usmSzYMUxt .navbar.opened {
  transition: all 0.3s;
}
.cid-usmSzYMUxt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-usmSzYMUxt .navbar .navbar-logo img {
  width: auto;
}
.cid-usmSzYMUxt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-usmSzYMUxt .navbar.collapsed {
  justify-content: center;
}
.cid-usmSzYMUxt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-usmSzYMUxt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-usmSzYMUxt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-usmSzYMUxt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-usmSzYMUxt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-usmSzYMUxt .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-usmSzYMUxt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-usmSzYMUxt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-usmSzYMUxt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-usmSzYMUxt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-usmSzYMUxt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-usmSzYMUxt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-usmSzYMUxt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-usmSzYMUxt .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-usmSzYMUxt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-usmSzYMUxt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-usmSzYMUxt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-usmSzYMUxt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-usmSzYMUxt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-usmSzYMUxt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-usmSzYMUxt .navbar.navbar-short {
  min-height: 60px;
}
.cid-usmSzYMUxt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-usmSzYMUxt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-usmSzYMUxt .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-usmSzYMUxt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-usmSzYMUxt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-usmSzYMUxt .dropdown-item.active,
.cid-usmSzYMUxt .dropdown-item:active {
  background-color: transparent;
}
.cid-usmSzYMUxt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-usmSzYMUxt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-usmSzYMUxt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-usmSzYMUxt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-usmSzYMUxt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-usmSzYMUxt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-usmSzYMUxt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-usmSzYMUxt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-usmSzYMUxt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-usmSzYMUxt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #beb06e;
}
.cid-usmSzYMUxt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-usmSzYMUxt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-usmSzYMUxt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-usmSzYMUxt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-usmSzYMUxt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-usmSzYMUxt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-usmSzYMUxt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-usmSzYMUxt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-usmSzYMUxt .navbar-dropdown {
  padding: 0 1rem;
}
.cid-usmSzYMUxt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-usmSzYMUxt .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-usmSzYMUxt .navbar {
    height: 70px;
  }
  .cid-usmSzYMUxt .navbar.opened {
    height: auto;
  }
  .cid-usmSzYMUxt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usmSzYcSEY {
  background-image: url("../../../assets/images/24.10.12-480x640.jpg");
}
.cid-usmSzYcSEY .mbr-fallback-image.disabled {
  display: none;
}
.cid-usmSzYcSEY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usmSzYcSEY .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-usmSzYcSEY .container-fluid {
    padding: 0 30px;
  }
}
.cid-usmSzYcSEY .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-usmSzYcSEY .container {
    padding: 0 30px;
  }
}
.cid-usmSzYcSEY .title-wrapper {
  margin-top: 20%;
  padding: 0 8%;
}
@media (max-width: 992px) {
  .cid-usmSzYcSEY .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-usmSzYcSEY .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-usmSzYcSEY .title-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-usmSzYcSEY .mbr-section-title {
  color: #ffffff;
}
.cid-usmSzYcSEY .mbr-text {
  color: #ffffff;
}
.cid-usmSzZB0GI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usmSzZB0GI .mbr-fallback-image.disabled {
  display: none;
}
.cid-usmSzZB0GI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usmSzZB0GI .mbr-section-title {
  color: #7eac55;
}
.cid-utDhcNeOxb {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-utDhcNeOxb [class*="col"] {
  padding-left: .25rem !important;
  padding-right: .25rem !important;
}
.cid-utDhcNeOxb .card {
  margin-bottom: .5rem;
  overflow: hidden;
  min-height: 426px;
}
.cid-utDhcNeOxb .card .card-img {
  height: 100%;
  border-radius: 0;
}
.cid-utDhcNeOxb .card .card-img img {
  object-fit: cover;
  height: 100%;
}
.cid-utDhcNeOxb .card:hover .card-img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-utDhcNeOxb .row:nth-of-type(2) .card {
  min-height: 326px;
}
.cid-utDhcNeOxb .card-wrapper {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.cid-utDhcNeOxb .card-img {
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}
.cid-utDhcNeOxb .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-utDhcNeOxb .card-sub-title {
  text-align: center;
}
.cid-utDhcNeOxb .mbr-section-sub-title {
  text-align: left;
  color: #000000;
}
.cid-usv5orM723 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/24.10.24-3powerpoint-720x405.jpg");
}
.cid-usv5orM723 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usv5orM723 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usv5orM723 .row {
  justify-content: center;
}
.cid-usv5orM723 .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-usv5orM723 .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-usv5orM723 .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-usv5orM723 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-usv5orM723 .item {
  margin-bottom: 32px;
}
.cid-usv5orM723 .item:nth-child(2n) .item-wrapper .item-img {
  transform: rotate(-5deg);
}
.cid-usv5orM723 .item .item-wrapper {
  overflow: visible;
}
.cid-usv5orM723 .item .item-wrapper .item-img {
  transform: rotate(5deg);
}
.cid-usv5orM723 .item .item-wrapper .item-img img {
  max-height: 500px;
  min-height: 500px;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 6px 6px 20px #7eac55;
}
@media (max-width: 992px) {
  .cid-usv5orM723 .item .item-wrapper .item-img img {
    min-height: 250px;
    max-height: 250px;
  }
}
.cid-usv5orM723 .mbr-section-title {
  color: #7eac55;
  text-align: left;
}
.cid-usv5orM723 .mbr-text {
  color: #6e716f;
  text-align: center;
}
.cid-usvaExm5L3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-usvaExm5L3 .title-section {
  margin-bottom: 4.25rem;
  padding: 0 90px;
}
@media (max-width: 992px) {
  .cid-usvaExm5L3 .title-section {
    padding: 0 20px;
    margin-bottom: 2rem;
  }
}
.cid-usvaExm5L3 .card {
  margin: 0;
  width: 100%;
  height: 100%;
  background-color: #bed3f9;
}
.cid-usvaExm5L3 .card .card-body {
  padding: 50px 70px;
}
@media (max-width: 992px) {
  .cid-usvaExm5L3 .card .card-body {
    padding: 20px;
  }
}
.cid-usvaExm5L3 .buttons-container {
  margin: 40px auto 0px auto;
  width: 80px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-usvaExm5L3 .buttons-container {
    display: none;
  }
}
.cid-usvaExm5L3 .buttons-container button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7eac55;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: all 0.7s ease;
}
.cid-usvaExm5L3 .buttons-container button:hover {
  background-color: #b2cd9a;
}
.cid-usvaExm5L3 .buttons-container button span {
  line-height: 2px;
  color: white;
}
@media (max-width: 768px) {
  .cid-usvaExm5L3 .embla__button {
    display: none;
  }
}
.cid-usvaExm5L3 .embla__button:disabled {
  cursor: default;
}
.cid-usvaExm5L3 .embla__button:hover {
  cursor: pointer;
}
.cid-usvaExm5L3 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 610px;
  max-width: 610px;
  height: auto;
}
@media (max-width: 768px) {
  .cid-usvaExm5L3 .embla__slide {
    min-width: 310px;
    max-width: 310px;
  }
}
.cid-usvaExm5L3 .embla {
  position: relative;
  width: 100%;
}
.cid-usvaExm5L3 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-usvaExm5L3 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-usvaExm5L3 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-usvaExm5L3 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-usvaExm5L3 .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-usvaExm5L3 .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-usvaExm5L3 .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-usvaExm5L3 .slide-content {
  width: 100%;
  height: 100%;
}
.cid-usvaExm5L3 .mbr-section-subtitle {
  text-align: left;
  color: #fa4529;
}
.cid-usvaExm5L3 .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-usvaExm5L3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usvaExm5L3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utDm0uRvE6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-utDm0uRvE6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utDm0uRvE6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utDm0uRvE6 .google-map {
  height: 30rem;
  position: relative;
}
.cid-utDm0uRvE6 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-utDm0uRvE6 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-utDm0uRvE6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utDm0uRvE6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utDm0uRvE6 .mbr-section-title {
  color: #7eac55;
}
.cid-utDm0uRvE6 .mbr-section-subtitle {
  color: #beb06e;
}
.cid-usmSA2IDYK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-usmSA2IDYK .row-links {
  width: 100%;
  justify-content: center;
}
.cid-usmSA2IDYK .social-row {
  width: 100%;
  justify-content: center;
}
.cid-usmSA2IDYK .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-usmSA2IDYK .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-usmSA2IDYK .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-usmSA2IDYK .row .foot-menu li p {
  margin: 0;
}
.cid-usmSA2IDYK .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-usmSA2IDYK .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-usmSA2IDYK .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-usmSA2IDYK .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-usmSA2IDYK .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-usmSA2IDYK .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-usmSA2IDYK .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-usmSA2IDYK .row .row-copirayt p {
  width: 100%;
}
