body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sDBGnoz7NX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sDBGnoz7NX nav.navbar {
  position: fixed;
}
.cid-sDBGnoz7NX .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-sDBGnoz7NX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sDBGnoz7NX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sDBGnoz7NX .dropdown-item:hover,
.cid-sDBGnoz7NX .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sDBGnoz7NX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sDBGnoz7NX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sDBGnoz7NX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sDBGnoz7NX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sDBGnoz7NX .nav-link {
  position: relative;
}
.cid-sDBGnoz7NX .container {
  display: flex;
  margin: auto;
}
.cid-sDBGnoz7NX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sDBGnoz7NX .dropdown-menu,
.cid-sDBGnoz7NX .navbar.opened {
  background: #ffffff !important;
}
.cid-sDBGnoz7NX .nav-item:focus,
.cid-sDBGnoz7NX .nav-link:focus {
  outline: none;
}
.cid-sDBGnoz7NX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sDBGnoz7NX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDBGnoz7NX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sDBGnoz7NX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDBGnoz7NX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDBGnoz7NX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDBGnoz7NX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sDBGnoz7NX .navbar.opened {
  transition: all 0.3s;
}
.cid-sDBGnoz7NX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sDBGnoz7NX .navbar .navbar-logo img {
  width: auto;
}
.cid-sDBGnoz7NX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sDBGnoz7NX .navbar.collapsed {
  justify-content: center;
}
.cid-sDBGnoz7NX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sDBGnoz7NX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sDBGnoz7NX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sDBGnoz7NX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sDBGnoz7NX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sDBGnoz7NX .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-sDBGnoz7NX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sDBGnoz7NX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sDBGnoz7NX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sDBGnoz7NX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sDBGnoz7NX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sDBGnoz7NX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sDBGnoz7NX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sDBGnoz7NX .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-sDBGnoz7NX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sDBGnoz7NX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sDBGnoz7NX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sDBGnoz7NX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sDBGnoz7NX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sDBGnoz7NX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sDBGnoz7NX .navbar.navbar-short {
  min-height: 60px;
}
.cid-sDBGnoz7NX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sDBGnoz7NX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sDBGnoz7NX .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-sDBGnoz7NX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sDBGnoz7NX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sDBGnoz7NX .dropdown-item.active,
.cid-sDBGnoz7NX .dropdown-item:active {
  background-color: transparent;
}
.cid-sDBGnoz7NX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sDBGnoz7NX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sDBGnoz7NX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sDBGnoz7NX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sDBGnoz7NX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sDBGnoz7NX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDBGnoz7NX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sDBGnoz7NX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sDBGnoz7NX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sDBGnoz7NX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sDBGnoz7NX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDBGnoz7NX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDBGnoz7NX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDBGnoz7NX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDBGnoz7NX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDBGnoz7NX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDBGnoz7NX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDBGnoz7NX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDBGnoz7NX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sDBGnoz7NX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sDBGnoz7NX .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-sDBGnoz7NX .navbar {
    height: 70px;
  }
  .cid-sDBGnoz7NX .navbar.opened {
    height: auto;
  }
  .cid-sDBGnoz7NX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sDBGtV88OX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sDBGtV88OX .row {
    flex-direction: column-reverse;
  }
  .cid-sDBGtV88OX .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-sDBGtV88OX .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sDBGtV88OX .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sDBGtV88OX .media-content,
