body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.04rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ea4954 !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #f0f3bf !important;
}
.bg-warning {
  background-color: #c3dfe0 !important;
}
.bg-danger {
  background-color: #ea4954 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ea4954 !important;
  border-color: #ea4954 !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: #c61723 !important;
  border-color: #c61723 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #c61723 !important;
  border-color: #c61723 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #6b717e !important;
  border-color: #6b717e !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: #43474f !important;
  border-color: #43474f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #43474f !important;
  border-color: #43474f !important;
}
.btn-info,
.btn-info:active {
  background-color: #f0f3bf !important;
  border-color: #f0f3bf !important;
  color: #90971c !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: #4a4e0f !important;
  background-color: #dfe576 !important;
  border-color: #dfe576 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #90971c !important;
  background-color: #dfe576 !important;
  border-color: #dfe576 !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: #c3dfe0 !important;
  border-color: #c3dfe0 !important;
  color: #386a6c !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: #8ac1c2 !important;
  border-color: #8ac1c2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #386a6c !important;
  background-color: #8ac1c2 !important;
  border-color: #8ac1c2 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ea4954 !important;
  border-color: #ea4954 !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: #c61723 !important;
  border-color: #c61723 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #c61723 !important;
  border-color: #c61723 !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: #ea4954;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #c61723 !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: #ea4954 !important;
  border-color: #ea4954 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6b717e;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #43474f !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: #6b717e !important;
  border-color: #6b717e !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f0f3bf;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #dfe576 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #90971c !important;
  background-color: #f0f3bf !important;
  border-color: #f0f3bf !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: #c3dfe0;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #8ac1c2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #386a6c !important;
  background-color: #c3dfe0 !important;
  border-color: #c3dfe0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ea4954;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #c61723 !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: #ea4954 !important;
  border-color: #ea4954 !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: #ea4954 !important;
}
.text-secondary {
  color: #6b717e !important;
}
.text-success {
  color: #ffffff !important;
}
.text-info {
  color: #f0f3bf !important;
}
.text-warning {
  color: #c3dfe0 !important;
}
.text-danger {
  color: #ea4954 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #b81520 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #3c4047 !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: #dce369 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #80bbbd !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #b81520 !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: #ea4954;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #f0f3bf;
}
.alert-warning {
  background-color: #c3dfe0;
}
.alert-danger {
  background-color: #ea4954;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ea4954;
  border-color: #ea4954;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ea4954;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ea4954 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #ea4954;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ea4954;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ea4954;
}
.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: #ea4954;
  border-bottom-color: #ea4954;
}
.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: #ea4954 !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: #6b717e !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='%23ea4954' %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-tVXmqxbdLY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tVXmqxbdLY .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tVXmqxbdLY .iconfont-wrapper {
  overflow: hidden;
  color: #6b717e !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea4954;
  z-index: -1;
}
.cid-tVXmqxbdLY nav.navbar {
  position: fixed;
}
.cid-tVXmqxbdLY .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-item {
    border: 0;
  }
}
.cid-tVXmqxbdLY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tVXmqxbdLY .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tVXmqxbdLY .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tVXmqxbdLY .title-wrap:hover span {
  color: white;
}
.cid-tVXmqxbdLY .title-wrap:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea4954;
}
.cid-tVXmqxbdLY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVXmqxbdLY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVXmqxbdLY .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVXmqxbdLY .nav-link {
  position: relative;
}
.cid-tVXmqxbdLY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .container {
    flex-wrap: nowrap;
  }
}
.cid-tVXmqxbdLY .dropdown-menu,
.cid-tVXmqxbdLY .navbar.opened {
  background: #ffffff !important;
}
.cid-tVXmqxbdLY .nav-item:focus,
.cid-tVXmqxbdLY .nav-link:focus {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVXmqxbdLY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVXmqxbdLY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.opened {
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVXmqxbdLY .navbar .navbar-logo img {
  width: auto;
}
.cid-tVXmqxbdLY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVXmqxbdLY .navbar.collapsed {
  justify-content: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVXmqxbdLY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVXmqxbdLY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVXmqxbdLY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVXmqxbdLY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVXmqxbdLY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVXmqxbdLY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVXmqxbdLY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tVXmqxbdLY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVXmqxbdLY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown-item.active,
.cid-tVXmqxbdLY .dropdown-item:active {
  background-color: transparent;
}
.cid-tVXmqxbdLY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVXmqxbdLY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVXmqxbdLY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVXmqxbdLY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVXmqxbdLY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea4954;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVXmqxbdLY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tVXmqxbdLY .navbar {
    height: 70px;
  }
  .cid-tVXmqxbdLY .navbar.opened {
    height: auto;
  }
  .cid-tVXmqxbdLY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVXmqxbdLY .navbar-caption-wrap,
.cid-tVXmqxbdLY .title-wrap {
  color: #272727;
}
.cid-tTYJrFwclD {
  background-image: url("../../../assets/images/banner-final-final-1920x1080.jpg");
}
.cid-tTYJrFwclD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tTYJrFwclD .mbr-section-title {
  color: #ffffff;
}
.cid-tTYJrFwclD .mbr-text {
  color: #ffffff;
  font-weight: 500;
}
.cid-tTYJrFwclD .content-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  margin-left: 0.6rem;
}
.cid-tTYJrFwclD .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #ea4954;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tTYJrFwclD .mbr-section-btn {
  display: flex;
}
.cid-tTYJrFwclD .mbr-section-btn .btn {
  font-weight: 700 !important;
}
.cid-tTYJrFwclD .video-wrap {
  cursor: pointer;
  margin-left: 30px;
}
.cid-tTYJrFwclD .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tTYJrFwclD .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s;
  color: #279e64;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cid-tTYJrFwclD .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-tTYJrFwclD .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tTYJrFwclD .video-wrap .icon-wrap .line-video-1,
.cid-tTYJrFwclD .video-wrap .icon-wrap .line-video-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: squares 2.4s linear 0s infinite;
  -webkit-animation: squares 2.4s linear 0s infinite;
  -ms-animation: squares 2.4s linear 0s infinite;
  -o-animation: squares 2.4s linear 0s infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 0;
}
.cid-tTYJrFwclD .video-wrap .icon-wrap .line-video-2 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.cid-tTYJrFwclD .video-wrap .mbr-text {
  color: #ffffff;
  font-weight: 700;
}
.cid-tTYJrFwclD .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tTYJrFwclD .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tTYJrFwclD .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tTYJrFwclD a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tTYJrFwclD a.close:hover {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tTYJrFwclD .separator,
  .cid-tTYJrFwclD .sep-holder,
  .cid-tTYJrFwclD .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tTYJrFwclD .buttons-wrap {
    flex-direction: column;
  }
  .cid-tTYJrFwclD .buttons-wrap .mbr-section-btn {
    justify-content: center;
  }
  .cid-tTYJrFwclD .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 25px;
    justify-content: center;
  }
}
@-webkit-keyframes squares {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
@keyframes squares {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
.cid-tTYJrFwclD .skew {
  background-image: url("../../../assets/images/bg-skew.png");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin-top: -140px;
  margin-bottom: 0;
  z-index: 8;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
}
.cid-tTYJrFwclD .skew .inner {
  min-height: 150px;
  align-items: center;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.cid-tTYJrFwclD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTYJrFwclD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTYZFXxNLD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tTYZFXxNLD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTYZFXxNLD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tTYZFXxNLD .container {
    padding: 0 16px;
  }
}
.cid-tTYZFXxNLD .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tTYZFXxNLD .title-wrapper {
    margin-bottom: 40px;
    height: auto;
  }
}
.cid-tTYZFXxNLD .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tTYZFXxNLD .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tTYZFXxNLD .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tTYZFXxNLD .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-tTYZFXxNLD .image-wrapper {
  position: relative;
  margin-left: 70px;
  min-height: 620px;
}
@media (max-width: 768px) {
  .cid-tTYZFXxNLD .image-wrapper {
    min-height: 300px;
  }
}
.cid-tTYZFXxNLD .image-wrapper .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vh;
  height: 100%;
  border: 30px solid #e2e2e2;
  border-radius: 40px;
}
@media (max-width: 768px) {
  .cid-tTYZFXxNLD .image-wrapper .image-wrap {
    border: 15px solid #e2e2e2;
    border-radius: 20px;
  }
}
.cid-tTYZFXxNLD .image-wrapper .image-wrap .main-image {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}
.cid-tTYZFXxNLD .image-wrapper .sec-image {
  position: absolute;
  bottom: 6rem;
  left: -4rem;
  height: 180px;
  width: 220px;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .cid-tTYZFXxNLD .image-wrapper .sec-image {
    display: none;
  }
}
.cid-tTYZFXxNLD .mbr-section-title {
  color: #08323C;
}
.cid-tTYZFXxNLD .mbr-text {
  color: #6b717e;
}
.cid-tTYZFXxNLD .mbr-section-title,
.cid-tTYZFXxNLD .mbr-section-btn {
  color: #fe525b;
}
.cid-tUlkz8T9HI {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-tUlkz8T9HI .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tUlkz8T9HI .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tUlkz8T9HI .card-wrapper {
    flex-direction: column;
    margin: auto;
    text-align: center;
    align-items: center;
    margin-bottom: 2rem;
  }
}
.cid-tUlkz8T9HI .card-box {
  margin: auto;
}
.cid-tUlkz8T9HI img,
.cid-tUlkz8T9HI .item-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .cid-tUlkz8T9HI img,
  .cid-tUlkz8T9HI .item-img {
    margin-right: 0rem;
    margin-bottom: 1rem;
  }
}
.cid-tUlkz8T9HI .mbr-section-title {
  border-top: 1px solid #a6a6a6;
  padding-top: 1rem;
  color: #6b717e;
}
.cid-tUlkz8T9HI .card-text {
  color: #a6a6a6;
}
.cid-tUlkz8T9HI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUlkz8T9HI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUlkz8T9HI .card-title {
  color: #6b717e;
}
.cid-tUlNivQlj8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tUlNivQlj8 .item-img {
  position: relative;
  overflow: hidden;
}
.cid-tUlNivQlj8 .item-img:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: black;
  opacity: 0.2;
  z-index: 1;
  transition: all 0.3s;
  pointer-events: none;
}
.cid-tUlNivQlj8 .item-img:hover img {
  transform: scale(1.15);
}
.cid-tUlNivQlj8 .item-img:hover:before {
  opacity: 0.5;
}
.cid-tUlNivQlj8 h5 {
  margin-bottom: 1rem;
}
.cid-tUlNivQlj8 .item-content {
  position: absolute;
  top: 55%;
  right: 0;
  z-index: 2;
  width: 100%;
  transform: translateY(-50%);
  margin-top: 2rem;
  padding: 0 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  height: 50%;
}
@media (max-width: 767px) {
  .cid-tUlNivQlj8 .item-content {
    padding: 0 2rem 1.5rem;
    margin-top: 1rem;
  }
}
.cid-tUlNivQlj8 img,
.cid-tUlNivQlj8 .item-img {
  width: 100%;
  transition: all 0.3s;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-tUlNivQlj8 .item:focus,
.cid-tUlNivQlj8 span:focus {
  outline: none;
}
.cid-tUlNivQlj8 .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tUlNivQlj8 .item {
    margin-bottom: 1rem;
  }
}
.cid-tUlNivQlj8 .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tUlNivQlj8 .mbr-section-title {
  color: #4e423d;
}
.cid-tUlNivQlj8 .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-tUlNivQlj8 .item-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-tUlNivQlj8 .mbr-text,
.cid-tUlNivQlj8 .item .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tUlNivQlj8 .content-head {
  max-width: 800px;
}
.cid-tTZVBsPVeo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tTZVBsPVeo .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-tTZVBsPVeo .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-tTZVBsPVeo .container {
    padding: 0 25px;
  }
}
.cid-tTZVBsPVeo .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tTZVBsPVeo .item:focus,
.cid-tTZVBsPVeo span:focus {
  outline: none;
}
.cid-tTZVBsPVeo .item-wrapper {
  position: relative;
}
.cid-tTZVBsPVeo .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 767px) {
  .cid-tTZVBsPVeo .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-tTZVBsPVeo .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-tTZVBsPVeo .embla__slide .slide-content:hover .item-wrapper .item-img img,
.cid-tTZVBsPVeo .embla__slide .slide-content:focus .item-wrapper .item-img img {
  transform: scale(1.05) translateY(-10px);
}
.cid-tTZVBsPVeo .embla__slide .slide-content:hover .item-wrapper .item-img .item-content,
.cid-tTZVBsPVeo .embla__slide .slide-content:focus .item-wrapper .item-img .item-content {
  transform: translateY(0);
}
.cid-tTZVBsPVeo .embla__slide .slide-content .item-wrapper .item-img {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 510px;
  position: relative;
}
.cid-tTZVBsPVeo .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translateY(0);
  transition: all 0.3s ease-in-out;
}
.cid-tTZVBsPVeo .embla__slide .slide-content .item-wrapper .item-img .item-content {
  width: 100%;
  background-color: #c3dfe0;
  position: relative;
  z-index: 1;
  transform: translateY(67px);
  transition: all 0.3s ease-in-out;
}
.cid-tTZVBsPVeo .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap {
  padding: 30px;
}
.cid-tTZVBsPVeo .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-subtitle {
  margin-bottom: 0;
}
.cid-tTZVBsPVeo .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-title {
  margin-bottom: 16px;
}
.cid-tTZVBsPVeo .embla__slide .slide-content .item-wrapper .item-img .item-content .content-wrap .item-price {
  margin-bottom: 0;
}
.cid-tTZVBsPVeo .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.cid-tTZVBsPVeo .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn {
  width: 100%;
  max-width: 100% !important;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 20px;
}
.cid-tTZVBsPVeo .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:hover,
.cid-tTZVBsPVeo .embla__slide .slide-content .item-wrapper .item-img .item-content .mbr-section-btn .btn:focus {
  box-shadow: none !important;
  color: #ffffff !important;
}
.cid-tTZVBsPVeo .embla__button--next,
.cid-tTZVBsPVeo .embla__button--prev {
  display: flex;
}
.cid-tTZVBsPVeo .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #fe525b !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-tTZVBsPVeo .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tTZVBsPVeo .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-tTZVBsPVeo .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-tTZVBsPVeo .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #fe525b !important;
  color: #f0f0f0 !important;
}
.cid-tTZVBsPVeo .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-tTZVBsPVeo .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-tTZVBsPVeo .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #fe525b !important;
  color: #f0f0f0 !important;
}
.cid-tTZVBsPVeo .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-tTZVBsPVeo .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-tTZVBsPVeo .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tTZVBsPVeo .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tTZVBsPVeo .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tTZVBsPVeo .mbr-section-title {
  color: #6b717e;
}
.cid-tTZVBsPVeo .item-subtitle {
  color: #000000;
}
.cid-tTZVBsPVeo .item-title {
  color: #6b717e;
}
.cid-tTZVBsPVeo .item-price {
  color: #000000;
}
.cid-tTZUskW8cS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tTZUskW8cS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTZUskW8cS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTZUskW8cS .item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.cid-tTZUskW8cS .item .icon-wrap {
  text-align: center;
}
.cid-tTZUskW8cS .item span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
.cid-tTZUskW8cS .item::before {
  content: "\e96b";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: -15px;
  top: 12%;
  color: #fe525b;
}
.cid-tTZUskW8cS .item.first:before {
  display: none;
}
.cid-tTZUskW8cS .item.five:before {
  display: none;
}
.cid-tTZUskW8cS .icon-box {
  background: #fe525b;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
}
.cid-tTZUskW8cS .text-box {
  margin-top: 1rem;
  text-align: center;
}
.cid-tTZUskW8cS .mbr-iconfont {
  color: #ea4954 !important;
  position: absolute;
  top: 50%;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tTZUskW8cS .item:before {
    display: none;
  }
  .cid-tTZUskW8cS .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tTZUskW8cS .card-title,
.cid-tTZUskW8cS .card-box {
  color: #6b717e;
}
.cid-tTZTmvmuBk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tTZTmvmuBk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTZTmvmuBk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTZTmvmuBk .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #ea4954;
  margin-left: 1rem;
}
.cid-tTZTmvmuBk .panel-group {
  border: none;
}
.cid-tTZTmvmuBk .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tTZTmvmuBk .panel-body,
.cid-tTZTmvmuBk .card-header {
  padding: 1rem 0;
}
.cid-tTZTmvmuBk .panel-title-edit {
  color: #6b717e;
}
.cid-tTZTmvmuBk .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tTZTmvmuBk H3 {
  color: #6b717e;
}
.cid-tTZTmvmuBk .panel-text {
  color: #6b717e;
}
.cid-tTZUTrY3v0 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tTZUTrY3v0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTZUTrY3v0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTZUTrY3v0 .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-tTZUTrY3v0 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tTZUTrY3v0 .mbr-section-title {
  color: #fe525b;
}
.cid-tTZUTrY3v0 .name {
  color: #fe525b;
}
.cid-tTZUTrY3v0 .mbr-text {
  color: #6b717e;
}
.cid-tTZUTrY3v0 .position {
  color: #6b717e;
}
.cid-ulHAcvQC53 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-ulHAcvQC53 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulHAcvQC53 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulHAcvQC53 .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-ulHAcvQC53 .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-ulHAcvQC53 .mbr-section-title {
  color: #fe525b;
}
.cid-ulHAcvQC53 .name {
  color: #fe525b;
}
.cid-ulHAcvQC53 .mbr-text {
  color: #6b717e;
}
.cid-ulHAcvQC53 .position {
  color: #6b717e;
}
.cid-tUt3yEm7qi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c3dfe0;
}
@media (min-width: 991px) {
  .cid-tUt3yEm7qi .container-fluid {
    padding-left: 0;
  }
}
.cid-tUt3yEm7qi .mbr-text,
.cid-tUt3yEm7qi .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tUt3yEm7qi .mbr-text,
  .cid-tUt3yEm7qi .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tUt3yEm7qi .mbr-text,
  .cid-tUt3yEm7qi .mbr-section-title {
    text-align: center;
  }
}
.cid-tUt3yEm7qi a.btn {
  height: 100%;
  margin: 0;
}
.cid-tUt3yEm7qi .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-tUt3yEm7qi .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tUt3yEm7qi .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tUt3yEm7qi .justify-content-center {
  align-items: center;
}
.cid-tUt3yEm7qi .mbr-section-title {
  color: #6b717e;
}
.cid-tUtg1lZVIT {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #6b717e;
}
.cid-tUtg1lZVIT .container-fluid {
  padding: 0;
}
.cid-tUtg1lZVIT .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tUtg1lZVIT .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tUtg1lZVIT .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all .3s linear;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tUtg1lZVIT .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tUtg1lZVIT .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tUtg1lZVIT .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #f0f3bf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUtg1lZVIT .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tUtg1lZVIT .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tUtg1lZVIT .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tUtg1lZVIT .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tUtg1lZVIT .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tUtg1lZVIT .copyright {
  margin: 0 60px;
  border-top: 1px solid #f0f3bf;
  padding: 26px 0;
}
.cid-tUtg1lZVIT .copyright .mbr-text {
  margin: 0;
}
.cid-tUtg1lZVIT .mbr-section-title,
.cid-tUtg1lZVIT .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tUtg1lZVIT .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tVXmqxbdLY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tVXmqxbdLY .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tVXmqxbdLY .iconfont-wrapper {
  overflow: hidden;
  color: #6b717e !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea4954;
  z-index: -1;
}
.cid-tVXmqxbdLY nav.navbar {
  position: fixed;
}
.cid-tVXmqxbdLY .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-item {
    border: 0;
  }
}
.cid-tVXmqxbdLY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tVXmqxbdLY .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tVXmqxbdLY .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tVXmqxbdLY .title-wrap:hover span {
  color: white;
}
.cid-tVXmqxbdLY .title-wrap:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea4954;
}
.cid-tVXmqxbdLY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVXmqxbdLY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVXmqxbdLY .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVXmqxbdLY .nav-link {
  position: relative;
}
.cid-tVXmqxbdLY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .container {
    flex-wrap: nowrap;
  }
}
.cid-tVXmqxbdLY .dropdown-menu,
.cid-tVXmqxbdLY .navbar.opened {
  background: #ffffff !important;
}
.cid-tVXmqxbdLY .nav-item:focus,
.cid-tVXmqxbdLY .nav-link:focus {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVXmqxbdLY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVXmqxbdLY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.opened {
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVXmqxbdLY .navbar .navbar-logo img {
  width: auto;
}
.cid-tVXmqxbdLY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVXmqxbdLY .navbar.collapsed {
  justify-content: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVXmqxbdLY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVXmqxbdLY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVXmqxbdLY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVXmqxbdLY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVXmqxbdLY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVXmqxbdLY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVXmqxbdLY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tVXmqxbdLY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVXmqxbdLY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown-item.active,
.cid-tVXmqxbdLY .dropdown-item:active {
  background-color: transparent;
}
.cid-tVXmqxbdLY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVXmqxbdLY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVXmqxbdLY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVXmqxbdLY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVXmqxbdLY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea4954;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVXmqxbdLY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tVXmqxbdLY .navbar {
    height: 70px;
  }
  .cid-tVXmqxbdLY .navbar.opened {
    height: auto;
  }
  .cid-tVXmqxbdLY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVXmqxbdLY .navbar-caption-wrap,
.cid-tVXmqxbdLY .title-wrap {
  color: #272727;
}
.cid-tVnTyssGvV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVnTyssGvV .mbr-text {
  color: #6b717e;
}
.cid-tUtg1lZVIT {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #6b717e;
}
.cid-tUtg1lZVIT .container-fluid {
  padding: 0;
}
.cid-tUtg1lZVIT .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tUtg1lZVIT .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tUtg1lZVIT .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all .3s linear;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tUtg1lZVIT .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tUtg1lZVIT .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tUtg1lZVIT .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #f0f3bf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUtg1lZVIT .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tUtg1lZVIT .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tUtg1lZVIT .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tUtg1lZVIT .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tUtg1lZVIT .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tUtg1lZVIT .copyright {
  margin: 0 60px;
  border-top: 1px solid #f0f3bf;
  padding: 26px 0;
}
.cid-tUtg1lZVIT .copyright .mbr-text {
  margin: 0;
}
.cid-tUtg1lZVIT .mbr-section-title,
.cid-tUtg1lZVIT .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tUtg1lZVIT .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tVXmqxbdLY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tVXmqxbdLY .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tVXmqxbdLY .iconfont-wrapper {
  overflow: hidden;
  color: #6b717e !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea4954;
  z-index: -1;
}
.cid-tVXmqxbdLY nav.navbar {
  position: fixed;
}
.cid-tVXmqxbdLY .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-item {
    border: 0;
  }
}
.cid-tVXmqxbdLY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tVXmqxbdLY .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tVXmqxbdLY .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tVXmqxbdLY .title-wrap:hover span {
  color: white;
}
.cid-tVXmqxbdLY .title-wrap:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea4954;
}
.cid-tVXmqxbdLY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVXmqxbdLY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVXmqxbdLY .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVXmqxbdLY .nav-link {
  position: relative;
}
.cid-tVXmqxbdLY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .container {
    flex-wrap: nowrap;
  }
}
.cid-tVXmqxbdLY .dropdown-menu,
.cid-tVXmqxbdLY .navbar.opened {
  background: #ffffff !important;
}
.cid-tVXmqxbdLY .nav-item:focus,
.cid-tVXmqxbdLY .nav-link:focus {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVXmqxbdLY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVXmqxbdLY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.opened {
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVXmqxbdLY .navbar .navbar-logo img {
  width: auto;
}
.cid-tVXmqxbdLY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVXmqxbdLY .navbar.collapsed {
  justify-content: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVXmqxbdLY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVXmqxbdLY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVXmqxbdLY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVXmqxbdLY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVXmqxbdLY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVXmqxbdLY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVXmqxbdLY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tVXmqxbdLY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVXmqxbdLY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown-item.active,
.cid-tVXmqxbdLY .dropdown-item:active {
  background-color: transparent;
}
.cid-tVXmqxbdLY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVXmqxbdLY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVXmqxbdLY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVXmqxbdLY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVXmqxbdLY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea4954;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVXmqxbdLY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tVXmqxbdLY .navbar {
    height: 70px;
  }
  .cid-tVXmqxbdLY .navbar.opened {
    height: auto;
  }
  .cid-tVXmqxbdLY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVXmqxbdLY .navbar-caption-wrap,
.cid-tVXmqxbdLY .title-wrap {
  color: #272727;
}
.cid-tVnXxWX8ga {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ea4954;
}
.cid-tVnXxWX8ga img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tVnXxWX8ga .card {
  border-radius: 0;
}
.cid-tVnXxWX8ga .wrapper {
  padding: 6rem 12rem;
  height: fit-content;
  margin: auto;
}
@media (max-width: 1500px) {
  .cid-tVnXxWX8ga .wrapper {
    padding: 6rem 4rem;
  }
}
.cid-tVnXxWX8ga .card-phone {
  transition: all 0.3s;
  cursor: pointer;
  color: #999999;
}
.cid-tVnXxWX8ga .card-phone:hover {
  color: #ea4954;
}
.cid-tVnXxWX8ga .img-col {
  padding: 0;
}
.cid-tVnXxWX8ga .container {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-tVnXxWX8ga .wrapper {
    padding: 2rem 0rem;
  }
}
.cid-tVnXxWX8ga .mbr-text,
.cid-tVnXxWX8ga .mbr-section-btn {
  color: #ffffff;
}
.cid-tVnXxWX8ga .card-title,
.cid-tVnXxWX8ga .card-box {
  color: #200960;
}
.cid-tVnXxWX8ga .mbr-section-subtitle {
  color: #f0f3bf;
}
.cid-tVnXxWX8ga .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVnXxWX8ga .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVojprS2ed {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tVojprS2ed .contacts-name {
  padding-bottom: 5px;
  margin: 0;
  color: #a3a6b2;
}
.cid-tVojprS2ed .contacts-info {
  padding-bottom: 30px;
  color: #ea4954;
  margin: 0;
}
.cid-tVojprS2ed .margin {
  margin-bottom: 10px;
}
.cid-tVojprS2ed .mbr-section-title {
  color: #6b717e;
  margin-bottom: 20px;
  padding: 0;
}
.cid-tVojprS2ed .description {
  color: #a3a6b2;
  margin-bottom: 50px;
  padding: 0;
}
.cid-tVojprS2ed .title {
  font-size: 24px;
  color: #ea4954;
}
.cid-tVojprS2ed .form-heading {
  margin-bottom: 40px;
}
.cid-tVojprS2ed label {
  color: #ffffff;
  margin-bottom: 5px;
}
.cid-tVojprS2ed input,
.cid-tVojprS2ed textarea {
  background-color: #3F424E;
  margin-bottom: 30px;
}
.cid-tVojprS2ed .gray-button {
  margin: 0;
  background-color: #3F424E;
  color: #ffffff;
}
.cid-tVojprS2ed .mbr-section-btn {
  margin: 0;
  padding: 0;
}
.cid-tVojprS2ed .form-group {
  padding: 0 5px;
  margin: 0;
}
.cid-tVojprS2ed .left-side {
  padding: 0;
}
@media (max-width: 1000px) {
  .cid-tVojprS2ed .gray-button {
    margin-bottom: 50px;
    margin-top: 0px;
  }
}
.cid-tVojprS2ed .gray-button:hover {
  background-color: #5e6068;
}
.cid-tVojprS2ed ::placeholder {
  color: #a3a6b2;
}
.cid-tUtg1lZVIT {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #6b717e;
}
.cid-tUtg1lZVIT .container-fluid {
  padding: 0;
}
.cid-tUtg1lZVIT .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tUtg1lZVIT .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tUtg1lZVIT .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all .3s linear;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tUtg1lZVIT .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tUtg1lZVIT .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tUtg1lZVIT .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #f0f3bf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUtg1lZVIT .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tUtg1lZVIT .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tUtg1lZVIT .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tUtg1lZVIT .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tUtg1lZVIT .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tUtg1lZVIT .copyright {
  margin: 0 60px;
  border-top: 1px solid #f0f3bf;
  padding: 26px 0;
}
.cid-tUtg1lZVIT .copyright .mbr-text {
  margin: 0;
}
.cid-tUtg1lZVIT .mbr-section-title,
.cid-tUtg1lZVIT .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tUtg1lZVIT .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tVXmqxbdLY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tVXmqxbdLY .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tVXmqxbdLY .iconfont-wrapper {
  overflow: hidden;
  color: #6b717e !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea4954;
  z-index: -1;
}
.cid-tVXmqxbdLY nav.navbar {
  position: fixed;
}
.cid-tVXmqxbdLY .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-item {
    border: 0;
  }
}
.cid-tVXmqxbdLY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tVXmqxbdLY .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tVXmqxbdLY .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tVXmqxbdLY .title-wrap:hover span {
  color: white;
}
.cid-tVXmqxbdLY .title-wrap:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea4954;
}
.cid-tVXmqxbdLY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVXmqxbdLY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVXmqxbdLY .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVXmqxbdLY .nav-link {
  position: relative;
}
.cid-tVXmqxbdLY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .container {
    flex-wrap: nowrap;
  }
}
.cid-tVXmqxbdLY .dropdown-menu,
.cid-tVXmqxbdLY .navbar.opened {
  background: #ffffff !important;
}
.cid-tVXmqxbdLY .nav-item:focus,
.cid-tVXmqxbdLY .nav-link:focus {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVXmqxbdLY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVXmqxbdLY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.opened {
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVXmqxbdLY .navbar .navbar-logo img {
  width: auto;
}
.cid-tVXmqxbdLY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVXmqxbdLY .navbar.collapsed {
  justify-content: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVXmqxbdLY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVXmqxbdLY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVXmqxbdLY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVXmqxbdLY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVXmqxbdLY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVXmqxbdLY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVXmqxbdLY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tVXmqxbdLY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVXmqxbdLY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown-item.active,
.cid-tVXmqxbdLY .dropdown-item:active {
  background-color: transparent;
}
.cid-tVXmqxbdLY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVXmqxbdLY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVXmqxbdLY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVXmqxbdLY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVXmqxbdLY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea4954;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVXmqxbdLY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tVXmqxbdLY .navbar {
    height: 70px;
  }
  .cid-tVXmqxbdLY .navbar.opened {
    height: auto;
  }
  .cid-tVXmqxbdLY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVXmqxbdLY .navbar-caption-wrap,
.cid-tVXmqxbdLY .title-wrap {
  color: #272727;
}
.cid-tVolLHosZO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tVolLHosZO .item-img {
  position: relative;
  overflow: hidden;
}
.cid-tVolLHosZO .item-img:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: black;
  opacity: 0.3;
  z-index: 1;
  transition: all 0.3s;
  pointer-events: none;
}
.cid-tVolLHosZO h5 {
  margin-bottom: 1rem;
}
.cid-tVolLHosZO .item-content {
  position: absolute;
  top: 55%;
  right: 0;
  z-index: 2;
  width: 100%;
  transform: translateY(-50%);
  padding: 2rem 8rem;
  display: flex;
  flex-direction: column;
  height: 50%;
}
@media (max-width: 767px) {
  .cid-tVolLHosZO .item-content {
    padding: 0 2rem 1.5rem;
    margin-top: 1rem;
  }
}
.cid-tVolLHosZO img,
.cid-tVolLHosZO .item-img {
  width: 100%;
  transition: all 0.3s;
}
.cid-tVolLHosZO .item:focus,
.cid-tVolLHosZO span:focus {
  outline: none;
}
.cid-tVolLHosZO .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tVolLHosZO .item {
    margin-bottom: 1rem;
  }
}
.cid-tVolLHosZO .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tVolLHosZO .mbr-section-title {
  color: #4e423d;
}
.cid-tVolLHosZO .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tVolLHosZO .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-tVolLHosZO .mbr-text,
.cid-tVolLHosZO .item .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tVolLHosZO .content-head {
  max-width: 800px;
}
.cid-tUtg1lZVIT {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #6b717e;
}
.cid-tUtg1lZVIT .container-fluid {
  padding: 0;
}
.cid-tUtg1lZVIT .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tUtg1lZVIT .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tUtg1lZVIT .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all .3s linear;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tUtg1lZVIT .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tUtg1lZVIT .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tUtg1lZVIT .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #f0f3bf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUtg1lZVIT .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tUtg1lZVIT .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tUtg1lZVIT .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tUtg1lZVIT .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tUtg1lZVIT .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tUtg1lZVIT .copyright {
  margin: 0 60px;
  border-top: 1px solid #f0f3bf;
  padding: 26px 0;
}
.cid-tUtg1lZVIT .copyright .mbr-text {
  margin: 0;
}
.cid-tUtg1lZVIT .mbr-section-title,
.cid-tUtg1lZVIT .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tUtg1lZVIT .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tVXmqxbdLY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tVXmqxbdLY .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tVXmqxbdLY .iconfont-wrapper {
  overflow: hidden;
  color: #6b717e !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea4954;
  z-index: -1;
}
.cid-tVXmqxbdLY nav.navbar {
  position: fixed;
}
.cid-tVXmqxbdLY .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-item {
    border: 0;
  }
}
.cid-tVXmqxbdLY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tVXmqxbdLY .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tVXmqxbdLY .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tVXmqxbdLY .title-wrap:hover span {
  color: white;
}
.cid-tVXmqxbdLY .title-wrap:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea4954;
}
.cid-tVXmqxbdLY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVXmqxbdLY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVXmqxbdLY .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVXmqxbdLY .nav-link {
  position: relative;
}
.cid-tVXmqxbdLY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .container {
    flex-wrap: nowrap;
  }
}
.cid-tVXmqxbdLY .dropdown-menu,
.cid-tVXmqxbdLY .navbar.opened {
  background: #ffffff !important;
}
.cid-tVXmqxbdLY .nav-item:focus,
.cid-tVXmqxbdLY .nav-link:focus {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVXmqxbdLY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVXmqxbdLY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.opened {
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVXmqxbdLY .navbar .navbar-logo img {
  width: auto;
}
.cid-tVXmqxbdLY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVXmqxbdLY .navbar.collapsed {
  justify-content: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVXmqxbdLY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVXmqxbdLY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVXmqxbdLY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVXmqxbdLY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVXmqxbdLY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVXmqxbdLY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVXmqxbdLY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tVXmqxbdLY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVXmqxbdLY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown-item.active,
.cid-tVXmqxbdLY .dropdown-item:active {
  background-color: transparent;
}
.cid-tVXmqxbdLY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVXmqxbdLY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVXmqxbdLY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVXmqxbdLY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVXmqxbdLY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea4954;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVXmqxbdLY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tVXmqxbdLY .navbar {
    height: 70px;
  }
  .cid-tVXmqxbdLY .navbar.opened {
    height: auto;
  }
  .cid-tVXmqxbdLY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVXmqxbdLY .navbar-caption-wrap,
.cid-tVXmqxbdLY .title-wrap {
  color: #272727;
}
.cid-tVorrM38Hp {
  padding-top: 75px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tVorrM38Hp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tVorrM38Hp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tVorrM38Hp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tVorrM38Hp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tVorrM38Hp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ea4954;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ea4954, #6b717e);
}
.cid-tVorrM38Hp .icon-focus,
.cid-tVorrM38Hp .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tVorrM38Hp .icon-focus:before,
.cid-tVorrM38Hp .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tVorrM38Hp .icon-video {
  font-size: 1.5rem !important;
}
.cid-tVorrM38Hp .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tVorrM38Hp ul {
  font-size: 0;
}
.cid-tVorrM38Hp .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tVorrM38Hp .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tVorrM38Hp .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #ea4954 !important;
}
.cid-tVorrM38Hp .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-tVorrM38Hp .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-tVorrM38Hp .mbr-gallery-filter ul li.active .btn:after {
  border-color: #ea4954;
}
.cid-tVorrM38Hp .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-tVorrM38Hp .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-tVorrM38Hp .mbr-gallery-filter ul li:first-child,
.cid-tVorrM38Hp .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tVorrM38Hp .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tVorrM38Hp .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-tVorrM38Hp .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-tVorrM38Hp .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tVorrM38Hp .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-tVorrM38Hp .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-tVorrM38Hp .mbr-section-title,
.cid-tVorrM38Hp .mbr-gallery-filter ul {
  color: #ea4954;
}
.cid-tVy3FXyvFg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tVy3FXyvFg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVy3FXyvFg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVy3FXyvFg .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-tVy3FXyvFg .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tVy3FXyvFg .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tVy3FXyvFg .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tVy3FXyvFg .container {
    padding: 0 12px;
  }
}
.cid-tVy3FXyvFg .row {
  justify-content: center;
}
.cid-tVy3FXyvFg .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tVy3FXyvFg .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-tVy3FXyvFg .card {
    margin-bottom: 32px;
  }
}
.cid-tVy3FXyvFg .card .card-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-tVy3FXyvFg .card .card-wrapper {
    display: block;
  }
}
.cid-tVy3FXyvFg .card .card-wrapper .icon-wrapper {
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-tVy3FXyvFg .card .card-wrapper .icon-wrapper {
    margin-right: 0;
    margin-bottom: 16px;
    text-align: center;
  }
}
.cid-tVy3FXyvFg .card .card-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 46px;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  color: #ffffff;
}
.cid-tVy3FXyvFg .card .card-wrapper .icon-wrapper .icon_1 {
  background-color: #6b717e;
}
.cid-tVy3FXyvFg .card .card-wrapper .icon-wrapper .icon_2 {
  background-color: #6b717e;
}
.cid-tVy3FXyvFg .card .card-wrapper .icon-wrapper .icon_3 {
  background-color: #e3b4fa;
}
.cid-tVy3FXyvFg .card .card-wrapper .mbr-card-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tVy3FXyvFg .card .card-wrapper .mbr-card-title {
    text-align: center;
  }
}
.cid-tVy3FXyvFg .mbr-section-title {
  color: #ea4954;
  text-align: center;
}
.cid-tVy3FXyvFg .mbr-card-title {
  color: #6b717e;
}
.cid-tUtg1lZVIT {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #6b717e;
}
.cid-tUtg1lZVIT .container-fluid {
  padding: 0;
}
.cid-tUtg1lZVIT .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tUtg1lZVIT .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tUtg1lZVIT .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all .3s linear;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tUtg1lZVIT .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tUtg1lZVIT .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tUtg1lZVIT .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #f0f3bf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUtg1lZVIT .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tUtg1lZVIT .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tUtg1lZVIT .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tUtg1lZVIT .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tUtg1lZVIT .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tUtg1lZVIT .copyright {
  margin: 0 60px;
  border-top: 1px solid #f0f3bf;
  padding: 26px 0;
}
.cid-tUtg1lZVIT .copyright .mbr-text {
  margin: 0;
}
.cid-tUtg1lZVIT .mbr-section-title,
.cid-tUtg1lZVIT .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tUtg1lZVIT .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tVXmqxbdLY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tVXmqxbdLY .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tVXmqxbdLY .iconfont-wrapper {
  overflow: hidden;
  color: #6b717e !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea4954;
  z-index: -1;
}
.cid-tVXmqxbdLY nav.navbar {
  position: fixed;
}
.cid-tVXmqxbdLY .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-item {
    border: 0;
  }
}
.cid-tVXmqxbdLY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tVXmqxbdLY .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tVXmqxbdLY .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tVXmqxbdLY .title-wrap:hover span {
  color: white;
}
.cid-tVXmqxbdLY .title-wrap:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea4954;
}
.cid-tVXmqxbdLY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVXmqxbdLY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVXmqxbdLY .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVXmqxbdLY .nav-link {
  position: relative;
}
.cid-tVXmqxbdLY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .container {
    flex-wrap: nowrap;
  }
}
.cid-tVXmqxbdLY .dropdown-menu,
.cid-tVXmqxbdLY .navbar.opened {
  background: #ffffff !important;
}
.cid-tVXmqxbdLY .nav-item:focus,
.cid-tVXmqxbdLY .nav-link:focus {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVXmqxbdLY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVXmqxbdLY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.opened {
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVXmqxbdLY .navbar .navbar-logo img {
  width: auto;
}
.cid-tVXmqxbdLY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVXmqxbdLY .navbar.collapsed {
  justify-content: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVXmqxbdLY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVXmqxbdLY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVXmqxbdLY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVXmqxbdLY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVXmqxbdLY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVXmqxbdLY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVXmqxbdLY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tVXmqxbdLY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVXmqxbdLY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown-item.active,
.cid-tVXmqxbdLY .dropdown-item:active {
  background-color: transparent;
}
.cid-tVXmqxbdLY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVXmqxbdLY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVXmqxbdLY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVXmqxbdLY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVXmqxbdLY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea4954;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVXmqxbdLY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tVXmqxbdLY .navbar {
    height: 70px;
  }
  .cid-tVXmqxbdLY .navbar.opened {
    height: auto;
  }
  .cid-tVXmqxbdLY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVXmqxbdLY .navbar-caption-wrap,
.cid-tVXmqxbdLY .title-wrap {
  color: #272727;
}
.cid-tVoJcSZ1gB {
  padding-top: 75px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tVoJcSZ1gB .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tVoJcSZ1gB .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tVoJcSZ1gB .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tVoJcSZ1gB .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tVoJcSZ1gB .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ea4954;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ea4954, #6b717e);
}
.cid-tVoJcSZ1gB .icon-focus,
.cid-tVoJcSZ1gB .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tVoJcSZ1gB .icon-focus:before,
.cid-tVoJcSZ1gB .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tVoJcSZ1gB .icon-video {
  font-size: 1.5rem !important;
}
.cid-tVoJcSZ1gB .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tVoJcSZ1gB ul {
  font-size: 0;
}
.cid-tVoJcSZ1gB .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tVoJcSZ1gB .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tVoJcSZ1gB .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #ea4954 !important;
}
.cid-tVoJcSZ1gB .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-tVoJcSZ1gB .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-tVoJcSZ1gB .mbr-gallery-filter ul li.active .btn:after {
  border-color: #ea4954;
}
.cid-tVoJcSZ1gB .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-tVoJcSZ1gB .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-tVoJcSZ1gB .mbr-gallery-filter ul li:first-child,
.cid-tVoJcSZ1gB .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tVoJcSZ1gB .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tVoJcSZ1gB .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-tVoJcSZ1gB .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-tVoJcSZ1gB .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tVoJcSZ1gB .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-tVoJcSZ1gB .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-tVoJcSZ1gB .mbr-section-title,
.cid-tVoJcSZ1gB .mbr-gallery-filter ul {
  color: #ea4954;
}
.cid-tVy5vaJmRj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tVy5vaJmRj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVy5vaJmRj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVy5vaJmRj .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-tVy5vaJmRj .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tVy5vaJmRj .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tVy5vaJmRj .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tVy5vaJmRj .container {
    padding: 0 12px;
  }
}
.cid-tVy5vaJmRj .row {
  justify-content: center;
}
.cid-tVy5vaJmRj .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tVy5vaJmRj .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-tVy5vaJmRj .card {
    margin-bottom: 32px;
  }
}
.cid-tVy5vaJmRj .card .card-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-tVy5vaJmRj .card .card-wrapper {
    display: block;
  }
}
.cid-tVy5vaJmRj .card .card-wrapper .icon-wrapper {
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-tVy5vaJmRj .card .card-wrapper .icon-wrapper {
    margin-right: 0;
    margin-bottom: 16px;
    text-align: center;
  }
}
.cid-tVy5vaJmRj .card .card-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 46px;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  color: #ffffff;
}
.cid-tVy5vaJmRj .card .card-wrapper .icon-wrapper .icon_1 {
  background-color: #6b717e;
}
.cid-tVy5vaJmRj .card .card-wrapper .icon-wrapper .icon_2 {
  background-color: #6b717e;
}
.cid-tVy5vaJmRj .card .card-wrapper .icon-wrapper .icon_3 {
  background-color: #e3b4fa;
}
.cid-tVy5vaJmRj .card .card-wrapper .mbr-card-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tVy5vaJmRj .card .card-wrapper .mbr-card-title {
    text-align: center;
  }
}
.cid-tVy5vaJmRj .mbr-section-title {
  color: #ea4954;
  text-align: center;
}
.cid-tVy5vaJmRj .mbr-card-title {
  color: #6b717e;
}
.cid-tVoJcUZZ4O {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #6b717e;
}
.cid-tVoJcUZZ4O .container-fluid {
  padding: 0;
}
.cid-tVoJcUZZ4O .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tVoJcUZZ4O .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tVoJcUZZ4O .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tVoJcUZZ4O .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tVoJcUZZ4O .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tVoJcUZZ4O .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all .3s linear;
}
.cid-tVoJcUZZ4O .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tVoJcUZZ4O .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tVoJcUZZ4O .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tVoJcUZZ4O .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tVoJcUZZ4O .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #f0f3bf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tVoJcUZZ4O .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tVoJcUZZ4O .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tVoJcUZZ4O .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tVoJcUZZ4O .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tVoJcUZZ4O .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tVoJcUZZ4O .copyright {
  margin: 0 60px;
  border-top: 1px solid #f0f3bf;
  padding: 26px 0;
}
.cid-tVoJcUZZ4O .copyright .mbr-text {
  margin: 0;
}
.cid-tVoJcUZZ4O .mbr-section-title,
.cid-tVoJcUZZ4O .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tVoJcUZZ4O .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tVXmqxbdLY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tVXmqxbdLY .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tVXmqxbdLY .iconfont-wrapper {
  overflow: hidden;
  color: #6b717e !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea4954;
  z-index: -1;
}
.cid-tVXmqxbdLY nav.navbar {
  position: fixed;
}
.cid-tVXmqxbdLY .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-item {
    border: 0;
  }
}
.cid-tVXmqxbdLY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tVXmqxbdLY .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tVXmqxbdLY .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tVXmqxbdLY .title-wrap:hover span {
  color: white;
}
.cid-tVXmqxbdLY .title-wrap:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea4954;
}
.cid-tVXmqxbdLY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVXmqxbdLY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVXmqxbdLY .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVXmqxbdLY .nav-link {
  position: relative;
}
.cid-tVXmqxbdLY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .container {
    flex-wrap: nowrap;
  }
}
.cid-tVXmqxbdLY .dropdown-menu,
.cid-tVXmqxbdLY .navbar.opened {
  background: #ffffff !important;
}
.cid-tVXmqxbdLY .nav-item:focus,
.cid-tVXmqxbdLY .nav-link:focus {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVXmqxbdLY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVXmqxbdLY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.opened {
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVXmqxbdLY .navbar .navbar-logo img {
  width: auto;
}
.cid-tVXmqxbdLY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVXmqxbdLY .navbar.collapsed {
  justify-content: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVXmqxbdLY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVXmqxbdLY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVXmqxbdLY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVXmqxbdLY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVXmqxbdLY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVXmqxbdLY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVXmqxbdLY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tVXmqxbdLY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVXmqxbdLY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown-item.active,
.cid-tVXmqxbdLY .dropdown-item:active {
  background-color: transparent;
}
.cid-tVXmqxbdLY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVXmqxbdLY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVXmqxbdLY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVXmqxbdLY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVXmqxbdLY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea4954;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVXmqxbdLY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tVXmqxbdLY .navbar {
    height: 70px;
  }
  .cid-tVXmqxbdLY .navbar.opened {
    height: auto;
  }
  .cid-tVXmqxbdLY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVXmqxbdLY .navbar-caption-wrap,
.cid-tVXmqxbdLY .title-wrap {
  color: #272727;
}
.cid-tVoJr4iTEL {
  padding-top: 75px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tVoJr4iTEL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tVoJr4iTEL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tVoJr4iTEL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tVoJr4iTEL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tVoJr4iTEL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ea4954;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ea4954, #6b717e);
}
.cid-tVoJr4iTEL .icon-focus,
.cid-tVoJr4iTEL .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tVoJr4iTEL .icon-focus:before,
.cid-tVoJr4iTEL .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tVoJr4iTEL .icon-video {
  font-size: 1.5rem !important;
}
.cid-tVoJr4iTEL .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tVoJr4iTEL ul {
  font-size: 0;
}
.cid-tVoJr4iTEL .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tVoJr4iTEL .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tVoJr4iTEL .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #ea4954 !important;
}
.cid-tVoJr4iTEL .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-tVoJr4iTEL .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-tVoJr4iTEL .mbr-gallery-filter ul li.active .btn:after {
  border-color: #ea4954;
}
.cid-tVoJr4iTEL .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-tVoJr4iTEL .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-tVoJr4iTEL .mbr-gallery-filter ul li:first-child,
.cid-tVoJr4iTEL .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tVoJr4iTEL .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tVoJr4iTEL .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-tVoJr4iTEL .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-tVoJr4iTEL .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tVoJr4iTEL .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-tVoJr4iTEL .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-tVoJr4iTEL .mbr-section-title,
.cid-tVoJr4iTEL .mbr-gallery-filter ul {
  color: #ea4954;
}
.cid-tVy5FBsvg9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tVy5FBsvg9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVy5FBsvg9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVy5FBsvg9 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-tVy5FBsvg9 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tVy5FBsvg9 .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tVy5FBsvg9 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tVy5FBsvg9 .container {
    padding: 0 12px;
  }
}
.cid-tVy5FBsvg9 .row {
  justify-content: center;
}
.cid-tVy5FBsvg9 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tVy5FBsvg9 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-tVy5FBsvg9 .card {
    margin-bottom: 32px;
  }
}
.cid-tVy5FBsvg9 .card .card-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-tVy5FBsvg9 .card .card-wrapper {
    display: block;
  }
}
.cid-tVy5FBsvg9 .card .card-wrapper .icon-wrapper {
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-tVy5FBsvg9 .card .card-wrapper .icon-wrapper {
    margin-right: 0;
    margin-bottom: 16px;
    text-align: center;
  }
}
.cid-tVy5FBsvg9 .card .card-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 46px;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  color: #ffffff;
}
.cid-tVy5FBsvg9 .card .card-wrapper .icon-wrapper .icon_1 {
  background-color: #6b717e;
}
.cid-tVy5FBsvg9 .card .card-wrapper .icon-wrapper .icon_2 {
  background-color: #6b717e;
}
.cid-tVy5FBsvg9 .card .card-wrapper .icon-wrapper .icon_3 {
  background-color: #e3b4fa;
}
.cid-tVy5FBsvg9 .card .card-wrapper .mbr-card-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tVy5FBsvg9 .card .card-wrapper .mbr-card-title {
    text-align: center;
  }
}
.cid-tVy5FBsvg9 .mbr-section-title {
  color: #ea4954;
  text-align: center;
}
.cid-tVy5FBsvg9 .mbr-card-title {
  color: #6b717e;
}
.cid-tVoJr5prIP {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #6b717e;
}
.cid-tVoJr5prIP .container-fluid {
  padding: 0;
}
.cid-tVoJr5prIP .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tVoJr5prIP .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tVoJr5prIP .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tVoJr5prIP .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tVoJr5prIP .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tVoJr5prIP .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all .3s linear;
}
.cid-tVoJr5prIP .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tVoJr5prIP .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tVoJr5prIP .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tVoJr5prIP .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tVoJr5prIP .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #f0f3bf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tVoJr5prIP .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tVoJr5prIP .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tVoJr5prIP .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tVoJr5prIP .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tVoJr5prIP .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tVoJr5prIP .copyright {
  margin: 0 60px;
  border-top: 1px solid #f0f3bf;
  padding: 26px 0;
}
.cid-tVoJr5prIP .copyright .mbr-text {
  margin: 0;
}
.cid-tVoJr5prIP .mbr-section-title,
.cid-tVoJr5prIP .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tVoJr5prIP .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tVXmqxbdLY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tVXmqxbdLY .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tVXmqxbdLY .iconfont-wrapper {
  overflow: hidden;
  color: #6b717e !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea4954;
  z-index: -1;
}
.cid-tVXmqxbdLY nav.navbar {
  position: fixed;
}
.cid-tVXmqxbdLY .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-item {
    border: 0;
  }
}
.cid-tVXmqxbdLY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tVXmqxbdLY .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tVXmqxbdLY .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tVXmqxbdLY .title-wrap:hover span {
  color: white;
}
.cid-tVXmqxbdLY .title-wrap:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea4954;
}
.cid-tVXmqxbdLY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVXmqxbdLY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVXmqxbdLY .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVXmqxbdLY .nav-link {
  position: relative;
}
.cid-tVXmqxbdLY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .container {
    flex-wrap: nowrap;
  }
}
.cid-tVXmqxbdLY .dropdown-menu,
.cid-tVXmqxbdLY .navbar.opened {
  background: #ffffff !important;
}
.cid-tVXmqxbdLY .nav-item:focus,
.cid-tVXmqxbdLY .nav-link:focus {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVXmqxbdLY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVXmqxbdLY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.opened {
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVXmqxbdLY .navbar .navbar-logo img {
  width: auto;
}
.cid-tVXmqxbdLY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVXmqxbdLY .navbar.collapsed {
  justify-content: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVXmqxbdLY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVXmqxbdLY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVXmqxbdLY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVXmqxbdLY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVXmqxbdLY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVXmqxbdLY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVXmqxbdLY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tVXmqxbdLY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVXmqxbdLY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown-item.active,
.cid-tVXmqxbdLY .dropdown-item:active {
  background-color: transparent;
}
.cid-tVXmqxbdLY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVXmqxbdLY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVXmqxbdLY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVXmqxbdLY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVXmqxbdLY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea4954;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVXmqxbdLY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tVXmqxbdLY .navbar {
    height: 70px;
  }
  .cid-tVXmqxbdLY .navbar.opened {
    height: auto;
  }
  .cid-tVXmqxbdLY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVXmqxbdLY .navbar-caption-wrap,
.cid-tVXmqxbdLY .title-wrap {
  color: #272727;
}
.cid-tVoJsoFHGQ {
  padding-top: 75px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tVoJsoFHGQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tVoJsoFHGQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tVoJsoFHGQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tVoJsoFHGQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tVoJsoFHGQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ea4954;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ea4954, #6b717e);
}
.cid-tVoJsoFHGQ .icon-focus,
.cid-tVoJsoFHGQ .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tVoJsoFHGQ .icon-focus:before,
.cid-tVoJsoFHGQ .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tVoJsoFHGQ .icon-video {
  font-size: 1.5rem !important;
}
.cid-tVoJsoFHGQ .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tVoJsoFHGQ ul {
  font-size: 0;
}
.cid-tVoJsoFHGQ .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tVoJsoFHGQ .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tVoJsoFHGQ .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #ea4954 !important;
}
.cid-tVoJsoFHGQ .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-tVoJsoFHGQ .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-tVoJsoFHGQ .mbr-gallery-filter ul li.active .btn:after {
  border-color: #ea4954;
}
.cid-tVoJsoFHGQ .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-tVoJsoFHGQ .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-tVoJsoFHGQ .mbr-gallery-filter ul li:first-child,
.cid-tVoJsoFHGQ .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tVoJsoFHGQ .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tVoJsoFHGQ .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-tVoJsoFHGQ .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-tVoJsoFHGQ .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tVoJsoFHGQ .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-tVoJsoFHGQ .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-tVoJsoFHGQ .mbr-section-title,
.cid-tVoJsoFHGQ .mbr-gallery-filter ul {
  color: #ea4954;
}
.cid-tVy5Nt4gNl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tVy5Nt4gNl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVy5Nt4gNl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVy5Nt4gNl .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-tVy5Nt4gNl .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tVy5Nt4gNl .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tVy5Nt4gNl .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tVy5Nt4gNl .container {
    padding: 0 12px;
  }
}
.cid-tVy5Nt4gNl .row {
  justify-content: center;
}
.cid-tVy5Nt4gNl .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tVy5Nt4gNl .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-tVy5Nt4gNl .card {
    margin-bottom: 32px;
  }
}
.cid-tVy5Nt4gNl .card .card-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-tVy5Nt4gNl .card .card-wrapper {
    display: block;
  }
}
.cid-tVy5Nt4gNl .card .card-wrapper .icon-wrapper {
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-tVy5Nt4gNl .card .card-wrapper .icon-wrapper {
    margin-right: 0;
    margin-bottom: 16px;
    text-align: center;
  }
}
.cid-tVy5Nt4gNl .card .card-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 46px;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  color: #ffffff;
}
.cid-tVy5Nt4gNl .card .card-wrapper .icon-wrapper .icon_1 {
  background-color: #6b717e;
}
.cid-tVy5Nt4gNl .card .card-wrapper .icon-wrapper .icon_2 {
  background-color: #6b717e;
}
.cid-tVy5Nt4gNl .card .card-wrapper .icon-wrapper .icon_3 {
  background-color: #e3b4fa;
}
.cid-tVy5Nt4gNl .card .card-wrapper .mbr-card-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tVy5Nt4gNl .card .card-wrapper .mbr-card-title {
    text-align: center;
  }
}
.cid-tVy5Nt4gNl .mbr-section-title {
  color: #ea4954;
  text-align: center;
}
.cid-tVy5Nt4gNl .mbr-card-title {
  color: #6b717e;
}
.cid-tVoJspHn8Z {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #6b717e;
}
.cid-tVoJspHn8Z .container-fluid {
  padding: 0;
}
.cid-tVoJspHn8Z .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tVoJspHn8Z .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tVoJspHn8Z .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tVoJspHn8Z .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tVoJspHn8Z .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tVoJspHn8Z .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all .3s linear;
}
.cid-tVoJspHn8Z .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tVoJspHn8Z .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tVoJspHn8Z .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tVoJspHn8Z .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tVoJspHn8Z .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #f0f3bf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tVoJspHn8Z .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tVoJspHn8Z .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tVoJspHn8Z .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tVoJspHn8Z .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tVoJspHn8Z .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tVoJspHn8Z .copyright {
  margin: 0 60px;
  border-top: 1px solid #f0f3bf;
  padding: 26px 0;
}
.cid-tVoJspHn8Z .copyright .mbr-text {
  margin: 0;
}
.cid-tVoJspHn8Z .mbr-section-title,
.cid-tVoJspHn8Z .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tVoJspHn8Z .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tVXmqxbdLY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tVXmqxbdLY .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tVXmqxbdLY .iconfont-wrapper {
  overflow: hidden;
  color: #6b717e !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea4954;
  z-index: -1;
}
.cid-tVXmqxbdLY nav.navbar {
  position: fixed;
}
.cid-tVXmqxbdLY .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-item {
    border: 0;
  }
}
.cid-tVXmqxbdLY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tVXmqxbdLY .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tVXmqxbdLY .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tVXmqxbdLY .title-wrap:hover span {
  color: white;
}
.cid-tVXmqxbdLY .title-wrap:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea4954;
}
.cid-tVXmqxbdLY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVXmqxbdLY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVXmqxbdLY .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVXmqxbdLY .nav-link {
  position: relative;
}
.cid-tVXmqxbdLY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .container {
    flex-wrap: nowrap;
  }
}
.cid-tVXmqxbdLY .dropdown-menu,
.cid-tVXmqxbdLY .navbar.opened {
  background: #ffffff !important;
}
.cid-tVXmqxbdLY .nav-item:focus,
.cid-tVXmqxbdLY .nav-link:focus {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVXmqxbdLY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVXmqxbdLY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.opened {
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVXmqxbdLY .navbar .navbar-logo img {
  width: auto;
}
.cid-tVXmqxbdLY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVXmqxbdLY .navbar.collapsed {
  justify-content: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVXmqxbdLY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVXmqxbdLY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVXmqxbdLY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVXmqxbdLY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVXmqxbdLY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVXmqxbdLY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVXmqxbdLY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tVXmqxbdLY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVXmqxbdLY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown-item.active,
.cid-tVXmqxbdLY .dropdown-item:active {
  background-color: transparent;
}
.cid-tVXmqxbdLY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVXmqxbdLY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVXmqxbdLY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVXmqxbdLY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVXmqxbdLY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea4954;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVXmqxbdLY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tVXmqxbdLY .navbar {
    height: 70px;
  }
  .cid-tVXmqxbdLY .navbar.opened {
    height: auto;
  }
  .cid-tVXmqxbdLY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVXmqxbdLY .navbar-caption-wrap,
.cid-tVXmqxbdLY .title-wrap {
  color: #272727;
}
.cid-tVoVZb4fyf {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-tVoVZb4fyf .mbr-section-head {
  margin-bottom: 32px;
}
.cid-tVoVZb4fyf .mbr-section-title {
  color: #24262b;
}
.cid-tVoVZb4fyf .mbr-section-subtitle {
  color: #24262b;
}
.cid-tVoVZb4fyf .items-row {
  row-gap: 32px;
}
.cid-tVoVZb4fyf .item {
  cursor: pointer;
}
.cid-tVoVZb4fyf .item:focus,
.cid-tVoVZb4fyf span:focus {
  outline: none;
}
.cid-tVoVZb4fyf .item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0;
}
.cid-tVoVZb4fyf .item-img {
  flex-shrink: 0;
  width: 100%;
}
.cid-tVoVZb4fyf img {
  width: 100%;
  aspect-ratio: calc(305 / (67 * 4));
  object-fit: cover;
}
.cid-tVoVZb4fyf .item-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.5rem 2rem;
  background: #c3dfe0;
}
.cid-tVoVZb4fyf .item-title {
  color: #6b717e;
}
.cid-tVoVZb4fyf .mbr-text {
  margin-top: 10px;
  color: #24262b;
}
.cid-tVoVZb4fyf .mbr-section-btn {
  margin-top: 12px !important;
}
.cid-tVoJr5prIP {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #6b717e;
}
.cid-tVoJr5prIP .container-fluid {
  padding: 0;
}
.cid-tVoJr5prIP .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tVoJr5prIP .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tVoJr5prIP .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tVoJr5prIP .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tVoJr5prIP .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tVoJr5prIP .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all .3s linear;
}
.cid-tVoJr5prIP .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tVoJr5prIP .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tVoJr5prIP .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tVoJr5prIP .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tVoJr5prIP .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #f0f3bf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tVoJr5prIP .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tVoJr5prIP .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tVoJr5prIP .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tVoJr5prIP .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tVoJr5prIP .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tVoJr5prIP .copyright {
  margin: 0 60px;
  border-top: 1px solid #f0f3bf;
  padding: 26px 0;
}
.cid-tVoJr5prIP .copyright .mbr-text {
  margin: 0;
}
.cid-tVoJr5prIP .mbr-section-title,
.cid-tVoJr5prIP .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tVoJr5prIP .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tVXmqxbdLY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tVXmqxbdLY .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tVXmqxbdLY .iconfont-wrapper {
  overflow: hidden;
  color: #6b717e !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea4954;
  z-index: -1;
}
.cid-tVXmqxbdLY nav.navbar {
  position: fixed;
}
.cid-tVXmqxbdLY .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-item {
    border: 0;
  }
}
.cid-tVXmqxbdLY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tVXmqxbdLY .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tVXmqxbdLY .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tVXmqxbdLY .title-wrap:hover span {
  color: white;
}
.cid-tVXmqxbdLY .title-wrap:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea4954;
}
.cid-tVXmqxbdLY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVXmqxbdLY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVXmqxbdLY .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVXmqxbdLY .nav-link {
  position: relative;
}
.cid-tVXmqxbdLY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .container {
    flex-wrap: nowrap;
  }
}
.cid-tVXmqxbdLY .dropdown-menu,
.cid-tVXmqxbdLY .navbar.opened {
  background: #ffffff !important;
}
.cid-tVXmqxbdLY .nav-item:focus,
.cid-tVXmqxbdLY .nav-link:focus {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVXmqxbdLY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVXmqxbdLY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.opened {
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVXmqxbdLY .navbar .navbar-logo img {
  width: auto;
}
.cid-tVXmqxbdLY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVXmqxbdLY .navbar.collapsed {
  justify-content: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVXmqxbdLY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVXmqxbdLY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVXmqxbdLY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVXmqxbdLY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVXmqxbdLY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVXmqxbdLY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVXmqxbdLY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tVXmqxbdLY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVXmqxbdLY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown-item.active,
.cid-tVXmqxbdLY .dropdown-item:active {
  background-color: transparent;
}
.cid-tVXmqxbdLY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVXmqxbdLY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVXmqxbdLY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVXmqxbdLY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVXmqxbdLY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea4954;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVXmqxbdLY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tVXmqxbdLY .navbar {
    height: 70px;
  }
  .cid-tVXmqxbdLY .navbar.opened {
    height: auto;
  }
  .cid-tVXmqxbdLY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVXmqxbdLY .navbar-caption-wrap,
.cid-tVXmqxbdLY .title-wrap {
  color: #272727;
}
.cid-tVtTNjrB7q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVtTNjrB7q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVtTNjrB7q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tVtTNjrB7q .container {
    padding: 0 25px;
  }
}
.cid-tVtTNjrB7q .row {
  justify-content: center;
  margin: 0;
}
.cid-tVtTNjrB7q .row .card {
  padding: 0;
}
.cid-tVtTNjrB7q .title-wrapper {
  margin-bottom: 50px;
}
.cid-tVtTNjrB7q .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-tVtTNjrB7q .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tVtTNjrB7q .item {
  padding: 0;
}
.cid-tVtTNjrB7q .item:nth-child(3n) .item-wrapper {
  flex-direction: row-reverse;
}
.cid-tVtTNjrB7q .item:nth-child(4n) .item-wrapper {
  flex-direction: row-reverse;
}
.cid-tVtTNjrB7q .item .item-wrapper {
  display: flex;
  border-radius: 0 !important;
}
.cid-tVtTNjrB7q .item .item-wrapper:hover .item-img img,
.cid-tVtTNjrB7q .item .item-wrapper:focus .item-img img {
  transform: scale(1.05) translateX(2%);
}
@media (max-width: 992px) {
  .cid-tVtTNjrB7q .item .item-wrapper {
    display: block;
  }
}
.cid-tVtTNjrB7q .item .item-wrapper .item-img {
  position: relative;
  overflow: hidden;
  width: 50%;
  display: block;
}
@media (max-width: 992px) {
  .cid-tVtTNjrB7q .item .item-wrapper .item-img {
    width: 100%;
    height: 350px;
  }
}
.cid-tVtTNjrB7q .item .item-wrapper .item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  transform: scale(1.05) translateX(0);
}
.cid-tVtTNjrB7q .item .item-wrapper .item-content {
  width: 50%;
  padding: 30px;
  background-color: #6b717e;
  min-height: 365px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tVtTNjrB7q .item .item-wrapper .item-content {
    min-height: auto;
    width: 100%;
  }
}
.cid-tVtTNjrB7q .item .item-wrapper .item-content .desc-wrap {
  display: block;
  margin-bottom: 50px;
}
.cid-tVtTNjrB7q .item .item-wrapper .item-content .desc-wrap:hover .item-desc,
.cid-tVtTNjrB7q .item .item-wrapper .item-content .desc-wrap:focus .item-desc {
  background-color: #000000;
  color: #ffffff;
}
.cid-tVtTNjrB7q .item .item-wrapper .item-content .desc-wrap .item-desc {
  margin-bottom: 10px;
  padding: 0 10px;
  background-color: #ffffff;
  display: inline-flex;
  letter-spacing: .05em;
  transition: all 0.3s ease-in-out;
}
.cid-tVtTNjrB7q .item .item-wrapper .item-content .title-wrap .item-subtitle {
  margin-bottom: 10px;
}
.cid-tVtTNjrB7q .item .item-wrapper .item-content .title-wrap .item-title {
  margin-bottom: 20px;
  cursor: pointer;
}
.cid-tVtTNjrB7q .item .item-wrapper .item-content .title-wrap .item-price {
  margin: 0;
}
.cid-tVtTNjrB7q .mbr-section-btn {
  margin-top: 60px;
}
.cid-tVtTNjrB7q .mbr-section-title {
  color: #000000;
}
.cid-tVtTNjrB7q .mbr-text {
  color: #6b717e;
  text-align: center;
}
.cid-tVtTNjrB7q .item-title {
  color: #ffffff;
}
.cid-tVtTNjrB7q .item-desc {
  color: #000000;
}
.cid-tVtTNjrB7q .item-subtitle {
  color: #000000;
}
.cid-tVtTNjrB7q .item-price {
  color: #000000;
}
.cid-tVtTNjrB7q .mbr-section-title,
.cid-tVtTNjrB7q .mbr-section-btn {
  text-align: center;
  color: #ea4954;
}
.cid-tVoV95s8iB {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #6b717e;
}
.cid-tVoV95s8iB .container-fluid {
  padding: 0;
}
.cid-tVoV95s8iB .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tVoV95s8iB .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tVoV95s8iB .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tVoV95s8iB .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tVoV95s8iB .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tVoV95s8iB .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all .3s linear;
}
.cid-tVoV95s8iB .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tVoV95s8iB .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tVoV95s8iB .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tVoV95s8iB .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tVoV95s8iB .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #f0f3bf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tVoV95s8iB .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tVoV95s8iB .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tVoV95s8iB .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tVoV95s8iB .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tVoV95s8iB .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tVoV95s8iB .copyright {
  margin: 0 60px;
  border-top: 1px solid #f0f3bf;
  padding: 26px 0;
}
.cid-tVoV95s8iB .copyright .mbr-text {
  margin: 0;
}
.cid-tVoV95s8iB .mbr-section-title,
.cid-tVoV95s8iB .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tVoV95s8iB .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tVXmqxbdLY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tVXmqxbdLY .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tVXmqxbdLY .iconfont-wrapper {
  overflow: hidden;
  color: #6b717e !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tVXmqxbdLY .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea4954;
  z-index: -1;
}
.cid-tVXmqxbdLY nav.navbar {
  position: fixed;
}
.cid-tVXmqxbdLY .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-item {
    border: 0;
  }
}
.cid-tVXmqxbdLY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tVXmqxbdLY .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tVXmqxbdLY .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tVXmqxbdLY .title-wrap:hover span {
  color: white;
}
.cid-tVXmqxbdLY .title-wrap:hover:before {
  height: 100%;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea4954;
}
.cid-tVXmqxbdLY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVXmqxbdLY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVXmqxbdLY .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tVXmqxbdLY .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVXmqxbdLY .nav-link {
  position: relative;
}
.cid-tVXmqxbdLY .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .container {
    flex-wrap: nowrap;
  }
}
.cid-tVXmqxbdLY .dropdown-menu,
.cid-tVXmqxbdLY .navbar.opened {
  background: #ffffff !important;
}
.cid-tVXmqxbdLY .nav-item:focus,
.cid-tVXmqxbdLY .nav-link:focus {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVXmqxbdLY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVXmqxbdLY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVXmqxbdLY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVXmqxbdLY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.opened {
  transition: all 0.3s;
}
.cid-tVXmqxbdLY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVXmqxbdLY .navbar .navbar-logo img {
  width: auto;
}
.cid-tVXmqxbdLY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVXmqxbdLY .navbar.collapsed {
  justify-content: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVXmqxbdLY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVXmqxbdLY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVXmqxbdLY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVXmqxbdLY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVXmqxbdLY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVXmqxbdLY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVXmqxbdLY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVXmqxbdLY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVXmqxbdLY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVXmqxbdLY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVXmqxbdLY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tVXmqxbdLY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVXmqxbdLY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVXmqxbdLY .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-tVXmqxbdLY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVXmqxbdLY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVXmqxbdLY .dropdown-item.active,
.cid-tVXmqxbdLY .dropdown-item:active {
  background-color: transparent;
}
.cid-tVXmqxbdLY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVXmqxbdLY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tVXmqxbdLY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVXmqxbdLY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVXmqxbdLY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVXmqxbdLY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVXmqxbdLY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea4954;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVXmqxbdLY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVXmqxbdLY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVXmqxbdLY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVXmqxbdLY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tVXmqxbdLY .navbar {
    height: 70px;
  }
  .cid-tVXmqxbdLY .navbar.opened {
    height: auto;
  }
  .cid-tVXmqxbdLY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVXmqxbdLY .navbar-caption-wrap,
.cid-tVXmqxbdLY .title-wrap {
  color: #272727;
}
.cid-tVprwPo6eJ {
  padding-top: 6rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tVprwPo6eJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVprwPo6eJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tVprwPo6eJ .container {
    padding: 0 16px;
  }
}
.cid-tVprwPo6eJ .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tVprwPo6eJ .title-wrapper {
    margin-bottom: 40px;
    height: auto;
  }
}
.cid-tVprwPo6eJ .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tVprwPo6eJ .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tVprwPo6eJ .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tVprwPo6eJ .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 40px;
  }
}
.cid-tVprwPo6eJ .image-wrapper {
  position: relative;
  margin-left: 70px;
  min-height: 620px;
}
@media (max-width: 768px) {
  .cid-tVprwPo6eJ .image-wrapper {
    min-height: 300px;
  }
}
.cid-tVprwPo6eJ .image-wrapper .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vh;
  height: 100%;
  border: 30px solid #e2e2e2;
  border-radius: 40px;
}
@media (max-width: 768px) {
  .cid-tVprwPo6eJ .image-wrapper .image-wrap {
    border: 15px solid #e2e2e2;
    border-radius: 20px;
  }
}
.cid-tVprwPo6eJ .image-wrapper .image-wrap .main-image {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}
.cid-tVprwPo6eJ .image-wrapper .sec-image {
  position: absolute;
  bottom: 6rem;
  left: -4rem;
  height: 180px;
  width: 220px;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .cid-tVprwPo6eJ .image-wrapper .sec-image {
    display: none;
  }
}
.cid-tVprwPo6eJ .mbr-section-title {
  color: #08323C;
}
.cid-tVprwPo6eJ .mbr-text {
  color: #6b717e;
}
.cid-tVprwPo6eJ .mbr-section-title,
.cid-tVprwPo6eJ .mbr-section-btn {
  color: #fe525b;
}
.cid-tUtg1lZVIT {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #6b717e;
}
.cid-tUtg1lZVIT .container-fluid {
  padding: 0;
}
.cid-tUtg1lZVIT .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tUtg1lZVIT .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tUtg1lZVIT .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all .3s linear;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tUtg1lZVIT .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tUtg1lZVIT .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tUtg1lZVIT .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tUtg1lZVIT .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #f0f3bf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUtg1lZVIT .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tUtg1lZVIT .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tUtg1lZVIT .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tUtg1lZVIT .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tUtg1lZVIT .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tUtg1lZVIT .copyright {
  margin: 0 60px;
  border-top: 1px solid #f0f3bf;
  padding: 26px 0;
}
.cid-tUtg1lZVIT .copyright .mbr-text {
  margin: 0;
}
.cid-tUtg1lZVIT .mbr-section-title,
.cid-tUtg1lZVIT .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tUtg1lZVIT .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tXWYLx65FO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tXWYLx65FO .mbr-iconfont {
  transition: all 0.3s;
  display: block;
}
@keyframes icons {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0px);
  }
}
.cid-tXWYLx65FO .iconfont-wrapper {
  overflow: hidden;
  color: #6b717e !important;
  font-size: 1.2rem;
  padding: 0;
  margin: 0 0.2rem;
  display: block;
  position: relative;
}
.cid-tXWYLx65FO .iconfont-wrapper:hover .mbr-iconfont {
  animation: icons;
  animation-duration: 0.3s;
}
.cid-tXWYLx65FO .iconfont-wrapper:hover:before {
  height: 100%;
}
.cid-tXWYLx65FO .iconfont-wrapper:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: #ea4954;
  z-index: -1;
}
.cid-tXWYLx65FO nav.navbar {
  position: fixed;
}
.cid-tXWYLx65FO .navbar-caption-wrap {
  z-index: 10;
  transition: all 0.3s;
}
.cid-tXWYLx65FO .nav-item {
  border-left: 1px solid #efefef;
  border-right: 1px solid #efefef;
  margin-right: -1px;
}
@media (max-width: 992px) {
  .cid-tXWYLx65FO .nav-item {
    border: 0;
  }
}
.cid-tXWYLx65FO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tXWYLx65FO .icons-menu {
    margin-bottom: 1rem;
  }
}
.cid-tXWYLx65FO .title-wrap {
  cursor: pointer;
  border: 2px solid currentColor;
  padding: 6px 12px 3px 12px;
  position: relative;
}
.cid-tXWYLx65FO .title-wrap:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 0%;
  background: currentColor;
  z-index: -1;
}
.cid-tXWYLx65FO .title-wrap:hover span {
  color: white;
}
.cid-tXWYLx65FO .title-wrap:hover:before {
  height: 100%;
}
.cid-tXWYLx65FO .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-tXWYLx65FO .dropdown-menu {
  padding: 0;
  border-top: 4px solid #ea4954;
}
.cid-tXWYLx65FO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tXWYLx65FO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tXWYLx65FO .nav-dropdown .link {
  padding: 0 0.3rem !important;
  margin: 1.4rem 2rem !important;
}
@media (max-width: 992px) {
  .cid-tXWYLx65FO .nav-dropdown .link {
    margin: 0.5rem 1rem !important;
  }
}
.cid-tXWYLx65FO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tXWYLx65FO .nav-link {
  position: relative;
}
.cid-tXWYLx65FO .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tXWYLx65FO .container {
    flex-wrap: nowrap;
  }
}
.cid-tXWYLx65FO .dropdown-menu,
.cid-tXWYLx65FO .navbar.opened {
  background: #ffffff !important;
}
.cid-tXWYLx65FO .nav-item:focus,
.cid-tXWYLx65FO .nav-link:focus {
  outline: none;
}
.cid-tXWYLx65FO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tXWYLx65FO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXWYLx65FO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tXWYLx65FO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tXWYLx65FO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXWYLx65FO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXWYLx65FO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tXWYLx65FO .navbar.opened {
  transition: all 0.3s;
}
.cid-tXWYLx65FO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tXWYLx65FO .navbar .navbar-logo img {
  width: auto;
}
.cid-tXWYLx65FO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXWYLx65FO .navbar.collapsed {
  justify-content: center;
}
.cid-tXWYLx65FO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXWYLx65FO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXWYLx65FO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tXWYLx65FO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXWYLx65FO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXWYLx65FO .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-tXWYLx65FO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXWYLx65FO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tXWYLx65FO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tXWYLx65FO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXWYLx65FO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXWYLx65FO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXWYLx65FO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXWYLx65FO .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-tXWYLx65FO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tXWYLx65FO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXWYLx65FO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXWYLx65FO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tXWYLx65FO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tXWYLx65FO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tXWYLx65FO .navbar.navbar-short {
  min-height: 60px;
}
.cid-tXWYLx65FO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tXWYLx65FO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tXWYLx65FO .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-tXWYLx65FO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXWYLx65FO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXWYLx65FO .dropdown-item.active,
.cid-tXWYLx65FO .dropdown-item:active {
  background-color: transparent;
}
.cid-tXWYLx65FO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXWYLx65FO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXWYLx65FO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXWYLx65FO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tXWYLx65FO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXWYLx65FO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXWYLx65FO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tXWYLx65FO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tXWYLx65FO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tXWYLx65FO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ea4954;
}
.cid-tXWYLx65FO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tXWYLx65FO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXWYLx65FO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tXWYLx65FO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tXWYLx65FO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXWYLx65FO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tXWYLx65FO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tXWYLx65FO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tXWYLx65FO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tXWYLx65FO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXWYLx65FO .navbar {
    height: 70px;
  }
  .cid-tXWYLx65FO .navbar.opened {
    height: auto;
  }
  .cid-tXWYLx65FO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXWYLx65FO .navbar-caption-wrap,
