body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Raleway', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1rem;
}
/* ---- 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: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((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: #000000 !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #8b8787 !important;
}
.bg-warning {
  background-color: #bbbbbb !important;
}
.bg-danger {
  background-color: #232323 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #353535 !important;
  border-color: #353535 !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: #0a0a0a !important;
  border-color: #0a0a0a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-info,
.btn-info:active {
  background-color: #8b8787 !important;
  border-color: #8b8787 !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: #5f5c5c !important;
  border-color: #5f5c5c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #5f5c5c !important;
  border-color: #5f5c5c !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-danger,
.btn-danger: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-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.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-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #353535;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #0a0a0a !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: #353535 !important;
  border-color: #353535 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8b8787;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #5f5c5c !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: #8b8787 !important;
  border-color: #8b8787 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bbbbbb;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !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: #232323 !important;
  border-color: #232323 !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: #000000 !important;
}
.text-secondary {
  color: #353535 !important;
}
.text-success {
  color: #ffffff !important;
}
.text-info {
  color: #8b8787 !important;
}
.text-warning {
  color: #bbbbbb !important;
}
.text-danger {
  color: #232323 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #020202 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #cccccc !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #575555 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #888888 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !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: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #8b8787;
}
.alert-warning {
  background-color: #bbbbbb;
}
.alert-danger {
  background-color: #232323;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #cac8c8;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fbfbfb;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #d5d5d5;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.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: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #353535 !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='%23000000' %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-tsx3wk4CcQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tsx3wk4CcQ nav.navbar {
  position: fixed;
}
.cid-tsx3wk4CcQ .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-tsx3wk4CcQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsx3wk4CcQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsx3wk4CcQ .dropdown-item:hover,
.cid-tsx3wk4CcQ .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tsx3wk4CcQ .dropdown-item:hover span {
  color: white;
}
.cid-tsx3wk4CcQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsx3wk4CcQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsx3wk4CcQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsx3wk4CcQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsx3wk4CcQ .nav-link {
  position: relative;
}
.cid-tsx3wk4CcQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsx3wk4CcQ .container {
    flex-wrap: nowrap;
  }
}
.cid-tsx3wk4CcQ .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsx3wk4CcQ .dropdown-menu,
.cid-tsx3wk4CcQ .navbar.opened {
  background: #000000 !important;
}
.cid-tsx3wk4CcQ .nav-item:focus,
.cid-tsx3wk4CcQ .nav-link:focus {
  outline: none;
}
.cid-tsx3wk4CcQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsx3wk4CcQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsx3wk4CcQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsx3wk4CcQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsx3wk4CcQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsx3wk4CcQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsx3wk4CcQ .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: #000000;
}
.cid-tsx3wk4CcQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tsx3wk4CcQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsx3wk4CcQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tsx3wk4CcQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsx3wk4CcQ .navbar.collapsed {
  justify-content: center;
}
.cid-tsx3wk4CcQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsx3wk4CcQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsx3wk4CcQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tsx3wk4CcQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsx3wk4CcQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsx3wk4CcQ .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-tsx3wk4CcQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsx3wk4CcQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsx3wk4CcQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsx3wk4CcQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsx3wk4CcQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsx3wk4CcQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsx3wk4CcQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsx3wk4CcQ .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-tsx3wk4CcQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsx3wk4CcQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsx3wk4CcQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsx3wk4CcQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsx3wk4CcQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsx3wk4CcQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsx3wk4CcQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsx3wk4CcQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsx3wk4CcQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsx3wk4CcQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsx3wk4CcQ .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-tsx3wk4CcQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsx3wk4CcQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsx3wk4CcQ .dropdown-item.active,
.cid-tsx3wk4CcQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tsx3wk4CcQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsx3wk4CcQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsx3wk4CcQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsx3wk4CcQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tsx3wk4CcQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsx3wk4CcQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsx3wk4CcQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsx3wk4CcQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsx3wk4CcQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsx3wk4CcQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsx3wk4CcQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsx3wk4CcQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsx3wk4CcQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsx3wk4CcQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsx3wk4CcQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsx3wk4CcQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsx3wk4CcQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsx3wk4CcQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsx3wk4CcQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsx3wk4CcQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsx3wk4CcQ .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-tsx3wk4CcQ .navbar {
    height: 70px;
  }
  .cid-tsx3wk4CcQ .navbar.opened {
    height: auto;
  }
  .cid-tsx3wk4CcQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttc4rXTrEi {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-ttc4rXTrEi .carousel {
  width: 100%;
}
.cid-ttc4rXTrEi .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-ttc4rXTrEi .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-ttc4rXTrEi .carousel-caption {
  bottom: 40px;
}
.cid-ttc4rXTrEi .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ttc4rXTrEi .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ttc4rXTrEi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-ttc4rXTrEi .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ttc4rXTrEi .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ttc4rXTrEi .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ttc4rXTrEi .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ttc4rXTrEi .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-ttc4rXTrEi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttc4rXTrEi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ttc4rXTrEi .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ttc4rXTrEi .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-ttc4rXTrEi .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-ttc4rXTrEi .carousel-indicators li.active,
.cid-ttc4rXTrEi .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ttc4rXTrEi .carousel-indicators li::after,
.cid-ttc4rXTrEi .carousel-indicators li::before {
  content: none;
}
.cid-ttc4rXTrEi .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ttc4rXTrEi .carousel-indicators {
    display: none !important;
  }
}
.cid-tsx8TSFI6t {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsx8TSFI6t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsx8TSFI6t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsx909kw80 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsx909kw80 img,
.cid-tsx909kw80 .item-img {
  width: 100%;
}
.cid-tsx909kw80 .item:focus,
.cid-tsx909kw80 span:focus {
  outline: none;
}
.cid-tsx909kw80 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tsx909kw80 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsx909kw80 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tsx909kw80 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsx909kw80 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tsx909kw80 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tsx909kw80 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsx909kw80 .mbr-section-title {
  color: #232323;
}
.cid-tsx909kw80 .mbr-text,
.cid-tsx909kw80 .mbr-section-btn {
  text-align: left;
  color: #8b8787;
}
.cid-tsx909kw80 .item-title {
  text-align: left;
}
.cid-tsx909kw80 .item-subtitle {
  text-align: left;
}
.cid-tsxctvVRRN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsxctvVRRN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsxctvVRRN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsxctvVRRN .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-tsxctvVRRN .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tsxctvVRRN .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tsxctvVRRN .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tsxctvVRRN .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tsxctvVRRN .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tsxctvVRRN .image-wrapper img {
  width: 60%;
  object-fit: cover;
}
.cid-tsxctvVRRN .mbr-text,
.cid-tsxctvVRRN .mbr-section-btn {
  color: #8b8787;
}
.cid-tsZUmM9EQD {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tsZUmM9EQD img {
  width: 150px;
  margin: auto;
}
.cid-tsZUmM9EQD .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tsZUmM9EQD .card {
    max-width: 16.6%;
  }
}
.cid-tsZUmM9EQD .mbr-section-title {
  color: #000000;
}
.cid-tsxfrvrI9H {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tsxiJO8aiW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tsxiJO8aiW nav.navbar {
  position: fixed;
}
.cid-tsxiJO8aiW .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-tsxiJO8aiW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsxiJO8aiW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsxiJO8aiW .dropdown-item:hover,
.cid-tsxiJO8aiW .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tsxiJO8aiW .dropdown-item:hover span {
  color: white;
}
.cid-tsxiJO8aiW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsxiJO8aiW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsxiJO8aiW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsxiJO8aiW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsxiJO8aiW .nav-link {
  position: relative;
}
.cid-tsxiJO8aiW .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsxiJO8aiW .container {
    flex-wrap: nowrap;
  }
}
.cid-tsxiJO8aiW .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsxiJO8aiW .dropdown-menu,
.cid-tsxiJO8aiW .navbar.opened {
  background: #000000 !important;
}
.cid-tsxiJO8aiW .nav-item:focus,
.cid-tsxiJO8aiW .nav-link:focus {
  outline: none;
}
.cid-tsxiJO8aiW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsxiJO8aiW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsxiJO8aiW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsxiJO8aiW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsxiJO8aiW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsxiJO8aiW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsxiJO8aiW .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: #000000;
}
.cid-tsxiJO8aiW .navbar.opened {
  transition: all 0.3s;
}
.cid-tsxiJO8aiW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsxiJO8aiW .navbar .navbar-logo img {
  width: auto;
}
.cid-tsxiJO8aiW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsxiJO8aiW .navbar.collapsed {
  justify-content: center;
}
.cid-tsxiJO8aiW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsxiJO8aiW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsxiJO8aiW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tsxiJO8aiW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsxiJO8aiW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsxiJO8aiW .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-tsxiJO8aiW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsxiJO8aiW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsxiJO8aiW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsxiJO8aiW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsxiJO8aiW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsxiJO8aiW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsxiJO8aiW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsxiJO8aiW .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-tsxiJO8aiW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsxiJO8aiW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsxiJO8aiW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsxiJO8aiW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsxiJO8aiW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsxiJO8aiW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsxiJO8aiW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsxiJO8aiW .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsxiJO8aiW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsxiJO8aiW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsxiJO8aiW .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-tsxiJO8aiW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsxiJO8aiW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsxiJO8aiW .dropdown-item.active,
.cid-tsxiJO8aiW .dropdown-item:active {
  background-color: transparent;
}
.cid-tsxiJO8aiW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsxiJO8aiW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsxiJO8aiW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsxiJO8aiW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tsxiJO8aiW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsxiJO8aiW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsxiJO8aiW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsxiJO8aiW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsxiJO8aiW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsxiJO8aiW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsxiJO8aiW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsxiJO8aiW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsxiJO8aiW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsxiJO8aiW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsxiJO8aiW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsxiJO8aiW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsxiJO8aiW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsxiJO8aiW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsxiJO8aiW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsxiJO8aiW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsxiJO8aiW .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-tsxiJO8aiW .navbar {
    height: 70px;
  }
  .cid-tsxiJO8aiW .navbar.opened {
    height: auto;
  }
  .cid-tsxiJO8aiW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsxjIrrb2A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/banner1-1952x461.jpg");
}
.cid-tsxjIrrb2A .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsxjIrrb2A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsxk94rIYZ {
  padding-top: 9rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tsxk94rIYZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsxk94rIYZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsxk94rIYZ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tsxk94rIYZ .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-tsxk94rIYZ .mbr-text,
.cid-tsxk94rIYZ .mbr-section-btn {
  color: #8b8787;
}
.cid-tsxqbFVRLj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsxqbFVRLj .image-wrapper {
  position: relative;
}
.cid-tsxqbFVRLj .mbr-section-btn {
  position: absolute;
  bottom: 5%;
  right: -1%;
}
@media (max-width: 690px) {
  .cid-tsxqbFVRLj .mbr-section-btn {
    position: absolute;
    right: 0px;
    bottom: -13%;
  }
}
.cid-tsxqbFVRLj img {
  max-width: 200px;
  position: absolute;
  right: 0;
  z-index: 10;
}
.cid-tsxqbFVRLj .line {
  width: 100%;
  height: 1px;
  background-color: #e1dddd;
  margin-bottom: 25px;
}
.cid-tsxqbFVRLj .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1d1d1f;
}
.cid-tsxqbFVRLj .mbr-section-title {
  margin-bottom: 25px;
}
.cid-tsxqbFVRLj a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tsxqbFVRLj rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tsxqbFVRLj .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tsxqbFVRLj svg {
  margin-left: 15px;
}
.cid-tsxqbFVRLj path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tsxqbFVRLj .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tsxqbFVRLj .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
.cid-tsxqbFVRLj .link a {
  background-image: none !important;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tsxqbFVRLj .wrapper {
  margin: auto;
}
.cid-tsxmnggd3b {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tsxmnggd3b .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsxmnggd3b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsxmnggd3b .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-tsxmnggd3b .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tsxmnggd3b .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tsxmnggd3b .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tsxmnggd3b .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tsxmnggd3b .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tsxmnggd3b .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tsxmnggd3b .card-title {
  text-align: center;
}
.cid-tsxmnggd3b .mbr-text,
.cid-tsxmnggd3b .mbr-section-btn {
  text-align: center;
  color: #8b8787;
}
.cid-tsxrfTQW6h {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsxrfTQW6h .image-wrapper {
  position: relative;
}
.cid-tsxrfTQW6h .mbr-section-btn {
  position: absolute;
  bottom: 5%;
  right: -1%;
}
@media (max-width: 690px) {
  .cid-tsxrfTQW6h .mbr-section-btn {
    position: absolute;
    right: 0px;
    bottom: -13%;
  }
}
.cid-tsxrfTQW6h img {
  max-width: 200px;
  position: absolute;
  right: 0;
  z-index: 10;
}
.cid-tsxrfTQW6h .line {
  width: 100%;
  height: 1px;
  background-color: #e1dddd;
  margin-bottom: 25px;
}
.cid-tsxrfTQW6h .mbr-section-subtitle {
  font-weight: 700;
  margin-bottom: 25px;
  color: #1d1d1f;
}
.cid-tsxrfTQW6h .mbr-section-title {
  margin-bottom: 25px;
}
.cid-tsxrfTQW6h a {
  transition: color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
}
.cid-tsxrfTQW6h rect {
  transform: translateX(-13px);
  transform-origin: right;
  stroke: currentColor;
  stroke-width: .5;
}
.cid-tsxrfTQW6h .qodef-button-cap-fake {
  animation: qode-button-cap-fake-out 0.35s linear;
}
.cid-tsxrfTQW6h svg {
  margin-left: 15px;
}
.cid-tsxrfTQW6h path {
  animation: qode-button-cap-out 0.35s ease-in-out;
  transform: translateX(-13px);
  transform-origin: right;
  fill: currentColor;
}
.cid-tsxrfTQW6h .link:hover rect {
  animation: qode-button-line 0.7s ease forwards;
}
.cid-tsxrfTQW6h .link:hover path {
  animation: qode-button-cap 0.7s ease forwards;
}
.cid-tsxrfTQW6h .link a {
  background-image: none !important;
}
@keyframes qode-button-cap-fake-out {
  0% {
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.cid-tsxrfTQW6h .wrapper {
  margin: auto;
}
.cid-tsxrIdwgdx {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tsxrIdwgdx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsxrIdwgdx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsxrIdwgdx .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-tsxrIdwgdx .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tsxrIdwgdx .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tsxrIdwgdx .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tsxrIdwgdx .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tsxrIdwgdx .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tsxrIdwgdx .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tsxrIdwgdx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tsxrIdwgdx .mbr-text,
.cid-tsxrIdwgdx .mbr-section-btn {
  color: #8b8787;
  text-align: center;
}
.cid-tsxrIdwgdx .card-title {
  text-align: center;
}
.cid-tsxxeuOBP6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tsxAMxqmWK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tsxAMxqmWK nav.navbar {
  position: fixed;
}
.cid-tsxAMxqmWK .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-tsxAMxqmWK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsxAMxqmWK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsxAMxqmWK .dropdown-item:hover,
.cid-tsxAMxqmWK .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tsxAMxqmWK .dropdown-item:hover span {
  color: white;
}
.cid-tsxAMxqmWK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsxAMxqmWK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsxAMxqmWK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsxAMxqmWK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsxAMxqmWK .nav-link {
  position: relative;
}
.cid-tsxAMxqmWK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsxAMxqmWK .container {
    flex-wrap: nowrap;
  }
}
.cid-tsxAMxqmWK .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsxAMxqmWK .dropdown-menu,
.cid-tsxAMxqmWK .navbar.opened {
  background: #000000 !important;
}
.cid-tsxAMxqmWK .nav-item:focus,
.cid-tsxAMxqmWK .nav-link:focus {
  outline: none;
}
.cid-tsxAMxqmWK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsxAMxqmWK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsxAMxqmWK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsxAMxqmWK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsxAMxqmWK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsxAMxqmWK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsxAMxqmWK .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: #000000;
}
.cid-tsxAMxqmWK .navbar.opened {
  transition: all 0.3s;
}
.cid-tsxAMxqmWK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsxAMxqmWK .navbar .navbar-logo img {
  width: auto;
}
.cid-tsxAMxqmWK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsxAMxqmWK .navbar.collapsed {
  justify-content: center;
}
.cid-tsxAMxqmWK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsxAMxqmWK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsxAMxqmWK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tsxAMxqmWK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsxAMxqmWK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsxAMxqmWK .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-tsxAMxqmWK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsxAMxqmWK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsxAMxqmWK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsxAMxqmWK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsxAMxqmWK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsxAMxqmWK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsxAMxqmWK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsxAMxqmWK .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-tsxAMxqmWK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsxAMxqmWK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsxAMxqmWK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsxAMxqmWK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsxAMxqmWK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsxAMxqmWK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsxAMxqmWK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsxAMxqmWK .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsxAMxqmWK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsxAMxqmWK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsxAMxqmWK .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-tsxAMxqmWK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsxAMxqmWK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsxAMxqmWK .dropdown-item.active,
.cid-tsxAMxqmWK .dropdown-item:active {
  background-color: transparent;
}
.cid-tsxAMxqmWK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsxAMxqmWK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsxAMxqmWK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsxAMxqmWK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tsxAMxqmWK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsxAMxqmWK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsxAMxqmWK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsxAMxqmWK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsxAMxqmWK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsxAMxqmWK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsxAMxqmWK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsxAMxqmWK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsxAMxqmWK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsxAMxqmWK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsxAMxqmWK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsxAMxqmWK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsxAMxqmWK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsxAMxqmWK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsxAMxqmWK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsxAMxqmWK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsxAMxqmWK .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-tsxAMxqmWK .navbar {
    height: 70px;
  }
  .cid-tsxAMxqmWK .navbar.opened {
    height: auto;
  }
  .cid-tsxAMxqmWK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsxAMz4MXE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/cabeceracomolohacemos1-1952x461.jpg");
}
.cid-tsxAMz4MXE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsxAMz4MXE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsxAMAbd3y {
  padding-top: 9rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tsxAMAbd3y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsxAMAbd3y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsxAMAbd3y .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tsxAMAbd3y .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-tsxAMAbd3y .mbr-text,
.cid-tsxAMAbd3y .mbr-section-btn {
  color: #8b8787;
}
.cid-ttc7FGzE2r {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttc7FGzE2r .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttc7FGzE2r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ttc7FGzE2r .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ttc7FGzE2r .row {
  flex-direction: row-reverse;
}
.cid-ttc7FGzE2r img {
  width: 100%;
}
.cid-tsxMs8VyXU {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tsxMs8VyXU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsxMs8VyXU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsxMs8VyXU .row {
  justify-content: center;
}
.cid-tsxMs8VyXU .row {
  padding: 0 27px;
}
@media (max-width: 992px) {
  .cid-tsxMs8VyXU .row {
    padding: 0 19px;
  }
}
.cid-tsxMs8VyXU .item {
  padding: 0 5px !important;
}
.cid-tsxMs8VyXU .item-wrap {
  z-index: 1;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tsxMs8VyXU .item-wrap {
    padding: 0 5px;
  }
}
.cid-tsxMs8VyXU .border-wrap {
  width: 100%;
  height: 2px;
  background-color: #181818;
  margin-bottom: 46px;
}
.cid-tsxMs8VyXU .mbr-section-title {
  margin-bottom: 64px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tsxMs8VyXU .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tsxMs8VyXU .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 64px;
}
.cid-tsxMs8VyXU .link-wrapper:hover .mbr-link {
  color: #d9d9d9;
}
@media (max-width: 992px) {
  .cid-tsxMs8VyXU .link-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tsxMs8VyXU .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tsxMs8VyXU .item-wrapper {
    margin-bottom: 12px;
  }
}
.cid-tsxMs8VyXU .item-wrapper .item-link img {
  height: 212px;
  object-fit: cover;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .cid-tsxMs8VyXU .item-wrapper .item-link img {
    height: 150px;
  }
}
.cid-tsxMs8VyXU .item-wrapper .item-link .icon-container {
  margin-bottom: 16px;
}
.cid-tsxMs8VyXU .item-wrapper .item-link .icon-container .icon-wrapper {
  display: inline-flex;
}
.cid-tsxMs8VyXU .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like {
  margin: 0 10px 0 0;
  display: flex;
  line-height: .5;
}
.cid-tsxMs8VyXU .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tsxMs8VyXU .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment {
  margin: 0;
  display: flex;
  line-height: .5;
}
.cid-tsxMs8VyXU .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tsxMs8VyXU .item-wrapper .item-link .mbr-text {
  margin-bottom: 0;
}
.cid-tsxMs8VyXU .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-tsxMs8VyXU .mbr-like {
  color: #181818;
}
.cid-tsxMs8VyXU .mbr-comment,
.cid-tsxMs8VyXU .mbr-iconfont {
  color: #181818;
}
.cid-tsxMs8VyXU .mbr-text {
  color: #181818;
}
.cid-tsxAME4nyi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tsCwE2lyMs {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tsCwE2lyMs nav.navbar {
  position: fixed;
}
.cid-tsCwE2lyMs .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-tsCwE2lyMs .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsCwE2lyMs .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsCwE2lyMs .dropdown-item:hover,
.cid-tsCwE2lyMs .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tsCwE2lyMs .dropdown-item:hover span {
  color: white;
}
.cid-tsCwE2lyMs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsCwE2lyMs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsCwE2lyMs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsCwE2lyMs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsCwE2lyMs .nav-link {
  position: relative;
}
.cid-tsCwE2lyMs .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsCwE2lyMs .container {
    flex-wrap: nowrap;
  }
}
.cid-tsCwE2lyMs .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsCwE2lyMs .dropdown-menu,
.cid-tsCwE2lyMs .navbar.opened {
  background: #000000 !important;
}
.cid-tsCwE2lyMs .nav-item:focus,
.cid-tsCwE2lyMs .nav-link:focus {
  outline: none;
}
.cid-tsCwE2lyMs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsCwE2lyMs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsCwE2lyMs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsCwE2lyMs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsCwE2lyMs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsCwE2lyMs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsCwE2lyMs .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: #000000;
}
.cid-tsCwE2lyMs .navbar.opened {
  transition: all 0.3s;
}
.cid-tsCwE2lyMs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsCwE2lyMs .navbar .navbar-logo img {
  width: auto;
}
.cid-tsCwE2lyMs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsCwE2lyMs .navbar.collapsed {
  justify-content: center;
}
.cid-tsCwE2lyMs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsCwE2lyMs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsCwE2lyMs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tsCwE2lyMs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsCwE2lyMs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsCwE2lyMs .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-tsCwE2lyMs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsCwE2lyMs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsCwE2lyMs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsCwE2lyMs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsCwE2lyMs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsCwE2lyMs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsCwE2lyMs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsCwE2lyMs .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-tsCwE2lyMs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsCwE2lyMs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsCwE2lyMs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsCwE2lyMs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsCwE2lyMs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsCwE2lyMs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsCwE2lyMs .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsCwE2lyMs .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsCwE2lyMs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsCwE2lyMs .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsCwE2lyMs .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-tsCwE2lyMs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsCwE2lyMs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsCwE2lyMs .dropdown-item.active,
.cid-tsCwE2lyMs .dropdown-item:active {
  background-color: transparent;
}
.cid-tsCwE2lyMs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsCwE2lyMs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsCwE2lyMs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsCwE2lyMs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tsCwE2lyMs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsCwE2lyMs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsCwE2lyMs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsCwE2lyMs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsCwE2lyMs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsCwE2lyMs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsCwE2lyMs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsCwE2lyMs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsCwE2lyMs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsCwE2lyMs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsCwE2lyMs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsCwE2lyMs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsCwE2lyMs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsCwE2lyMs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsCwE2lyMs .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsCwE2lyMs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsCwE2lyMs .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-tsCwE2lyMs .navbar {
    height: 70px;
  }
  .cid-tsCwE2lyMs .navbar.opened {
    height: auto;
  }
  .cid-tsCwE2lyMs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsCwE8kSXg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/cabeceracaramelos2-1952x461.jpg");
}
.cid-tsCwE8kSXg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsCwE8kSXg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsCwEc1AZh {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tsCwEc1AZh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsCwEc1AZh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsCwEc1AZh .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tsCwEc1AZh .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-tsCwEc1AZh .mbr-text,
.cid-tsCwEc1AZh .mbr-section-btn {
  color: #8b8787;
}
.cid-tsCFS4xunb {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tsCFS4xunb h4 {
  margin-bottom: 0;
}
.cid-tsCFS4xunb p {
  color: #767676;
}
.cid-tsCFS4xunb .btn-info-outline {
  border: none;
  color: #8b8787 !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-tsCFS4xunb .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-tsCFS4xunb .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-tsCFS4xunb .btn-info-outline:hover {
  background-color: transparent!important;
  color: #000000 !important;
  box-shadow: none!important;
}
.cid-tsCFS4xunb .btn-info-outline:active,
.cid-tsCFS4xunb .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-tsCFS4xunb .card-box {
  padding-top: 2rem;
}
.cid-tsCFS4xunb .card-wrapper {
  height: 100%;
}
.cid-tsCFS4xunb .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tsCFS4xunb img {
  border-radius: 0px;
}
.cid-tsCFS4xunb .card-title {
  color: #000000;
}
.cid-tsCFS4xunb .main-title {
  color: #57468b;
  text-align: center;
}
.cid-tsCFS4xunb DIV {
  color: #57468b;
}
.cid-tsCFS4xunb .card-img {
  width: auto;
}
.cid-ttc9ETN8ft {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ttc9ETN8ft h4 {
  margin-bottom: 0;
}
.cid-ttc9ETN8ft p {
  color: #767676;
}
.cid-ttc9ETN8ft .btn-info-outline {
  border: none;
  color: #8b8787 !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-ttc9ETN8ft .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-ttc9ETN8ft .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-ttc9ETN8ft .btn-info-outline:hover {
  background-color: transparent!important;
  color: #000000 !important;
  box-shadow: none!important;
}
.cid-ttc9ETN8ft .btn-info-outline:active,
.cid-ttc9ETN8ft .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-ttc9ETN8ft .card-box {
  padding-top: 2rem;
}
.cid-ttc9ETN8ft .card-wrapper {
  height: 100%;
}
.cid-ttc9ETN8ft .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-ttc9ETN8ft img {
  border-radius: 0px;
}
.cid-ttc9ETN8ft .card-title {
  color: #000000;
}
.cid-ttc9ETN8ft .main-title {
  color: #57468b;
  text-align: center;
}
.cid-ttc9ETN8ft DIV {
  color: #57468b;
}
.cid-ttc9ETN8ft .card-img {
  width: auto;
}
.cid-tsCKsAEF4S {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tsCKsAEF4S h2,
.cid-tsCKsAEF4S h3,
.cid-tsCKsAEF4S h4,
.cid-tsCKsAEF4S h5 {
  margin: 0;
}
.cid-tsCKsAEF4S .container-fluid {
  padding-left: 8%;
  padding-right: 8%;
}
@media (max-width: 680px) {
  .cid-tsCKsAEF4S .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-tsCKsAEF4S .mbr-section-head {
  margin-bottom: 40px;
}
@media (max-width: 680px) {
  .cid-tsCKsAEF4S .mbr-section-head {
    padding: 0 35px;
  }
}
.cid-tsCKsAEF4S .mbr-section-title {
  color: #000000;
  text-align: left;
  margin: 0;
}
.cid-tsCKsAEF4S .mbr-section-subtitle {
  color: #232323;
  text-align: center;
  margin: 0;
}
.cid-tsCKsAEF4S .item-container {
  max-width: 1620px;
  display: flex;
  flex-wrap: wrap;
}
.cid-tsCKsAEF4S .item {
  padding: 0 40px;
  margin-bottom: 30px;
  width: 16.66667%;
  transition: opacity 0.32s ease-out, transform 0.29s ease-out;
}
@media (max-width: 1440px) {
  .cid-tsCKsAEF4S .item {
    padding: 0 35px;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  .cid-tsCKsAEF4S .item {
    width: 20%;
  }
}
@media (min-width: 681px) and (max-width: 1024px) {
  .cid-tsCKsAEF4S .item {
    width: 33.33333%;
  }
}
@media (max-width: 680px) {
  .cid-tsCKsAEF4S .item {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-tsCKsAEF4S .item-image {
  width: 100%;
}
.cid-tsCKsAEF4S img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
}
.cid-tsCKsAEF4S .mbr-card-title {
  color: #000000;
  text-align: center;
  margin: -5px 0 14px;
}
.cid-tsCKsAEF4S .mbr-card-title:hover {
  color: #ee3102;
}
.cid-tsCKsAEF4S h3 {
  margin: 0;
}
.cid-tsCKsAEF4S .mbr-card-subtitle {
  color: #6b6b6b;
  text-align: center;
  margin: 0;
  margin-bottom: 2px;
}
.cid-tsCKsAEF4S .item-caption {
  padding: 16px 0 8px;
  background: transparent;
}
.cid-tsCPtKBQno {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tsCPtKBQno h2,
.cid-tsCPtKBQno h3,
.cid-tsCPtKBQno h4,
.cid-tsCPtKBQno h5 {
  margin: 0;
}
.cid-tsCPtKBQno .container-fluid {
  padding-left: 8%;
  padding-right: 8%;
}
@media (max-width: 680px) {
  .cid-tsCPtKBQno .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-tsCPtKBQno .mbr-section-head {
  margin-bottom: 40px;
}
@media (max-width: 680px) {
  .cid-tsCPtKBQno .mbr-section-head {
    padding: 0 35px;
  }
}
.cid-tsCPtKBQno .mbr-section-title {
  color: #000000;
  text-align: left;
  margin: 0;
}
.cid-tsCPtKBQno .mbr-section-subtitle {
  color: #232323;
  text-align: center;
  margin: 0;
}
.cid-tsCPtKBQno .item-container {
  max-width: 1620px;
  display: flex;
  flex-wrap: wrap;
}
.cid-tsCPtKBQno .item {
  padding: 0 40px;
  margin-bottom: 30px;
  width: 16.66667%;
  transition: opacity 0.32s ease-out, transform 0.29s ease-out;
}
@media (max-width: 1440px) {
  .cid-tsCPtKBQno .item {
    padding: 0 35px;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  .cid-tsCPtKBQno .item {
    width: 20%;
  }
}
@media (min-width: 681px) and (max-width: 1024px) {
  .cid-tsCPtKBQno .item {
    width: 33.33333%;
  }
}
@media (max-width: 680px) {
  .cid-tsCPtKBQno .item {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-tsCPtKBQno .item-image {
  width: 100%;
}
.cid-tsCPtKBQno img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
}
.cid-tsCPtKBQno .mbr-card-title {
  color: #000000;
  text-align: center;
  margin: -5px 0 14px;
}
.cid-tsCPtKBQno .mbr-card-title:hover {
  color: #ee3102;
}
.cid-tsCPtKBQno h3 {
  margin: 0;
}
.cid-tsCPtKBQno .mbr-card-subtitle {
  color: #6b6b6b;
  text-align: center;
  margin: 0;
  margin-bottom: 2px;
}
.cid-tsCPtKBQno .item-caption {
  padding: 16px 0 8px;
  background: transparent;
}
.cid-tsCQEP1g84 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tsCQEP1g84 h2,
.cid-tsCQEP1g84 h3,
.cid-tsCQEP1g84 h4,
.cid-tsCQEP1g84 h5 {
  margin: 0;
}
.cid-tsCQEP1g84 .container-fluid {
  padding-left: 8%;
  padding-right: 8%;
}
@media (max-width: 680px) {
  .cid-tsCQEP1g84 .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-tsCQEP1g84 .mbr-section-head {
  margin-bottom: 40px;
}
@media (max-width: 680px) {
  .cid-tsCQEP1g84 .mbr-section-head {
    padding: 0 35px;
  }
}
.cid-tsCQEP1g84 .mbr-section-title {
  color: #000000;
  text-align: left;
  margin: 0;
}
.cid-tsCQEP1g84 .mbr-section-subtitle {
  color: #232323;
  text-align: center;
  margin: 0;
}
.cid-tsCQEP1g84 .item-container {
  max-width: 1620px;
  display: flex;
  flex-wrap: wrap;
}
.cid-tsCQEP1g84 .item {
  padding: 0 40px;
  margin-bottom: 30px;
  width: 16.66667%;
  transition: opacity 0.32s ease-out, transform 0.29s ease-out;
}
@media (max-width: 1440px) {
  .cid-tsCQEP1g84 .item {
    padding: 0 35px;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  .cid-tsCQEP1g84 .item {
    width: 20%;
  }
}
@media (min-width: 681px) and (max-width: 1024px) {
  .cid-tsCQEP1g84 .item {
    width: 33.33333%;
  }
}
@media (max-width: 680px) {
  .cid-tsCQEP1g84 .item {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.cid-tsCQEP1g84 .item-image {
  width: 100%;
}
.cid-tsCQEP1g84 img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
}
.cid-tsCQEP1g84 .mbr-card-title {
  color: #000000;
  text-align: center;
  margin: -5px 0 14px;
}
.cid-tsCQEP1g84 .mbr-card-title:hover {
  color: #ee3102;
}
.cid-tsCQEP1g84 h3 {
  margin: 0;
}
.cid-tsCQEP1g84 .mbr-card-subtitle {
  color: #6b6b6b;
  text-align: center;
  margin: 0;
  margin-bottom: 2px;
}
.cid-tsCQEP1g84 .item-caption {
  padding: 16px 0 8px;
  background: transparent;
}
.cid-tsCwEhMKuD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tsCThEAzoE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tsCThEAzoE nav.navbar {
  position: fixed;
}
.cid-tsCThEAzoE .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-tsCThEAzoE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsCThEAzoE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsCThEAzoE .dropdown-item:hover,
.cid-tsCThEAzoE .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tsCThEAzoE .dropdown-item:hover span {
  color: white;
}
.cid-tsCThEAzoE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsCThEAzoE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsCThEAzoE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsCThEAzoE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsCThEAzoE .nav-link {
  position: relative;
}
.cid-tsCThEAzoE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsCThEAzoE .container {
    flex-wrap: nowrap;
  }
}
.cid-tsCThEAzoE .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsCThEAzoE .dropdown-menu,
.cid-tsCThEAzoE .navbar.opened {
  background: #000000 !important;
}
.cid-tsCThEAzoE .nav-item:focus,
.cid-tsCThEAzoE .nav-link:focus {
  outline: none;
}
.cid-tsCThEAzoE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsCThEAzoE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsCThEAzoE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsCThEAzoE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsCThEAzoE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsCThEAzoE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsCThEAzoE .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: #000000;
}
.cid-tsCThEAzoE .navbar.opened {
  transition: all 0.3s;
}
.cid-tsCThEAzoE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsCThEAzoE .navbar .navbar-logo img {
  width: auto;
}
.cid-tsCThEAzoE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsCThEAzoE .navbar.collapsed {
  justify-content: center;
}
.cid-tsCThEAzoE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsCThEAzoE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsCThEAzoE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tsCThEAzoE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsCThEAzoE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsCThEAzoE .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-tsCThEAzoE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsCThEAzoE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsCThEAzoE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsCThEAzoE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsCThEAzoE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsCThEAzoE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsCThEAzoE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsCThEAzoE .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-tsCThEAzoE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsCThEAzoE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsCThEAzoE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsCThEAzoE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsCThEAzoE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsCThEAzoE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsCThEAzoE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsCThEAzoE .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsCThEAzoE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsCThEAzoE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsCThEAzoE .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-tsCThEAzoE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsCThEAzoE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsCThEAzoE .dropdown-item.active,
.cid-tsCThEAzoE .dropdown-item:active {
  background-color: transparent;
}
.cid-tsCThEAzoE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsCThEAzoE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsCThEAzoE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsCThEAzoE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tsCThEAzoE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsCThEAzoE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsCThEAzoE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsCThEAzoE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsCThEAzoE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsCThEAzoE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsCThEAzoE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsCThEAzoE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsCThEAzoE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsCThEAzoE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsCThEAzoE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsCThEAzoE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsCThEAzoE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsCThEAzoE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsCThEAzoE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsCThEAzoE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsCThEAzoE .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-tsCThEAzoE .navbar {
    height: 70px;
  }
  .cid-tsCThEAzoE .navbar.opened {
    height: auto;
  }
  .cid-tsCThEAzoE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsCThFwoKA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/header-1952x461.jpg");
}
.cid-tsCThFwoKA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsCThFwoKA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsCTChpqxR {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tsCTChpqxR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsCTChpqxR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsCTChpqxR .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tsCTChpqxR .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsCTChpqxR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tsCTChpqxR .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tsCTChpqxR .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsCTChpqxR .mbr-text,
.cid-tsCTChpqxR .mbr-section-btn {
  color: #8b8787;
}
.cid-tsCThGNTQQ {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tsCThGNTQQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsCThGNTQQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsCThGNTQQ .row {
  justify-content: center;
}
.cid-tsCThGNTQQ .row {
  padding: 0 27px;
}
@media (max-width: 992px) {
  .cid-tsCThGNTQQ .row {
    padding: 0 19px;
  }
}
.cid-tsCThGNTQQ .item {
  padding: 0 5px !important;
}
.cid-tsCThGNTQQ .item-wrap {
  z-index: 1;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tsCThGNTQQ .item-wrap {
    padding: 0 5px;
  }
}
.cid-tsCThGNTQQ .border-wrap {
  width: 100%;
  height: 2px;
  background-color: #181818;
  margin-bottom: 46px;
}
.cid-tsCThGNTQQ .mbr-section-title {
  margin-bottom: 64px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tsCThGNTQQ .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tsCThGNTQQ .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 64px;
}
.cid-tsCThGNTQQ .link-wrapper:hover .mbr-link {
  color: #d9d9d9;
}
@media (max-width: 992px) {
  .cid-tsCThGNTQQ .link-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tsCThGNTQQ .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tsCThGNTQQ .item-wrapper {
    margin-bottom: 12px;
  }
}
.cid-tsCThGNTQQ .item-wrapper .item-link img {
  height: 212px;
  object-fit: cover;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .cid-tsCThGNTQQ .item-wrapper .item-link img {
    height: 150px;
  }
}
.cid-tsCThGNTQQ .item-wrapper .item-link .icon-container {
  margin-bottom: 16px;
}
.cid-tsCThGNTQQ .item-wrapper .item-link .icon-container .icon-wrapper {
  display: inline-flex;
}
.cid-tsCThGNTQQ .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like {
  margin: 0 10px 0 0;
  display: flex;
  line-height: .5;
}
.cid-tsCThGNTQQ .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tsCThGNTQQ .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment {
  margin: 0;
  display: flex;
  line-height: .5;
}
.cid-tsCThGNTQQ .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tsCThGNTQQ .item-wrapper .item-link .mbr-text {
  margin-bottom: 0;
}
.cid-tsCThGNTQQ .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-tsCThGNTQQ .mbr-like {
  color: #181818;
}
.cid-tsCThGNTQQ .mbr-comment,
.cid-tsCThGNTQQ .mbr-iconfont {
  color: #181818;
}
.cid-tsCThGNTQQ .mbr-text {
  color: #181818;
}
.cid-tsCVnO3FxH {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tsCVnO3FxH .top-part {
  margin-bottom: 70px;
}
.cid-tsCVnO3FxH .top-part .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-tsCVnO3FxH .top-part .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tsCVnO3FxH .top-part .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-tsCVnO3FxH .top-part .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tsCVnO3FxH .nav-tabs .nav-item.open .nav-link:focus,
.cid-tsCVnO3FxH .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tsCVnO3FxH .nav-tabs {
  flex-wrap: wrap;
  justify-content: space-around;
}
.cid-tsCVnO3FxH .nav-tabs .nav-item {
  padding: 0rem;
}
.cid-tsCVnO3FxH .nav-tabs .nav-link.display-7 {
  font-size: 16px !important;
  line-height: 1.5;
}
.cid-tsCVnO3FxH .nav-link {
  padding: 0.4rem 0.8rem;
}
.cid-tsCVnO3FxH .nav-tabs .nav-link {
  color: #6d7a8c;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  border-bottom: 2px solid transparent;
}
.cid-tsCVnO3FxH .nav-tabs .nav-link:hover {
  cursor: pointer;
}
.cid-tsCVnO3FxH .nav-tabs .nav-link.active {
  border-bottom: 2px solid #000000;
  color: #28303f;
}
.cid-tsCVnO3FxH .nav-tabs .nav-link.active span {
  color: #000000;
}
.cid-tsCVnO3FxH .nav-tabs .nav-link span {
  margin-right: 14px;
  font-size: 1.525rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .cid-tsCVnO3FxH .nav-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tsCVnO3FxH .mbr-text,
  .cid-tsCVnO3FxH .nav-link {
    text-align: left;
  }
  .cid-tsCVnO3FxH .nav-link {
    padding: 14px 20px;
    padding-left: 0;
  }
  .cid-tsCVnO3FxH .mbr-section-title,
  .cid-tsCVnO3FxH .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-tsCVnO3FxH .tab-content {
  margin-top: 44px;
}
.cid-tsCVnO3FxH .tab-content .tab-pane img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(79, 110, 173, 0.1);
}
.cid-tsCVnO3FxH .tab-content .tab-pane .mbr-section-title {
  text-align: left;
  color: #130947;
  font-weight: 700;
}
.cid-tsCVnO3FxH .tab-content .tab-pane .mbr-section-title.display-5 {
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.5px;
}
.cid-tsCVnO3FxH .tab-content .tab-pane .mbr-text {
  color: #6d7a8c;
}
.cid-tsCVnO3FxH .tab-content .tab-pane .mbr-text.display-7 {
  line-height: 1.5;
  font-size: 1em;
}
.cid-tsCVnO3FxH .tab-content .tab-pane .mbr-list {
  margin-top: 35px;
}
.cid-tsCVnO3FxH .tab-content .tab-pane .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-tsCVnO3FxH .tab-content .tab-pane .mbr-list .list li {
  margin-bottom: 1rem;
}
.cid-tsCVnO3FxH .tab-content .tab-pane .mbr-list .list li:before {
  font-weight: 900;
  color: #000000;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-tsCVnO3FxH .tab-content .tab-pane .mbr-list.display-4 {
  font-size: 1em;
  color: #6d7a8c;
}
.cid-tsCVnO3FxH .top-part .mbr-section-subtitle {
  color: #232323;
}
.cid-tsCVnO3FxH .top-part .mbr-section-title {
  color: #8b8787;
}
.cid-tsCVnO3FxH .tab-content .tab-pane .mbr-text,
.cid-tsCVnO3FxH .mbr-list {
  color: #8b8787;
}
.cid-tsCVnO3FxH .tab-content .tab-pane .mbr-section-title,
.cid-tsCVnO3FxH .mbr-list {
  color: #232323;
}
.cid-tsCThHHKzA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tsD0BZinhK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tsD0BZinhK nav.navbar {
  position: fixed;
}
.cid-tsD0BZinhK .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-tsD0BZinhK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsD0BZinhK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsD0BZinhK .dropdown-item:hover,
.cid-tsD0BZinhK .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tsD0BZinhK .dropdown-item:hover span {
  color: white;
}
.cid-tsD0BZinhK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsD0BZinhK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsD0BZinhK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsD0BZinhK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsD0BZinhK .nav-link {
  position: relative;
}
.cid-tsD0BZinhK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsD0BZinhK .container {
    flex-wrap: nowrap;
  }
}
.cid-tsD0BZinhK .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsD0BZinhK .dropdown-menu,
.cid-tsD0BZinhK .navbar.opened {
  background: #000000 !important;
}
.cid-tsD0BZinhK .nav-item:focus,
.cid-tsD0BZinhK .nav-link:focus {
  outline: none;
}
.cid-tsD0BZinhK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsD0BZinhK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsD0BZinhK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsD0BZinhK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsD0BZinhK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsD0BZinhK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsD0BZinhK .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: #000000;
}
.cid-tsD0BZinhK .navbar.opened {
  transition: all 0.3s;
}
.cid-tsD0BZinhK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsD0BZinhK .navbar .navbar-logo img {
  width: auto;
}
.cid-tsD0BZinhK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsD0BZinhK .navbar.collapsed {
  justify-content: center;
}
.cid-tsD0BZinhK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsD0BZinhK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsD0BZinhK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tsD0BZinhK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsD0BZinhK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsD0BZinhK .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-tsD0BZinhK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsD0BZinhK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsD0BZinhK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsD0BZinhK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsD0BZinhK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsD0BZinhK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsD0BZinhK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsD0BZinhK .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-tsD0BZinhK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsD0BZinhK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsD0BZinhK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsD0BZinhK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsD0BZinhK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsD0BZinhK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsD0BZinhK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsD0BZinhK .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsD0BZinhK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsD0BZinhK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsD0BZinhK .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-tsD0BZinhK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsD0BZinhK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsD0BZinhK .dropdown-item.active,
.cid-tsD0BZinhK .dropdown-item:active {
  background-color: transparent;
}
.cid-tsD0BZinhK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsD0BZinhK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsD0BZinhK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsD0BZinhK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tsD0BZinhK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsD0BZinhK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsD0BZinhK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsD0BZinhK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsD0BZinhK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsD0BZinhK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsD0BZinhK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsD0BZinhK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsD0BZinhK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsD0BZinhK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsD0BZinhK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsD0BZinhK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsD0BZinhK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsD0BZinhK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsD0BZinhK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsD0BZinhK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsD0BZinhK .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-tsD0BZinhK .navbar {
    height: 70px;
  }
  .cid-tsD0BZinhK .navbar.opened {
    height: auto;
  }
  .cid-tsD0BZinhK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsD0C0YWVP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/banner-1952x280.jpg");
}
.cid-tsD0C0YWVP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsD0C0YWVP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsD0C27xe9 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tsD0C27xe9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsD0C27xe9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsD0C27xe9 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tsD0C27xe9 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsD0C27xe9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tsD0C27xe9 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tsD0C27xe9 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsD0C27xe9 .mbr-text,
.cid-tsD0C27xe9 .mbr-section-btn {
  color: #8b8787;
}
.cid-tsD0C2Qjoc {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tsD0C2Qjoc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsD0C2Qjoc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsD0C2Qjoc .row {
  justify-content: center;
}
.cid-tsD0C2Qjoc .row {
  padding: 0 27px;
}
@media (max-width: 992px) {
  .cid-tsD0C2Qjoc .row {
    padding: 0 19px;
  }
}
.cid-tsD0C2Qjoc .item {
  padding: 0 5px !important;
}
.cid-tsD0C2Qjoc .item-wrap {
  z-index: 1;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tsD0C2Qjoc .item-wrap {
    padding: 0 5px;
  }
}
.cid-tsD0C2Qjoc .border-wrap {
  width: 100%;
  height: 2px;
  background-color: #181818;
  margin-bottom: 46px;
}
.cid-tsD0C2Qjoc .mbr-section-title {
  margin-bottom: 64px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tsD0C2Qjoc .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tsD0C2Qjoc .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 64px;
}
.cid-tsD0C2Qjoc .link-wrapper:hover .mbr-link {
  color: #d9d9d9;
}
@media (max-width: 992px) {
  .cid-tsD0C2Qjoc .link-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tsD0C2Qjoc .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tsD0C2Qjoc .item-wrapper {
    margin-bottom: 12px;
  }
}
.cid-tsD0C2Qjoc .item-wrapper .item-link img {
  height: 212px;
  object-fit: cover;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .cid-tsD0C2Qjoc .item-wrapper .item-link img {
    height: 150px;
  }
}
.cid-tsD0C2Qjoc .item-wrapper .item-link .icon-container {
  margin-bottom: 16px;
}
.cid-tsD0C2Qjoc .item-wrapper .item-link .icon-container .icon-wrapper {
  display: inline-flex;
}
.cid-tsD0C2Qjoc .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like {
  margin: 0 10px 0 0;
  display: flex;
  line-height: .5;
}
.cid-tsD0C2Qjoc .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tsD0C2Qjoc .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment {
  margin: 0;
  display: flex;
  line-height: .5;
}
.cid-tsD0C2Qjoc .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tsD0C2Qjoc .item-wrapper .item-link .mbr-text {
  margin-bottom: 0;
}
.cid-tsD0C2Qjoc .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-tsD0C2Qjoc .mbr-like {
  color: #181818;
}
.cid-tsD0C2Qjoc .mbr-comment,
.cid-tsD0C2Qjoc .mbr-iconfont {
  color: #181818;
}
.cid-tsD0C2Qjoc .mbr-text {
  color: #181818;
}
.cid-tsD0C3Wopl {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tsD0C3Wopl .top-part {
  margin-bottom: 70px;
}
.cid-tsD0C3Wopl .top-part .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-tsD0C3Wopl .top-part .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tsD0C3Wopl .top-part .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-tsD0C3Wopl .top-part .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tsD0C3Wopl .nav-tabs .nav-item.open .nav-link:focus,
.cid-tsD0C3Wopl .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tsD0C3Wopl .nav-tabs {
  flex-wrap: wrap;
  justify-content: space-around;
}
.cid-tsD0C3Wopl .nav-tabs .nav-item {
  padding: 0rem;
}
.cid-tsD0C3Wopl .nav-tabs .nav-link.display-7 {
  font-size: 16px !important;
  line-height: 1.5;
}
.cid-tsD0C3Wopl .nav-link {
  padding: 0.4rem 0.8rem;
}
.cid-tsD0C3Wopl .nav-tabs .nav-link {
  color: #6d7a8c;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  border-bottom: 2px solid transparent;
}
.cid-tsD0C3Wopl .nav-tabs .nav-link:hover {
  cursor: pointer;
}
.cid-tsD0C3Wopl .nav-tabs .nav-link.active {
  border-bottom: 2px solid #000000;
  color: #28303f;
}
.cid-tsD0C3Wopl .nav-tabs .nav-link.active span {
  color: #000000;
}
.cid-tsD0C3Wopl .nav-tabs .nav-link span {
  margin-right: 14px;
  font-size: 1.525rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .cid-tsD0C3Wopl .nav-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tsD0C3Wopl .mbr-text,
  .cid-tsD0C3Wopl .nav-link {
    text-align: left;
  }
  .cid-tsD0C3Wopl .nav-link {
    padding: 14px 20px;
    padding-left: 0;
  }
  .cid-tsD0C3Wopl .mbr-section-title,
  .cid-tsD0C3Wopl .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-tsD0C3Wopl .tab-content {
  margin-top: 44px;
}
.cid-tsD0C3Wopl .tab-content .tab-pane img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(79, 110, 173, 0.1);
}
.cid-tsD0C3Wopl .tab-content .tab-pane .mbr-section-title {
  text-align: left;
  color: #130947;
  font-weight: 700;
}
.cid-tsD0C3Wopl .tab-content .tab-pane .mbr-section-title.display-5 {
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.5px;
}
.cid-tsD0C3Wopl .tab-content .tab-pane .mbr-text {
  color: #6d7a8c;
}
.cid-tsD0C3Wopl .tab-content .tab-pane .mbr-text.display-7 {
  line-height: 1.5;
  font-size: 1em;
}
.cid-tsD0C3Wopl .tab-content .tab-pane .mbr-list {
  margin-top: 35px;
}
.cid-tsD0C3Wopl .tab-content .tab-pane .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-tsD0C3Wopl .tab-content .tab-pane .mbr-list .list li {
  margin-bottom: 1rem;
}
.cid-tsD0C3Wopl .tab-content .tab-pane .mbr-list .list li:before {
  font-weight: 900;
  color: #000000;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-tsD0C3Wopl .tab-content .tab-pane .mbr-list.display-4 {
  font-size: 1em;
  color: #6d7a8c;
}
.cid-tsD0C3Wopl .top-part .mbr-section-subtitle {
  color: #232323;
}
.cid-tsD0C3Wopl .top-part .mbr-section-title {
  color: #8b8787;
}
.cid-tsD0C3Wopl .tab-content .tab-pane .mbr-text,
.cid-tsD0C3Wopl .mbr-list {
  color: #8b8787;
}
.cid-tsD0C3Wopl .tab-content .tab-pane .mbr-section-title,
.cid-tsD0C3Wopl .mbr-list {
  color: #232323;
}
.cid-tsD0C54Axm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tsD9INKpMx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tsD9INKpMx nav.navbar {
  position: fixed;
}
.cid-tsD9INKpMx .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-tsD9INKpMx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsD9INKpMx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsD9INKpMx .dropdown-item:hover,
.cid-tsD9INKpMx .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tsD9INKpMx .dropdown-item:hover span {
  color: white;
}
.cid-tsD9INKpMx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsD9INKpMx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsD9INKpMx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsD9INKpMx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsD9INKpMx .nav-link {
  position: relative;
}
.cid-tsD9INKpMx .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsD9INKpMx .container {
    flex-wrap: nowrap;
  }
}
.cid-tsD9INKpMx .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsD9INKpMx .dropdown-menu,
.cid-tsD9INKpMx .navbar.opened {
  background: #000000 !important;
}
.cid-tsD9INKpMx .nav-item:focus,
.cid-tsD9INKpMx .nav-link:focus {
  outline: none;
}
.cid-tsD9INKpMx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsD9INKpMx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsD9INKpMx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsD9INKpMx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsD9INKpMx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsD9INKpMx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsD9INKpMx .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: #000000;
}
.cid-tsD9INKpMx .navbar.opened {
  transition: all 0.3s;
}
.cid-tsD9INKpMx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsD9INKpMx .navbar .navbar-logo img {
  width: auto;
}
.cid-tsD9INKpMx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsD9INKpMx .navbar.collapsed {
  justify-content: center;
}
.cid-tsD9INKpMx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsD9INKpMx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsD9INKpMx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tsD9INKpMx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsD9INKpMx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsD9INKpMx .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-tsD9INKpMx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsD9INKpMx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsD9INKpMx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsD9INKpMx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsD9INKpMx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsD9INKpMx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsD9INKpMx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsD9INKpMx .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-tsD9INKpMx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsD9INKpMx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsD9INKpMx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsD9INKpMx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsD9INKpMx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsD9INKpMx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsD9INKpMx .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsD9INKpMx .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsD9INKpMx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsD9INKpMx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsD9INKpMx .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-tsD9INKpMx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsD9INKpMx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsD9INKpMx .dropdown-item.active,
.cid-tsD9INKpMx .dropdown-item:active {
  background-color: transparent;
}
.cid-tsD9INKpMx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsD9INKpMx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsD9INKpMx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsD9INKpMx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tsD9INKpMx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsD9INKpMx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsD9INKpMx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsD9INKpMx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsD9INKpMx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsD9INKpMx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsD9INKpMx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsD9INKpMx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsD9INKpMx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsD9INKpMx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsD9INKpMx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsD9INKpMx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsD9INKpMx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsD9INKpMx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsD9INKpMx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsD9INKpMx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsD9INKpMx .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-tsD9INKpMx .navbar {
    height: 70px;
  }
  .cid-tsD9INKpMx .navbar.opened {
    height: auto;
  }
  .cid-tsD9INKpMx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsD9IP6vRV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/cabecerabubblets-1952x461.jpg");
}
.cid-tsD9IP6vRV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsD9IP6vRV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsD9IQ6H2e {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tsD9IQ6H2e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsD9IQ6H2e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsD9IQ6H2e .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tsD9IQ6H2e .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsD9IQ6H2e .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tsD9IQ6H2e .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tsD9IQ6H2e .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsD9IQ6H2e .mbr-text,
.cid-tsD9IQ6H2e .mbr-section-btn {
  color: #8b8787;
}
.cid-tsD9IQMs8b {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tsD9IQMs8b .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsD9IQMs8b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsD9IQMs8b .row {
  justify-content: center;
}
.cid-tsD9IQMs8b .row {
  padding: 0 27px;
}
@media (max-width: 992px) {
  .cid-tsD9IQMs8b .row {
    padding: 0 19px;
  }
}
.cid-tsD9IQMs8b .item {
  padding: 0 5px !important;
}
.cid-tsD9IQMs8b .item-wrap {
  z-index: 1;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tsD9IQMs8b .item-wrap {
    padding: 0 5px;
  }
}
.cid-tsD9IQMs8b .border-wrap {
  width: 100%;
  height: 2px;
  background-color: #181818;
  margin-bottom: 46px;
}
.cid-tsD9IQMs8b .mbr-section-title {
  margin-bottom: 64px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tsD9IQMs8b .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tsD9IQMs8b .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 64px;
}
.cid-tsD9IQMs8b .link-wrapper:hover .mbr-link {
  color: #d9d9d9;
}
@media (max-width: 992px) {
  .cid-tsD9IQMs8b .link-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tsD9IQMs8b .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tsD9IQMs8b .item-wrapper {
    margin-bottom: 12px;
  }
}
.cid-tsD9IQMs8b .item-wrapper .item-link img {
  height: 212px;
  object-fit: cover;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .cid-tsD9IQMs8b .item-wrapper .item-link img {
    height: 150px;
  }
}
.cid-tsD9IQMs8b .item-wrapper .item-link .icon-container {
  margin-bottom: 16px;
}
.cid-tsD9IQMs8b .item-wrapper .item-link .icon-container .icon-wrapper {
  display: inline-flex;
}
.cid-tsD9IQMs8b .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like {
  margin: 0 10px 0 0;
  display: flex;
  line-height: .5;
}
.cid-tsD9IQMs8b .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tsD9IQMs8b .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment {
  margin: 0;
  display: flex;
  line-height: .5;
}
.cid-tsD9IQMs8b .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tsD9IQMs8b .item-wrapper .item-link .mbr-text {
  margin-bottom: 0;
}
.cid-tsD9IQMs8b .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-tsD9IQMs8b .mbr-like {
  color: #181818;
}
.cid-tsD9IQMs8b .mbr-comment,
.cid-tsD9IQMs8b .mbr-iconfont {
  color: #181818;
}
.cid-tsD9IQMs8b .mbr-text {
  color: #181818;
}
.cid-tsD9IRLREJ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tsD9IRLREJ .top-part {
  margin-bottom: 70px;
}
.cid-tsD9IRLREJ .top-part .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-tsD9IRLREJ .top-part .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tsD9IRLREJ .top-part .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-tsD9IRLREJ .top-part .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tsD9IRLREJ .nav-tabs .nav-item.open .nav-link:focus,
.cid-tsD9IRLREJ .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tsD9IRLREJ .nav-tabs {
  flex-wrap: wrap;
  justify-content: space-around;
}
.cid-tsD9IRLREJ .nav-tabs .nav-item {
  padding: 0rem;
}
.cid-tsD9IRLREJ .nav-tabs .nav-link.display-7 {
  font-size: 16px !important;
  line-height: 1.5;
}
.cid-tsD9IRLREJ .nav-link {
  padding: 0.4rem 0.8rem;
}
.cid-tsD9IRLREJ .nav-tabs .nav-link {
  color: #6d7a8c;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  border-bottom: 2px solid transparent;
}
.cid-tsD9IRLREJ .nav-tabs .nav-link:hover {
  cursor: pointer;
}
.cid-tsD9IRLREJ .nav-tabs .nav-link.active {
  border-bottom: 2px solid #000000;
  color: #28303f;
}
.cid-tsD9IRLREJ .nav-tabs .nav-link.active span {
  color: #000000;
}
.cid-tsD9IRLREJ .nav-tabs .nav-link span {
  margin-right: 14px;
  font-size: 1.525rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .cid-tsD9IRLREJ .nav-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tsD9IRLREJ .mbr-text,
  .cid-tsD9IRLREJ .nav-link {
    text-align: left;
  }
  .cid-tsD9IRLREJ .nav-link {
    padding: 14px 20px;
    padding-left: 0;
  }
  .cid-tsD9IRLREJ .mbr-section-title,
  .cid-tsD9IRLREJ .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-tsD9IRLREJ .tab-content {
  margin-top: 44px;
}
.cid-tsD9IRLREJ .tab-content .tab-pane img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(79, 110, 173, 0.1);
}
.cid-tsD9IRLREJ .tab-content .tab-pane .mbr-section-title {
  text-align: left;
  color: #130947;
  font-weight: 700;
}
.cid-tsD9IRLREJ .tab-content .tab-pane .mbr-section-title.display-5 {
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.5px;
}
.cid-tsD9IRLREJ .tab-content .tab-pane .mbr-text {
  color: #6d7a8c;
}
.cid-tsD9IRLREJ .tab-content .tab-pane .mbr-text.display-7 {
  line-height: 1.5;
  font-size: 1em;
}
.cid-tsD9IRLREJ .tab-content .tab-pane .mbr-list {
  margin-top: 35px;
}
.cid-tsD9IRLREJ .tab-content .tab-pane .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-tsD9IRLREJ .tab-content .tab-pane .mbr-list .list li {
  margin-bottom: 1rem;
}
.cid-tsD9IRLREJ .tab-content .tab-pane .mbr-list .list li:before {
  font-weight: 900;
  color: #000000;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-tsD9IRLREJ .tab-content .tab-pane .mbr-list.display-4 {
  font-size: 1em;
  color: #6d7a8c;
}
.cid-tsD9IRLREJ .top-part .mbr-section-subtitle {
  color: #232323;
}
.cid-tsD9IRLREJ .top-part .mbr-section-title {
  color: #8b8787;
}
.cid-tsD9IRLREJ .tab-content .tab-pane .mbr-text,
.cid-tsD9IRLREJ .mbr-list {
  color: #8b8787;
}
.cid-tsD9IRLREJ .tab-content .tab-pane .mbr-section-title,
.cid-tsD9IRLREJ .mbr-list {
  color: #232323;
}
.cid-tsD9ISOLhM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tsDbMOcYF4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tsDbMOcYF4 nav.navbar {
  position: fixed;
}
.cid-tsDbMOcYF4 .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-tsDbMOcYF4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsDbMOcYF4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsDbMOcYF4 .dropdown-item:hover,
.cid-tsDbMOcYF4 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tsDbMOcYF4 .dropdown-item:hover span {
  color: white;
}
.cid-tsDbMOcYF4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsDbMOcYF4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsDbMOcYF4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsDbMOcYF4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsDbMOcYF4 .nav-link {
  position: relative;
}
.cid-tsDbMOcYF4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsDbMOcYF4 .container {
    flex-wrap: nowrap;
  }
}
.cid-tsDbMOcYF4 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsDbMOcYF4 .dropdown-menu,
.cid-tsDbMOcYF4 .navbar.opened {
  background: #000000 !important;
}
.cid-tsDbMOcYF4 .nav-item:focus,
.cid-tsDbMOcYF4 .nav-link:focus {
  outline: none;
}
.cid-tsDbMOcYF4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsDbMOcYF4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsDbMOcYF4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsDbMOcYF4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsDbMOcYF4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsDbMOcYF4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsDbMOcYF4 .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: #000000;
}
.cid-tsDbMOcYF4 .navbar.opened {
  transition: all 0.3s;
}
.cid-tsDbMOcYF4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsDbMOcYF4 .navbar .navbar-logo img {
  width: auto;
}
.cid-tsDbMOcYF4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsDbMOcYF4 .navbar.collapsed {
  justify-content: center;
}
.cid-tsDbMOcYF4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsDbMOcYF4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsDbMOcYF4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tsDbMOcYF4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsDbMOcYF4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsDbMOcYF4 .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-tsDbMOcYF4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsDbMOcYF4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsDbMOcYF4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsDbMOcYF4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsDbMOcYF4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsDbMOcYF4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsDbMOcYF4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsDbMOcYF4 .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-tsDbMOcYF4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsDbMOcYF4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsDbMOcYF4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsDbMOcYF4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsDbMOcYF4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsDbMOcYF4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsDbMOcYF4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsDbMOcYF4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsDbMOcYF4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsDbMOcYF4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsDbMOcYF4 .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-tsDbMOcYF4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsDbMOcYF4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsDbMOcYF4 .dropdown-item.active,
.cid-tsDbMOcYF4 .dropdown-item:active {
  background-color: transparent;
}
.cid-tsDbMOcYF4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsDbMOcYF4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsDbMOcYF4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsDbMOcYF4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tsDbMOcYF4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsDbMOcYF4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsDbMOcYF4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsDbMOcYF4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsDbMOcYF4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsDbMOcYF4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsDbMOcYF4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsDbMOcYF4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsDbMOcYF4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsDbMOcYF4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsDbMOcYF4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsDbMOcYF4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsDbMOcYF4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsDbMOcYF4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsDbMOcYF4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsDbMOcYF4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsDbMOcYF4 .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-tsDbMOcYF4 .navbar {
    height: 70px;
  }
  .cid-tsDbMOcYF4 .navbar.opened {
    height: auto;
  }
  .cid-tsDbMOcYF4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsDbMPSHv5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/cabeceramono2-1952x461.jpg");
}
.cid-tsDbMPSHv5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsDbMPSHv5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsDbMRApL0 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tsDbMRApL0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsDbMRApL0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsDbMRApL0 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tsDbMRApL0 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsDbMRApL0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tsDbMRApL0 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tsDbMRApL0 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsDbMRApL0 .mbr-text,
.cid-tsDbMRApL0 .mbr-section-btn {
  color: #8b8787;
}
.cid-tsDbMSgXtV {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tsDbMSgXtV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsDbMSgXtV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsDbMSgXtV .row {
  justify-content: center;
}
.cid-tsDbMSgXtV .row {
  padding: 0 27px;
}
@media (max-width: 992px) {
  .cid-tsDbMSgXtV .row {
    padding: 0 19px;
  }
}
.cid-tsDbMSgXtV .item {
  padding: 0 5px !important;
}
.cid-tsDbMSgXtV .item-wrap {
  z-index: 1;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tsDbMSgXtV .item-wrap {
    padding: 0 5px;
  }
}
.cid-tsDbMSgXtV .border-wrap {
  width: 100%;
  height: 2px;
  background-color: #181818;
  margin-bottom: 46px;
}
.cid-tsDbMSgXtV .mbr-section-title {
  margin-bottom: 64px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tsDbMSgXtV .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tsDbMSgXtV .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 64px;
}
.cid-tsDbMSgXtV .link-wrapper:hover .mbr-link {
  color: #d9d9d9;
}
@media (max-width: 992px) {
  .cid-tsDbMSgXtV .link-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tsDbMSgXtV .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tsDbMSgXtV .item-wrapper {
    margin-bottom: 12px;
  }
}
.cid-tsDbMSgXtV .item-wrapper .item-link img {
  height: 212px;
  object-fit: cover;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .cid-tsDbMSgXtV .item-wrapper .item-link img {
    height: 150px;
  }
}
.cid-tsDbMSgXtV .item-wrapper .item-link .icon-container {
  margin-bottom: 16px;
}
.cid-tsDbMSgXtV .item-wrapper .item-link .icon-container .icon-wrapper {
  display: inline-flex;
}
.cid-tsDbMSgXtV .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like {
  margin: 0 10px 0 0;
  display: flex;
  line-height: .5;
}
.cid-tsDbMSgXtV .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tsDbMSgXtV .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment {
  margin: 0;
  display: flex;
  line-height: .5;
}
.cid-tsDbMSgXtV .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tsDbMSgXtV .item-wrapper .item-link .mbr-text {
  margin-bottom: 0;
}
.cid-tsDbMSgXtV .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-tsDbMSgXtV .mbr-like {
  color: #181818;
}
.cid-tsDbMSgXtV .mbr-comment,
.cid-tsDbMSgXtV .mbr-iconfont {
  color: #181818;
}
.cid-tsDbMSgXtV .mbr-text {
  color: #181818;
}
.cid-tsDbMTs8fc {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tsDbMTs8fc .top-part {
  margin-bottom: 70px;
}
.cid-tsDbMTs8fc .top-part .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-tsDbMTs8fc .top-part .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tsDbMTs8fc .top-part .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-tsDbMTs8fc .top-part .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tsDbMTs8fc .nav-tabs .nav-item.open .nav-link:focus,
.cid-tsDbMTs8fc .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tsDbMTs8fc .nav-tabs {
  flex-wrap: wrap;
  justify-content: space-around;
}
.cid-tsDbMTs8fc .nav-tabs .nav-item {
  padding: 0rem;
}
.cid-tsDbMTs8fc .nav-tabs .nav-link.display-7 {
  font-size: 16px !important;
  line-height: 1.5;
}
.cid-tsDbMTs8fc .nav-link {
  padding: 0.4rem 0.8rem;
}
.cid-tsDbMTs8fc .nav-tabs .nav-link {
  color: #6d7a8c;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  border-bottom: 2px solid transparent;
}
.cid-tsDbMTs8fc .nav-tabs .nav-link:hover {
  cursor: pointer;
}
.cid-tsDbMTs8fc .nav-tabs .nav-link.active {
  border-bottom: 2px solid #000000;
  color: #28303f;
}
.cid-tsDbMTs8fc .nav-tabs .nav-link.active span {
  color: #000000;
}
.cid-tsDbMTs8fc .nav-tabs .nav-link span {
  margin-right: 14px;
  font-size: 1.525rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .cid-tsDbMTs8fc .nav-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tsDbMTs8fc .mbr-text,
  .cid-tsDbMTs8fc .nav-link {
    text-align: left;
  }
  .cid-tsDbMTs8fc .nav-link {
    padding: 14px 20px;
    padding-left: 0;
  }
  .cid-tsDbMTs8fc .mbr-section-title,
  .cid-tsDbMTs8fc .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-tsDbMTs8fc .tab-content {
  margin-top: 44px;
}
.cid-tsDbMTs8fc .tab-content .tab-pane img {
  width: 50%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(79, 110, 173, 0.1);
}
.cid-tsDbMTs8fc .tab-content .tab-pane .mbr-section-title {
  text-align: left;
  color: #130947;
  font-weight: 700;
}
.cid-tsDbMTs8fc .tab-content .tab-pane .mbr-section-title.display-5 {
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.5px;
}
.cid-tsDbMTs8fc .tab-content .tab-pane .mbr-text {
  color: #6d7a8c;
}
.cid-tsDbMTs8fc .tab-content .tab-pane .mbr-text.display-7 {
  line-height: 1.5;
  font-size: 1em;
}
.cid-tsDbMTs8fc .tab-content .tab-pane .mbr-list {
  margin-top: 35px;
}
.cid-tsDbMTs8fc .tab-content .tab-pane .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-tsDbMTs8fc .tab-content .tab-pane .mbr-list .list li {
  margin-bottom: 1rem;
}
.cid-tsDbMTs8fc .tab-content .tab-pane .mbr-list .list li:before {
  font-weight: 900;
  color: #000000;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-tsDbMTs8fc .tab-content .tab-pane .mbr-list.display-4 {
  font-size: 1em;
  color: #6d7a8c;
}
.cid-tsDbMTs8fc .top-part .mbr-section-subtitle {
  color: #232323;
}
.cid-tsDbMTs8fc .top-part .mbr-section-title {
  color: #8b8787;
}
.cid-tsDbMTs8fc .tab-content .tab-pane .mbr-text,
.cid-tsDbMTs8fc .mbr-list {
  color: #8b8787;
}
.cid-tsDbMTs8fc .tab-content .tab-pane .mbr-section-title,
.cid-tsDbMTs8fc .mbr-list {
  color: #232323;
}
.cid-tsDbMUUR34 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tsDeHchSnJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tsDeHchSnJ nav.navbar {
  position: fixed;
}
.cid-tsDeHchSnJ .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-tsDeHchSnJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsDeHchSnJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsDeHchSnJ .dropdown-item:hover,
.cid-tsDeHchSnJ .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tsDeHchSnJ .dropdown-item:hover span {
  color: white;
}
.cid-tsDeHchSnJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsDeHchSnJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsDeHchSnJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsDeHchSnJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsDeHchSnJ .nav-link {
  position: relative;
}
.cid-tsDeHchSnJ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsDeHchSnJ .container {
    flex-wrap: nowrap;
  }
}
.cid-tsDeHchSnJ .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsDeHchSnJ .dropdown-menu,
.cid-tsDeHchSnJ .navbar.opened {
  background: #000000 !important;
}
.cid-tsDeHchSnJ .nav-item:focus,
.cid-tsDeHchSnJ .nav-link:focus {
  outline: none;
}
.cid-tsDeHchSnJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsDeHchSnJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsDeHchSnJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsDeHchSnJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsDeHchSnJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsDeHchSnJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsDeHchSnJ .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: #000000;
}
.cid-tsDeHchSnJ .navbar.opened {
  transition: all 0.3s;
}
.cid-tsDeHchSnJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsDeHchSnJ .navbar .navbar-logo img {
  width: auto;
}
.cid-tsDeHchSnJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsDeHchSnJ .navbar.collapsed {
  justify-content: center;
}
.cid-tsDeHchSnJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsDeHchSnJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsDeHchSnJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tsDeHchSnJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsDeHchSnJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsDeHchSnJ .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-tsDeHchSnJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsDeHchSnJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsDeHchSnJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsDeHchSnJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsDeHchSnJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsDeHchSnJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsDeHchSnJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsDeHchSnJ .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-tsDeHchSnJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsDeHchSnJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsDeHchSnJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsDeHchSnJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsDeHchSnJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsDeHchSnJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsDeHchSnJ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsDeHchSnJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsDeHchSnJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsDeHchSnJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsDeHchSnJ .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-tsDeHchSnJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsDeHchSnJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsDeHchSnJ .dropdown-item.active,
.cid-tsDeHchSnJ .dropdown-item:active {
  background-color: transparent;
}
.cid-tsDeHchSnJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsDeHchSnJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsDeHchSnJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsDeHchSnJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tsDeHchSnJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsDeHchSnJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsDeHchSnJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsDeHchSnJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsDeHchSnJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsDeHchSnJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsDeHchSnJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsDeHchSnJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsDeHchSnJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsDeHchSnJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsDeHchSnJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsDeHchSnJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsDeHchSnJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsDeHchSnJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsDeHchSnJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsDeHchSnJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsDeHchSnJ .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-tsDeHchSnJ .navbar {
    height: 70px;
  }
  .cid-tsDeHchSnJ .navbar.opened {
    height: auto;
  }
  .cid-tsDeHchSnJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsDeHd9vSr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/cabeceraespeciales-1952x461.jpg");
}
.cid-tsDeHd9vSr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsDeHd9vSr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsDeHdTOjp {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tsDeHdTOjp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsDeHdTOjp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsDeHdTOjp .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tsDeHdTOjp .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsDeHdTOjp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tsDeHdTOjp .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tsDeHdTOjp .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsDeHdTOjp .mbr-text,
.cid-tsDeHdTOjp .mbr-section-btn {
  color: #8b8787;
}
.cid-tsDeHeBjT0 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tsDeHeBjT0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsDeHeBjT0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsDeHeBjT0 .row {
  justify-content: center;
}
.cid-tsDeHeBjT0 .row {
  padding: 0 27px;
}
@media (max-width: 992px) {
  .cid-tsDeHeBjT0 .row {
    padding: 0 19px;
  }
}
.cid-tsDeHeBjT0 .item {
  padding: 0 5px !important;
}
.cid-tsDeHeBjT0 .item-wrap {
  z-index: 1;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tsDeHeBjT0 .item-wrap {
    padding: 0 5px;
  }
}
.cid-tsDeHeBjT0 .border-wrap {
  width: 100%;
  height: 2px;
  background-color: #181818;
  margin-bottom: 46px;
}
.cid-tsDeHeBjT0 .mbr-section-title {
  margin-bottom: 64px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tsDeHeBjT0 .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tsDeHeBjT0 .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 64px;
}
.cid-tsDeHeBjT0 .link-wrapper:hover .mbr-link {
  color: #d9d9d9;
}
@media (max-width: 992px) {
  .cid-tsDeHeBjT0 .link-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tsDeHeBjT0 .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tsDeHeBjT0 .item-wrapper {
    margin-bottom: 12px;
  }
}
.cid-tsDeHeBjT0 .item-wrapper .item-link img {
  height: 212px;
  object-fit: cover;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .cid-tsDeHeBjT0 .item-wrapper .item-link img {
    height: 150px;
  }
}
.cid-tsDeHeBjT0 .item-wrapper .item-link .icon-container {
  margin-bottom: 16px;
}
.cid-tsDeHeBjT0 .item-wrapper .item-link .icon-container .icon-wrapper {
  display: inline-flex;
}
.cid-tsDeHeBjT0 .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like {
  margin: 0 10px 0 0;
  display: flex;
  line-height: .5;
}
.cid-tsDeHeBjT0 .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tsDeHeBjT0 .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment {
  margin: 0;
  display: flex;
  line-height: .5;
}
.cid-tsDeHeBjT0 .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tsDeHeBjT0 .item-wrapper .item-link .mbr-text {
  margin-bottom: 0;
}
.cid-tsDeHeBjT0 .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-tsDeHeBjT0 .mbr-like {
  color: #181818;
}
.cid-tsDeHeBjT0 .mbr-comment,
.cid-tsDeHeBjT0 .mbr-iconfont {
  color: #181818;
}
.cid-tsDeHeBjT0 .mbr-text {
  color: #181818;
}
.cid-tsDeHgHVz5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tsDfWJYSKs {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tsDfWJYSKs nav.navbar {
  position: fixed;
}
.cid-tsDfWJYSKs .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-tsDfWJYSKs .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsDfWJYSKs .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsDfWJYSKs .dropdown-item:hover,
.cid-tsDfWJYSKs .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tsDfWJYSKs .dropdown-item:hover span {
  color: white;
}
.cid-tsDfWJYSKs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsDfWJYSKs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsDfWJYSKs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsDfWJYSKs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsDfWJYSKs .nav-link {
  position: relative;
}
.cid-tsDfWJYSKs .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsDfWJYSKs .container {
    flex-wrap: nowrap;
  }
}
.cid-tsDfWJYSKs .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsDfWJYSKs .dropdown-menu,
.cid-tsDfWJYSKs .navbar.opened {
  background: #000000 !important;
}
.cid-tsDfWJYSKs .nav-item:focus,
.cid-tsDfWJYSKs .nav-link:focus {
  outline: none;
}
.cid-tsDfWJYSKs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsDfWJYSKs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsDfWJYSKs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsDfWJYSKs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsDfWJYSKs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsDfWJYSKs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsDfWJYSKs .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: #000000;
}
.cid-tsDfWJYSKs .navbar.opened {
  transition: all 0.3s;
}
.cid-tsDfWJYSKs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsDfWJYSKs .navbar .navbar-logo img {
  width: auto;
}
.cid-tsDfWJYSKs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsDfWJYSKs .navbar.collapsed {
  justify-content: center;
}
.cid-tsDfWJYSKs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsDfWJYSKs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsDfWJYSKs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tsDfWJYSKs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsDfWJYSKs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsDfWJYSKs .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-tsDfWJYSKs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsDfWJYSKs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsDfWJYSKs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsDfWJYSKs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsDfWJYSKs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsDfWJYSKs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsDfWJYSKs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsDfWJYSKs .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-tsDfWJYSKs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsDfWJYSKs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsDfWJYSKs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsDfWJYSKs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsDfWJYSKs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsDfWJYSKs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsDfWJYSKs .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsDfWJYSKs .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsDfWJYSKs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsDfWJYSKs .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsDfWJYSKs .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-tsDfWJYSKs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsDfWJYSKs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsDfWJYSKs .dropdown-item.active,
.cid-tsDfWJYSKs .dropdown-item:active {
  background-color: transparent;
}
.cid-tsDfWJYSKs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsDfWJYSKs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsDfWJYSKs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsDfWJYSKs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tsDfWJYSKs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsDfWJYSKs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsDfWJYSKs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsDfWJYSKs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsDfWJYSKs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsDfWJYSKs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsDfWJYSKs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsDfWJYSKs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsDfWJYSKs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsDfWJYSKs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsDfWJYSKs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsDfWJYSKs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsDfWJYSKs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsDfWJYSKs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsDfWJYSKs .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsDfWJYSKs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsDfWJYSKs .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-tsDfWJYSKs .navbar {
    height: 70px;
  }
  .cid-tsDfWJYSKs .navbar.opened {
    height: auto;
  }
  .cid-tsDfWJYSKs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsDfWLlEQD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/cabeceracreaciones-1952x461.jpg");
}
.cid-tsDfWLlEQD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsDfWLlEQD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsDfWMmRlt {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tsDfWMmRlt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsDfWMmRlt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsDfWMmRlt .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tsDfWMmRlt .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsDfWMmRlt .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tsDfWMmRlt .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tsDfWMmRlt .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsDfWMmRlt .mbr-text,
.cid-tsDfWMmRlt .mbr-section-btn {
  color: #8b8787;
}
.cid-tsDfWNbctv {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tsDfWNbctv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsDfWNbctv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsDfWNbctv .row {
  justify-content: center;
}
.cid-tsDfWNbctv .row {
  padding: 0 27px;
}
@media (max-width: 992px) {
  .cid-tsDfWNbctv .row {
    padding: 0 19px;
  }
}
.cid-tsDfWNbctv .item {
  padding: 0 5px !important;
}
.cid-tsDfWNbctv .item-wrap {
  z-index: 1;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tsDfWNbctv .item-wrap {
    padding: 0 5px;
  }
}
.cid-tsDfWNbctv .border-wrap {
  width: 100%;
  height: 2px;
  background-color: #181818;
  margin-bottom: 46px;
}
.cid-tsDfWNbctv .mbr-section-title {
  margin-bottom: 64px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tsDfWNbctv .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tsDfWNbctv .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 64px;
}
.cid-tsDfWNbctv .link-wrapper:hover .mbr-link {
  color: #d9d9d9;
}
@media (max-width: 992px) {
  .cid-tsDfWNbctv .link-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tsDfWNbctv .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tsDfWNbctv .item-wrapper {
    margin-bottom: 12px;
  }
}
.cid-tsDfWNbctv .item-wrapper .item-link img {
  height: 212px;
  object-fit: cover;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .cid-tsDfWNbctv .item-wrapper .item-link img {
    height: 150px;
  }
}
.cid-tsDfWNbctv .item-wrapper .item-link .icon-container {
  margin-bottom: 16px;
}
.cid-tsDfWNbctv .item-wrapper .item-link .icon-container .icon-wrapper {
  display: inline-flex;
}
.cid-tsDfWNbctv .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like {
  margin: 0 10px 0 0;
  display: flex;
  line-height: .5;
}
.cid-tsDfWNbctv .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tsDfWNbctv .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment {
  margin: 0;
  display: flex;
  line-height: .5;
}
.cid-tsDfWNbctv .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tsDfWNbctv .item-wrapper .item-link .mbr-text {
  margin-bottom: 0;
}
.cid-tsDfWNbctv .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-tsDfWNbctv .mbr-like {
  color: #181818;
}
.cid-tsDfWNbctv .mbr-comment,
.cid-tsDfWNbctv .mbr-iconfont {
  color: #181818;
}
.cid-tsDfWNbctv .mbr-text {
  color: #181818;
}
.cid-tsDfWO8srF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tsDh0F7kP2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tsDh0F7kP2 nav.navbar {
  position: fixed;
}
.cid-tsDh0F7kP2 .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-tsDh0F7kP2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsDh0F7kP2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsDh0F7kP2 .dropdown-item:hover,
.cid-tsDh0F7kP2 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tsDh0F7kP2 .dropdown-item:hover span {
  color: white;
}
.cid-tsDh0F7kP2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsDh0F7kP2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsDh0F7kP2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsDh0F7kP2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsDh0F7kP2 .nav-link {
  position: relative;
}
.cid-tsDh0F7kP2 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsDh0F7kP2 .container {
    flex-wrap: nowrap;
  }
}
.cid-tsDh0F7kP2 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsDh0F7kP2 .dropdown-menu,
.cid-tsDh0F7kP2 .navbar.opened {
  background: #000000 !important;
}
.cid-tsDh0F7kP2 .nav-item:focus,
.cid-tsDh0F7kP2 .nav-link:focus {
  outline: none;
}
.cid-tsDh0F7kP2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsDh0F7kP2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsDh0F7kP2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsDh0F7kP2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsDh0F7kP2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsDh0F7kP2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsDh0F7kP2 .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: #000000;
}
.cid-tsDh0F7kP2 .navbar.opened {
  transition: all 0.3s;
}
.cid-tsDh0F7kP2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsDh0F7kP2 .navbar .navbar-logo img {
  width: auto;
}
.cid-tsDh0F7kP2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsDh0F7kP2 .navbar.collapsed {
  justify-content: center;
}
.cid-tsDh0F7kP2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsDh0F7kP2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsDh0F7kP2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tsDh0F7kP2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsDh0F7kP2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsDh0F7kP2 .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-tsDh0F7kP2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsDh0F7kP2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsDh0F7kP2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsDh0F7kP2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsDh0F7kP2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsDh0F7kP2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsDh0F7kP2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsDh0F7kP2 .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-tsDh0F7kP2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsDh0F7kP2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsDh0F7kP2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsDh0F7kP2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsDh0F7kP2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsDh0F7kP2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsDh0F7kP2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsDh0F7kP2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsDh0F7kP2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsDh0F7kP2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsDh0F7kP2 .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-tsDh0F7kP2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsDh0F7kP2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsDh0F7kP2 .dropdown-item.active,
.cid-tsDh0F7kP2 .dropdown-item:active {
  background-color: transparent;
}
.cid-tsDh0F7kP2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsDh0F7kP2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsDh0F7kP2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsDh0F7kP2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tsDh0F7kP2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsDh0F7kP2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsDh0F7kP2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsDh0F7kP2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsDh0F7kP2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsDh0F7kP2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsDh0F7kP2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsDh0F7kP2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsDh0F7kP2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsDh0F7kP2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsDh0F7kP2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsDh0F7kP2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsDh0F7kP2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsDh0F7kP2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsDh0F7kP2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsDh0F7kP2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsDh0F7kP2 .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-tsDh0F7kP2 .navbar {
    height: 70px;
  }
  .cid-tsDh0F7kP2 .navbar.opened {
    height: auto;
  }
  .cid-tsDh0F7kP2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsDh0GqFw8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/untitled-1-67-copy-2000x665.jpg");
}
.cid-tsDh0GqFw8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsDh0GqFw8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsDjj70ANJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tsDjj70ANJ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tsDjj70ANJ form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tsDjj70ANJ form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tsDjj70ANJ form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tsDjqBl8gk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tsDjqBl8gk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsDjqBl8gk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsDjqBl8gk .google-map {
  height: 35rem;
  position: relative;
  filter: grayscale(1);
}
.cid-tsDjqBl8gk .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 0rem;
  box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
}
.cid-tsDjqBl8gk .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tsDjqBl8gk .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tsDjqBl8gk .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tsDjqBl8gk .mbr-section-title {
  text-align: center;
}
.cid-tsDh0J18Dw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tsD4tPwMKb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tsD4tPwMKb nav.navbar {
  position: fixed;
}
.cid-tsD4tPwMKb .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-tsD4tPwMKb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsD4tPwMKb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsD4tPwMKb .dropdown-item:hover,
.cid-tsD4tPwMKb .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tsD4tPwMKb .dropdown-item:hover span {
  color: white;
}
.cid-tsD4tPwMKb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsD4tPwMKb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsD4tPwMKb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsD4tPwMKb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsD4tPwMKb .nav-link {
  position: relative;
}
.cid-tsD4tPwMKb .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsD4tPwMKb .container {
    flex-wrap: nowrap;
  }
}
.cid-tsD4tPwMKb .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsD4tPwMKb .dropdown-menu,
.cid-tsD4tPwMKb .navbar.opened {
  background: #000000 !important;
}
.cid-tsD4tPwMKb .nav-item:focus,
.cid-tsD4tPwMKb .nav-link:focus {
  outline: none;
}
.cid-tsD4tPwMKb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsD4tPwMKb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsD4tPwMKb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsD4tPwMKb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsD4tPwMKb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsD4tPwMKb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsD4tPwMKb .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: #000000;
}
.cid-tsD4tPwMKb .navbar.opened {
  transition: all 0.3s;
}
.cid-tsD4tPwMKb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsD4tPwMKb .navbar .navbar-logo img {
  width: auto;
}
.cid-tsD4tPwMKb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsD4tPwMKb .navbar.collapsed {
  justify-content: center;
}
.cid-tsD4tPwMKb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsD4tPwMKb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsD4tPwMKb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tsD4tPwMKb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsD4tPwMKb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsD4tPwMKb .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-tsD4tPwMKb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsD4tPwMKb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsD4tPwMKb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsD4tPwMKb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsD4tPwMKb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsD4tPwMKb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsD4tPwMKb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsD4tPwMKb .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-tsD4tPwMKb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsD4tPwMKb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsD4tPwMKb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsD4tPwMKb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsD4tPwMKb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsD4tPwMKb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsD4tPwMKb .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsD4tPwMKb .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsD4tPwMKb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsD4tPwMKb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsD4tPwMKb .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-tsD4tPwMKb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsD4tPwMKb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsD4tPwMKb .dropdown-item.active,
.cid-tsD4tPwMKb .dropdown-item:active {
  background-color: transparent;
}
.cid-tsD4tPwMKb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsD4tPwMKb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsD4tPwMKb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsD4tPwMKb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tsD4tPwMKb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsD4tPwMKb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsD4tPwMKb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsD4tPwMKb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsD4tPwMKb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsD4tPwMKb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsD4tPwMKb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsD4tPwMKb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsD4tPwMKb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsD4tPwMKb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsD4tPwMKb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsD4tPwMKb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsD4tPwMKb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsD4tPwMKb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsD4tPwMKb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsD4tPwMKb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsD4tPwMKb .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-tsD4tPwMKb .navbar {
    height: 70px;
  }
  .cid-tsD4tPwMKb .navbar.opened {
    height: auto;
  }
  .cid-tsD4tPwMKb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsD4tQR1sr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/banner-2000x641.jpg");
}
.cid-tsD4tQR1sr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsD4tQR1sr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsD4tRLH01 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tsD4tRLH01 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsD4tRLH01 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsD4tRLH01 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tsD4tRLH01 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsD4tRLH01 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tsD4tRLH01 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tsD4tRLH01 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsD4tRLH01 .mbr-text,
.cid-tsD4tRLH01 .mbr-section-btn {
  color: #8b8787;
}
.cid-tsD6WyH2Qj {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tsD6WyH2Qj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsD6WyH2Qj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tsD6WyH2Qj .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsD6WyH2Qj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tsD6WyH2Qj .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tsD6WyH2Qj .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsD6WyH2Qj .mbr-text,
.cid-tsD6WyH2Qj .mbr-section-btn {
  color: #8b8787;
}
.cid-tsD4tSt4LH {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tsD4tSt4LH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsD4tSt4LH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsD4tSt4LH .row {
  justify-content: center;
}
.cid-tsD4tSt4LH .row {
  padding: 0 27px;
}
@media (max-width: 992px) {
  .cid-tsD4tSt4LH .row {
    padding: 0 19px;
  }
}
.cid-tsD4tSt4LH .item {
  padding: 0 5px !important;
}
.cid-tsD4tSt4LH .item-wrap {
  z-index: 1;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tsD4tSt4LH .item-wrap {
    padding: 0 5px;
  }
}
.cid-tsD4tSt4LH .border-wrap {
  width: 100%;
  height: 2px;
  background-color: #181818;
  margin-bottom: 46px;
}
.cid-tsD4tSt4LH .mbr-section-title {
  margin-bottom: 64px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tsD4tSt4LH .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tsD4tSt4LH .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 64px;
}
.cid-tsD4tSt4LH .link-wrapper:hover .mbr-link {
  color: #d9d9d9;
}
@media (max-width: 992px) {
  .cid-tsD4tSt4LH .link-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tsD4tSt4LH .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tsD4tSt4LH .item-wrapper {
    margin-bottom: 12px;
  }
}
.cid-tsD4tSt4LH .item-wrapper .item-link img {
  height: 212px;
  object-fit: cover;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .cid-tsD4tSt4LH .item-wrapper .item-link img {
    height: 150px;
  }
}
.cid-tsD4tSt4LH .item-wrapper .item-link .icon-container {
  margin-bottom: 16px;
}
.cid-tsD4tSt4LH .item-wrapper .item-link .icon-container .icon-wrapper {
  display: inline-flex;
}
.cid-tsD4tSt4LH .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like {
  margin: 0 10px 0 0;
  display: flex;
  line-height: .5;
}
.cid-tsD4tSt4LH .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tsD4tSt4LH .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment {
  margin: 0;
  display: flex;
  line-height: .5;
}
.cid-tsD4tSt4LH .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tsD4tSt4LH .item-wrapper .item-link .mbr-text {
  margin-bottom: 0;
}
.cid-tsD4tSt4LH .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-tsD4tSt4LH .mbr-like {
  color: #181818;
}
.cid-tsD4tSt4LH .mbr-comment,
.cid-tsD4tSt4LH .mbr-iconfont {
  color: #181818;
}
.cid-tsD4tSt4LH .mbr-text {
  color: #181818;
}
.cid-tsD4tTBF1r {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tsD4tTBF1r .top-part {
  margin-bottom: 70px;
}
.cid-tsD4tTBF1r .top-part .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-tsD4tTBF1r .top-part .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tsD4tTBF1r .top-part .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-tsD4tTBF1r .top-part .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tsD4tTBF1r .nav-tabs .nav-item.open .nav-link:focus,
.cid-tsD4tTBF1r .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tsD4tTBF1r .nav-tabs {
  flex-wrap: wrap;
  justify-content: space-around;
}
.cid-tsD4tTBF1r .nav-tabs .nav-item {
  padding: 0rem;
}
.cid-tsD4tTBF1r .nav-tabs .nav-link.display-7 {
  font-size: 16px !important;
  line-height: 1.5;
}
.cid-tsD4tTBF1r .nav-link {
  padding: 0.4rem 0.8rem;
}
.cid-tsD4tTBF1r .nav-tabs .nav-link {
  color: #6d7a8c;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  border-bottom: 2px solid transparent;
}
.cid-tsD4tTBF1r .nav-tabs .nav-link:hover {
  cursor: pointer;
}
.cid-tsD4tTBF1r .nav-tabs .nav-link.active {
  border-bottom: 2px solid #000000;
  color: #28303f;
}
.cid-tsD4tTBF1r .nav-tabs .nav-link.active span {
  color: #000000;
}
.cid-tsD4tTBF1r .nav-tabs .nav-link span {
  margin-right: 14px;
  font-size: 1.525rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .cid-tsD4tTBF1r .nav-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tsD4tTBF1r .mbr-text,
  .cid-tsD4tTBF1r .nav-link {
    text-align: left;
  }
  .cid-tsD4tTBF1r .nav-link {
    padding: 14px 20px;
    padding-left: 0;
  }
  .cid-tsD4tTBF1r .mbr-section-title,
  .cid-tsD4tTBF1r .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-tsD4tTBF1r .tab-content {
  margin-top: 44px;
}
.cid-tsD4tTBF1r .tab-content .tab-pane img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(79, 110, 173, 0.1);
}
.cid-tsD4tTBF1r .tab-content .tab-pane .mbr-section-title {
  text-align: left;
  color: #130947;
  font-weight: 700;
}
.cid-tsD4tTBF1r .tab-content .tab-pane .mbr-section-title.display-5 {
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.5px;
}
.cid-tsD4tTBF1r .tab-content .tab-pane .mbr-text {
  color: #6d7a8c;
}
.cid-tsD4tTBF1r .tab-content .tab-pane .mbr-text.display-7 {
  line-height: 1.5;
  font-size: 1em;
}
.cid-tsD4tTBF1r .tab-content .tab-pane .mbr-list {
  margin-top: 35px;
}
.cid-tsD4tTBF1r .tab-content .tab-pane .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-tsD4tTBF1r .tab-content .tab-pane .mbr-list .list li {
  margin-bottom: 1rem;
}
.cid-tsD4tTBF1r .tab-content .tab-pane .mbr-list .list li:before {
  font-weight: 900;
  color: #000000;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-tsD4tTBF1r .tab-content .tab-pane .mbr-list.display-4 {
  font-size: 1em;
  color: #6d7a8c;
}
.cid-tsD4tTBF1r .top-part .mbr-section-subtitle {
  color: #232323;
}
.cid-tsD4tTBF1r .top-part .mbr-section-title {
  color: #8b8787;
}
.cid-tsD4tTBF1r .tab-content .tab-pane .mbr-text,
.cid-tsD4tTBF1r .mbr-list {
  color: #8b8787;
}
.cid-tsD4tTBF1r .tab-content .tab-pane .mbr-section-title,
.cid-tsD4tTBF1r .mbr-list {
  color: #232323;
}
.cid-tsD4tUGWUN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
.cid-tsDlfoEntU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tsDlfoEntU nav.navbar {
  position: fixed;
}
.cid-tsDlfoEntU .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-tsDlfoEntU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tsDlfoEntU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tsDlfoEntU .dropdown-item:hover,
.cid-tsDlfoEntU .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-tsDlfoEntU .dropdown-item:hover span {
  color: white;
}
.cid-tsDlfoEntU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tsDlfoEntU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tsDlfoEntU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tsDlfoEntU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tsDlfoEntU .nav-link {
  position: relative;
}
.cid-tsDlfoEntU .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tsDlfoEntU .container {
    flex-wrap: nowrap;
  }
}
.cid-tsDlfoEntU .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tsDlfoEntU .dropdown-menu,
.cid-tsDlfoEntU .navbar.opened {
  background: #000000 !important;
}
.cid-tsDlfoEntU .nav-item:focus,
.cid-tsDlfoEntU .nav-link:focus {
  outline: none;
}
.cid-tsDlfoEntU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tsDlfoEntU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsDlfoEntU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tsDlfoEntU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tsDlfoEntU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tsDlfoEntU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tsDlfoEntU .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: #000000;
}
.cid-tsDlfoEntU .navbar.opened {
  transition: all 0.3s;
}
.cid-tsDlfoEntU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tsDlfoEntU .navbar .navbar-logo img {
  width: auto;
}
.cid-tsDlfoEntU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tsDlfoEntU .navbar.collapsed {
  justify-content: center;
}
.cid-tsDlfoEntU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tsDlfoEntU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tsDlfoEntU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-tsDlfoEntU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tsDlfoEntU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tsDlfoEntU .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-tsDlfoEntU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tsDlfoEntU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tsDlfoEntU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tsDlfoEntU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tsDlfoEntU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tsDlfoEntU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tsDlfoEntU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tsDlfoEntU .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-tsDlfoEntU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tsDlfoEntU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tsDlfoEntU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tsDlfoEntU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tsDlfoEntU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tsDlfoEntU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tsDlfoEntU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tsDlfoEntU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tsDlfoEntU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tsDlfoEntU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tsDlfoEntU .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-tsDlfoEntU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tsDlfoEntU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tsDlfoEntU .dropdown-item.active,
.cid-tsDlfoEntU .dropdown-item:active {
  background-color: transparent;
}
.cid-tsDlfoEntU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tsDlfoEntU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tsDlfoEntU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tsDlfoEntU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tsDlfoEntU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tsDlfoEntU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsDlfoEntU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tsDlfoEntU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tsDlfoEntU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tsDlfoEntU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsDlfoEntU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tsDlfoEntU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsDlfoEntU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tsDlfoEntU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tsDlfoEntU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsDlfoEntU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tsDlfoEntU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tsDlfoEntU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tsDlfoEntU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tsDlfoEntU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsDlfoEntU .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-tsDlfoEntU .navbar {
    height: 70px;
  }
  .cid-tsDlfoEntU .navbar.opened {
    height: auto;
  }
  .cid-tsDlfoEntU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsDlfpP23T {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/banner-1-1952x280.jpg");
}
.cid-tsDlfpP23T .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsDlfpP23T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsDlfqSodx {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tsDlfqSodx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsDlfqSodx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsDlfqSodx .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tsDlfqSodx .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsDlfqSodx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tsDlfqSodx .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tsDlfqSodx .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsDlfqSodx .mbr-text,
.cid-tsDlfqSodx .mbr-section-btn {
  color: #8b8787;
}
.cid-tsDlfrH8le {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tsDlfrH8le .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsDlfrH8le .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsDlfrH8le .row {
  justify-content: center;
}
.cid-tsDlfrH8le .row {
  padding: 0 27px;
}
@media (max-width: 992px) {
  .cid-tsDlfrH8le .row {
    padding: 0 19px;
  }
}
.cid-tsDlfrH8le .item {
  padding: 0 5px !important;
}
.cid-tsDlfrH8le .item-wrap {
  z-index: 1;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tsDlfrH8le .item-wrap {
    padding: 0 5px;
  }
}
.cid-tsDlfrH8le .border-wrap {
  width: 100%;
  height: 2px;
  background-color: #181818;
  margin-bottom: 46px;
}
.cid-tsDlfrH8le .mbr-section-title {
  margin-bottom: 64px;
  color: #181818;
}
@media (max-width: 992px) {
  .cid-tsDlfrH8le .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tsDlfrH8le .link-wrapper {
  width: 100%;
  display: block;
  margin-bottom: 64px;
}
.cid-tsDlfrH8le .link-wrapper:hover .mbr-link {
  color: #d9d9d9;
}
@media (max-width: 992px) {
  .cid-tsDlfrH8le .link-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tsDlfrH8le .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tsDlfrH8le .item-wrapper {
    margin-bottom: 12px;
  }
}
.cid-tsDlfrH8le .item-wrapper .item-link img {
  height: 212px;
  object-fit: cover;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .cid-tsDlfrH8le .item-wrapper .item-link img {
    height: 150px;
  }
}
.cid-tsDlfrH8le .item-wrapper .item-link .icon-container {
  margin-bottom: 16px;
}
.cid-tsDlfrH8le .item-wrapper .item-link .icon-container .icon-wrapper {
  display: inline-flex;
}
.cid-tsDlfrH8le .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like {
  margin: 0 10px 0 0;
  display: flex;
  line-height: .5;
}
.cid-tsDlfrH8le .item-wrapper .item-link .icon-container .icon-wrapper .mbr-like span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tsDlfrH8le .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment {
  margin: 0;
  display: flex;
  line-height: .5;
}
.cid-tsDlfrH8le .item-wrapper .item-link .icon-container .icon-wrapper .mbr-comment span {
  font-size: 12px;
  display: block;
  margin-right: 5px;
}
.cid-tsDlfrH8le .item-wrapper .item-link .mbr-text {
  margin-bottom: 0;
}
.cid-tsDlfrH8le .mbr-link {
  color: #181818;
  text-align: right;
}
.cid-tsDlfrH8le .mbr-like {
  color: #181818;
}
.cid-tsDlfrH8le .mbr-comment,
.cid-tsDlfrH8le .mbr-iconfont {
  color: #181818;
}
.cid-tsDlfrH8le .mbr-text {
  color: #181818;
}
.cid-tsDlfsOMRC {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tsDlfsOMRC .top-part {
  margin-bottom: 70px;
}
.cid-tsDlfsOMRC .top-part .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-tsDlfsOMRC .top-part .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tsDlfsOMRC .top-part .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-tsDlfsOMRC .top-part .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tsDlfsOMRC .nav-tabs .nav-item.open .nav-link:focus,
.cid-tsDlfsOMRC .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tsDlfsOMRC .nav-tabs {
  flex-wrap: wrap;
  justify-content: space-around;
}
.cid-tsDlfsOMRC .nav-tabs .nav-item {
  padding: 0rem;
}
.cid-tsDlfsOMRC .nav-tabs .nav-link.display-7 {
  font-size: 16px !important;
  line-height: 1.5;
}
.cid-tsDlfsOMRC .nav-link {
  padding: 0.4rem 0.8rem;
}
.cid-tsDlfsOMRC .nav-tabs .nav-link {
  color: #6d7a8c;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  border-bottom: 2px solid transparent;
}
.cid-tsDlfsOMRC .nav-tabs .nav-link:hover {
  cursor: pointer;
}
.cid-tsDlfsOMRC .nav-tabs .nav-link.active {
  border-bottom: 2px solid #000000;
  color: #28303f;
}
.cid-tsDlfsOMRC .nav-tabs .nav-link.active span {
  color: #000000;
}
.cid-tsDlfsOMRC .nav-tabs .nav-link span {
  margin-right: 14px;
  font-size: 1.525rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .cid-tsDlfsOMRC .nav-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tsDlfsOMRC .mbr-text,
  .cid-tsDlfsOMRC .nav-link {
    text-align: left;
  }
  .cid-tsDlfsOMRC .nav-link {
    padding: 14px 20px;
    padding-left: 0;
  }
  .cid-tsDlfsOMRC .mbr-section-title,
  .cid-tsDlfsOMRC .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-tsDlfsOMRC .tab-content {
  margin-top: 44px;
}
.cid-tsDlfsOMRC .tab-content .tab-pane img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(79, 110, 173, 0.1);
}
.cid-tsDlfsOMRC .tab-content .tab-pane .mbr-section-title {
  text-align: left;
  color: #130947;
  font-weight: 700;
}
.cid-tsDlfsOMRC .tab-content .tab-pane .mbr-section-title.display-5 {
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.5px;
}
.cid-tsDlfsOMRC .tab-content .tab-pane .mbr-text {
  color: #6d7a8c;
}
.cid-tsDlfsOMRC .tab-content .tab-pane .mbr-text.display-7 {
  line-height: 1.5;
  font-size: 1em;
}
.cid-tsDlfsOMRC .tab-content .tab-pane .mbr-list {
  margin-top: 35px;
}
.cid-tsDlfsOMRC .tab-content .tab-pane .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-tsDlfsOMRC .tab-content .tab-pane .mbr-list .list li {
  margin-bottom: 1rem;
}
.cid-tsDlfsOMRC .tab-content .tab-pane .mbr-list .list li:before {
  font-weight: 900;
  color: #000000;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-tsDlfsOMRC .tab-content .tab-pane .mbr-list.display-4 {
  font-size: 1em;
  color: #6d7a8c;
}
.cid-tsDlfsOMRC .top-part .mbr-section-subtitle {
  color: #232323;
}
.cid-tsDlfsOMRC .top-part .mbr-section-title {
  color: #8b8787;
}
.cid-tsDlfsOMRC .tab-content .tab-pane .mbr-text,
.cid-tsDlfsOMRC .mbr-list {
  color: #8b8787;
}
.cid-tsDlfsOMRC .tab-content .tab-pane .mbr-section-title,
.cid-tsDlfsOMRC .mbr-list {
  color: #232323;
}
.cid-tsDlfu8gKr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  overflow: hidden;
}