.cid-sDBGtV88OX .mbr-figure {
  align-self: center;
}
.cid-sDBGtV88OX .mbr-figure iframe {
  width: 100%;
}
.cid-sDBGtV88OX .mbr-section-title {
  text-align: center;
}
.cid-sDBGtV88OX .mbr-text,
.cid-sDBGtV88OX .mbr-section-btn {
  text-align: center;
}
.cid-sDFh5OtYfA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sDFh5OtYfA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sDFh5OtYfA .row {
  flex-direction: row-reverse;
}
.cid-sDFh5OtYfA img {
  width: 100%;
}
.cid-sDBJJQcFDb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDBJJQcFDb .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sDBJJQcFDb .bg-facebook:hover {
  background: #0b60cb;
}
.cid-sDBJJQcFDb .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sDBJJQcFDb .bg-twitter:hover {
  background: #0c85d0;
}
.cid-sDBJJQcFDb .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-sDBJJQcFDb .bg-instagram:hover {
  background: #bd005c;
}
.cid-sDBJJQcFDb .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-sDBJJQcFDb [class^="socicon-"]:before,
.cid-sDBJJQcFDb [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-sDBJqPYlxk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sDBLbmGo80 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sDBLbmGo80 nav.navbar {
  position: fixed;
}
.cid-sDBLbmGo80 .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-sDBLbmGo80 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sDBLbmGo80 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sDBLbmGo80 .dropdown-item:hover,
.cid-sDBLbmGo80 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sDBLbmGo80 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sDBLbmGo80 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sDBLbmGo80 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sDBLbmGo80 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sDBLbmGo80 .nav-link {
  position: relative;
}
.cid-sDBLbmGo80 .container {
  display: flex;
  margin: auto;
}
.cid-sDBLbmGo80 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sDBLbmGo80 .dropdown-menu,
.cid-sDBLbmGo80 .navbar.opened {
  background: #ffffff !important;
}
.cid-sDBLbmGo80 .nav-item:focus,
.cid-sDBLbmGo80 .nav-link:focus {
  outline: none;
}
.cid-sDBLbmGo80 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sDBLbmGo80 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDBLbmGo80 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sDBLbmGo80 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDBLbmGo80 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDBLbmGo80 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDBLbmGo80 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sDBLbmGo80 .navbar.opened {
  transition: all 0.3s;
}
.cid-sDBLbmGo80 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sDBLbmGo80 .navbar .navbar-logo img {
  width: auto;
}
.cid-sDBLbmGo80 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sDBLbmGo80 .navbar.collapsed {
  justify-content: center;
}
.cid-sDBLbmGo80 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sDBLbmGo80 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sDBLbmGo80 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sDBLbmGo80 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sDBLbmGo80 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sDBLbmGo80 .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-sDBLbmGo80 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sDBLbmGo80 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sDBLbmGo80 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sDBLbmGo80 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sDBLbmGo80 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sDBLbmGo80 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sDBLbmGo80 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sDBLbmGo80 .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-sDBLbmGo80 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sDBLbmGo80 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sDBLbmGo80 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sDBLbmGo80 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sDBLbmGo80 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sDBLbmGo80 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sDBLbmGo80 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sDBLbmGo80 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sDBLbmGo80 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sDBLbmGo80 .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-sDBLbmGo80 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sDBLbmGo80 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sDBLbmGo80 .dropdown-item.active,
.cid-sDBLbmGo80 .dropdown-item:active {
  background-color: transparent;
}
.cid-sDBLbmGo80 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sDBLbmGo80 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sDBLbmGo80 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sDBLbmGo80 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sDBLbmGo80 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sDBLbmGo80 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDBLbmGo80 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sDBLbmGo80 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sDBLbmGo80 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sDBLbmGo80 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sDBLbmGo80 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDBLbmGo80 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDBLbmGo80 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDBLbmGo80 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDBLbmGo80 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDBLbmGo80 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDBLbmGo80 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDBLbmGo80 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDBLbmGo80 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sDBLbmGo80 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sDBLbmGo80 .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-sDBLbmGo80 .navbar {
    height: 70px;
  }
  .cid-sDBLbmGo80 .navbar.opened {
    height: auto;
  }
  .cid-sDBLbmGo80 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sDBLbpr9CD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sDBLbpr9CD .row {
    flex-direction: column-reverse;
  }
  .cid-sDBLbpr9CD .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-sDBLbpr9CD .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sDBLbpr9CD .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sDBLbpr9CD .media-content,
.cid-sDBLbpr9CD .mbr-figure {
  align-self: center;
}
.cid-sDBLbpr9CD .mbr-figure iframe {
  width: 100%;
}
.cid-sDBLbpr9CD .mbr-section-title {
  text-align: center;
}
.cid-sDBLbpr9CD .mbr-text,
.cid-sDBLbpr9CD .mbr-section-btn {
  text-align: center;
}
.cid-sDBLbqAD3E {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDBLbqAD3E .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sDBLbqAD3E .bg-facebook:hover {
  background: #0b60cb;
}
.cid-sDBLbqAD3E .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sDBLbqAD3E .bg-twitter:hover {
  background: #0c85d0;
}
.cid-sDBLbqAD3E .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-sDBLbqAD3E .bg-instagram:hover {
  background: #bd005c;
}
.cid-sDBLbqAD3E .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-sDBLbqAD3E [class^="socicon-"]:before,
.cid-sDBLbqAD3E [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-sDBLbrYw5p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sDBLdjlyMm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sDBLdjlyMm nav.navbar {
  position: fixed;
}
.cid-sDBLdjlyMm .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-sDBLdjlyMm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sDBLdjlyMm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sDBLdjlyMm .dropdown-item:hover,
.cid-sDBLdjlyMm .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sDBLdjlyMm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sDBLdjlyMm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sDBLdjlyMm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sDBLdjlyMm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sDBLdjlyMm .nav-link {
  position: relative;
}
.cid-sDBLdjlyMm .container {
  display: flex;
  margin: auto;
}
.cid-sDBLdjlyMm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sDBLdjlyMm .dropdown-menu,
.cid-sDBLdjlyMm .navbar.opened {
  background: #ffffff !important;
}
.cid-sDBLdjlyMm .nav-item:focus,
.cid-sDBLdjlyMm .nav-link:focus {
  outline: none;
}
.cid-sDBLdjlyMm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sDBLdjlyMm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDBLdjlyMm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sDBLdjlyMm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDBLdjlyMm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDBLdjlyMm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDBLdjlyMm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sDBLdjlyMm .navbar.opened {
  transition: all 0.3s;
}
.cid-sDBLdjlyMm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sDBLdjlyMm .navbar .navbar-logo img {
  width: auto;
}
.cid-sDBLdjlyMm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sDBLdjlyMm .navbar.collapsed {
  justify-content: center;
}
.cid-sDBLdjlyMm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sDBLdjlyMm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sDBLdjlyMm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sDBLdjlyMm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sDBLdjlyMm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sDBLdjlyMm .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-sDBLdjlyMm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sDBLdjlyMm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sDBLdjlyMm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sDBLdjlyMm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sDBLdjlyMm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sDBLdjlyMm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sDBLdjlyMm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sDBLdjlyMm .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-sDBLdjlyMm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sDBLdjlyMm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sDBLdjlyMm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sDBLdjlyMm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sDBLdjlyMm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sDBLdjlyMm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sDBLdjlyMm .navbar.navbar-short {
  min-height: 60px;
}
.cid-sDBLdjlyMm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sDBLdjlyMm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sDBLdjlyMm .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-sDBLdjlyMm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sDBLdjlyMm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sDBLdjlyMm .dropdown-item.active,
.cid-sDBLdjlyMm .dropdown-item:active {
  background-color: transparent;
}
.cid-sDBLdjlyMm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sDBLdjlyMm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sDBLdjlyMm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sDBLdjlyMm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sDBLdjlyMm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sDBLdjlyMm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDBLdjlyMm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sDBLdjlyMm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sDBLdjlyMm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sDBLdjlyMm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sDBLdjlyMm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDBLdjlyMm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDBLdjlyMm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDBLdjlyMm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDBLdjlyMm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDBLdjlyMm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDBLdjlyMm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDBLdjlyMm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDBLdjlyMm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sDBLdjlyMm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sDBLdjlyMm .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-sDBLdjlyMm .navbar {
    height: 70px;
  }
  .cid-sDBLdjlyMm .navbar.opened {
    height: auto;
  }
  .cid-sDBLdjlyMm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sDBS50tZIE {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDBS50tZIE .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sDBS50tZIE .row {
    flex-direction: column-reverse;
  }
  .cid-sDBS50tZIE .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sDBS50tZIE .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sDBS50tZIE .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sDBS50tZIE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sDBS50tZIE .mbr-text,
.cid-sDBS50tZIE .mbr-section-btn {
  text-align: center;
}
.cid-sDBS50tZIE .card-title {
  text-align: center;
}
.cid-sDBLdm4PFm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDBLdm4PFm .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sDBLdm4PFm .bg-facebook:hover {
  background: #0b60cb;
}
.cid-sDBLdm4PFm .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sDBLdm4PFm .bg-twitter:hover {
  background: #0c85d0;
}
.cid-sDBLdm4PFm .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-sDBLdm4PFm .bg-instagram:hover {
  background: #bd005c;
}
.cid-sDBLdm4PFm .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-sDBLdm4PFm [class^="socicon-"]:before,
.cid-sDBLdm4PFm [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-sDBLdnABBU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sDBLe5j3WF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sDBLe5j3WF nav.navbar {
  position: fixed;
}
.cid-sDBLe5j3WF .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-sDBLe5j3WF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sDBLe5j3WF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sDBLe5j3WF .dropdown-item:hover,
.cid-sDBLe5j3WF .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sDBLe5j3WF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sDBLe5j3WF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sDBLe5j3WF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sDBLe5j3WF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sDBLe5j3WF .nav-link {
  position: relative;
}
.cid-sDBLe5j3WF .container {
  display: flex;
  margin: auto;
}
.cid-sDBLe5j3WF .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sDBLe5j3WF .dropdown-menu,
.cid-sDBLe5j3WF .navbar.opened {
  background: #ffffff !important;
}
.cid-sDBLe5j3WF .nav-item:focus,
.cid-sDBLe5j3WF .nav-link:focus {
  outline: none;
}
.cid-sDBLe5j3WF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sDBLe5j3WF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDBLe5j3WF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sDBLe5j3WF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDBLe5j3WF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDBLe5j3WF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDBLe5j3WF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sDBLe5j3WF .navbar.opened {
  transition: all 0.3s;
}
.cid-sDBLe5j3WF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sDBLe5j3WF .navbar .navbar-logo img {
  width: auto;
}
.cid-sDBLe5j3WF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sDBLe5j3WF .navbar.collapsed {
  justify-content: center;
}
.cid-sDBLe5j3WF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sDBLe5j3WF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sDBLe5j3WF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sDBLe5j3WF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sDBLe5j3WF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sDBLe5j3WF .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-sDBLe5j3WF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sDBLe5j3WF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sDBLe5j3WF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sDBLe5j3WF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sDBLe5j3WF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sDBLe5j3WF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sDBLe5j3WF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sDBLe5j3WF .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-sDBLe5j3WF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sDBLe5j3WF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sDBLe5j3WF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sDBLe5j3WF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sDBLe5j3WF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sDBLe5j3WF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sDBLe5j3WF .navbar.navbar-short {
  min-height: 60px;
}
.cid-sDBLe5j3WF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sDBLe5j3WF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sDBLe5j3WF .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-sDBLe5j3WF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sDBLe5j3WF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sDBLe5j3WF .dropdown-item.active,
.cid-sDBLe5j3WF .dropdown-item:active {
  background-color: transparent;
}
.cid-sDBLe5j3WF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sDBLe5j3WF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sDBLe5j3WF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sDBLe5j3WF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sDBLe5j3WF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sDBLe5j3WF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDBLe5j3WF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sDBLe5j3WF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sDBLe5j3WF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sDBLe5j3WF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sDBLe5j3WF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDBLe5j3WF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDBLe5j3WF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDBLe5j3WF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDBLe5j3WF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDBLe5j3WF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDBLe5j3WF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDBLe5j3WF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDBLe5j3WF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sDBLe5j3WF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sDBLe5j3WF .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-sDBLe5j3WF .navbar {
    height: 70px;
  }
  .cid-sDBLe5j3WF .navbar.opened {
    height: auto;
  }
  .cid-sDBLe5j3WF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sDBLe72rs7 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sDBLe72rs7 .row {
    flex-direction: column-reverse;
  }
  .cid-sDBLe72rs7 .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-sDBLe72rs7 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sDBLe72rs7 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sDBLe72rs7 .media-content,
.cid-sDBLe72rs7 .mbr-figure {
  align-self: center;
}
.cid-sDBLe72rs7 .mbr-figure iframe {
  width: 100%;
}
.cid-sDBLe72rs7 .mbr-section-title {
  text-align: center;
}
.cid-sDBLe72rs7 .mbr-text,
.cid-sDBLe72rs7 .mbr-section-btn {
  text-align: center;
}
.cid-sDC3Mlayz4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sDC3Mlayz4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sDC3Mlayz4 .row {
  flex-direction: row-reverse;
}
.cid-sDC3Mlayz4 img {
  width: 100%;
}
.cid-sDBLe8GW5N {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDBLe8GW5N .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sDBLe8GW5N .bg-facebook:hover {
  background: #0b60cb;
}
.cid-sDBLe8GW5N .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sDBLe8GW5N .bg-twitter:hover {
  background: #0c85d0;
}
.cid-sDBLe8GW5N .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-sDBLe8GW5N .bg-instagram:hover {
  background: #bd005c;
}
.cid-sDBLe8GW5N .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-sDBLe8GW5N [class^="socicon-"]:before,
.cid-sDBLe8GW5N [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-sDBLeaoSCM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sDBLfBxs3U {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sDBLfBxs3U nav.navbar {
  position: fixed;
}
.cid-sDBLfBxs3U .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-sDBLfBxs3U .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sDBLfBxs3U .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sDBLfBxs3U .dropdown-item:hover,
.cid-sDBLfBxs3U .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sDBLfBxs3U .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sDBLfBxs3U .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sDBLfBxs3U .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sDBLfBxs3U .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sDBLfBxs3U .nav-link {
  position: relative;
}
.cid-sDBLfBxs3U .container {
  display: flex;
  margin: auto;
}
.cid-sDBLfBxs3U .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sDBLfBxs3U .dropdown-menu,
.cid-sDBLfBxs3U .navbar.opened {
  background: #ffffff !important;
}
.cid-sDBLfBxs3U .nav-item:focus,
.cid-sDBLfBxs3U .nav-link:focus {
  outline: none;
}
.cid-sDBLfBxs3U .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sDBLfBxs3U .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDBLfBxs3U .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sDBLfBxs3U .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDBLfBxs3U .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDBLfBxs3U .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDBLfBxs3U .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sDBLfBxs3U .navbar.opened {
  transition: all 0.3s;
}
.cid-sDBLfBxs3U .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sDBLfBxs3U .navbar .navbar-logo img {
  width: auto;
}
.cid-sDBLfBxs3U .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sDBLfBxs3U .navbar.collapsed {
  justify-content: center;
}
.cid-sDBLfBxs3U .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sDBLfBxs3U .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sDBLfBxs3U .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sDBLfBxs3U .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sDBLfBxs3U .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sDBLfBxs3U .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-sDBLfBxs3U .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sDBLfBxs3U .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sDBLfBxs3U .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sDBLfBxs3U .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sDBLfBxs3U .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sDBLfBxs3U .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sDBLfBxs3U .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sDBLfBxs3U .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-sDBLfBxs3U .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sDBLfBxs3U .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sDBLfBxs3U .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sDBLfBxs3U .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sDBLfBxs3U .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sDBLfBxs3U .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sDBLfBxs3U .navbar.navbar-short {
  min-height: 60px;
}
.cid-sDBLfBxs3U .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sDBLfBxs3U .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sDBLfBxs3U .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-sDBLfBxs3U .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sDBLfBxs3U .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sDBLfBxs3U .dropdown-item.active,
.cid-sDBLfBxs3U .dropdown-item:active {
  background-color: transparent;
}
.cid-sDBLfBxs3U .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sDBLfBxs3U .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sDBLfBxs3U .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sDBLfBxs3U .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sDBLfBxs3U .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sDBLfBxs3U .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDBLfBxs3U ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sDBLfBxs3U .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sDBLfBxs3U button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sDBLfBxs3U button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sDBLfBxs3U button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDBLfBxs3U button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDBLfBxs3U button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDBLfBxs3U button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDBLfBxs3U nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDBLfBxs3U nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDBLfBxs3U nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDBLfBxs3U nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDBLfBxs3U .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sDBLfBxs3U a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sDBLfBxs3U .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-sDBLfBxs3U .navbar {
    height: 70px;
  }
  .cid-sDBLfBxs3U .navbar.opened {
    height: auto;
  }
  .cid-sDBLfBxs3U .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sDCfRZYiIH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDCfRZYiIH .video-wrapper iframe {
  width: 100%;
}
.cid-sDCfRZYiIH .mbr-section-title,
.cid-sDCfRZYiIH .mbr-section-subtitle,
.cid-sDCfRZYiIH .mbr-text {
  text-align: center;
}
.cid-sDCdxlcslZ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sDCdxlcslZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sDCdxlcslZ .row {
  flex-direction: row-reverse;
}
.cid-sDCdxlcslZ img {
  width: 100%;
}
.cid-sDBLfDHuiC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDBLfDHuiC .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sDBLfDHuiC .bg-facebook:hover {
  background: #0b60cb;
}
.cid-sDBLfDHuiC .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sDBLfDHuiC .bg-twitter:hover {
  background: #0c85d0;
}
.cid-sDBLfDHuiC .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-sDBLfDHuiC .bg-instagram:hover {
  background: #bd005c;
}
.cid-sDBLfDHuiC .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-sDBLfDHuiC [class^="socicon-"]:before,
.cid-sDBLfDHuiC [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-sDBLfF8toI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sDCgzt8fuV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sDCgzt8fuV nav.navbar {
  position: fixed;
}
.cid-sDCgzt8fuV .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-sDCgzt8fuV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sDCgzt8fuV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sDCgzt8fuV .dropdown-item:hover,
.cid-sDCgzt8fuV .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sDCgzt8fuV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sDCgzt8fuV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sDCgzt8fuV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sDCgzt8fuV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sDCgzt8fuV .nav-link {
  position: relative;
}
.cid-sDCgzt8fuV .container {
  display: flex;
  margin: auto;
}
.cid-sDCgzt8fuV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sDCgzt8fuV .dropdown-menu,
.cid-sDCgzt8fuV .navbar.opened {
  background: #ffffff !important;
}
.cid-sDCgzt8fuV .nav-item:focus,
.cid-sDCgzt8fuV .nav-link:focus {
  outline: none;
}
.cid-sDCgzt8fuV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sDCgzt8fuV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDCgzt8fuV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sDCgzt8fuV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDCgzt8fuV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDCgzt8fuV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDCgzt8fuV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sDCgzt8fuV .navbar.opened {
  transition: all 0.3s;
}
.cid-sDCgzt8fuV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sDCgzt8fuV .navbar .navbar-logo img {
  width: auto;
}
.cid-sDCgzt8fuV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sDCgzt8fuV .navbar.collapsed {
  justify-content: center;
}
.cid-sDCgzt8fuV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sDCgzt8fuV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sDCgzt8fuV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sDCgzt8fuV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sDCgzt8fuV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sDCgzt8fuV .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-sDCgzt8fuV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sDCgzt8fuV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sDCgzt8fuV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sDCgzt8fuV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sDCgzt8fuV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sDCgzt8fuV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sDCgzt8fuV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sDCgzt8fuV .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-sDCgzt8fuV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sDCgzt8fuV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sDCgzt8fuV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sDCgzt8fuV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sDCgzt8fuV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sDCgzt8fuV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sDCgzt8fuV .navbar.navbar-short {
  min-height: 60px;
}
.cid-sDCgzt8fuV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sDCgzt8fuV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sDCgzt8fuV .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-sDCgzt8fuV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sDCgzt8fuV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sDCgzt8fuV .dropdown-item.active,
.cid-sDCgzt8fuV .dropdown-item:active {
  background-color: transparent;
}
.cid-sDCgzt8fuV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sDCgzt8fuV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sDCgzt8fuV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sDCgzt8fuV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sDCgzt8fuV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sDCgzt8fuV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDCgzt8fuV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sDCgzt8fuV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sDCgzt8fuV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sDCgzt8fuV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sDCgzt8fuV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDCgzt8fuV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDCgzt8fuV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDCgzt8fuV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDCgzt8fuV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDCgzt8fuV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDCgzt8fuV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDCgzt8fuV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDCgzt8fuV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sDCgzt8fuV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sDCgzt8fuV .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-sDCgzt8fuV .navbar {
    height: 70px;
  }
  .cid-sDCgzt8fuV .navbar.opened {
    height: auto;
  }
  .cid-sDCgzt8fuV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sDCgzvoBy2 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sDCgzvoBy2 .row {
    flex-direction: column-reverse;
  }
  .cid-sDCgzvoBy2 .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-sDCgzvoBy2 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sDCgzvoBy2 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sDCgzvoBy2 .media-content,
.cid-sDCgzvoBy2 .mbr-figure {
  align-self: center;
}
.cid-sDCgzvoBy2 .mbr-figure iframe {
  width: 100%;
}
.cid-sDCgzvoBy2 .mbr-section-title {
  text-align: center;
}
.cid-sDCgzvoBy2 .mbr-text,
.cid-sDCgzvoBy2 .mbr-section-btn {
  text-align: center;
}
.cid-sDCgzwVTi5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDCgzwVTi5 .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sDCgzwVTi5 .bg-facebook:hover {
  background: #0b60cb;
}
.cid-sDCgzwVTi5 .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sDCgzwVTi5 .bg-twitter:hover {
  background: #0c85d0;
}
.cid-sDCgzwVTi5 .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-sDCgzwVTi5 .bg-instagram:hover {
  background: #bd005c;
}
.cid-sDCgzwVTi5 .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-sDCgzwVTi5 [class^="socicon-"]:before,
.cid-sDCgzwVTi5 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-sDCgzymwmg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sDBLgxTb7R {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sDBLgxTb7R nav.navbar {
  position: fixed;
}
.cid-sDBLgxTb7R .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-sDBLgxTb7R .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sDBLgxTb7R .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sDBLgxTb7R .dropdown-item:hover,
.cid-sDBLgxTb7R .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sDBLgxTb7R .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sDBLgxTb7R .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sDBLgxTb7R .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sDBLgxTb7R .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sDBLgxTb7R .nav-link {
  position: relative;
}
.cid-sDBLgxTb7R .container {
  display: flex;
  margin: auto;
}
.cid-sDBLgxTb7R .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sDBLgxTb7R .dropdown-menu,
.cid-sDBLgxTb7R .navbar.opened {
  background: #ffffff !important;
}
.cid-sDBLgxTb7R .nav-item:focus,
.cid-sDBLgxTb7R .nav-link:focus {
  outline: none;
}
.cid-sDBLgxTb7R .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sDBLgxTb7R .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDBLgxTb7R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sDBLgxTb7R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDBLgxTb7R .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDBLgxTb7R .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDBLgxTb7R .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sDBLgxTb7R .navbar.opened {
  transition: all 0.3s;
}
.cid-sDBLgxTb7R .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sDBLgxTb7R .navbar .navbar-logo img {
  width: auto;
}
.cid-sDBLgxTb7R .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sDBLgxTb7R .navbar.collapsed {
  justify-content: center;
}
.cid-sDBLgxTb7R .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sDBLgxTb7R .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sDBLgxTb7R .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sDBLgxTb7R .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sDBLgxTb7R .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sDBLgxTb7R .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-sDBLgxTb7R .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sDBLgxTb7R .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sDBLgxTb7R .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sDBLgxTb7R .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sDBLgxTb7R .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sDBLgxTb7R .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sDBLgxTb7R .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sDBLgxTb7R .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-sDBLgxTb7R .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sDBLgxTb7R .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sDBLgxTb7R .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sDBLgxTb7R .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sDBLgxTb7R .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sDBLgxTb7R .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sDBLgxTb7R .navbar.navbar-short {
  min-height: 60px;
}
.cid-sDBLgxTb7R .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sDBLgxTb7R .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sDBLgxTb7R .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-sDBLgxTb7R .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sDBLgxTb7R .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sDBLgxTb7R .dropdown-item.active,
.cid-sDBLgxTb7R .dropdown-item:active {
  background-color: transparent;
}
.cid-sDBLgxTb7R .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sDBLgxTb7R .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sDBLgxTb7R .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sDBLgxTb7R .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sDBLgxTb7R .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sDBLgxTb7R .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDBLgxTb7R ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sDBLgxTb7R .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sDBLgxTb7R button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sDBLgxTb7R button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sDBLgxTb7R button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDBLgxTb7R button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDBLgxTb7R button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDBLgxTb7R button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDBLgxTb7R nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDBLgxTb7R nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDBLgxTb7R nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDBLgxTb7R nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDBLgxTb7R .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sDBLgxTb7R a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sDBLgxTb7R .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-sDBLgxTb7R .navbar {
    height: 70px;
  }
  .cid-sDBLgxTb7R .navbar.opened {
    height: auto;
  }
  .cid-sDBLgxTb7R .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sDBLgzbUEi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sDBLgzbUEi .row {
    flex-direction: column-reverse;
  }
  .cid-sDBLgzbUEi .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-sDBLgzbUEi .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sDBLgzbUEi .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sDBLgzbUEi .media-content,
.cid-sDBLgzbUEi .mbr-figure {
  align-self: center;
}
.cid-sDBLgzbUEi .mbr-figure iframe {
  width: 100%;
}
.cid-sDBLgzbUEi .mbr-section-title {
  text-align: center;
}
.cid-sDBLgzbUEi .mbr-text,
.cid-sDBLgzbUEi .mbr-section-btn {
  text-align: center;
}
.cid-sDFnBDlGAW {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sDFnBDlGAW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sDFnBDlGAW .row {
  flex-direction: row-reverse;
}
.cid-sDFnBDlGAW img {
  width: 100%;
}
.cid-sDBLgA6c0w {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDBLgA6c0w .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sDBLgA6c0w .bg-facebook:hover {
  background: #0b60cb;
}
.cid-sDBLgA6c0w .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sDBLgA6c0w .bg-twitter:hover {
  background: #0c85d0;
}
.cid-sDBLgA6c0w .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-sDBLgA6c0w .bg-instagram:hover {
  background: #bd005c;
}
.cid-sDBLgA6c0w .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-sDBLgA6c0w [class^="socicon-"]:before,
.cid-sDBLgA6c0w [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-sDBLgBs4sO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sDBLhsxEzo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sDBLhsxEzo nav.navbar {
  position: fixed;
}
.cid-sDBLhsxEzo .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-sDBLhsxEzo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sDBLhsxEzo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sDBLhsxEzo .dropdown-item:hover,
.cid-sDBLhsxEzo .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sDBLhsxEzo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sDBLhsxEzo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sDBLhsxEzo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sDBLhsxEzo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sDBLhsxEzo .nav-link {
  position: relative;
}
.cid-sDBLhsxEzo .container {
  display: flex;
  margin: auto;
}
.cid-sDBLhsxEzo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sDBLhsxEzo .dropdown-menu,
.cid-sDBLhsxEzo .navbar.opened {
  background: #ffffff !important;
}
.cid-sDBLhsxEzo .nav-item:focus,
.cid-sDBLhsxEzo .nav-link:focus {
  outline: none;
}
.cid-sDBLhsxEzo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sDBLhsxEzo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDBLhsxEzo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sDBLhsxEzo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDBLhsxEzo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDBLhsxEzo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDBLhsxEzo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sDBLhsxEzo .navbar.opened {
  transition: all 0.3s;
}
.cid-sDBLhsxEzo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sDBLhsxEzo .navbar .navbar-logo img {
  width: auto;
}
.cid-sDBLhsxEzo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sDBLhsxEzo .navbar.collapsed {
  justify-content: center;
}
.cid-sDBLhsxEzo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sDBLhsxEzo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sDBLhsxEzo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sDBLhsxEzo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sDBLhsxEzo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sDBLhsxEzo .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-sDBLhsxEzo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sDBLhsxEzo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sDBLhsxEzo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sDBLhsxEzo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sDBLhsxEzo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sDBLhsxEzo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sDBLhsxEzo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sDBLhsxEzo .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-sDBLhsxEzo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sDBLhsxEzo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sDBLhsxEzo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sDBLhsxEzo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sDBLhsxEzo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sDBLhsxEzo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sDBLhsxEzo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sDBLhsxEzo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sDBLhsxEzo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sDBLhsxEzo .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-sDBLhsxEzo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sDBLhsxEzo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sDBLhsxEzo .dropdown-item.active,
.cid-sDBLhsxEzo .dropdown-item:active {
  background-color: transparent;
}
.cid-sDBLhsxEzo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sDBLhsxEzo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sDBLhsxEzo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sDBLhsxEzo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sDBLhsxEzo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sDBLhsxEzo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDBLhsxEzo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sDBLhsxEzo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sDBLhsxEzo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sDBLhsxEzo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sDBLhsxEzo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDBLhsxEzo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDBLhsxEzo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDBLhsxEzo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDBLhsxEzo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDBLhsxEzo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDBLhsxEzo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDBLhsxEzo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDBLhsxEzo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sDBLhsxEzo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sDBLhsxEzo .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-sDBLhsxEzo .navbar {
    height: 70px;
  }
  .cid-sDBLhsxEzo .navbar.opened {
    height: auto;
  }
  .cid-sDBLhsxEzo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sDGR9JyIF8 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDGR9JyIF8 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sDGR9JyIF8 .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-sDBLhv2y3x {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDBLhv2y3x .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sDBLhv2y3x .bg-facebook:hover {
  background: #0b60cb;
}
.cid-sDBLhv2y3x .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sDBLhv2y3x .bg-twitter:hover {
  background: #0c85d0;
}
.cid-sDBLhv2y3x .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-sDBLhv2y3x .bg-instagram:hover {
  background: #bd005c;
}
.cid-sDBLhv2y3x .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-sDBLhv2y3x [class^="socicon-"]:before,
.cid-sDBLhv2y3x [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-sDBLhwMHAN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sDBLiuj69v {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sDBLiuj69v nav.navbar {
  position: fixed;
}
.cid-sDBLiuj69v .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-sDBLiuj69v .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sDBLiuj69v .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sDBLiuj69v .dropdown-item:hover,
.cid-sDBLiuj69v .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sDBLiuj69v .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sDBLiuj69v .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sDBLiuj69v .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sDBLiuj69v .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sDBLiuj69v .nav-link {
  position: relative;
}
.cid-sDBLiuj69v .container {
  display: flex;
  margin: auto;
}
.cid-sDBLiuj69v .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sDBLiuj69v .dropdown-menu,
.cid-sDBLiuj69v .navbar.opened {
  background: #ffffff !important;
}
.cid-sDBLiuj69v .nav-item:focus,
.cid-sDBLiuj69v .nav-link:focus {
  outline: none;
}
.cid-sDBLiuj69v .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sDBLiuj69v .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDBLiuj69v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sDBLiuj69v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDBLiuj69v .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDBLiuj69v .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDBLiuj69v .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sDBLiuj69v .navbar.opened {
  transition: all 0.3s;
}
.cid-sDBLiuj69v .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sDBLiuj69v .navbar .navbar-logo img {
  width: auto;
}
.cid-sDBLiuj69v .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sDBLiuj69v .navbar.collapsed {
  justify-content: center;
}
.cid-sDBLiuj69v .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sDBLiuj69v .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sDBLiuj69v .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sDBLiuj69v .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sDBLiuj69v .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sDBLiuj69v .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-sDBLiuj69v .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sDBLiuj69v .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sDBLiuj69v .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sDBLiuj69v .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sDBLiuj69v .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sDBLiuj69v .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sDBLiuj69v .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sDBLiuj69v .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-sDBLiuj69v .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sDBLiuj69v .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sDBLiuj69v .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sDBLiuj69v .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sDBLiuj69v .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sDBLiuj69v .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sDBLiuj69v .navbar.navbar-short {
  min-height: 60px;
}
.cid-sDBLiuj69v .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sDBLiuj69v .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sDBLiuj69v .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-sDBLiuj69v .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sDBLiuj69v .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sDBLiuj69v .dropdown-item.active,
.cid-sDBLiuj69v .dropdown-item:active {
  background-color: transparent;
}
.cid-sDBLiuj69v .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sDBLiuj69v .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sDBLiuj69v .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sDBLiuj69v .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sDBLiuj69v .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sDBLiuj69v .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDBLiuj69v ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sDBLiuj69v .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sDBLiuj69v button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sDBLiuj69v button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sDBLiuj69v button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDBLiuj69v button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDBLiuj69v button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDBLiuj69v button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDBLiuj69v nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDBLiuj69v nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDBLiuj69v nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDBLiuj69v nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDBLiuj69v .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sDBLiuj69v a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sDBLiuj69v .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-sDBLiuj69v .navbar {
    height: 70px;
  }
  .cid-sDBLiuj69v .navbar.opened {
    height: auto;
  }
  .cid-sDBLiuj69v .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sDGTX0KsNm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sDGTX0KsNm .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sDGTX0KsNm .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-sDBLiwR76P {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDBLiwR76P .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sDBLiwR76P .bg-facebook:hover {
  background: #0b60cb;
}
.cid-sDBLiwR76P .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sDBLiwR76P .bg-twitter:hover {
  background: #0c85d0;
}
.cid-sDBLiwR76P .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-sDBLiwR76P .bg-instagram:hover {
  background: #bd005c;
}
.cid-sDBLiwR76P .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-sDBLiwR76P [class^="socicon-"]:before,
.cid-sDBLiwR76P [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-sDBLiyvJ06 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sDBLkbKyAo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sDBLkbKyAo nav.navbar {
  position: fixed;
}
.cid-sDBLkbKyAo .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-sDBLkbKyAo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sDBLkbKyAo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sDBLkbKyAo .dropdown-item:hover,
.cid-sDBLkbKyAo .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sDBLkbKyAo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sDBLkbKyAo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sDBLkbKyAo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sDBLkbKyAo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sDBLkbKyAo .nav-link {
  position: relative;
}
.cid-sDBLkbKyAo .container {
  display: flex;
  margin: auto;
}
.cid-sDBLkbKyAo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sDBLkbKyAo .dropdown-menu,
.cid-sDBLkbKyAo .navbar.opened {
  background: #ffffff !important;
}
.cid-sDBLkbKyAo .nav-item:focus,
.cid-sDBLkbKyAo .nav-link:focus {
  outline: none;
}
.cid-sDBLkbKyAo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sDBLkbKyAo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDBLkbKyAo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sDBLkbKyAo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDBLkbKyAo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDBLkbKyAo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDBLkbKyAo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sDBLkbKyAo .navbar.opened {
  transition: all 0.3s;
}
.cid-sDBLkbKyAo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sDBLkbKyAo .navbar .navbar-logo img {
  width: auto;
}
.cid-sDBLkbKyAo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sDBLkbKyAo .navbar.collapsed {
  justify-content: center;
}
.cid-sDBLkbKyAo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sDBLkbKyAo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sDBLkbKyAo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sDBLkbKyAo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sDBLkbKyAo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sDBLkbKyAo .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-sDBLkbKyAo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sDBLkbKyAo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sDBLkbKyAo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sDBLkbKyAo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sDBLkbKyAo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sDBLkbKyAo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sDBLkbKyAo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sDBLkbKyAo .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-sDBLkbKyAo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sDBLkbKyAo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sDBLkbKyAo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sDBLkbKyAo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sDBLkbKyAo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sDBLkbKyAo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sDBLkbKyAo .navbar.navbar-short {
  min-height: 60px;
}
.cid-sDBLkbKyAo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sDBLkbKyAo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sDBLkbKyAo .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-sDBLkbKyAo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sDBLkbKyAo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sDBLkbKyAo .dropdown-item.active,
.cid-sDBLkbKyAo .dropdown-item:active {
  background-color: transparent;
}
.cid-sDBLkbKyAo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sDBLkbKyAo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sDBLkbKyAo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sDBLkbKyAo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sDBLkbKyAo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sDBLkbKyAo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDBLkbKyAo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sDBLkbKyAo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sDBLkbKyAo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sDBLkbKyAo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sDBLkbKyAo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDBLkbKyAo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDBLkbKyAo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDBLkbKyAo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDBLkbKyAo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDBLkbKyAo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDBLkbKyAo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDBLkbKyAo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDBLkbKyAo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sDBLkbKyAo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sDBLkbKyAo .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-sDBLkbKyAo .navbar {
    height: 70px;
  }
  .cid-sDBLkbKyAo .navbar.opened {
    height: auto;
  }
  .cid-sDBLkbKyAo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sDBLkcVSAV {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sDBLkcVSAV .row {
    flex-direction: column-reverse;
  }
  .cid-sDBLkcVSAV .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-sDBLkcVSAV .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sDBLkcVSAV .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sDBLkcVSAV .media-content,
.cid-sDBLkcVSAV .mbr-figure {
  align-self: center;
}
.cid-sDBLkcVSAV .mbr-figure iframe {
  width: 100%;
}
.cid-sDBLkcVSAV .mbr-section-title {
  text-align: center;
}
.cid-sDBLkcVSAV .mbr-text,
.cid-sDBLkcVSAV .mbr-section-btn {
  text-align: center;
}
.cid-sDGXoGvYtR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sDGXoGvYtR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sDGXoGvYtR .row {
  flex-direction: row-reverse;
}
.cid-sDGXoGvYtR img {
  width: 100%;
}
.cid-sDGXpoaEC8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sDGXpoaEC8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sDGXpoaEC8 .row {
  flex-direction: row-reverse;
}
.cid-sDGXpoaEC8 img {
  width: 100%;
}
.cid-sDBLkdKyaM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDBLkdKyaM .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sDBLkdKyaM .bg-facebook:hover {
  background: #0b60cb;
}
.cid-sDBLkdKyaM .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sDBLkdKyaM .bg-twitter:hover {
  background: #0c85d0;
}
.cid-sDBLkdKyaM .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-sDBLkdKyaM .bg-instagram:hover {
  background: #bd005c;
}
.cid-sDBLkdKyaM .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-sDBLkdKyaM [class^="socicon-"]:before,
.cid-sDBLkdKyaM [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-sDBLkf1Gaf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
}
.cid-sDBLltc30Y {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sDBLltc30Y nav.navbar {
  position: fixed;
}
.cid-sDBLltc30Y .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-sDBLltc30Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sDBLltc30Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sDBLltc30Y .dropdown-item:hover,
.cid-sDBLltc30Y .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sDBLltc30Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sDBLltc30Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sDBLltc30Y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sDBLltc30Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sDBLltc30Y .nav-link {
  position: relative;
}
.cid-sDBLltc30Y .container {
  display: flex;
  margin: auto;
}
.cid-sDBLltc30Y .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sDBLltc30Y .dropdown-menu,
.cid-sDBLltc30Y .navbar.opened {
  background: #ffffff !important;
}
.cid-sDBLltc30Y .nav-item:focus,
.cid-sDBLltc30Y .nav-link:focus {
  outline: none;
}
.cid-sDBLltc30Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sDBLltc30Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sDBLltc30Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sDBLltc30Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sDBLltc30Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sDBLltc30Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sDBLltc30Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sDBLltc30Y .navbar.opened {
  transition: all 0.3s;
}
.cid-sDBLltc30Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sDBLltc30Y .navbar .navbar-logo img {
  width: auto;
}
.cid-sDBLltc30Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sDBLltc30Y .navbar.collapsed {
  justify-content: center;
}
.cid-sDBLltc30Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sDBLltc30Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sDBLltc30Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sDBLltc30Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sDBLltc30Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sDBLltc30Y .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-sDBLltc30Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sDBLltc30Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sDBLltc30Y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sDBLltc30Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sDBLltc30Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sDBLltc30Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sDBLltc30Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sDBLltc30Y .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-sDBLltc30Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sDBLltc30Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sDBLltc30Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sDBLltc30Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sDBLltc30Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sDBLltc30Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sDBLltc30Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-sDBLltc30Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sDBLltc30Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sDBLltc30Y .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-sDBLltc30Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sDBLltc30Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sDBLltc30Y .dropdown-item.active,
.cid-sDBLltc30Y .dropdown-item:active {
  background-color: transparent;
}
.cid-sDBLltc30Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sDBLltc30Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sDBLltc30Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sDBLltc30Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sDBLltc30Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sDBLltc30Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sDBLltc30Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sDBLltc30Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sDBLltc30Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sDBLltc30Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sDBLltc30Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sDBLltc30Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDBLltc30Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sDBLltc30Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sDBLltc30Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDBLltc30Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sDBLltc30Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sDBLltc30Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sDBLltc30Y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sDBLltc30Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sDBLltc30Y .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-sDBLltc30Y .navbar {
    height: 70px;
  }
  .cid-sDBLltc30Y .navbar.opened {
    height: auto;
  }
  .cid-sDBLltc30Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sDBLluBC6M {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sDBLluBC6M .row {
    flex-direction: column-reverse;
  }
  .cid-sDBLluBC6M .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-sDBLluBC6M .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sDBLluBC6M .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sDBLluBC6M .media-content,
.cid-sDBLluBC6M .mbr-figure {
  align-self: center;
}
.cid-sDBLluBC6M .mbr-figure iframe {
  width: 100%;
}
.cid-sDBLluBC6M .mbr-section-title {
  text-align: center;
}
.cid-sDBLluBC6M .mbr-text,
.cid-sDBLluBC6M .mbr-section-btn {
  text-align: center;
}
.cid-sDH2tlffgH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sDH2tlffgH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sDH2tlffgH .row {
  flex-direction: row-reverse;
}
.cid-sDH2tlffgH img {
  width: 100%;
}
.cid-sDBLlvv00P {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDBLlvv00P .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sDBLlvv00P .bg-facebook:hover {
  background: #0b60cb;
}
.cid-sDBLlvv00P .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sDBLlvv00P .bg-twitter:hover {
  background: #0c85d0;
}
.cid-sDBLlvv00P .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-sDBLlvv00P .bg-instagram:hover {
  background: #bd005c;
}
.cid-sDBLlvv00P .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-sDBLlvv00P [class^="socicon-"]:before,
.cid-sDBLlvv00P [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-sDBLlwW5IT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
  overflow: hidden;
}