.cid-tXWYLx65FO .title-wrap {
  color: #272727;
}
.cid-tXWYLu5WIX {
  padding-top: 75px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tXWYLu5WIX .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tXWYLu5WIX .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tXWYLu5WIX .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tXWYLu5WIX .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tXWYLu5WIX .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ea4954;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ea4954, #6b717e);
}
.cid-tXWYLu5WIX .icon-focus,
.cid-tXWYLu5WIX .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-tXWYLu5WIX .icon-focus:before,
.cid-tXWYLu5WIX .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tXWYLu5WIX .icon-video {
  font-size: 1.5rem !important;
}
.cid-tXWYLu5WIX .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tXWYLu5WIX ul {
  font-size: 0;
}
.cid-tXWYLu5WIX .mbr-gallery-filter ul {
  text-align: left;
}
.cid-tXWYLu5WIX .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-tXWYLu5WIX .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #ea4954 !important;
}
.cid-tXWYLu5WIX .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-tXWYLu5WIX .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-tXWYLu5WIX .mbr-gallery-filter ul li.active .btn:after {
  border-color: #ea4954;
}
.cid-tXWYLu5WIX .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-tXWYLu5WIX .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-tXWYLu5WIX .mbr-gallery-filter ul li:first-child,
.cid-tXWYLu5WIX .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-tXWYLu5WIX .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-tXWYLu5WIX .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-tXWYLu5WIX .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-tXWYLu5WIX .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tXWYLu5WIX .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-tXWYLu5WIX .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-tXWYLu5WIX .mbr-section-title,
.cid-tXWYLu5WIX .mbr-gallery-filter ul {
  color: #ea4954;
}
.cid-tXWYLuZj9e {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tXWYLuZj9e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXWYLuZj9e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXWYLuZj9e .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-tXWYLuZj9e .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tXWYLuZj9e .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tXWYLuZj9e .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tXWYLuZj9e .container {
    padding: 0 12px;
  }
}
.cid-tXWYLuZj9e .row {
  justify-content: center;
}
.cid-tXWYLuZj9e .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tXWYLuZj9e .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
@media (max-width: 992px) {
  .cid-tXWYLuZj9e .card {
    margin-bottom: 32px;
  }
}
.cid-tXWYLuZj9e .card .card-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-tXWYLuZj9e .card .card-wrapper {
    display: block;
  }
}
.cid-tXWYLuZj9e .card .card-wrapper .icon-wrapper {
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-tXWYLuZj9e .card .card-wrapper .icon-wrapper {
    margin-right: 0;
    margin-bottom: 16px;
    text-align: center;
  }
}
.cid-tXWYLuZj9e .card .card-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 46px;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  color: #ffffff;
}
.cid-tXWYLuZj9e .card .card-wrapper .icon-wrapper .icon_1 {
  background-color: #6b717e;
}
.cid-tXWYLuZj9e .card .card-wrapper .icon-wrapper .icon_2 {
  background-color: #6b717e;
}
.cid-tXWYLuZj9e .card .card-wrapper .icon-wrapper .icon_3 {
  background-color: #e3b4fa;
}
.cid-tXWYLuZj9e .card .card-wrapper .mbr-card-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tXWYLuZj9e .card .card-wrapper .mbr-card-title {
    text-align: center;
  }
}
.cid-tXWYLuZj9e .mbr-section-title {
  color: #ea4954;
  text-align: center;
}
.cid-tXWYLuZj9e .mbr-card-title {
  color: #6b717e;
}
.cid-tXWYLwxnoR {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #6b717e;
}
.cid-tXWYLwxnoR .container-fluid {
  padding: 0;
}
.cid-tXWYLwxnoR .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tXWYLwxnoR .social-row {
  width: 100%;
  justify-content: center;
  padding-bottom: 70px;
}
.cid-tXWYLwxnoR .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tXWYLwxnoR .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 20px;
}
.cid-tXWYLwxnoR .media-container-row .foot-menu li {
  padding: 8.5px 17px 12px;
  opacity: .7;
  transition: all .3s ease;
}
.cid-tXWYLwxnoR .media-container-row .foot-menu li::after {
  content: '';
  display: block;
  margin-top: 2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all .3s linear;
}
.cid-tXWYLwxnoR .media-container-row .foot-menu li:hover {
  opacity: 1;
}
.cid-tXWYLwxnoR .media-container-row .foot-menu li:hover::after {
  width: 100%;
}
.cid-tXWYLwxnoR .media-container-row .social-list {
  width: auto;
  padding: 5px 1rem 0 1rem;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tXWYLwxnoR .media-container-row .social-list .mbr-iconfont-social {
  font-size: 19px;
}
.cid-tXWYLwxnoR .media-container-row .social-list .soc-item {
  margin: 0 5px 5px 0;
  width: 45px;
  height: 45px;
  border: 1px solid #f0f3bf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tXWYLwxnoR .media-container-row .social-list a {
  margin: 0;
  opacity: 1;
  transition: all .3s ease;
}
.cid-tXWYLwxnoR .media-container-row .social-list a:hover {
  opacity: .7;
}
@media (max-width: 767px) {
  .cid-tXWYLwxnoR .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tXWYLwxnoR .title-wrapper {
  padding: 0 1rem;
  margin-bottom: 23px;
  width: 100%;
}
.cid-tXWYLwxnoR .title-wrapper .mbr-section-title {
  padding: 8.5px 0;
  margin: 0;
}
.cid-tXWYLwxnoR .copyright {
  margin: 0 60px;
  border-top: 1px solid #f0f3bf;
  padding: 26px 0;
}
.cid-tXWYLwxnoR .copyright .mbr-text {
  margin: 0;
}
.cid-tXWYLwxnoR .mbr-section-title,
.cid-tXWYLwxnoR .mbr-iconfont {
  color: #FFFFFF;
  text-align: center;
}
.cid-tXWYLwxnoR .mbr-text {
  color: #ffffff;
  text-align: center;
}
