body {
  font-family: Figtree;
}
.display-1 {
  font-family: 'Almendra', serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-2 {
  font-family: 'Almendra', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 1.95rem;
}
.display-4 {
  font-family: 'Almendra', serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 0.975rem;
}
.display-5 {
  font-family: 'Almendra', serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.3rem;
}
.display-7 {
  font-family: 'Almendra', serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 0.8125rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 1.7999999999999998rem + (5 - 1.7999999999999998) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7999999999999998rem + (5 - 1.7999999999999998) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.4rem + (3 - 1.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.4rem + (3 - 1.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.25rem + (2 - 1.25) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.25rem + (2 - 1.25) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((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: #fabc16 !important;
}
.bg-success {
  background-color: #526b51 !important;
}
.bg-info {
  background-color: #c9beb5 !important;
}
.bg-warning {
  background-color: #a09099 !important;
}
.bg-danger {
  background-color: #694f5f !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fabc16 !important;
  border-color: #fabc16 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b58504 !important;
  border-color: #b58504 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #6e7a7a !important;
  border-color: #6e7a7a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #454c4c !important;
  border-color: #454c4c !important;
}
.btn-info,
.btn-info:active {
  background-color: #c9beb5 !important;
  border-color: #c9beb5 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a49283 !important;
  border-color: #a49283 !important;
}
.btn-success,
.btn-success:active {
  background-color: #526b51 !important;
  border-color: #526b51 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2c3a2c !important;
  border-color: #2c3a2c !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #a09099 !important;
  border-color: #a09099 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #75646e !important;
  border-color: #75646e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #694f5f !important;
  border-color: #694f5f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #382a32 !important;
  border-color: #382a32 !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.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #45494e !important;
  border-color: #45494e !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #1c1e20 !important;
  border-color: #1c1e20 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #fabc16;
}
.btn-primary-outline:before,
.btn-primary-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #fabc16;
  opacity: 0.1;
}
.btn-primary-outline:after,
.btn-primary-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #fabc16;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-primary-outline .mbr-iconfont,
.btn-primary-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #fabc16;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-primary-outline .mbr-iconfont:before,
.btn-primary-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #fabc16 !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline:hover .mbr-iconfont,
.btn-primary-outline:focus .mbr-iconfont,
.btn-primary-outline.focus .mbr-iconfont,
.btn-primary-outline.active .mbr-iconfont {
  background: #fabc16;
  color: #ffffff;
}
.btn-primary-outline:hover .mbr-iconfont::before,
.btn-primary-outline:focus .mbr-iconfont::before,
.btn-primary-outline.focus .mbr-iconfont::before,
.btn-primary-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-primary-outline:hover:after,
.btn-primary-outline:focus:after,
.btn-primary-outline.focus:after,
.btn-primary-outline.active:after {
  transform: scaleX(1);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #fabc16 !important;
  border-color: #fabc16 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #6e7a7a;
}
.btn-secondary-outline:before,
.btn-secondary-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #6e7a7a;
  opacity: 0.1;
}
.btn-secondary-outline:after,
.btn-secondary-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #6e7a7a;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-secondary-outline .mbr-iconfont,
.btn-secondary-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #6e7a7a;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-secondary-outline .mbr-iconfont:before,
.btn-secondary-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #6e7a7a !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline:hover .mbr-iconfont,
.btn-secondary-outline:focus .mbr-iconfont,
.btn-secondary-outline.focus .mbr-iconfont,
.btn-secondary-outline.active .mbr-iconfont {
  background: #6e7a7a;
  color: #ffffff;
}
.btn-secondary-outline:hover .mbr-iconfont::before,
.btn-secondary-outline:focus .mbr-iconfont::before,
.btn-secondary-outline.focus .mbr-iconfont::before,
.btn-secondary-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-secondary-outline:hover:after,
.btn-secondary-outline:focus:after,
.btn-secondary-outline.focus:after,
.btn-secondary-outline.active:after {
  transform: scaleX(1);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #6e7a7a !important;
  border-color: #6e7a7a !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #c9beb5;
}
.btn-info-outline:before,
.btn-info-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #c9beb5;
  opacity: 0.1;
}
.btn-info-outline:after,
.btn-info-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #c9beb5;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-info-outline .mbr-iconfont,
.btn-info-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #c9beb5;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-info-outline .mbr-iconfont:before,
.btn-info-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #c9beb5 !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline:hover .mbr-iconfont,
.btn-info-outline:focus .mbr-iconfont,
.btn-info-outline.focus .mbr-iconfont,
.btn-info-outline.active .mbr-iconfont {
  background: #c9beb5;
  color: #ffffff;
}
.btn-info-outline:hover .mbr-iconfont::before,
.btn-info-outline:focus .mbr-iconfont::before,
.btn-info-outline.focus .mbr-iconfont::before,
.btn-info-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-info-outline:hover:after,
.btn-info-outline:focus:after,
.btn-info-outline.focus:after,
.btn-info-outline.active:after {
  transform: scaleX(1);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #c9beb5 !important;
  border-color: #c9beb5 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #526b51;
}
.btn-success-outline:before,
.btn-success-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #526b51;
  opacity: 0.1;
}
.btn-success-outline:after,
.btn-success-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #526b51;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-success-outline .mbr-iconfont,
.btn-success-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #526b51;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-success-outline .mbr-iconfont:before,
.btn-success-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #526b51 !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline:hover .mbr-iconfont,
.btn-success-outline:focus .mbr-iconfont,
.btn-success-outline.focus .mbr-iconfont,
.btn-success-outline.active .mbr-iconfont {
  background: #526b51;
  color: #ffffff;
}
.btn-success-outline:hover .mbr-iconfont::before,
.btn-success-outline:focus .mbr-iconfont::before,
.btn-success-outline.focus .mbr-iconfont::before,
.btn-success-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-success-outline:hover:after,
.btn-success-outline:focus:after,
.btn-success-outline.focus:after,
.btn-success-outline.active:after {
  transform: scaleX(1);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #526b51 !important;
  border-color: #526b51 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #a09099;
}
.btn-warning-outline:before,
.btn-warning-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #a09099;
  opacity: 0.1;
}
.btn-warning-outline:after,
.btn-warning-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #a09099;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-warning-outline .mbr-iconfont,
.btn-warning-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #a09099;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-warning-outline .mbr-iconfont:before,
.btn-warning-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a09099 !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline:hover .mbr-iconfont,
.btn-warning-outline:focus .mbr-iconfont,
.btn-warning-outline.focus .mbr-iconfont,
.btn-warning-outline.active .mbr-iconfont {
  background: #a09099;
  color: #ffffff;
}
.btn-warning-outline:hover .mbr-iconfont::before,
.btn-warning-outline:focus .mbr-iconfont::before,
.btn-warning-outline.focus .mbr-iconfont::before,
.btn-warning-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-warning-outline:hover:after,
.btn-warning-outline:focus:after,
.btn-warning-outline.focus:after,
.btn-warning-outline.active:after {
  transform: scaleX(1);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #a09099 !important;
  border-color: #a09099 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #694f5f;
}
.btn-danger-outline:before,
.btn-danger-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #694f5f;
  opacity: 0.1;
}
.btn-danger-outline:after,
.btn-danger-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #694f5f;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-danger-outline .mbr-iconfont,
.btn-danger-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #694f5f;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-danger-outline .mbr-iconfont:before,
.btn-danger-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #694f5f !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline:hover .mbr-iconfont,
.btn-danger-outline:focus .mbr-iconfont,
.btn-danger-outline.focus .mbr-iconfont,
.btn-danger-outline.active .mbr-iconfont {
  background: #694f5f;
  color: #ffffff;
}
.btn-danger-outline:hover .mbr-iconfont::before,
.btn-danger-outline:focus .mbr-iconfont::before,
.btn-danger-outline.focus .mbr-iconfont::before,
.btn-danger-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-danger-outline:hover:after,
.btn-danger-outline:focus:after,
.btn-danger-outline.focus:after,
.btn-danger-outline.active:after {
  transform: scaleX(1);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #694f5f !important;
  border-color: #694f5f !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #45494e;
}
.btn-black-outline:before,
.btn-black-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #45494e;
  opacity: 0.1;
}
.btn-black-outline:after,
.btn-black-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #45494e;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-black-outline .mbr-iconfont,
.btn-black-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #45494e;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-black-outline .mbr-iconfont:before,
.btn-black-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #45494e !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline:hover .mbr-iconfont,
.btn-black-outline:focus .mbr-iconfont,
.btn-black-outline.focus .mbr-iconfont,
.btn-black-outline.active .mbr-iconfont {
  background: #45494e;
  color: #ffffff;
}
.btn-black-outline:hover .mbr-iconfont::before,
.btn-black-outline:focus .mbr-iconfont::before,
.btn-black-outline.focus .mbr-iconfont::before,
.btn-black-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-black-outline:hover:after,
.btn-black-outline:focus:after,
.btn-black-outline.focus:after,
.btn-black-outline.active:after {
  transform: scaleX(1);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #45494e !important;
  border-color: #45494e !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  padding: 0 !important;
  position: relative !important;
  min-height: auto !important;
  color: #fafafa;
}
.btn-white-outline:before,
.btn-white-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #fafafa;
  opacity: 0.1;
}
.btn-white-outline:after,
.btn-white-outline:active:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #fafafa;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.btn-white-outline .mbr-iconfont,
.btn-white-outline:active .mbr-iconfont {
  position: relative;
  padding: 0.3em;
  border-radius: 50%;
  border: 1px solid #fafafa;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease !important;
}
.btn-white-outline .mbr-iconfont:before,
.btn-white-outline:active .mbr-iconfont:before {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.1s all !important;
  animation: btn-move 0.3s ease;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #fafafa !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline:hover .mbr-iconfont,
.btn-white-outline:focus .mbr-iconfont,
.btn-white-outline.focus .mbr-iconfont,
.btn-white-outline.active .mbr-iconfont {
  background: #fafafa;
  color: #7a7a7a;
}
.btn-white-outline:hover .mbr-iconfont::before,
.btn-white-outline:focus .mbr-iconfont::before,
.btn-white-outline.focus .mbr-iconfont::before,
.btn-white-outline.active .mbr-iconfont::before {
  animation: btn-move-hover 0.3s ease;
}
.btn-white-outline:hover:after,
.btn-white-outline:focus:after,
.btn-white-outline.focus:after,
.btn-white-outline.active:after {
  transform: scaleX(1);
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #fabc16 !important;
}
.text-secondary {
  color: #6e7a7a !important;
}
.text-success {
  color: #526b51 !important;
}
.text-info {
  color: #c9beb5 !important;
}
.text-warning {
  color: #a09099 !important;
}
.text-danger {
  color: #694f5f !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #45494E !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #a67a04 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #3e4444 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #263125 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #9e8a7a !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #6d5d66 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #2f232a !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: #151618 !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: #fabc16;
}
.nav-tabs .nav-link:not(.active) {
  color: #26292C;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #c9beb5;
}
.alert-warning {
  background-color: #a09099;
}
.alert-danger {
  background-color: #694f5f;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fabc16;
  border-color: #fabc16;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #fabc16;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fef5de;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #91ab90;
}
.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: #dbd5d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #aa8e9f;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Almendra', serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 0.975rem;
}
.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: #fabc16 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Almendra', serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 0.975rem;
}
blockquote {
  border-color: #fabc16;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fabc16;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #fabc16;
}
.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: #fabc16;
  border-bottom-color: #fabc16;
}
.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: #000000 !important;
  background-color: #fabc16 !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: #6e7a7a !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='%23fabc16' %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-duration: .2s;
}
a:hover {
  background-image: none !important;
}
.container,
.container-fluid {
  padding-left: 60px;
  padding-right: 60px;
}
@media (max-width: 1599px) {
  .container,
  .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 991px) {
  .container,
  .container-fluid {
    padding-left: 35px;
    padding-right: 35px;
  }
}
@media (max-width: 767px) {
  .container,
  .container-fluid {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 575px) {
  .container,
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.container {
  max-width: 1920px;
  margin: 0 auto;
}
.row {
  margin-left: -20px;
  margin-right: -20px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 991px) {
  .row {
    margin-left: -18px;
    margin-right: -18px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 575px) {
  .row {
    margin-left: -16px;
    margin-right: -16px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.row {
  justify-content: center;
}
.mbr-section-btn .btn {
  min-width: 100px;
  min-height: 60px;
  padding: 15px 30px;
  font-weight: 500;
  line-height: 1 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
@keyframes btn-move {
  0% {
    left: 0;
  }
  49% {
    left: -100%;
  }
  50% {
    left: -100%;
    opacity: 0;
  }
  51% {
    left: 100%;
    opacity: 0;
  }
  52% {
    left: 100%;
    opacity: 1;
  }
  100% {
    left: 0;
  }
}
@keyframes btn-move-hover {
  0% {
    left: 0;
  }
  49% {
    left: 100%;
  }
  50% {
    left: 100%;
    opacity: 0;
  }
  51% {
    left: -100%;
    opacity: 0;
  }
  52% {
    left: -100%;
    opacity: 1;
  }
  100% {
    left: 0;
  }
}
.cid-tfw5EMTwpc .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-tfw5EMTwpc .dropdown-menu {
  padding: 0;
}
.cid-tfw5EMTwpc .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-tfw5EMTwpc .dropdown-item {
    text-align: left !important;
  }
}
.cid-tfw5EMTwpc .dropdown-item:hover {
  background-position: right !important;
}
.cid-tfw5EMTwpc .dropdown-item:hover:after {
  color: #fabc16;
}
.cid-tfw5EMTwpc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tfw5EMTwpc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tfw5EMTwpc .nav-link {
  position: relative;
}
.cid-tfw5EMTwpc .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
  padding: 0 !important;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-tfw5EMTwpc .container {
    flex-wrap: wrap;
  }
}
.cid-tfw5EMTwpc .dropdown-menu,
.cid-tfw5EMTwpc .navbar.opened {
  background: #ffffff !important;
}
.cid-tfw5EMTwpc .nav-item:focus,
.cid-tfw5EMTwpc .nav-link:focus {
  outline: none;
}
.cid-tfw5EMTwpc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tfw5EMTwpc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tfw5EMTwpc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tfw5EMTwpc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tfw5EMTwpc .navbar {
  min-height: 60px;
  transition: all .3s !important;
  box-sizing: content-box;
  min-height: 80px;
  position: relative;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07) !important;
}
.cid-tfw5EMTwpc .navbar.opened {
  transition: all 0.3s;
}
.cid-tfw5EMTwpc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tfw5EMTwpc .navbar .navbar-logo img {
  width: auto;
}
.cid-tfw5EMTwpc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tfw5EMTwpc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tfw5EMTwpc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tfw5EMTwpc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tfw5EMTwpc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tfw5EMTwpc .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-tfw5EMTwpc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tfw5EMTwpc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tfw5EMTwpc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tfw5EMTwpc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tfw5EMTwpc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tfw5EMTwpc .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tfw5EMTwpc .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 40%;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 60px !important;
  padding-right: 60px !important;
}
.cid-tfw5EMTwpc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tfw5EMTwpc .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 1599px) {
  .cid-tfw5EMTwpc .navbar-brand {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-tfw5EMTwpc .navbar-brand {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 991px) {
  .cid-tfw5EMTwpc .navbar-brand {
    display: none;
  }
}
.cid-tfw5EMTwpc .dropdown-item.active,
.cid-tfw5EMTwpc .dropdown-item:active {
  background-color: transparent;
}
.cid-tfw5EMTwpc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tfw5EMTwpc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tfw5EMTwpc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tfw5EMTwpc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tfw5EMTwpc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tfw5EMTwpc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tfw5EMTwpc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tfw5EMTwpc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tfw5EMTwpc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tfw5EMTwpc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tfw5EMTwpc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfw5EMTwpc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tfw5EMTwpc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tfw5EMTwpc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfw5EMTwpc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tfw5EMTwpc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tfw5EMTwpc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tfw5EMTwpc .navbar-dropdown {
  padding: 0;
}
.cid-tfw5EMTwpc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tfw5EMTwpc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tfw5EMTwpc .navbar {
    height: 70px;
  }
  .cid-tfw5EMTwpc .navbar.opened {
    height: auto;
  }
  .cid-tfw5EMTwpc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tfw5EMTwpc .navbar-short {
  min-height: 80px;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.07);
}
.cid-tfw5EMTwpc .navbar-short .btn-wrap .mbr-section-btn .btn-white {
  border-bottom: none !important;
}
.cid-tfw5EMTwpc .navbar-caption-wrap {
  padding: 8px 0;
}
.cid-tfw5EMTwpc .logo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 20%;
}
@media (max-width: 991px) {
  .cid-tfw5EMTwpc .logo-wrap {
    order: 2;
  }
}
@media (max-width: 575px) {
  .cid-tfw5EMTwpc .logo-wrap {
    width: 33.33333333% !important;
  }
}
.cid-tfw5EMTwpc .navbar-logo {
  display: flex;
  align-items: center;
  min-height: 80px;
  padding: 8px;
  margin-right: 0 !important;
}
.cid-tfw5EMTwpc .btn-wrap {
  width: 40%;
  padding-right: 80px;
}
@media (max-width: 991px) {
  .cid-tfw5EMTwpc .btn-wrap {
    order: 3;
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .cid-tfw5EMTwpc .btn-wrap {
    width: 33.33333333% !important;
  }
}
.cid-tfw5EMTwpc .btn-wrap .mbr-section-btn {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: flex-end;
  flex-wrap: wrap;
  height: 100%;
}
.cid-tfw5EMTwpc .btn-wrap .mbr-section-btn .btn {
  position: relative;
  min-height: 80px;
  margin: 0 !important;
  height: 100%;
  padding: 20px 30px !important;
  border: 1px solid rgba(0, 0, 0, 0.07) !important;
  border-bottom: none !important;
}
@media (max-width: 767px) {
  .cid-tfw5EMTwpc .btn-wrap .mbr-section-btn .btn {
    padding: 20px 15px !important;
  }
}
.cid-tfw5EMTwpc .btn-wrap .mbr-section-btn .btn::after {
  content: '';
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 20px;
  width: auto !important;
  height: 1px;
  margin-top: 0.625em;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.cid-tfw5EMTwpc .btn-wrap .mbr-section-btn .btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.cid-tfw5EMTwpc .btn-wrap .mbr-section-btn .btn-white {
  color: #45494E !important;
  background-color: #FFFFFF !important;
}
.cid-tfw5EMTwpc .offcanvas_box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 80px !important;
  margin-left: -80px;
}
@media (max-width: 991px) {
  .cid-tfw5EMTwpc .offcanvas_box {
    order: 1;
    width: 40% !important;
    margin-left: 0;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-tfw5EMTwpc .offcanvas_box {
    width: 33.33333333% !important;
  }
}
.cid-tfw5EMTwpc .offcanvas_box button.btn_offcanvas {
  background-color: #45494e;
  outline: none;
  width: 80px;
  height: 80px;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tfw5EMTwpc .offcanvas_box button.btn_offcanvas {
    margin-right: auto;
  }
}
.cid-tfw5EMTwpc .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  overflow: hidden;
  right: 30px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-tfw5EMTwpc .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 34px;
}
.cid-tfw5EMTwpc .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  width: 20px;
  top: 39px;
}
.cid-tfw5EMTwpc .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  width: 20px;
  top: 44px;
}
.cid-tfw5EMTwpc nav.navbar {
  flex-wrap: nowrap;
  border-radius: 0 !important;
}
.cid-tfw5EMTwpc .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.8s ease-in-out;
}
.cid-tfw5EMTwpc .offcanvas .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  padding: 0;
  background-size: 25%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1 !important;
  box-shadow: none !important;
}
.cid-tfw5EMTwpc .image-wrapper {
  position: fixed;
  height: 100vh;
  width: 65%;
  top: 0;
  left: 0;
}
.cid-tfw5EMTwpc .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tfw5EMTwpc .image-wrapper {
    display: none;
  }
}
.cid-tfw5EMTwpc .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 35%;
  margin-left: auto;
  text-align: left;
  padding: 70px 0 0;
  background-color: #45494e;
}
@media (max-width: 991px) {
  .cid-tfw5EMTwpc .offcanvas-body {
    max-width: 100%;
  }
}
.cid-tfw5EMTwpc .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 12px 60px 80px;
  margin-bottom: auto;
}
@media (max-width: 1599px) {
  .cid-tfw5EMTwpc .offcanvas_link {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-tfw5EMTwpc .offcanvas_link {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 767px) {
  .cid-tfw5EMTwpc .offcanvas_link {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 575px) {
  .cid-tfw5EMTwpc .offcanvas_link {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-tfw5EMTwpc .navbar-nav {
  display: flex !important;
}
.cid-tfw5EMTwpc .navbar-nav .nav-item {
  width: 100%;
  text-align: left;
}
.cid-tfw5EMTwpc .navbar-nav .nav-item .nav-link {
  padding: 5px 0 !important;
  margin: 0 !important;
  justify-content: flex-start;
}
.cid-tfw5EMTwpc .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #45494e !important;
}
.cid-tfw5EMTwpc .offcanvas_footer {
  margin-top: auto;
  padding-top: 40px;
}
.cid-tfw5EMTwpc .offcanvas_contact {
  display: flex;
  align-items: center;
  padding: 0 60px 40px;
}
@media (max-width: 1599px) {
  .cid-tfw5EMTwpc .offcanvas_contact {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-tfw5EMTwpc .offcanvas_contact {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 767px) {
  .cid-tfw5EMTwpc .offcanvas_contact {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 575px) {
  .cid-tfw5EMTwpc .offcanvas_contact {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-tfw5EMTwpc .offcanvas_text {
  width: 60%;
}
.cid-tfw5EMTwpc .mbr-text {
  color: #FFFFFF;
}
.cid-tfw5EMTwpc .offcanvas_logo {
  display: flex;
  justify-content: flex-end;
  width: 40%;
  margin-left: auto;
}
.cid-tfw5EMTwpc .offcanvas_logo-wrapper {
  width: 2.5rem;
}
.cid-tfw5EMTwpc .offcanvas_logo-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tfw5EMTwpc .offcanvas_btn {
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cid-tfw5EMTwpc .offcanvas_btn .mbr-section-btn {
  display: flex;
  width: 100%;
}
.cid-tfw5EMTwpc .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-tfw5EMTwpc .offcanvas_btn .mbr-section-btn .btn-white {
  color: #45494E !important;
  background-color: #FFFFFF !important;
}
.cid-tfw5Ko6eOP {
  display: flex;
  background-image: url("../../../assets/images/452936305-18070833340544545-6949989403672495465-n-1028x825.jpg");
  align-items: center;
}
.cid-tfw5Ko6eOP .mbr-overlay {
  background-color: #000000;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .cid-tfw5Ko6eOP .row {
    justify-content: flex-end;
  }
  .cid-tfw5Ko6eOP .content-wrap {
    width: 70%;
  }
}
@media (max-width: 991px) {
  .cid-tfw5Ko6eOP .content-wrap {
    width: 100%;
  }
}
.cid-tfw5Ko6eOP .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-tfw5Ko6eOP .mbr-section-title {
    text-align: center;
    margin-bottom: 30px;
  }
}
.cid-tfw5Ko6eOP .mbr-text {
  text-align: center;
  color: #f8f6f2;
}
@media (max-width: 767px) {
  .cid-tfw5Ko6eOP .mbr-text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tfw5Ko6eOP .mbr-section-btn {
    text-align: center;
  }
}
.cid-tfw5Ko6eOP .mbr-section-title,
.cid-tfw5Ko6eOP .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uqv8XuOA7E {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uqv8XuOA7E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqv8XuOA7E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqv8XuOA7E .tabl-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.cid-uqv8XuOA7E .item-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 0;
}
.cid-uqv8XuOA7E .frame-item {
  width: 40px;
  height: 1px;
  margin-right: 20px;
  background-color: #da0e0e;
}
.cid-uqv8XuOA7E .card-text {
  color: #45494E;
  flex-grow: 1;
}
.cid-uqv98Am8Tz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #a09099;
}
.cid-uqv98Am8Tz .row {
  justify-content: flex-start;
}
.cid-uqv98Am8Tz .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uqv98Am8Tz .mbr-section-subtitle {
  margin-top: 24px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-uqv98Am8Tz .mbr-section-subtitle {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uqv98Am8Tz .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-uqv98Am8Tz .mbr-text {
  margin-top: 36px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-uqv98Am8Tz .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-uqv98Am8Tz .mbr-text {
    margin-top: 20px;
  }
}
.cid-uqv98Am8Tz .mbr-section-title DIV {
  text-align: center;
}
.cid-tfw6XOUXI2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tfw6XOUXI2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfw6XOUXI2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tfw6XOUXI2 .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-tfw6XOUXI2 .col-img {
    order: 2;
  }
}
.cid-tfw6XOUXI2 .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tfw6XOUXI2 .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-tfw6XOUXI2 .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-tfw6XOUXI2 .col-tex {
    order: 1;
  }
}
.cid-tfw6XOUXI2 .card-title {
  color: #000000;
}
.cid-tfw6XOUXI2 .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-tfw6XOUXI2 .mbr-section-btn {
  margin-top: 60px;
}
.cid-tfw6XOUXI2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tfw6XOUXI2 .mbr-text,
.cid-tfw6XOUXI2 .mbr-section-btn {
  color: #000000;
}
.cid-uqvcJFGYlE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a09099;
}
.cid-uqvcJFGYlE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqvcJFGYlE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqvcJFGYlE .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cid-uqvcJFGYlE .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-uqvcJFGYlE .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uqvcJFGYlE .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uqvcJFGYlE .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uqvcJFGYlE .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-uqvcJFGYlE .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-uqvcJFGYlE .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uqvcJFGYlE .content-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #f7fff7;
}
.cid-uqvcJFGYlE .content-wrapper .item .item-wrapper:hover,
.cid-uqvcJFGYlE .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-uqvcJFGYlE .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-uqvcJFGYlE .content-wrapper .item .item-wrapper .item-content .item-img img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uqvcJFGYlE .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-uqvcJFGYlE .content-wrapper .item .item-wrapper .item-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
}
.cid-uqvcJFGYlE .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-uqvcJFGYlE .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqvcJFGYlE .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-uqvcJFGYlE .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uqvcJFGYlE .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-uqvcJFGYlE .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqvcJFGYlE .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-uqvcJFGYlE .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-uqvcJFGYlE .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqvcJFGYlE .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-uqvcJFGYlE .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uqvcJFGYlE .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap {
  display: inline-flex;
  padding: 11px 20px;
  margin: 0 8px 8px 0;
  background-color: #d3f2ff;
}
.cid-uqvcJFGYlE .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-uqvcJFGYlE .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-uqvcJFGYlE .item-title {
  color: #050f0f;
}
.cid-uqvcJFGYlE .item-text {
  color: #050f0f;
}
.cid-uqvcJFGYlE .list {
  color: #050f0f;
}
.cid-tfwd0Y8TeR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tfwd0Y8TeR .row {
  justify-content: flex-start;
}
.cid-tfwd0Y8TeR .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 1199px) {
  .cid-tfwd0Y8TeR .mbr-section-head {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-tfwd0Y8TeR .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-tfwd0Y8TeR .mbr-section-title {
  color: #000000;
}
.cid-tfwd0Y8TeR .mbr-section-subtitle {
  margin-top: 24px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-tfwd0Y8TeR .mbr-section-subtitle {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tfwd0Y8TeR .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-tfwd0Y8TeR .card-container {
  width: 100%;
  padding: 7.5% 10%;
  background-color: #a09099;
  border-left: 1px solid #000000;
}
.cid-tfwd0Y8TeR .mbr-text {
  color: #000000;
}
.cid-tfwd0Y8TeR .card-text-wrap {
  margin-top: 32px;
}
@media (max-width: 991px) {
  .cid-tfwd0Y8TeR .card-text-wrap {
    margin-top: 28px;
  }
}
@media (max-width: 767px) {
  .cid-tfwd0Y8TeR .card-text-wrap {
    margin-top: 22px;
  }
}
.cid-tfwd0Y8TeR .name-text {
  color: #45494E;
}
.cid-tfwd0Y8TeR .date-text {
  color: #5c6064;
}
.cid-uqvcuEWFj4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a09099;
}
.cid-uqvcuEWFj4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqvcuEWFj4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqvcuEWFj4 .row {
  justify-content: flex-start;
}
.cid-uqvcuEWFj4 .mbr-section-title {
  color: #000000;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-uqvcuEWFj4 .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uqvcuEWFj4 .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-uqvcuEWFj4 .image-wrapper {
  width: 100%;
}
.cid-uqvcuEWFj4 .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-uqvcuEWFj4 .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-uqvcuEWFj4 .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uqvcuEWFj4 .mbr-text {
    margin-top: 45px;
  }
}
.cid-uqvcuEWFj4 .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-uqvcuEWFj4 .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-uqvcuEWFj4 .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-uqvcuEWFj4 .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-uqvcuEWFj4 .mbr-text,
.cid-uqvcuEWFj4 .mbr-section-btn {
  color: #000000;
}
.cid-uqxcsw3zWu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqxcsw3zWu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxcsw3zWu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxcsw3zWu .row {
  margin: 0 !important;
}
.cid-uqxcsw3zWu .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uqxcsw3zWu .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uqxcsw3zWu .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-uqxcsw3zWu .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
  text-align: center;
}
.cid-uqxcsw3zWu .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uqxcsw3zWu .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-uqxcsw3zWu .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqxcsw3zWu .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-uqxcsw3zWu .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-uqxcsw3zWu .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-uqxcsw3zWu .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uqxcsw3zWu .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #694f5f;
  margin-left: 0.5rem;
}
.cid-uqxcsw3zWu .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #694f5f;
  font-weight: 900;
}
.cid-uqxcsw3zWu .panel-group {
  border: none;
}
.cid-uqxcsw3zWu .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #694f5f;
}
.cid-uqxcsw3zWu .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uqxcsw3zWu .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uqxcsw3zWu .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-uqxcsw3zWu .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-uqxcsw3zWu .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-uqxcsw3zWu .panel-title-edit {
  color: #131313;
}
.cid-uqxcsw3zWu .panel-body {
  padding: 0 0 20px;
}
.cid-uqxcsw3zWu .panel-text {
  color: #131313;
  margin: 0;
}
.cid-tfwboYGLtr {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #a09099;
}
.cid-tfwboYGLtr .row {
  justify-content: flex-start;
}
.cid-tfwboYGLtr .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tfwboYGLtr .mbr-section-subtitle {
  margin-top: 24px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-tfwboYGLtr .mbr-section-subtitle {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tfwboYGLtr .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-tfwboYGLtr .mbr-text {
  margin-top: 36px;
  color: #000000;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tfwboYGLtr .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-tfwboYGLtr .mbr-text {
    margin-top: 20px;
  }
}
.cid-uqxbQJo4ZF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f6f2;
}
.cid-uqxbQJo4ZF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxbQJo4ZF .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-uqxbQJo4ZF .container {
    padding: 0 30px;
  }
}
.cid-uqxbQJo4ZF .row {
  justify-content: center;
}
.cid-uqxbQJo4ZF .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uqxbQJo4ZF .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqxbQJo4ZF .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-uqxbQJo4ZF .video-block .video-wrapper .app-video-wrapper::before {
  color: #212529;
  text-shadow: none;
}
.cid-uqxbQJo4ZF .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqxbQJo4ZF .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uqxbQJo4ZF .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uqvcrjuOIA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uqvcrjuOIA .col-title {
    margin-bottom: 20px;
  }
}
.cid-uqvcrjuOIA .mbr-section-title {
  color: #000000;
}
.cid-uqvcrjuOIA .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uqvcrjuOIA .mbr-text {
  color: #000000;
}
.cid-uqvdm6xegc {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
  position: relative;
}
.cid-uqvdm6xegc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #f3ece6, #694f5f);
}
.cid-uqvdm6xegc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqvdm6xegc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqvdm6xegc .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uqvdm6xegc .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uqvdm6xegc .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uqvdm6xegc .container {
    padding: 0 16px;
  }
}
.cid-uqvdm6xegc .content-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uqvdm6xegc .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-uqvdm6xegc .item {
  margin-bottom: 32px;
}
.cid-uqvdm6xegc .item .item-wrapper .card-box .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uqvdm6xegc .item .item-wrapper .card-box .title-wrapper .title-wrap {
    margin-bottom: 16px;
  }
}
.cid-uqvdm6xegc .item .item-wrapper .card-box .title-wrapper .title-wrap .mbr-iconfont {
  font-size: 36px;
  color: #f4f4f4;
  margin-right: 12px;
}
.cid-uqvdm6xegc .item .item-wrapper .card-box .title-wrapper .title-wrap .card-title {
  margin-bottom: 0;
}
.cid-uqvdm6xegc .item .item-wrapper .card-box .text-wrap .card-text {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
.cid-uqvdm6xegc .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uqvdm6xegc .card-title {
  color: #f4f4f4;
}
.cid-uqvdm6xegc .card-text {
  color: #c1c1c1;
}
.cid-uqvgmFw9B1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqvgmFw9B1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqvgmFw9B1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqvgmFw9B1 .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-uqvgmFw9B1 .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uqvgmFw9B1 .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uqvgmFw9B1 .item-img {
    width: 100%;
  }
}
.cid-uqvgmFw9B1 .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uqvgmFw9B1 .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqvgmFw9B1 .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uqvgmFw9B1 .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uqvgmFw9B1 .card-title {
  color: #131313;
}
.cid-uqvgmFw9B1 .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-uqvgmFw9B1 .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-uqvgmFw9B1 .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-uqvgmFw9B1 .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-uqvgmFw9B1 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #fc7942;
  transform: rotate(-45deg);
}
.cid-uqvgmFw9B1 .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-uqvgmFw9B1 .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-uqvgmFw9B1 .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uqvcxZtwfU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a09099;
}
.cid-uqvcxZtwfU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqvcxZtwfU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqvcxZtwfU .row {
  justify-content: flex-start;
}
.cid-uqvcxZtwfU .mbr-section-title {
  color: #000000;
}
.cid-uqvcxZtwfU .mbr-text {
  margin-top: 36px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-uqvcxZtwfU .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-uqvcxZtwfU .mbr-text {
    margin-top: 20px;
  }
}
.cid-uqvcxZtwfU .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-uqvcxZtwfU .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-uqvcxZtwfU .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-uqvcxZtwfU .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-uqvcxZtwfU .mbr-text,
.cid-uqvcxZtwfU .mbr-section-btn {
  color: #000000;
}
.cid-uqxgpLNVac {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uqxgpLNVac .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxgpLNVac .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxgpLNVac .mbr-section-head {
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-uqxgpLNVac .mbr-section-head {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uqxgpLNVac .mbr-section-head {
    margin-bottom: 45px;
  }
}
.cid-uqxgpLNVac .google-map {
  height: 600px;
  position: relative;
}
.cid-uqxgpLNVac .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uqxgpLNVac .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uqxgpLNVac .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqxgpLNVac .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqxgmRjqRs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #15171a;
}
.cid-uqxgmRjqRs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxgmRjqRs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxgmRjqRs .content-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uqxgmRjqRs .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uqxgmRjqRs .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uqxgmRjqRs .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqxgmRjqRs .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uqxgmRjqRs .social-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uqxgmRjqRs .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uqxgmRjqRs .social-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uqxgmRjqRs .social-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqxgmRjqRs .social-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uqxgmRjqRs .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqxgmRjqRs .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  color: #f96e47;
}
.cid-uqxgmRjqRs .social-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: #a09099;
  font-size: 32px;
  border-radius: .5rem;
  transition: all 0.3s ease-in-out;
  margin: 0 8px 8px 0;
}
.cid-uqxgmRjqRs .social-wrapper .social-wrap .soc-wrap .soc-item:nth-child(2n) a .mbr-iconfont {
  background-color: #a09099;
}
.cid-uqxgmRjqRs .list-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uqxgmRjqRs .list-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uqxgmRjqRs .list-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uqxgmRjqRs .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uqxgmRjqRs .list-wrapper .list .item-wrap {
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uqxgmRjqRs .list-wrapper .list .item-wrap {
    margin-bottom: 16px;
  }
}
.cid-uqxgmRjqRs .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqxgmRjqRs .list-wrapper .list .item-wrap:hover,
.cid-uqxgmRjqRs .list-wrapper .list .item-wrap:focus {
  color: #f96e47;
}
.cid-uqxgmRjqRs .border-wrap {
  height: 1px;
  background-color: #b9b9b9;
  margin: 78px 0 24px 0;
}
@media (max-width: 992px) {
  .cid-uqxgmRjqRs .border-wrap {
    margin: 0 0 16px 0;
  }
}
.cid-uqxgmRjqRs .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-uqxgmRjqRs .mbr-section-title {
  color: #ffffff;
}
.cid-uqxgmRjqRs .mbr-text {
  color: #ffffff;
}
.cid-uqxgmRjqRs .mbr-desc {
  color: #16fab4;
}
.cid-uqxgmRjqRs .list {
  color: #ffffff;
}
.cid-uqxk5ltrSz .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-uqxk5ltrSz .dropdown-menu {
  padding: 0;
}
.cid-uqxk5ltrSz .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uqxk5ltrSz .dropdown-item {
    text-align: left !important;
  }
}
.cid-uqxk5ltrSz .dropdown-item:hover {
  background-position: right !important;
}
.cid-uqxk5ltrSz .dropdown-item:hover:after {
  color: #fabc16;
}
.cid-uqxk5ltrSz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqxk5ltrSz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqxk5ltrSz .nav-link {
  position: relative;
}
.cid-uqxk5ltrSz .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
  padding: 0 !important;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-uqxk5ltrSz .container {
    flex-wrap: wrap;
  }
}
.cid-uqxk5ltrSz .dropdown-menu,
.cid-uqxk5ltrSz .navbar.opened {
  background: #ffffff !important;
}
.cid-uqxk5ltrSz .nav-item:focus,
.cid-uqxk5ltrSz .nav-link:focus {
  outline: none;
}
.cid-uqxk5ltrSz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqxk5ltrSz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqxk5ltrSz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqxk5ltrSz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqxk5ltrSz .navbar {
  min-height: 60px;
  transition: all .3s !important;
  box-sizing: content-box;
  min-height: 80px;
  position: relative;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07) !important;
}
.cid-uqxk5ltrSz .navbar.opened {
  transition: all 0.3s;
}
.cid-uqxk5ltrSz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqxk5ltrSz .navbar .navbar-logo img {
  width: auto;
}
.cid-uqxk5ltrSz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uqxk5ltrSz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqxk5ltrSz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqxk5ltrSz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqxk5ltrSz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqxk5ltrSz .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-uqxk5ltrSz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqxk5ltrSz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqxk5ltrSz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqxk5ltrSz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqxk5ltrSz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqxk5ltrSz .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqxk5ltrSz .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 40%;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 60px !important;
  padding-right: 60px !important;
}
.cid-uqxk5ltrSz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqxk5ltrSz .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 1599px) {
  .cid-uqxk5ltrSz .navbar-brand {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqxk5ltrSz .navbar-brand {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 991px) {
  .cid-uqxk5ltrSz .navbar-brand {
    display: none;
  }
}
.cid-uqxk5ltrSz .dropdown-item.active,
.cid-uqxk5ltrSz .dropdown-item:active {
  background-color: transparent;
}
.cid-uqxk5ltrSz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqxk5ltrSz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqxk5ltrSz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqxk5ltrSz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uqxk5ltrSz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqxk5ltrSz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqxk5ltrSz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqxk5ltrSz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqxk5ltrSz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uqxk5ltrSz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqxk5ltrSz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqxk5ltrSz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqxk5ltrSz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqxk5ltrSz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqxk5ltrSz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqxk5ltrSz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqxk5ltrSz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqxk5ltrSz .navbar-dropdown {
  padding: 0;
}
.cid-uqxk5ltrSz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqxk5ltrSz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqxk5ltrSz .navbar {
    height: 70px;
  }
  .cid-uqxk5ltrSz .navbar.opened {
    height: auto;
  }
  .cid-uqxk5ltrSz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqxk5ltrSz .navbar-short {
  min-height: 80px;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.07);
}
.cid-uqxk5ltrSz .navbar-short .btn-wrap .mbr-section-btn .btn-white {
  border-bottom: none !important;
}
.cid-uqxk5ltrSz .navbar-caption-wrap {
  padding: 8px 0;
}
.cid-uqxk5ltrSz .logo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 20%;
}
@media (max-width: 991px) {
  .cid-uqxk5ltrSz .logo-wrap {
    order: 2;
  }
}
@media (max-width: 575px) {
  .cid-uqxk5ltrSz .logo-wrap {
    width: 33.33333333% !important;
  }
}
.cid-uqxk5ltrSz .navbar-logo {
  display: flex;
  align-items: center;
  min-height: 80px;
  padding: 8px;
  margin-right: 0 !important;
}
.cid-uqxk5ltrSz .btn-wrap {
  width: 40%;
  padding-right: 80px;
}
@media (max-width: 991px) {
  .cid-uqxk5ltrSz .btn-wrap {
    order: 3;
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .cid-uqxk5ltrSz .btn-wrap {
    width: 33.33333333% !important;
  }
}
.cid-uqxk5ltrSz .btn-wrap .mbr-section-btn {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: flex-end;
  flex-wrap: wrap;
  height: 100%;
}
.cid-uqxk5ltrSz .btn-wrap .mbr-section-btn .btn {
  position: relative;
  min-height: 80px;
  margin: 0 !important;
  height: 100%;
  padding: 20px 30px !important;
  border: 1px solid rgba(0, 0, 0, 0.07) !important;
  border-bottom: none !important;
}
@media (max-width: 767px) {
  .cid-uqxk5ltrSz .btn-wrap .mbr-section-btn .btn {
    padding: 20px 15px !important;
  }
}
.cid-uqxk5ltrSz .btn-wrap .mbr-section-btn .btn::after {
  content: '';
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 20px;
  width: auto !important;
  height: 1px;
  margin-top: 0.625em;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.cid-uqxk5ltrSz .btn-wrap .mbr-section-btn .btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.cid-uqxk5ltrSz .btn-wrap .mbr-section-btn .btn-white {
  color: #45494E !important;
  background-color: #FFFFFF !important;
}
.cid-uqxk5ltrSz .offcanvas_box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 80px !important;
  margin-left: -80px;
}
@media (max-width: 991px) {
  .cid-uqxk5ltrSz .offcanvas_box {
    order: 1;
    width: 40% !important;
    margin-left: 0;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uqxk5ltrSz .offcanvas_box {
    width: 33.33333333% !important;
  }
}
.cid-uqxk5ltrSz .offcanvas_box button.btn_offcanvas {
  background-color: #45494e;
  outline: none;
  width: 80px;
  height: 80px;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uqxk5ltrSz .offcanvas_box button.btn_offcanvas {
    margin-right: auto;
  }
}
.cid-uqxk5ltrSz .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  overflow: hidden;
  right: 30px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uqxk5ltrSz .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 34px;
}
.cid-uqxk5ltrSz .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  width: 20px;
  top: 39px;
}
.cid-uqxk5ltrSz .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  width: 20px;
  top: 44px;
}
.cid-uqxk5ltrSz nav.navbar {
  flex-wrap: nowrap;
  border-radius: 0 !important;
}
.cid-uqxk5ltrSz .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.8s ease-in-out;
}
.cid-uqxk5ltrSz .offcanvas .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  padding: 0;
  background-size: 25%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1 !important;
  box-shadow: none !important;
}
.cid-uqxk5ltrSz .image-wrapper {
  position: fixed;
  height: 100vh;
  width: 65%;
  top: 0;
  left: 0;
}
.cid-uqxk5ltrSz .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uqxk5ltrSz .image-wrapper {
    display: none;
  }
}
.cid-uqxk5ltrSz .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 35%;
  margin-left: auto;
  text-align: left;
  padding: 70px 0 0;
  background-color: #45494e;
}
@media (max-width: 991px) {
  .cid-uqxk5ltrSz .offcanvas-body {
    max-width: 100%;
  }
}
.cid-uqxk5ltrSz .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 12px 60px 80px;
  margin-bottom: auto;
}
@media (max-width: 1599px) {
  .cid-uqxk5ltrSz .offcanvas_link {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqxk5ltrSz .offcanvas_link {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 767px) {
  .cid-uqxk5ltrSz .offcanvas_link {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 575px) {
  .cid-uqxk5ltrSz .offcanvas_link {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uqxk5ltrSz .navbar-nav {
  display: flex !important;
}
.cid-uqxk5ltrSz .navbar-nav .nav-item {
  width: 100%;
  text-align: left;
}
.cid-uqxk5ltrSz .navbar-nav .nav-item .nav-link {
  padding: 5px 0 !important;
  margin: 0 !important;
  justify-content: flex-start;
}
.cid-uqxk5ltrSz .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #45494e !important;
}
.cid-uqxk5ltrSz .offcanvas_footer {
  margin-top: auto;
  padding-top: 40px;
}
.cid-uqxk5ltrSz .offcanvas_contact {
  display: flex;
  align-items: center;
  padding: 0 60px 40px;
}
@media (max-width: 1599px) {
  .cid-uqxk5ltrSz .offcanvas_contact {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqxk5ltrSz .offcanvas_contact {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 767px) {
  .cid-uqxk5ltrSz .offcanvas_contact {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 575px) {
  .cid-uqxk5ltrSz .offcanvas_contact {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uqxk5ltrSz .offcanvas_text {
  width: 60%;
}
.cid-uqxk5ltrSz .mbr-text {
  color: #FFFFFF;
}
.cid-uqxk5ltrSz .offcanvas_logo {
  display: flex;
  justify-content: flex-end;
  width: 40%;
  margin-left: auto;
}
.cid-uqxk5ltrSz .offcanvas_logo-wrapper {
  width: 2.5rem;
}
.cid-uqxk5ltrSz .offcanvas_logo-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uqxk5ltrSz .offcanvas_btn {
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cid-uqxk5ltrSz .offcanvas_btn .mbr-section-btn {
  display: flex;
  width: 100%;
}
.cid-uqxk5ltrSz .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uqxk5ltrSz .offcanvas_btn .mbr-section-btn .btn-white {
  color: #45494E !important;
  background-color: #FFFFFF !important;
}
.cid-uqxkyJnNis {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3ece6;
}
.cid-uqxkyJnNis .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxkyJnNis .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uqxkyJnNis .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uqxkyJnNis .col-img {
    order: 2;
  }
}
.cid-uqxkyJnNis .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uqxkyJnNis .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-uqxkyJnNis .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-uqxkyJnNis .col-tex {
    order: 1;
  }
}
.cid-uqxkyJnNis .card-title {
  color: #45494E;
}
.cid-uqxkyJnNis .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-uqxkyJnNis .mbr-section-btn {
  margin-top: 60px;
}
.cid-uqxkyJnNis .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uqxkzZyXJn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #846f7b;
}
.cid-uqxkzZyXJn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxkzZyXJn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxkzZyXJn .card-wrapper {
  width: 100%;
}
.cid-uqxkzZyXJn .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uqxkzZyXJn .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uqxkzZyXJn .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uqxkzZyXJn .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uqxkzZyXJn .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uqxkzZyXJn .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uqxkzZyXJn .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uqxkzZyXJn .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uqxkzZyXJn .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uqxkzZyXJn .card-title {
    text-align: center !important;
  }
}
.cid-uqxkzZyXJn .card-text {
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uqxkzZyXJn .card-text {
    text-align: center !important;
  }
}
.cid-uqxknnO8tU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #f3ece6;
}
.cid-uqxknnO8tU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxknnO8tU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxknnO8tU .card-wrapper {
  border: 1px solid #fabc16;
}
.cid-uqxknnO8tU .google-map {
  height: 30rem;
  position: relative;
}
.cid-uqxknnO8tU .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uqxknnO8tU .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uqxknnO8tU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqxknnO8tU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqxknnO8tU .content-head {
  max-width: 800px;
}
.cid-uqxknnO8tU .mbr-section-title {
  color: #221b35;
}
.cid-uqxk5uUIhU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #15171a;
}
.cid-uqxk5uUIhU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxk5uUIhU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxk5uUIhU .content-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uqxk5uUIhU .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uqxk5uUIhU .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uqxk5uUIhU .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqxk5uUIhU .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uqxk5uUIhU .social-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uqxk5uUIhU .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uqxk5uUIhU .social-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uqxk5uUIhU .social-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqxk5uUIhU .social-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uqxk5uUIhU .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqxk5uUIhU .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  color: #f96e47;
}
.cid-uqxk5uUIhU .social-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: #a09099;
  font-size: 32px;
  border-radius: .5rem;
  transition: all 0.3s ease-in-out;
  margin: 0 8px 8px 0;
}
.cid-uqxk5uUIhU .social-wrapper .social-wrap .soc-wrap .soc-item:nth-child(2n) a .mbr-iconfont {
  background-color: #a09099;
}
.cid-uqxk5uUIhU .list-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uqxk5uUIhU .list-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uqxk5uUIhU .list-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uqxk5uUIhU .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uqxk5uUIhU .list-wrapper .list .item-wrap {
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uqxk5uUIhU .list-wrapper .list .item-wrap {
    margin-bottom: 16px;
  }
}
.cid-uqxk5uUIhU .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqxk5uUIhU .list-wrapper .list .item-wrap:hover,
.cid-uqxk5uUIhU .list-wrapper .list .item-wrap:focus {
  color: #f96e47;
}
.cid-uqxk5uUIhU .border-wrap {
  height: 1px;
  background-color: #b9b9b9;
  margin: 78px 0 24px 0;
}
@media (max-width: 992px) {
  .cid-uqxk5uUIhU .border-wrap {
    margin: 0 0 16px 0;
  }
}
.cid-uqxk5uUIhU .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-uqxk5uUIhU .mbr-section-title {
  color: #ffffff;
}
.cid-uqxk5uUIhU .mbr-text {
  color: #ffffff;
}
.cid-uqxk5uUIhU .mbr-desc {
  color: #16fab4;
}
.cid-uqxk5uUIhU .list {
  color: #ffffff;
}
.cid-uqxlot6Zws .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-uqxlot6Zws .dropdown-menu {
  padding: 0;
}
.cid-uqxlot6Zws .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uqxlot6Zws .dropdown-item {
    text-align: left !important;
  }
}
.cid-uqxlot6Zws .dropdown-item:hover {
  background-position: right !important;
}
.cid-uqxlot6Zws .dropdown-item:hover:after {
  color: #fabc16;
}
.cid-uqxlot6Zws .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqxlot6Zws .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqxlot6Zws .nav-link {
  position: relative;
}
.cid-uqxlot6Zws .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
  padding: 0 !important;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-uqxlot6Zws .container {
    flex-wrap: wrap;
  }
}
.cid-uqxlot6Zws .dropdown-menu,
.cid-uqxlot6Zws .navbar.opened {
  background: #ffffff !important;
}
.cid-uqxlot6Zws .nav-item:focus,
.cid-uqxlot6Zws .nav-link:focus {
  outline: none;
}
.cid-uqxlot6Zws .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqxlot6Zws .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqxlot6Zws .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqxlot6Zws .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqxlot6Zws .navbar {
  min-height: 60px;
  transition: all .3s !important;
  box-sizing: content-box;
  min-height: 80px;
  position: relative;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07) !important;
}
.cid-uqxlot6Zws .navbar.opened {
  transition: all 0.3s;
}
.cid-uqxlot6Zws .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqxlot6Zws .navbar .navbar-logo img {
  width: auto;
}
.cid-uqxlot6Zws .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uqxlot6Zws .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqxlot6Zws .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqxlot6Zws .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqxlot6Zws .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqxlot6Zws .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-uqxlot6Zws .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqxlot6Zws .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqxlot6Zws .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqxlot6Zws .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqxlot6Zws .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqxlot6Zws .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqxlot6Zws .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 40%;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 60px !important;
  padding-right: 60px !important;
}
.cid-uqxlot6Zws .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqxlot6Zws .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 1599px) {
  .cid-uqxlot6Zws .navbar-brand {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqxlot6Zws .navbar-brand {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 991px) {
  .cid-uqxlot6Zws .navbar-brand {
    display: none;
  }
}
.cid-uqxlot6Zws .dropdown-item.active,
.cid-uqxlot6Zws .dropdown-item:active {
  background-color: transparent;
}
.cid-uqxlot6Zws .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqxlot6Zws .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqxlot6Zws .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqxlot6Zws .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uqxlot6Zws .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqxlot6Zws .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqxlot6Zws ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqxlot6Zws button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqxlot6Zws button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uqxlot6Zws button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqxlot6Zws button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqxlot6Zws button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqxlot6Zws button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqxlot6Zws nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqxlot6Zws nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqxlot6Zws nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqxlot6Zws nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqxlot6Zws .navbar-dropdown {
  padding: 0;
}
.cid-uqxlot6Zws a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqxlot6Zws .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqxlot6Zws .navbar {
    height: 70px;
  }
  .cid-uqxlot6Zws .navbar.opened {
    height: auto;
  }
  .cid-uqxlot6Zws .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqxlot6Zws .navbar-short {
  min-height: 80px;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.07);
}
.cid-uqxlot6Zws .navbar-short .btn-wrap .mbr-section-btn .btn-white {
  border-bottom: none !important;
}
.cid-uqxlot6Zws .navbar-caption-wrap {
  padding: 8px 0;
}
.cid-uqxlot6Zws .logo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 20%;
}
@media (max-width: 991px) {
  .cid-uqxlot6Zws .logo-wrap {
    order: 2;
  }
}
@media (max-width: 575px) {
  .cid-uqxlot6Zws .logo-wrap {
    width: 33.33333333% !important;
  }
}
.cid-uqxlot6Zws .navbar-logo {
  display: flex;
  align-items: center;
  min-height: 80px;
  padding: 8px;
  margin-right: 0 !important;
}
.cid-uqxlot6Zws .btn-wrap {
  width: 40%;
  padding-right: 80px;
}
@media (max-width: 991px) {
  .cid-uqxlot6Zws .btn-wrap {
    order: 3;
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .cid-uqxlot6Zws .btn-wrap {
    width: 33.33333333% !important;
  }
}
.cid-uqxlot6Zws .btn-wrap .mbr-section-btn {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: flex-end;
  flex-wrap: wrap;
  height: 100%;
}
.cid-uqxlot6Zws .btn-wrap .mbr-section-btn .btn {
  position: relative;
  min-height: 80px;
  margin: 0 !important;
  height: 100%;
  padding: 20px 30px !important;
  border: 1px solid rgba(0, 0, 0, 0.07) !important;
  border-bottom: none !important;
}
@media (max-width: 767px) {
  .cid-uqxlot6Zws .btn-wrap .mbr-section-btn .btn {
    padding: 20px 15px !important;
  }
}
.cid-uqxlot6Zws .btn-wrap .mbr-section-btn .btn::after {
  content: '';
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 20px;
  width: auto !important;
  height: 1px;
  margin-top: 0.625em;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.cid-uqxlot6Zws .btn-wrap .mbr-section-btn .btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.cid-uqxlot6Zws .btn-wrap .mbr-section-btn .btn-white {
  color: #45494E !important;
  background-color: #FFFFFF !important;
}
.cid-uqxlot6Zws .offcanvas_box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 80px !important;
  margin-left: -80px;
}
@media (max-width: 991px) {
  .cid-uqxlot6Zws .offcanvas_box {
    order: 1;
    width: 40% !important;
    margin-left: 0;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uqxlot6Zws .offcanvas_box {
    width: 33.33333333% !important;
  }
}
.cid-uqxlot6Zws .offcanvas_box button.btn_offcanvas {
  background-color: #45494e;
  outline: none;
  width: 80px;
  height: 80px;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uqxlot6Zws .offcanvas_box button.btn_offcanvas {
    margin-right: auto;
  }
}
.cid-uqxlot6Zws .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  overflow: hidden;
  right: 30px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uqxlot6Zws .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 34px;
}
.cid-uqxlot6Zws .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  width: 20px;
  top: 39px;
}
.cid-uqxlot6Zws .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  width: 20px;
  top: 44px;
}
.cid-uqxlot6Zws nav.navbar {
  flex-wrap: nowrap;
  border-radius: 0 !important;
}
.cid-uqxlot6Zws .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.8s ease-in-out;
}
.cid-uqxlot6Zws .offcanvas .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  padding: 0;
  background-size: 25%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1 !important;
  box-shadow: none !important;
}
.cid-uqxlot6Zws .image-wrapper {
  position: fixed;
  height: 100vh;
  width: 65%;
  top: 0;
  left: 0;
}
.cid-uqxlot6Zws .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uqxlot6Zws .image-wrapper {
    display: none;
  }
}
.cid-uqxlot6Zws .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 35%;
  margin-left: auto;
  text-align: left;
  padding: 70px 0 0;
  background-color: #45494e;
}
@media (max-width: 991px) {
  .cid-uqxlot6Zws .offcanvas-body {
    max-width: 100%;
  }
}
.cid-uqxlot6Zws .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 12px 60px 80px;
  margin-bottom: auto;
}
@media (max-width: 1599px) {
  .cid-uqxlot6Zws .offcanvas_link {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqxlot6Zws .offcanvas_link {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 767px) {
  .cid-uqxlot6Zws .offcanvas_link {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 575px) {
  .cid-uqxlot6Zws .offcanvas_link {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uqxlot6Zws .navbar-nav {
  display: flex !important;
}
.cid-uqxlot6Zws .navbar-nav .nav-item {
  width: 100%;
  text-align: left;
}
.cid-uqxlot6Zws .navbar-nav .nav-item .nav-link {
  padding: 5px 0 !important;
  margin: 0 !important;
  justify-content: flex-start;
}
.cid-uqxlot6Zws .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #45494e !important;
}
.cid-uqxlot6Zws .offcanvas_footer {
  margin-top: auto;
  padding-top: 40px;
}
.cid-uqxlot6Zws .offcanvas_contact {
  display: flex;
  align-items: center;
  padding: 0 60px 40px;
}
@media (max-width: 1599px) {
  .cid-uqxlot6Zws .offcanvas_contact {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqxlot6Zws .offcanvas_contact {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 767px) {
  .cid-uqxlot6Zws .offcanvas_contact {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 575px) {
  .cid-uqxlot6Zws .offcanvas_contact {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uqxlot6Zws .offcanvas_text {
  width: 60%;
}
.cid-uqxlot6Zws .mbr-text {
  color: #FFFFFF;
}
.cid-uqxlot6Zws .offcanvas_logo {
  display: flex;
  justify-content: flex-end;
  width: 40%;
  margin-left: auto;
}
.cid-uqxlot6Zws .offcanvas_logo-wrapper {
  width: 2.5rem;
}
.cid-uqxlot6Zws .offcanvas_logo-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uqxlot6Zws .offcanvas_btn {
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cid-uqxlot6Zws .offcanvas_btn .mbr-section-btn {
  display: flex;
  width: 100%;
}
.cid-uqxlot6Zws .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uqxlot6Zws .offcanvas_btn .mbr-section-btn .btn-white {
  color: #45494E !important;
  background-color: #FFFFFF !important;
}
.cid-uqxlougTtS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f3ece6;
}
.cid-uqxlougTtS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxlougTtS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uqxlougTtS .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uqxlougTtS .col-img {
    order: 2;
  }
}
.cid-uqxlougTtS .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uqxlougTtS .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-uqxlougTtS .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-uqxlougTtS .col-tex {
    order: 1;
  }
}
.cid-uqxlougTtS .card-title {
  color: #45494E;
}
.cid-uqxlougTtS .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-uqxlougTtS .mbr-section-btn {
  margin-top: 60px;
}
.cid-uqxlougTtS .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uqxlox6QEO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #846f7b;
}
.cid-uqxlox6QEO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxlox6QEO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxlox6QEO .card-wrapper {
  width: 100%;
}
.cid-uqxlox6QEO .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uqxlox6QEO .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-uqxlox6QEO .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-uqxlox6QEO .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uqxlox6QEO .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-uqxlox6QEO .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uqxlox6QEO .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-uqxlox6QEO .text-wrap {
    padding: 8px 16px;
  }
}
.cid-uqxlox6QEO .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-uqxlox6QEO .card-title {
    text-align: center !important;
  }
}
.cid-uqxlox6QEO .card-text {
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uqxlox6QEO .card-text {
    text-align: center !important;
  }
}
.cid-uqxloxIuiz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #f3ece6;
}
.cid-uqxloxIuiz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxloxIuiz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxloxIuiz .card-wrapper {
  border: 1px solid #fabc16;
}
.cid-uqxloxIuiz .google-map {
  height: 30rem;
  position: relative;
}
.cid-uqxloxIuiz .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uqxloxIuiz .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uqxloxIuiz .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqxloxIuiz .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqxloxIuiz .content-head {
  max-width: 800px;
}
.cid-uqxloxIuiz .mbr-section-title {
  color: #221b35;
}
.cid-uqxloymEXz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #15171a;
}
.cid-uqxloymEXz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxloymEXz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxloymEXz .content-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uqxloymEXz .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uqxloymEXz .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uqxloymEXz .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqxloymEXz .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uqxloymEXz .social-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uqxloymEXz .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uqxloymEXz .social-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uqxloymEXz .social-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqxloymEXz .social-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uqxloymEXz .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqxloymEXz .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  color: #f96e47;
}
.cid-uqxloymEXz .social-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: #a09099;
  font-size: 32px;
  border-radius: .5rem;
  transition: all 0.3s ease-in-out;
  margin: 0 8px 8px 0;
}
.cid-uqxloymEXz .social-wrapper .social-wrap .soc-wrap .soc-item:nth-child(2n) a .mbr-iconfont {
  background-color: #a09099;
}
.cid-uqxloymEXz .list-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uqxloymEXz .list-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uqxloymEXz .list-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uqxloymEXz .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uqxloymEXz .list-wrapper .list .item-wrap {
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uqxloymEXz .list-wrapper .list .item-wrap {
    margin-bottom: 16px;
  }
}
.cid-uqxloymEXz .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqxloymEXz .list-wrapper .list .item-wrap:hover,
.cid-uqxloymEXz .list-wrapper .list .item-wrap:focus {
  color: #f96e47;
}
.cid-uqxloymEXz .border-wrap {
  height: 1px;
  background-color: #b9b9b9;
  margin: 78px 0 24px 0;
}
@media (max-width: 992px) {
  .cid-uqxloymEXz .border-wrap {
    margin: 0 0 16px 0;
  }
}
.cid-uqxloymEXz .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-uqxloymEXz .mbr-section-title {
  color: #ffffff;
}
.cid-uqxloymEXz .mbr-text {
  color: #ffffff;
}
.cid-uqxloymEXz .mbr-desc {
  color: #16fab4;
}
.cid-uqxloymEXz .list {
  color: #ffffff;
}
.cid-uqxtOUqdi1 .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-uqxtOUqdi1 .dropdown-menu {
  padding: 0;
}
.cid-uqxtOUqdi1 .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uqxtOUqdi1 .dropdown-item {
    text-align: left !important;
  }
}
.cid-uqxtOUqdi1 .dropdown-item:hover {
  background-position: right !important;
}
.cid-uqxtOUqdi1 .dropdown-item:hover:after {
  color: #fabc16;
}
.cid-uqxtOUqdi1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqxtOUqdi1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqxtOUqdi1 .nav-link {
  position: relative;
}
.cid-uqxtOUqdi1 .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
  padding: 0 !important;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-uqxtOUqdi1 .container {
    flex-wrap: wrap;
  }
}
.cid-uqxtOUqdi1 .dropdown-menu,
.cid-uqxtOUqdi1 .navbar.opened {
  background: #ffffff !important;
}
.cid-uqxtOUqdi1 .nav-item:focus,
.cid-uqxtOUqdi1 .nav-link:focus {
  outline: none;
}
.cid-uqxtOUqdi1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqxtOUqdi1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqxtOUqdi1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqxtOUqdi1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqxtOUqdi1 .navbar {
  min-height: 60px;
  transition: all .3s !important;
  box-sizing: content-box;
  min-height: 80px;
  position: relative;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07) !important;
}
.cid-uqxtOUqdi1 .navbar.opened {
  transition: all 0.3s;
}
.cid-uqxtOUqdi1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqxtOUqdi1 .navbar .navbar-logo img {
  width: auto;
}
.cid-uqxtOUqdi1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uqxtOUqdi1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqxtOUqdi1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqxtOUqdi1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqxtOUqdi1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqxtOUqdi1 .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-uqxtOUqdi1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqxtOUqdi1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqxtOUqdi1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqxtOUqdi1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqxtOUqdi1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqxtOUqdi1 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqxtOUqdi1 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 40%;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 60px !important;
  padding-right: 60px !important;
}
.cid-uqxtOUqdi1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqxtOUqdi1 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 1599px) {
  .cid-uqxtOUqdi1 .navbar-brand {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqxtOUqdi1 .navbar-brand {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 991px) {
  .cid-uqxtOUqdi1 .navbar-brand {
    display: none;
  }
}
.cid-uqxtOUqdi1 .dropdown-item.active,
.cid-uqxtOUqdi1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uqxtOUqdi1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqxtOUqdi1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqxtOUqdi1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqxtOUqdi1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uqxtOUqdi1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqxtOUqdi1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqxtOUqdi1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqxtOUqdi1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqxtOUqdi1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uqxtOUqdi1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqxtOUqdi1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqxtOUqdi1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqxtOUqdi1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqxtOUqdi1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqxtOUqdi1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqxtOUqdi1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqxtOUqdi1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqxtOUqdi1 .navbar-dropdown {
  padding: 0;
}
.cid-uqxtOUqdi1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqxtOUqdi1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqxtOUqdi1 .navbar {
    height: 70px;
  }
  .cid-uqxtOUqdi1 .navbar.opened {
    height: auto;
  }
  .cid-uqxtOUqdi1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqxtOUqdi1 .navbar-short {
  min-height: 80px;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.07);
}
.cid-uqxtOUqdi1 .navbar-short .btn-wrap .mbr-section-btn .btn-white {
  border-bottom: none !important;
}
.cid-uqxtOUqdi1 .navbar-caption-wrap {
  padding: 8px 0;
}
.cid-uqxtOUqdi1 .logo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 20%;
}
@media (max-width: 991px) {
  .cid-uqxtOUqdi1 .logo-wrap {
    order: 2;
  }
}
@media (max-width: 575px) {
  .cid-uqxtOUqdi1 .logo-wrap {
    width: 33.33333333% !important;
  }
}
.cid-uqxtOUqdi1 .navbar-logo {
  display: flex;
  align-items: center;
  min-height: 80px;
  padding: 8px;
  margin-right: 0 !important;
}
.cid-uqxtOUqdi1 .btn-wrap {
  width: 40%;
  padding-right: 80px;
}
@media (max-width: 991px) {
  .cid-uqxtOUqdi1 .btn-wrap {
    order: 3;
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .cid-uqxtOUqdi1 .btn-wrap {
    width: 33.33333333% !important;
  }
}
.cid-uqxtOUqdi1 .btn-wrap .mbr-section-btn {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: flex-end;
  flex-wrap: wrap;
  height: 100%;
}
.cid-uqxtOUqdi1 .btn-wrap .mbr-section-btn .btn {
  position: relative;
  min-height: 80px;
  margin: 0 !important;
  height: 100%;
  padding: 20px 30px !important;
  border: 1px solid rgba(0, 0, 0, 0.07) !important;
  border-bottom: none !important;
}
@media (max-width: 767px) {
  .cid-uqxtOUqdi1 .btn-wrap .mbr-section-btn .btn {
    padding: 20px 15px !important;
  }
}
.cid-uqxtOUqdi1 .btn-wrap .mbr-section-btn .btn::after {
  content: '';
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 20px;
  width: auto !important;
  height: 1px;
  margin-top: 0.625em;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.cid-uqxtOUqdi1 .btn-wrap .mbr-section-btn .btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.cid-uqxtOUqdi1 .btn-wrap .mbr-section-btn .btn-white {
  color: #45494E !important;
  background-color: #FFFFFF !important;
}
.cid-uqxtOUqdi1 .offcanvas_box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 80px !important;
  margin-left: -80px;
}
@media (max-width: 991px) {
  .cid-uqxtOUqdi1 .offcanvas_box {
    order: 1;
    width: 40% !important;
    margin-left: 0;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uqxtOUqdi1 .offcanvas_box {
    width: 33.33333333% !important;
  }
}
.cid-uqxtOUqdi1 .offcanvas_box button.btn_offcanvas {
  background-color: #45494e;
  outline: none;
  width: 80px;
  height: 80px;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uqxtOUqdi1 .offcanvas_box button.btn_offcanvas {
    margin-right: auto;
  }
}
.cid-uqxtOUqdi1 .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  overflow: hidden;
  right: 30px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uqxtOUqdi1 .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 34px;
}
.cid-uqxtOUqdi1 .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  width: 20px;
  top: 39px;
}
.cid-uqxtOUqdi1 .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  width: 20px;
  top: 44px;
}
.cid-uqxtOUqdi1 nav.navbar {
  flex-wrap: nowrap;
  border-radius: 0 !important;
}
.cid-uqxtOUqdi1 .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.8s ease-in-out;
}
.cid-uqxtOUqdi1 .offcanvas .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  padding: 0;
  background-size: 25%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1 !important;
  box-shadow: none !important;
}
.cid-uqxtOUqdi1 .image-wrapper {
  position: fixed;
  height: 100vh;
  width: 65%;
  top: 0;
  left: 0;
}
.cid-uqxtOUqdi1 .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uqxtOUqdi1 .image-wrapper {
    display: none;
  }
}
.cid-uqxtOUqdi1 .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 35%;
  margin-left: auto;
  text-align: left;
  padding: 70px 0 0;
  background-color: #45494e;
}
@media (max-width: 991px) {
  .cid-uqxtOUqdi1 .offcanvas-body {
    max-width: 100%;
  }
}
.cid-uqxtOUqdi1 .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 12px 60px 80px;
  margin-bottom: auto;
}
@media (max-width: 1599px) {
  .cid-uqxtOUqdi1 .offcanvas_link {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqxtOUqdi1 .offcanvas_link {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 767px) {
  .cid-uqxtOUqdi1 .offcanvas_link {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 575px) {
  .cid-uqxtOUqdi1 .offcanvas_link {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uqxtOUqdi1 .navbar-nav {
  display: flex !important;
}
.cid-uqxtOUqdi1 .navbar-nav .nav-item {
  width: 100%;
  text-align: left;
}
.cid-uqxtOUqdi1 .navbar-nav .nav-item .nav-link {
  padding: 5px 0 !important;
  margin: 0 !important;
  justify-content: flex-start;
}
.cid-uqxtOUqdi1 .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #45494e !important;
}
.cid-uqxtOUqdi1 .offcanvas_footer {
  margin-top: auto;
  padding-top: 40px;
}
.cid-uqxtOUqdi1 .offcanvas_contact {
  display: flex;
  align-items: center;
  padding: 0 60px 40px;
}
@media (max-width: 1599px) {
  .cid-uqxtOUqdi1 .offcanvas_contact {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqxtOUqdi1 .offcanvas_contact {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 767px) {
  .cid-uqxtOUqdi1 .offcanvas_contact {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 575px) {
  .cid-uqxtOUqdi1 .offcanvas_contact {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uqxtOUqdi1 .offcanvas_text {
  width: 60%;
}
.cid-uqxtOUqdi1 .mbr-text {
  color: #FFFFFF;
}
.cid-uqxtOUqdi1 .offcanvas_logo {
  display: flex;
  justify-content: flex-end;
  width: 40%;
  margin-left: auto;
}
.cid-uqxtOUqdi1 .offcanvas_logo-wrapper {
  width: 2.5rem;
}
.cid-uqxtOUqdi1 .offcanvas_logo-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uqxtOUqdi1 .offcanvas_btn {
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cid-uqxtOUqdi1 .offcanvas_btn .mbr-section-btn {
  display: flex;
  width: 100%;
}
.cid-uqxtOUqdi1 .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uqxtOUqdi1 .offcanvas_btn .mbr-section-btn .btn-white {
  color: #45494E !important;
  background-color: #FFFFFF !important;
}
.cid-uqxtOUJqtA {
  display: flex;
  background-image: url("../../../assets/images/a0220035-1270x750.jpg");
  align-items: center;
}
.cid-uqxtOUJqtA .mbr-overlay {
  background-color: #000000;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .cid-uqxtOUJqtA .row {
    justify-content: flex-end;
  }
  .cid-uqxtOUJqtA .content-wrap {
    width: 70%;
  }
}
@media (max-width: 991px) {
  .cid-uqxtOUJqtA .content-wrap {
    width: 100%;
  }
}
.cid-uqxtOUJqtA .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-uqxtOUJqtA .mbr-section-title {
    text-align: center;
    margin-bottom: 30px;
  }
}
.cid-uqxtOUJqtA .mbr-text {
  text-align: center;
  color: #f8f6f2;
}
@media (max-width: 767px) {
  .cid-uqxtOUJqtA .mbr-text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-uqxtOUJqtA .mbr-section-btn {
    text-align: center;
  }
}
.cid-uqxtOUJqtA .mbr-section-title,
.cid-uqxtOUJqtA .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uqxtOUXzMb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uqxtOUXzMb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxtOUXzMb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxtOUXzMb .tabl-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.cid-uqxtOUXzMb .item-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 0;
}
.cid-uqxtOUXzMb .frame-item {
  width: 40px;
  height: 1px;
  margin-right: 20px;
  background-color: #da0e0e;
}
.cid-uqxtOUXzMb .card-text {
  color: #45494E;
  flex-grow: 1;
}
.cid-uqxtOVedTN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #a09099;
}
.cid-uqxtOVedTN .row {
  justify-content: flex-start;
}
.cid-uqxtOVedTN .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uqxtOVedTN .mbr-section-subtitle {
  margin-top: 24px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-uqxtOVedTN .mbr-section-subtitle {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uqxtOVedTN .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-uqxtOVedTN .mbr-text {
  margin-top: 36px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-uqxtOVedTN .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-uqxtOVedTN .mbr-text {
    margin-top: 20px;
  }
}
.cid-uqxtOVedTN .mbr-section-title DIV {
  text-align: center;
}
.cid-uqxtOVuzCC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqxtOVuzCC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxtOVuzCC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uqxtOVuzCC .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uqxtOVuzCC .col-img {
    order: 2;
  }
}
.cid-uqxtOVuzCC .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uqxtOVuzCC .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-uqxtOVuzCC .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-uqxtOVuzCC .col-tex {
    order: 1;
  }
}
.cid-uqxtOVuzCC .card-title {
  color: #000000;
}
.cid-uqxtOVuzCC .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-uqxtOVuzCC .mbr-section-btn {
  margin-top: 60px;
}
.cid-uqxtOVuzCC .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uqxtOVuzCC .mbr-text,
.cid-uqxtOVuzCC .mbr-section-btn {
  color: #000000;
}
.cid-uqxtOVPz7l {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a09099;
}
.cid-uqxtOVPz7l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxtOVPz7l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxtOVPz7l .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cid-uqxtOVPz7l .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-uqxtOVPz7l .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uqxtOVPz7l .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uqxtOVPz7l .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uqxtOVPz7l .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-uqxtOVPz7l .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-uqxtOVPz7l .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uqxtOVPz7l .content-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #f7fff7;
}
.cid-uqxtOVPz7l .content-wrapper .item .item-wrapper:hover,
.cid-uqxtOVPz7l .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-uqxtOVPz7l .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-uqxtOVPz7l .content-wrapper .item .item-wrapper .item-content .item-img img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uqxtOVPz7l .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-uqxtOVPz7l .content-wrapper .item .item-wrapper .item-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
}
.cid-uqxtOVPz7l .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-uqxtOVPz7l .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqxtOVPz7l .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-uqxtOVPz7l .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uqxtOVPz7l .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-uqxtOVPz7l .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqxtOVPz7l .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-uqxtOVPz7l .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-uqxtOVPz7l .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqxtOVPz7l .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-uqxtOVPz7l .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uqxtOVPz7l .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap {
  display: inline-flex;
  padding: 11px 20px;
  margin: 0 8px 8px 0;
  background-color: #d3f2ff;
}
.cid-uqxtOVPz7l .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-uqxtOVPz7l .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-uqxtOVPz7l .item-title {
  color: #050f0f;
}
.cid-uqxtOVPz7l .item-text {
  color: #050f0f;
}
.cid-uqxtOVPz7l .list {
  color: #050f0f;
}
.cid-uqxtOWeZ76 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqxtOWeZ76 .row {
  justify-content: flex-start;
}
.cid-uqxtOWeZ76 .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 1199px) {
  .cid-uqxtOWeZ76 .mbr-section-head {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-uqxtOWeZ76 .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-uqxtOWeZ76 .mbr-section-title {
  color: #000000;
}
.cid-uqxtOWeZ76 .mbr-section-subtitle {
  margin-top: 24px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-uqxtOWeZ76 .mbr-section-subtitle {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uqxtOWeZ76 .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-uqxtOWeZ76 .card-container {
  width: 100%;
  padding: 7.5% 10%;
  background-color: #a09099;
  border-left: 1px solid #000000;
}
.cid-uqxtOWeZ76 .mbr-text {
  color: #000000;
}
.cid-uqxtOWeZ76 .card-text-wrap {
  margin-top: 32px;
}
@media (max-width: 991px) {
  .cid-uqxtOWeZ76 .card-text-wrap {
    margin-top: 28px;
  }
}
@media (max-width: 767px) {
  .cid-uqxtOWeZ76 .card-text-wrap {
    margin-top: 22px;
  }
}
.cid-uqxtOWeZ76 .name-text {
  color: #45494E;
}
.cid-uqxtOWeZ76 .date-text {
  color: #5c6064;
}
.cid-uqxtOWvki3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqxtOWvki3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxtOWvki3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxtOWvki3 .row {
  justify-content: flex-start;
}
.cid-uqxtOWvki3 .mbr-section-title {
  color: #000000;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-uqxtOWvki3 .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uqxtOWvki3 .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-uqxtOWvki3 .image-wrapper {
  width: 100%;
}
.cid-uqxtOWvki3 .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-uqxtOWvki3 .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-uqxtOWvki3 .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uqxtOWvki3 .mbr-text {
    margin-top: 45px;
  }
}
.cid-uqxtOWvki3 .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-uqxtOWvki3 .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-uqxtOWvki3 .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-uqxtOWvki3 .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-uqxtOWvki3 .mbr-text,
.cid-uqxtOWvki3 .mbr-section-btn {
  color: #000000;
}
.cid-uqxtOXD8cF {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #a09099;
}
.cid-uqxtOXD8cF .row {
  justify-content: flex-start;
}
.cid-uqxtOXD8cF .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uqxtOXD8cF .mbr-section-subtitle {
  margin-top: 24px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-uqxtOXD8cF .mbr-section-subtitle {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uqxtOXD8cF .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-uqxtOXD8cF .mbr-text {
  margin-top: 36px;
  color: #000000;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uqxtOXD8cF .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-uqxtOXD8cF .mbr-text {
    margin-top: 20px;
  }
}
.cid-uqxtOX77cK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqxtOX77cK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxtOX77cK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxtOX77cK .row {
  margin: 0 !important;
}
.cid-uqxtOX77cK .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uqxtOX77cK .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uqxtOX77cK .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-uqxtOX77cK .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
  text-align: center;
}
.cid-uqxtOX77cK .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uqxtOX77cK .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-uqxtOX77cK .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqxtOX77cK .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-uqxtOX77cK .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-uqxtOX77cK .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-uqxtOX77cK .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uqxtOX77cK .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #694f5f;
  margin-left: 0.5rem;
}
.cid-uqxtOX77cK .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #694f5f;
  font-weight: 900;
}
.cid-uqxtOX77cK .panel-group {
  border: none;
}
.cid-uqxtOX77cK .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #694f5f;
}
.cid-uqxtOX77cK .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uqxtOX77cK .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uqxtOX77cK .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-uqxtOX77cK .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-uqxtOX77cK .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-uqxtOX77cK .panel-title-edit {
  color: #131313;
}
.cid-uqxtOX77cK .panel-body {
  padding: 0 0 20px;
}
.cid-uqxtOX77cK .panel-text {
  color: #131313;
  margin: 0;
}
.cid-uqxtOXVRd3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f6f2;
}
.cid-uqxtOXVRd3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxtOXVRd3 .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-uqxtOXVRd3 .container {
    padding: 0 30px;
  }
}
.cid-uqxtOXVRd3 .row {
  justify-content: center;
}
.cid-uqxtOXVRd3 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uqxtOXVRd3 .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqxtOXVRd3 .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-uqxtOXVRd3 .video-block .video-wrapper .app-video-wrapper::before {
  color: #da0e0e;
  text-shadow: none;
}
.cid-uqxtOXVRd3 .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqxtOXVRd3 .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uqxtOXVRd3 .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uqxtOYgM0v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uqxtOYgM0v .col-title {
    margin-bottom: 20px;
  }
}
.cid-uqxtOYgM0v .mbr-section-title {
  color: #000000;
}
.cid-uqxtOYgM0v .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uqxtOYgM0v .mbr-text {
  color: #000000;
}
.cid-uqxtOYyM2d {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
  position: relative;
}
.cid-uqxtOYyM2d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #f3ece6, #694f5f);
}
.cid-uqxtOYyM2d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxtOYyM2d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxtOYyM2d .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uqxtOYyM2d .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uqxtOYyM2d .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uqxtOYyM2d .container {
    padding: 0 16px;
  }
}
.cid-uqxtOYyM2d .content-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uqxtOYyM2d .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-uqxtOYyM2d .item {
  margin-bottom: 32px;
}
.cid-uqxtOYyM2d .item .item-wrapper .card-box .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uqxtOYyM2d .item .item-wrapper .card-box .title-wrapper .title-wrap {
    margin-bottom: 16px;
  }
}
.cid-uqxtOYyM2d .item .item-wrapper .card-box .title-wrapper .title-wrap .mbr-iconfont {
  font-size: 36px;
  color: #f4f4f4;
  margin-right: 12px;
}
.cid-uqxtOYyM2d .item .item-wrapper .card-box .title-wrapper .title-wrap .card-title {
  margin-bottom: 0;
}
.cid-uqxtOYyM2d .item .item-wrapper .card-box .text-wrap .card-text {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
.cid-uqxtOYyM2d .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqxtOYyM2d .card-title {
  color: #f4f4f4;
}
.cid-uqxtOYyM2d .card-text {
  color: #c1c1c1;
}
.cid-uqxtOZ7AMY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqxtOZ7AMY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxtOZ7AMY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxtOZ7AMY .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-uqxtOZ7AMY .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uqxtOZ7AMY .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uqxtOZ7AMY .item-img {
    width: 100%;
  }
}
.cid-uqxtOZ7AMY .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uqxtOZ7AMY .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqxtOZ7AMY .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uqxtOZ7AMY .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uqxtOZ7AMY .card-title {
  color: #131313;
}
.cid-uqxtOZ7AMY .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-uqxtOZ7AMY .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-uqxtOZ7AMY .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-uqxtOZ7AMY .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-uqxtOZ7AMY .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #fc7942;
  transform: rotate(-45deg);
}
.cid-uqxtOZ7AMY .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-uqxtOZ7AMY .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-uqxtOZ7AMY .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uqxtOZCH5Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a09099;
}
.cid-uqxtOZCH5Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxtOZCH5Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxtOZCH5Y .row {
  justify-content: flex-start;
}
.cid-uqxtOZCH5Y .mbr-section-title {
  color: #000000;
}
.cid-uqxtOZCH5Y .mbr-text {
  margin-top: 36px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-uqxtOZCH5Y .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-uqxtOZCH5Y .mbr-text {
    margin-top: 20px;
  }
}
.cid-uqxtOZCH5Y .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-uqxtOZCH5Y .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-uqxtOZCH5Y .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-uqxtOZCH5Y .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-uqxtOZCH5Y .mbr-text,
.cid-uqxtOZCH5Y .mbr-section-btn {
  color: #000000;
}
.cid-uqxM6KZtMD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uqxM6KZtMD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxM6KZtMD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxM6KZtMD .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uqxM6KZtMD .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uqxM6KZtMD .container {
    padding: 0 16px;
  }
}
.cid-uqxM6KZtMD .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uqxM6KZtMD .row {
    margin: 0 10px;
  }
}
.cid-uqxM6KZtMD .row .item {
  padding: 0;
}
.cid-uqxM6KZtMD .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uqxM6KZtMD .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uqxM6KZtMD .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uqxM6KZtMD .panel-group {
  border: 1px solid #000000;
  border-radius: 20px;
  overflow: hidden;
}
.cid-uqxM6KZtMD .panel-group .card {
  border-top: 1px solid #4a5357;
  border-radius: 0 !important;
}
.cid-uqxM6KZtMD .panel-group .card:first-child {
  border-top: none;
}
.cid-uqxM6KZtMD .panel-group .card:last-child {
  border-bottom: none;
}
.cid-uqxM6KZtMD .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-uqxM6KZtMD .panel-group .card .card-header .panel-title {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uqxM6KZtMD .panel-group .card .card-header .panel-title {
    padding: 20px 10px;
  }
}
.cid-uqxM6KZtMD .panel-group .card .card-header .panel-title:not(.collapsed) {
  background-color: #f9a600;
}
.cid-uqxM6KZtMD .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
  color: #f9a600;
  background-color: #192227;
}
.cid-uqxM6KZtMD .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #192227;
}
.cid-uqxM6KZtMD .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uqxM6KZtMD .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 30px;
  color: #192227;
  background-color: #f9a600;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uqxM6KZtMD .panel-group .card .panel-collapse .panel-body {
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-uqxM6KZtMD .panel-group .card .panel-collapse .panel-body {
    padding: 20px 10px;
  }
}
.cid-uqxM6KZtMD .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uqxM6KZtMD .image-wrapper {
  height: 100%;
}
.cid-uqxM6KZtMD .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqxM6KZtMD .image-wrapper img {
    height: 350px;
  }
}
.cid-uqxM6KZtMD .mbr-section-title {
  color: #000000;
}
.cid-uqxM6KZtMD .panel-title-edit {
  color: #000000;
}
.cid-uqxM6KZtMD .panel-text {
  color: #000000;
}
.cid-uqxtOZWHAX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uqxtOZWHAX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxtOZWHAX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxtOZWHAX .mbr-section-head {
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-uqxtOZWHAX .mbr-section-head {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uqxtOZWHAX .mbr-section-head {
    margin-bottom: 45px;
  }
}
.cid-uqxtOZWHAX .google-map {
  height: 600px;
  position: relative;
}
.cid-uqxtOZWHAX .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uqxtOZWHAX .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uqxtOZWHAX .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqxtOZWHAX .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqxtP0oAuf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #15171a;
}
.cid-uqxtP0oAuf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxtP0oAuf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxtP0oAuf .content-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uqxtP0oAuf .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uqxtP0oAuf .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uqxtP0oAuf .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqxtP0oAuf .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uqxtP0oAuf .social-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uqxtP0oAuf .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uqxtP0oAuf .social-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uqxtP0oAuf .social-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqxtP0oAuf .social-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uqxtP0oAuf .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqxtP0oAuf .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  color: #f96e47;
}
.cid-uqxtP0oAuf .social-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: #a09099;
  font-size: 32px;
  border-radius: .5rem;
  transition: all 0.3s ease-in-out;
  margin: 0 8px 8px 0;
}
.cid-uqxtP0oAuf .social-wrapper .social-wrap .soc-wrap .soc-item:nth-child(2n) a .mbr-iconfont {
  background-color: #a09099;
}
.cid-uqxtP0oAuf .list-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uqxtP0oAuf .list-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uqxtP0oAuf .list-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uqxtP0oAuf .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uqxtP0oAuf .list-wrapper .list .item-wrap {
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uqxtP0oAuf .list-wrapper .list .item-wrap {
    margin-bottom: 16px;
  }
}
.cid-uqxtP0oAuf .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqxtP0oAuf .list-wrapper .list .item-wrap:hover,
.cid-uqxtP0oAuf .list-wrapper .list .item-wrap:focus {
  color: #f96e47;
}
.cid-uqxtP0oAuf .border-wrap {
  height: 1px;
  background-color: #b9b9b9;
  margin: 78px 0 24px 0;
}
@media (max-width: 992px) {
  .cid-uqxtP0oAuf .border-wrap {
    margin: 0 0 16px 0;
  }
}
.cid-uqxtP0oAuf .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-uqxtP0oAuf .mbr-section-title {
  color: #ffffff;
}
.cid-uqxtP0oAuf .mbr-text {
  color: #ffffff;
}
.cid-uqxtP0oAuf .mbr-desc {
  color: #16fab4;
}
.cid-uqxtP0oAuf .list {
  color: #ffffff;
}
.cid-uqxApwgbOk .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-uqxApwgbOk .dropdown-menu {
  padding: 0;
}
.cid-uqxApwgbOk .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uqxApwgbOk .dropdown-item {
    text-align: left !important;
  }
}
.cid-uqxApwgbOk .dropdown-item:hover {
  background-position: right !important;
}
.cid-uqxApwgbOk .dropdown-item:hover:after {
  color: #fabc16;
}
.cid-uqxApwgbOk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqxApwgbOk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqxApwgbOk .nav-link {
  position: relative;
}
.cid-uqxApwgbOk .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
  padding: 0 !important;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-uqxApwgbOk .container {
    flex-wrap: wrap;
  }
}
.cid-uqxApwgbOk .dropdown-menu,
.cid-uqxApwgbOk .navbar.opened {
  background: #ffffff !important;
}
.cid-uqxApwgbOk .nav-item:focus,
.cid-uqxApwgbOk .nav-link:focus {
  outline: none;
}
.cid-uqxApwgbOk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqxApwgbOk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqxApwgbOk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqxApwgbOk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqxApwgbOk .navbar {
  min-height: 60px;
  transition: all .3s !important;
  box-sizing: content-box;
  min-height: 80px;
  position: relative;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07) !important;
}
.cid-uqxApwgbOk .navbar.opened {
  transition: all 0.3s;
}
.cid-uqxApwgbOk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqxApwgbOk .navbar .navbar-logo img {
  width: auto;
}
.cid-uqxApwgbOk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uqxApwgbOk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqxApwgbOk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqxApwgbOk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqxApwgbOk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqxApwgbOk .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-uqxApwgbOk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqxApwgbOk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqxApwgbOk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqxApwgbOk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqxApwgbOk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqxApwgbOk .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqxApwgbOk .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 40%;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 60px !important;
  padding-right: 60px !important;
}
.cid-uqxApwgbOk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqxApwgbOk .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 1599px) {
  .cid-uqxApwgbOk .navbar-brand {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqxApwgbOk .navbar-brand {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 991px) {
  .cid-uqxApwgbOk .navbar-brand {
    display: none;
  }
}
.cid-uqxApwgbOk .dropdown-item.active,
.cid-uqxApwgbOk .dropdown-item:active {
  background-color: transparent;
}
.cid-uqxApwgbOk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqxApwgbOk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqxApwgbOk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqxApwgbOk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uqxApwgbOk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqxApwgbOk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqxApwgbOk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqxApwgbOk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqxApwgbOk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uqxApwgbOk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqxApwgbOk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqxApwgbOk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqxApwgbOk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqxApwgbOk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqxApwgbOk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqxApwgbOk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqxApwgbOk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqxApwgbOk .navbar-dropdown {
  padding: 0;
}
.cid-uqxApwgbOk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqxApwgbOk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqxApwgbOk .navbar {
    height: 70px;
  }
  .cid-uqxApwgbOk .navbar.opened {
    height: auto;
  }
  .cid-uqxApwgbOk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqxApwgbOk .navbar-short {
  min-height: 80px;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.07);
}
.cid-uqxApwgbOk .navbar-short .btn-wrap .mbr-section-btn .btn-white {
  border-bottom: none !important;
}
.cid-uqxApwgbOk .navbar-caption-wrap {
  padding: 8px 0;
}
.cid-uqxApwgbOk .logo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 20%;
}
@media (max-width: 991px) {
  .cid-uqxApwgbOk .logo-wrap {
    order: 2;
  }
}
@media (max-width: 575px) {
  .cid-uqxApwgbOk .logo-wrap {
    width: 33.33333333% !important;
  }
}
.cid-uqxApwgbOk .navbar-logo {
  display: flex;
  align-items: center;
  min-height: 80px;
  padding: 8px;
  margin-right: 0 !important;
}
.cid-uqxApwgbOk .btn-wrap {
  width: 40%;
  padding-right: 80px;
}
@media (max-width: 991px) {
  .cid-uqxApwgbOk .btn-wrap {
    order: 3;
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .cid-uqxApwgbOk .btn-wrap {
    width: 33.33333333% !important;
  }
}
.cid-uqxApwgbOk .btn-wrap .mbr-section-btn {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: flex-end;
  flex-wrap: wrap;
  height: 100%;
}
.cid-uqxApwgbOk .btn-wrap .mbr-section-btn .btn {
  position: relative;
  min-height: 80px;
  margin: 0 !important;
  height: 100%;
  padding: 20px 30px !important;
  border: 1px solid rgba(0, 0, 0, 0.07) !important;
  border-bottom: none !important;
}
@media (max-width: 767px) {
  .cid-uqxApwgbOk .btn-wrap .mbr-section-btn .btn {
    padding: 20px 15px !important;
  }
}
.cid-uqxApwgbOk .btn-wrap .mbr-section-btn .btn::after {
  content: '';
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 20px;
  width: auto !important;
  height: 1px;
  margin-top: 0.625em;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.cid-uqxApwgbOk .btn-wrap .mbr-section-btn .btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.cid-uqxApwgbOk .btn-wrap .mbr-section-btn .btn-white {
  color: #45494E !important;
  background-color: #FFFFFF !important;
}
.cid-uqxApwgbOk .offcanvas_box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 80px !important;
  margin-left: -80px;
}
@media (max-width: 991px) {
  .cid-uqxApwgbOk .offcanvas_box {
    order: 1;
    width: 40% !important;
    margin-left: 0;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uqxApwgbOk .offcanvas_box {
    width: 33.33333333% !important;
  }
}
.cid-uqxApwgbOk .offcanvas_box button.btn_offcanvas {
  background-color: #45494e;
  outline: none;
  width: 80px;
  height: 80px;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uqxApwgbOk .offcanvas_box button.btn_offcanvas {
    margin-right: auto;
  }
}
.cid-uqxApwgbOk .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  overflow: hidden;
  right: 30px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uqxApwgbOk .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 34px;
}
.cid-uqxApwgbOk .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  width: 20px;
  top: 39px;
}
.cid-uqxApwgbOk .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  width: 20px;
  top: 44px;
}
.cid-uqxApwgbOk nav.navbar {
  flex-wrap: nowrap;
  border-radius: 0 !important;
}
.cid-uqxApwgbOk .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.8s ease-in-out;
}
.cid-uqxApwgbOk .offcanvas .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  padding: 0;
  background-size: 25%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1 !important;
  box-shadow: none !important;
}
.cid-uqxApwgbOk .image-wrapper {
  position: fixed;
  height: 100vh;
  width: 65%;
  top: 0;
  left: 0;
}
.cid-uqxApwgbOk .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uqxApwgbOk .image-wrapper {
    display: none;
  }
}
.cid-uqxApwgbOk .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 35%;
  margin-left: auto;
  text-align: left;
  padding: 70px 0 0;
  background-color: #45494e;
}
@media (max-width: 991px) {
  .cid-uqxApwgbOk .offcanvas-body {
    max-width: 100%;
  }
}
.cid-uqxApwgbOk .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 12px 60px 80px;
  margin-bottom: auto;
}
@media (max-width: 1599px) {
  .cid-uqxApwgbOk .offcanvas_link {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqxApwgbOk .offcanvas_link {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 767px) {
  .cid-uqxApwgbOk .offcanvas_link {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 575px) {
  .cid-uqxApwgbOk .offcanvas_link {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uqxApwgbOk .navbar-nav {
  display: flex !important;
}
.cid-uqxApwgbOk .navbar-nav .nav-item {
  width: 100%;
  text-align: left;
}
.cid-uqxApwgbOk .navbar-nav .nav-item .nav-link {
  padding: 5px 0 !important;
  margin: 0 !important;
  justify-content: flex-start;
}
.cid-uqxApwgbOk .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #45494e !important;
}
.cid-uqxApwgbOk .offcanvas_footer {
  margin-top: auto;
  padding-top: 40px;
}
.cid-uqxApwgbOk .offcanvas_contact {
  display: flex;
  align-items: center;
  padding: 0 60px 40px;
}
@media (max-width: 1599px) {
  .cid-uqxApwgbOk .offcanvas_contact {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqxApwgbOk .offcanvas_contact {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 767px) {
  .cid-uqxApwgbOk .offcanvas_contact {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 575px) {
  .cid-uqxApwgbOk .offcanvas_contact {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uqxApwgbOk .offcanvas_text {
  width: 60%;
}
.cid-uqxApwgbOk .mbr-text {
  color: #FFFFFF;
}
.cid-uqxApwgbOk .offcanvas_logo {
  display: flex;
  justify-content: flex-end;
  width: 40%;
  margin-left: auto;
}
.cid-uqxApwgbOk .offcanvas_logo-wrapper {
  width: 2.5rem;
}
.cid-uqxApwgbOk .offcanvas_logo-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uqxApwgbOk .offcanvas_btn {
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cid-uqxApwgbOk .offcanvas_btn .mbr-section-btn {
  display: flex;
  width: 100%;
}
.cid-uqxApwgbOk .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uqxApwgbOk .offcanvas_btn .mbr-section-btn .btn-white {
  color: #45494E !important;
  background-color: #FFFFFF !important;
}
.cid-uqxApxcpy1 {
  display: flex;
  background-image: url("../../../assets/images/car-wheels-cover-7-2-24-1440x625.jpg");
  align-items: center;
}
.cid-uqxApxcpy1 .mbr-overlay {
  background-color: #000000;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .cid-uqxApxcpy1 .row {
    justify-content: flex-start;
  }
  .cid-uqxApxcpy1 .content-wrap {
    width: 70%;
  }
}
@media (max-width: 991px) {
  .cid-uqxApxcpy1 .content-wrap {
    width: 100%;
  }
}
.cid-uqxApxcpy1 .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-uqxApxcpy1 .mbr-section-title {
    text-align: center;
    margin-bottom: 30px;
  }
}
.cid-uqxApxcpy1 .mbr-text {
  text-align: center;
  color: #f8f6f2;
}
@media (max-width: 767px) {
  .cid-uqxApxcpy1 .mbr-text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-uqxApxcpy1 .mbr-section-btn {
    text-align: center;
  }
}
.cid-uqxApxcpy1 .mbr-section-title,
.cid-uqxApxcpy1 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uqxApxGNxc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uqxApxGNxc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxApxGNxc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxApxGNxc .tabl-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.cid-uqxApxGNxc .item-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 0;
}
.cid-uqxApxGNxc .frame-item {
  width: 40px;
  height: 1px;
  margin-right: 20px;
  background-color: #da0e0e;
}
.cid-uqxApxGNxc .card-text {
  color: #45494E;
  flex-grow: 1;
}
.cid-uqxApyjRN2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #a09099;
}
.cid-uqxApyjRN2 .row {
  justify-content: flex-start;
}
.cid-uqxApyjRN2 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uqxApyjRN2 .mbr-section-subtitle {
  margin-top: 24px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-uqxApyjRN2 .mbr-section-subtitle {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uqxApyjRN2 .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-uqxApyjRN2 .mbr-text {
  margin-top: 36px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-uqxApyjRN2 .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-uqxApyjRN2 .mbr-text {
    margin-top: 20px;
  }
}
.cid-uqxApyjRN2 .mbr-section-title DIV {
  text-align: center;
}
.cid-uqxApyKqTD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqxApyKqTD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxApyKqTD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uqxApyKqTD .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uqxApyKqTD .col-img {
    order: 2;
  }
}
.cid-uqxApyKqTD .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uqxApyKqTD .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-uqxApyKqTD .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-uqxApyKqTD .col-tex {
    order: 1;
  }
}
.cid-uqxApyKqTD .card-title {
  color: #000000;
}
.cid-uqxApyKqTD .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-uqxApyKqTD .mbr-section-btn {
  margin-top: 60px;
}
.cid-uqxApyKqTD .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uqxApyKqTD .mbr-text,
.cid-uqxApyKqTD .mbr-section-btn {
  color: #000000;
}
.cid-uqxApzee8E {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a09099;
}
.cid-uqxApzee8E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxApzee8E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxApzee8E .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cid-uqxApzee8E .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-uqxApzee8E .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uqxApzee8E .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uqxApzee8E .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uqxApzee8E .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-uqxApzee8E .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-uqxApzee8E .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uqxApzee8E .content-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #f7fff7;
}
.cid-uqxApzee8E .content-wrapper .item .item-wrapper:hover,
.cid-uqxApzee8E .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-uqxApzee8E .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-uqxApzee8E .content-wrapper .item .item-wrapper .item-content .item-img img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uqxApzee8E .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-uqxApzee8E .content-wrapper .item .item-wrapper .item-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
}
.cid-uqxApzee8E .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-uqxApzee8E .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqxApzee8E .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-uqxApzee8E .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uqxApzee8E .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-uqxApzee8E .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqxApzee8E .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-uqxApzee8E .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-uqxApzee8E .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqxApzee8E .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-uqxApzee8E .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uqxApzee8E .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap {
  display: inline-flex;
  padding: 11px 20px;
  margin: 0 8px 8px 0;
  background-color: #d3f2ff;
}
.cid-uqxApzee8E .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-uqxApzee8E .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-uqxApzee8E .item-title {
  color: #050f0f;
}
.cid-uqxApzee8E .item-text {
  color: #050f0f;
}
.cid-uqxApzee8E .list {
  color: #050f0f;
}
.cid-uqxApzZqml {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqxApzZqml .row {
  justify-content: flex-start;
}
.cid-uqxApzZqml .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 1199px) {
  .cid-uqxApzZqml .mbr-section-head {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-uqxApzZqml .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-uqxApzZqml .mbr-section-title {
  color: #000000;
}
.cid-uqxApzZqml .mbr-section-subtitle {
  margin-top: 24px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-uqxApzZqml .mbr-section-subtitle {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uqxApzZqml .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-uqxApzZqml .card-container {
  width: 100%;
  padding: 7.5% 10%;
  background-color: #a09099;
  border-left: 1px solid #000000;
}
.cid-uqxApzZqml .mbr-text {
  color: #000000;
}
.cid-uqxApzZqml .card-text-wrap {
  margin-top: 32px;
}
@media (max-width: 991px) {
  .cid-uqxApzZqml .card-text-wrap {
    margin-top: 28px;
  }
}
@media (max-width: 767px) {
  .cid-uqxApzZqml .card-text-wrap {
    margin-top: 22px;
  }
}
.cid-uqxApzZqml .name-text {
  color: #45494E;
}
.cid-uqxApzZqml .date-text {
  color: #5c6064;
}
.cid-uqxApAsPSd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqxApAsPSd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxApAsPSd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxApAsPSd .row {
  justify-content: flex-start;
}
.cid-uqxApAsPSd .mbr-section-title {
  color: #000000;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-uqxApAsPSd .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uqxApAsPSd .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-uqxApAsPSd .image-wrapper {
  width: 100%;
}
.cid-uqxApAsPSd .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-uqxApAsPSd .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-uqxApAsPSd .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uqxApAsPSd .mbr-text {
    margin-top: 45px;
  }
}
.cid-uqxApAsPSd .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-uqxApAsPSd .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-uqxApAsPSd .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-uqxApAsPSd .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-uqxApAsPSd .mbr-text,
.cid-uqxApAsPSd .mbr-section-btn {
  color: #000000;
}
.cid-uqxApB2GTR {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #a09099;
}
.cid-uqxApB2GTR .row {
  justify-content: flex-start;
}
.cid-uqxApB2GTR .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uqxApB2GTR .mbr-section-subtitle {
  margin-top: 24px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-uqxApB2GTR .mbr-section-subtitle {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uqxApB2GTR .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-uqxApB2GTR .mbr-text {
  margin-top: 36px;
  color: #000000;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uqxApB2GTR .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-uqxApB2GTR .mbr-text {
    margin-top: 20px;
  }
}
.cid-uqxApBxdVF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqxApBxdVF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxApBxdVF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxApBxdVF .row {
  margin: 0 !important;
}
.cid-uqxApBxdVF .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uqxApBxdVF .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uqxApBxdVF .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-uqxApBxdVF .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
  text-align: center;
}
.cid-uqxApBxdVF .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uqxApBxdVF .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-uqxApBxdVF .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqxApBxdVF .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-uqxApBxdVF .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-uqxApBxdVF .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-uqxApBxdVF .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uqxApBxdVF .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #694f5f;
  margin-left: 0.5rem;
}
.cid-uqxApBxdVF .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #694f5f;
  font-weight: 900;
}
.cid-uqxApBxdVF .panel-group {
  border: none;
}
.cid-uqxApBxdVF .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #694f5f;
}
.cid-uqxApBxdVF .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uqxApBxdVF .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uqxApBxdVF .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-uqxApBxdVF .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-uqxApBxdVF .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-uqxApBxdVF .panel-title-edit {
  color: #131313;
}
.cid-uqxApBxdVF .panel-body {
  padding: 0 0 20px;
}
.cid-uqxApBxdVF .panel-text {
  color: #131313;
  margin: 0;
}
.cid-uqxApChqe4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f6f2;
}
.cid-uqxApChqe4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxApChqe4 .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-uqxApChqe4 .container {
    padding: 0 30px;
  }
}
.cid-uqxApChqe4 .row {
  justify-content: center;
}
.cid-uqxApChqe4 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uqxApChqe4 .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqxApChqe4 .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-uqxApChqe4 .video-block .video-wrapper .app-video-wrapper::before {
  color: #212529;
  text-shadow: none;
}
.cid-uqxApChqe4 .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqxApChqe4 .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uqxApChqe4 .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uqxApCWkyf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uqxApCWkyf .col-title {
    margin-bottom: 20px;
  }
}
.cid-uqxApCWkyf .mbr-section-title {
  color: #000000;
}
.cid-uqxApCWkyf .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uqxApCWkyf .mbr-text {
  color: #000000;
}
.cid-uqxApDuo4a {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
  position: relative;
}
.cid-uqxApDuo4a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #f3ece6, #694f5f);
}
.cid-uqxApDuo4a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxApDuo4a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxApDuo4a .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uqxApDuo4a .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uqxApDuo4a .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uqxApDuo4a .container {
    padding: 0 16px;
  }
}
.cid-uqxApDuo4a .content-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uqxApDuo4a .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-uqxApDuo4a .item {
  margin-bottom: 32px;
}
.cid-uqxApDuo4a .item .item-wrapper .card-box .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uqxApDuo4a .item .item-wrapper .card-box .title-wrapper .title-wrap {
    margin-bottom: 16px;
  }
}
.cid-uqxApDuo4a .item .item-wrapper .card-box .title-wrapper .title-wrap .mbr-iconfont {
  font-size: 36px;
  color: #f4f4f4;
  margin-right: 12px;
}
.cid-uqxApDuo4a .item .item-wrapper .card-box .title-wrapper .title-wrap .card-title {
  margin-bottom: 0;
}
.cid-uqxApDuo4a .item .item-wrapper .card-box .text-wrap .card-text {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
.cid-uqxApDuo4a .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqxApDuo4a .card-title {
  color: #f4f4f4;
}
.cid-uqxApDuo4a .card-text {
  color: #c1c1c1;
}
.cid-uqxApEhD49 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqxApEhD49 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxApEhD49 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxApEhD49 .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-uqxApEhD49 .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uqxApEhD49 .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uqxApEhD49 .item-img {
    width: 100%;
  }
}
.cid-uqxApEhD49 .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uqxApEhD49 .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqxApEhD49 .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uqxApEhD49 .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uqxApEhD49 .card-title {
  color: #131313;
}
.cid-uqxApEhD49 .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-uqxApEhD49 .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-uqxApEhD49 .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-uqxApEhD49 .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-uqxApEhD49 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #fc7942;
  transform: rotate(-45deg);
}
.cid-uqxApEhD49 .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-uqxApEhD49 .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-uqxApEhD49 .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uqxApFeZZs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a09099;
}
.cid-uqxApFeZZs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxApFeZZs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxApFeZZs .row {
  justify-content: flex-start;
}
.cid-uqxApFeZZs .mbr-section-title {
  color: #000000;
}
.cid-uqxApFeZZs .mbr-text {
  margin-top: 36px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-uqxApFeZZs .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-uqxApFeZZs .mbr-text {
    margin-top: 20px;
  }
}
.cid-uqxApFeZZs .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-uqxApFeZZs .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-uqxApFeZZs .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-uqxApFeZZs .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-uqxApFeZZs .mbr-text,
.cid-uqxApFeZZs .mbr-section-btn {
  color: #000000;
}
.cid-uqxNZDWior {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uqxNZDWior .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxNZDWior .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxNZDWior .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uqxNZDWior .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uqxNZDWior .container {
    padding: 0 16px;
  }
}
.cid-uqxNZDWior .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uqxNZDWior .row {
    margin: 0 10px;
  }
}
.cid-uqxNZDWior .row .item {
  padding: 0;
}
.cid-uqxNZDWior .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uqxNZDWior .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uqxNZDWior .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uqxNZDWior .panel-group {
  border: 1px solid #000000;
  border-radius: 20px;
  overflow: hidden;
}
.cid-uqxNZDWior .panel-group .card {
  border-top: 1px solid #4a5357;
  border-radius: 0 !important;
}
.cid-uqxNZDWior .panel-group .card:first-child {
  border-top: none;
}
.cid-uqxNZDWior .panel-group .card:last-child {
  border-bottom: none;
}
.cid-uqxNZDWior .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-uqxNZDWior .panel-group .card .card-header .panel-title {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uqxNZDWior .panel-group .card .card-header .panel-title {
    padding: 20px 10px;
  }
}
.cid-uqxNZDWior .panel-group .card .card-header .panel-title:not(.collapsed) {
  background-color: #f9a600;
}
.cid-uqxNZDWior .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
  color: #f9a600;
  background-color: #192227;
}
.cid-uqxNZDWior .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #192227;
}
.cid-uqxNZDWior .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uqxNZDWior .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 30px;
  color: #192227;
  background-color: #f9a600;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uqxNZDWior .panel-group .card .panel-collapse .panel-body {
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-uqxNZDWior .panel-group .card .panel-collapse .panel-body {
    padding: 20px 10px;
  }
}
.cid-uqxNZDWior .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uqxNZDWior .image-wrapper {
  height: 100%;
}
.cid-uqxNZDWior .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqxNZDWior .image-wrapper img {
    height: 350px;
  }
}
.cid-uqxNZDWior .mbr-section-title {
  color: #000000;
}
.cid-uqxNZDWior .panel-title-edit {
  color: #000000;
}
.cid-uqxNZDWior .panel-text {
  color: #000000;
}
.cid-uqxApFStKn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uqxApFStKn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxApFStKn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxApFStKn .mbr-section-head {
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-uqxApFStKn .mbr-section-head {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uqxApFStKn .mbr-section-head {
    margin-bottom: 45px;
  }
}
.cid-uqxApFStKn .google-map {
  height: 600px;
  position: relative;
}
.cid-uqxApFStKn .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uqxApFStKn .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uqxApFStKn .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqxApFStKn .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqxApGuCZY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #15171a;
}
.cid-uqxApGuCZY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxApGuCZY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxApGuCZY .content-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uqxApGuCZY .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uqxApGuCZY .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uqxApGuCZY .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqxApGuCZY .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uqxApGuCZY .social-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uqxApGuCZY .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uqxApGuCZY .social-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uqxApGuCZY .social-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqxApGuCZY .social-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uqxApGuCZY .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqxApGuCZY .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  color: #f96e47;
}
.cid-uqxApGuCZY .social-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: #a09099;
  font-size: 32px;
  border-radius: .5rem;
  transition: all 0.3s ease-in-out;
  margin: 0 8px 8px 0;
}
.cid-uqxApGuCZY .social-wrapper .social-wrap .soc-wrap .soc-item:nth-child(2n) a .mbr-iconfont {
  background-color: #a09099;
}
.cid-uqxApGuCZY .list-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uqxApGuCZY .list-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uqxApGuCZY .list-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uqxApGuCZY .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uqxApGuCZY .list-wrapper .list .item-wrap {
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uqxApGuCZY .list-wrapper .list .item-wrap {
    margin-bottom: 16px;
  }
}
.cid-uqxApGuCZY .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqxApGuCZY .list-wrapper .list .item-wrap:hover,
.cid-uqxApGuCZY .list-wrapper .list .item-wrap:focus {
  color: #f96e47;
}
.cid-uqxApGuCZY .border-wrap {
  height: 1px;
  background-color: #b9b9b9;
  margin: 78px 0 24px 0;
}
@media (max-width: 992px) {
  .cid-uqxApGuCZY .border-wrap {
    margin: 0 0 16px 0;
  }
}
.cid-uqxApGuCZY .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-uqxApGuCZY .mbr-section-title {
  color: #ffffff;
}
.cid-uqxApGuCZY .mbr-text {
  color: #ffffff;
}
.cid-uqxApGuCZY .mbr-desc {
  color: #16fab4;
}
.cid-uqxApGuCZY .list {
  color: #ffffff;
}
.cid-uqxAvW2kAY .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-uqxAvW2kAY .dropdown-menu {
  padding: 0;
}
.cid-uqxAvW2kAY .dropdown-item {
  padding: 5px 0.4em 5px  0.4em !important;
  width: 100%;
  line-height: inherit !important;
  transition: background-position 0.3s ease;
}
@media (max-width: 991px) {
  .cid-uqxAvW2kAY .dropdown-item {
    text-align: left !important;
  }
}
.cid-uqxAvW2kAY .dropdown-item:hover {
  background-position: right !important;
}
.cid-uqxAvW2kAY .dropdown-item:hover:after {
  color: #fabc16;
}
.cid-uqxAvW2kAY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqxAvW2kAY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqxAvW2kAY .nav-link {
  position: relative;
}
.cid-uqxAvW2kAY .container {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
  padding: 0 !important;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-uqxAvW2kAY .container {
    flex-wrap: wrap;
  }
}
.cid-uqxAvW2kAY .dropdown-menu,
.cid-uqxAvW2kAY .navbar.opened {
  background: #ffffff !important;
}
.cid-uqxAvW2kAY .nav-item:focus,
.cid-uqxAvW2kAY .nav-link:focus {
  outline: none;
}
.cid-uqxAvW2kAY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqxAvW2kAY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqxAvW2kAY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqxAvW2kAY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqxAvW2kAY .navbar {
  min-height: 60px;
  transition: all .3s !important;
  box-sizing: content-box;
  min-height: 80px;
  position: relative;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07) !important;
}
.cid-uqxAvW2kAY .navbar.opened {
  transition: all 0.3s;
}
.cid-uqxAvW2kAY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqxAvW2kAY .navbar .navbar-logo img {
  width: auto;
}
.cid-uqxAvW2kAY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uqxAvW2kAY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqxAvW2kAY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqxAvW2kAY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqxAvW2kAY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqxAvW2kAY .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-uqxAvW2kAY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqxAvW2kAY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqxAvW2kAY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqxAvW2kAY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqxAvW2kAY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqxAvW2kAY .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqxAvW2kAY .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 40%;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 60px !important;
  padding-right: 60px !important;
}
.cid-uqxAvW2kAY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqxAvW2kAY .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 1599px) {
  .cid-uqxAvW2kAY .navbar-brand {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqxAvW2kAY .navbar-brand {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 991px) {
  .cid-uqxAvW2kAY .navbar-brand {
    display: none;
  }
}
.cid-uqxAvW2kAY .dropdown-item.active,
.cid-uqxAvW2kAY .dropdown-item:active {
  background-color: transparent;
}
.cid-uqxAvW2kAY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqxAvW2kAY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqxAvW2kAY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqxAvW2kAY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uqxAvW2kAY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqxAvW2kAY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqxAvW2kAY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqxAvW2kAY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqxAvW2kAY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uqxAvW2kAY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqxAvW2kAY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqxAvW2kAY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqxAvW2kAY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqxAvW2kAY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqxAvW2kAY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqxAvW2kAY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqxAvW2kAY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqxAvW2kAY .navbar-dropdown {
  padding: 0;
}
.cid-uqxAvW2kAY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqxAvW2kAY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqxAvW2kAY .navbar {
    height: 70px;
  }
  .cid-uqxAvW2kAY .navbar.opened {
    height: auto;
  }
  .cid-uqxAvW2kAY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqxAvW2kAY .navbar-short {
  min-height: 80px;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.07);
}
.cid-uqxAvW2kAY .navbar-short .btn-wrap .mbr-section-btn .btn-white {
  border-bottom: none !important;
}
.cid-uqxAvW2kAY .navbar-caption-wrap {
  padding: 8px 0;
}
.cid-uqxAvW2kAY .logo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 20%;
}
@media (max-width: 991px) {
  .cid-uqxAvW2kAY .logo-wrap {
    order: 2;
  }
}
@media (max-width: 575px) {
  .cid-uqxAvW2kAY .logo-wrap {
    width: 33.33333333% !important;
  }
}
.cid-uqxAvW2kAY .navbar-logo {
  display: flex;
  align-items: center;
  min-height: 80px;
  padding: 8px;
  margin-right: 0 !important;
}
.cid-uqxAvW2kAY .btn-wrap {
  width: 40%;
  padding-right: 80px;
}
@media (max-width: 991px) {
  .cid-uqxAvW2kAY .btn-wrap {
    order: 3;
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .cid-uqxAvW2kAY .btn-wrap {
    width: 33.33333333% !important;
  }
}
.cid-uqxAvW2kAY .btn-wrap .mbr-section-btn {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: flex-end;
  flex-wrap: wrap;
  height: 100%;
}
.cid-uqxAvW2kAY .btn-wrap .mbr-section-btn .btn {
  position: relative;
  min-height: 80px;
  margin: 0 !important;
  height: 100%;
  padding: 20px 30px !important;
  border: 1px solid rgba(0, 0, 0, 0.07) !important;
  border-bottom: none !important;
}
@media (max-width: 767px) {
  .cid-uqxAvW2kAY .btn-wrap .mbr-section-btn .btn {
    padding: 20px 15px !important;
  }
}
.cid-uqxAvW2kAY .btn-wrap .mbr-section-btn .btn::after {
  content: '';
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 20px;
  width: auto !important;
  height: 1px;
  margin-top: 0.625em;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.cid-uqxAvW2kAY .btn-wrap .mbr-section-btn .btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.cid-uqxAvW2kAY .btn-wrap .mbr-section-btn .btn-white {
  color: #45494E !important;
  background-color: #FFFFFF !important;
}
.cid-uqxAvW2kAY .offcanvas_box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 80px !important;
  margin-left: -80px;
}
@media (max-width: 991px) {
  .cid-uqxAvW2kAY .offcanvas_box {
    order: 1;
    width: 40% !important;
    margin-left: 0;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uqxAvW2kAY .offcanvas_box {
    width: 33.33333333% !important;
  }
}
.cid-uqxAvW2kAY .offcanvas_box button.btn_offcanvas {
  background-color: #45494e;
  outline: none;
  width: 80px;
  height: 80px;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uqxAvW2kAY .offcanvas_box button.btn_offcanvas {
    margin-right: auto;
  }
}
.cid-uqxAvW2kAY .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span {
  position: absolute;
  overflow: hidden;
  right: 30px;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uqxAvW2kAY .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(1) {
  top: 34px;
}
.cid-uqxAvW2kAY .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(2) {
  width: 20px;
  top: 39px;
}
.cid-uqxAvW2kAY .offcanvas_box button.btn_offcanvas .hamburger-offcanvas span:nth-child(3) {
  width: 20px;
  top: 44px;
}
.cid-uqxAvW2kAY nav.navbar {
  flex-wrap: nowrap;
  border-radius: 0 !important;
}
.cid-uqxAvW2kAY .offcanvas {
  padding: 0;
  width: 100%;
  border-left: none !important;
  background-color: transparent !important;
  transition: transform 0.8s ease-in-out;
}
.cid-uqxAvW2kAY .offcanvas .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  padding: 0;
  background-size: 25%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1 !important;
  box-shadow: none !important;
}
.cid-uqxAvW2kAY .image-wrapper {
  position: fixed;
  height: 100vh;
  width: 65%;
  top: 0;
  left: 0;
}
.cid-uqxAvW2kAY .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uqxAvW2kAY .image-wrapper {
    display: none;
  }
}
.cid-uqxAvW2kAY .offcanvas-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 35%;
  margin-left: auto;
  text-align: left;
  padding: 70px 0 0;
  background-color: #45494e;
}
@media (max-width: 991px) {
  .cid-uqxAvW2kAY .offcanvas-body {
    max-width: 100%;
  }
}
.cid-uqxAvW2kAY .offcanvas_link {
  width: 100%;
  overflow: auto;
  padding: 12px 60px 80px;
  margin-bottom: auto;
}
@media (max-width: 1599px) {
  .cid-uqxAvW2kAY .offcanvas_link {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqxAvW2kAY .offcanvas_link {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 767px) {
  .cid-uqxAvW2kAY .offcanvas_link {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 575px) {
  .cid-uqxAvW2kAY .offcanvas_link {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uqxAvW2kAY .navbar-nav {
  display: flex !important;
}
.cid-uqxAvW2kAY .navbar-nav .nav-item {
  width: 100%;
  text-align: left;
}
.cid-uqxAvW2kAY .navbar-nav .nav-item .nav-link {
  padding: 5px 0 !important;
  margin: 0 !important;
  justify-content: flex-start;
}
.cid-uqxAvW2kAY .navbar-nav .nav-item .dropdown-menu {
  position: static !important;
  background-color: #45494e !important;
}
.cid-uqxAvW2kAY .offcanvas_footer {
  margin-top: auto;
  padding-top: 40px;
}
.cid-uqxAvW2kAY .offcanvas_contact {
  display: flex;
  align-items: center;
  padding: 0 60px 40px;
}
@media (max-width: 1599px) {
  .cid-uqxAvW2kAY .offcanvas_contact {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqxAvW2kAY .offcanvas_contact {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
}
@media (max-width: 767px) {
  .cid-uqxAvW2kAY .offcanvas_contact {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 575px) {
  .cid-uqxAvW2kAY .offcanvas_contact {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uqxAvW2kAY .offcanvas_text {
  width: 60%;
}
.cid-uqxAvW2kAY .mbr-text {
  color: #FFFFFF;
}
.cid-uqxAvW2kAY .offcanvas_logo {
  display: flex;
  justify-content: flex-end;
  width: 40%;
  margin-left: auto;
}
.cid-uqxAvW2kAY .offcanvas_logo-wrapper {
  width: 2.5rem;
}
.cid-uqxAvW2kAY .offcanvas_logo-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uqxAvW2kAY .offcanvas_btn {
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cid-uqxAvW2kAY .offcanvas_btn .mbr-section-btn {
  display: flex;
  width: 100%;
}
.cid-uqxAvW2kAY .offcanvas_btn .mbr-section-btn .btn {
  flex-grow: 1;
}
.cid-uqxAvW2kAY .offcanvas_btn .mbr-section-btn .btn-white {
  color: #45494E !important;
  background-color: #FFFFFF !important;
}
.cid-uqxAvWDQkk {
  display: flex;
  background-image: url("../../../assets/images/how-to-pick-the-right-rims-for-your-car-audiosport-800x533.jpg");
  align-items: center;
}
.cid-uqxAvWDQkk .mbr-overlay {
  background-color: #000000;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .cid-uqxAvWDQkk .row {
    justify-content: flex-end;
  }
  .cid-uqxAvWDQkk .content-wrap {
    width: 70%;
  }
}
@media (max-width: 991px) {
  .cid-uqxAvWDQkk .content-wrap {
    width: 100%;
  }
}
.cid-uqxAvWDQkk .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-uqxAvWDQkk .mbr-section-title {
    text-align: center;
    margin-bottom: 30px;
  }
}
.cid-uqxAvWDQkk .mbr-text {
  text-align: center;
  color: #f8f6f2;
}
@media (max-width: 767px) {
  .cid-uqxAvWDQkk .mbr-text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-uqxAvWDQkk .mbr-section-btn {
    text-align: center;
  }
}
.cid-uqxAvWDQkk .mbr-section-title,
.cid-uqxAvWDQkk .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uqxAvX45mN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uqxAvX45mN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxAvX45mN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxAvX45mN .tabl-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.cid-uqxAvX45mN .item-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 0;
}
.cid-uqxAvX45mN .frame-item {
  width: 40px;
  height: 1px;
  margin-right: 20px;
  background-color: #da0e0e;
}
.cid-uqxAvX45mN .card-text {
  color: #45494E;
  flex-grow: 1;
}
.cid-uqxAvXDj8m {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #a09099;
}
.cid-uqxAvXDj8m .row {
  justify-content: flex-start;
}
.cid-uqxAvXDj8m .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uqxAvXDj8m .mbr-section-subtitle {
  margin-top: 24px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-uqxAvXDj8m .mbr-section-subtitle {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uqxAvXDj8m .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-uqxAvXDj8m .mbr-text {
  margin-top: 36px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-uqxAvXDj8m .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-uqxAvXDj8m .mbr-text {
    margin-top: 20px;
  }
}
.cid-uqxAvXDj8m .mbr-section-title DIV {
  text-align: center;
}
.cid-uqxAvY571B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqxAvY571B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxAvY571B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uqxAvY571B .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-uqxAvY571B .col-img {
    order: 2;
  }
}
.cid-uqxAvY571B .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uqxAvY571B .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-uqxAvY571B .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-uqxAvY571B .col-tex {
    order: 1;
  }
}
.cid-uqxAvY571B .card-title {
  color: #000000;
}
.cid-uqxAvY571B .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-uqxAvY571B .mbr-section-btn {
  margin-top: 60px;
}
.cid-uqxAvY571B .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-uqxAvY571B .mbr-text,
.cid-uqxAvY571B .mbr-section-btn {
  color: #000000;
}
.cid-uqxAvYyyIk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a09099;
}
.cid-uqxAvYyyIk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxAvYyyIk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxAvYyyIk .content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 80px 60px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cid-uqxAvYyyIk .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 1199px) {
  .cid-uqxAvYyyIk .content-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uqxAvYyyIk .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uqxAvYyyIk .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uqxAvYyyIk .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-uqxAvYyyIk .content-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-uqxAvYyyIk .content-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uqxAvYyyIk .content-wrapper .item .item-wrapper {
  position: relative;
  height: 100%;
  border: 3px solid #050f0f;
  box-shadow: 4px 4px 0 0 #050f0f;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #f7fff7;
}
.cid-uqxAvYyyIk .content-wrapper .item .item-wrapper:hover,
.cid-uqxAvYyyIk .content-wrapper .item .item-wrapper:focus {
  transform: translate(0.2rem, 0.2rem);
  box-shadow: none;
}
.cid-uqxAvYyyIk .content-wrapper .item .item-wrapper .item-content .item-img {
  border-bottom: 3px solid #050f0f;
}
.cid-uqxAvYyyIk .content-wrapper .item .item-wrapper .item-content .item-img img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uqxAvYyyIk .content-wrapper .item .item-wrapper .item-content .item-img img {
    height: 350px;
  }
}
.cid-uqxAvYyyIk .content-wrapper .item .item-wrapper .item-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
}
.cid-uqxAvYyyIk .content-wrapper .item .item-wrapper .item-content .text-wrapper {
  padding: 32px;
}
@media (max-width: 1440px) {
  .cid-uqxAvYyyIk .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqxAvYyyIk .content-wrapper .item .item-wrapper .item-content .text-wrapper {
    padding: 32px 16px;
  }
}
.cid-uqxAvYyyIk .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uqxAvYyyIk .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-title {
    margin-bottom: 24px;
  }
}
.cid-uqxAvYyyIk .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqxAvYyyIk .content-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    margin-bottom: 0;
  }
}
.cid-uqxAvYyyIk .content-wrapper .item .item-wrapper .tags-wrapper {
  padding: 0 32px 24px 32px;
}
@media (max-width: 1440px) {
  .cid-uqxAvYyyIk .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 24px 24px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqxAvYyyIk .content-wrapper .item .item-wrapper .tags-wrapper {
    padding: 0 16px 24px 16px;
  }
}
.cid-uqxAvYyyIk .content-wrapper .item .item-wrapper .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uqxAvYyyIk .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap {
  display: inline-flex;
  padding: 11px 20px;
  margin: 0 8px 8px 0;
  background-color: #d3f2ff;
}
.cid-uqxAvYyyIk .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(2n) {
  background-color: #bafca2;
}
.cid-uqxAvYyyIk .content-wrapper .item .item-wrapper .tags-wrapper .list .item-wrap:nth-child(3n) {
  background-color: #fdfd96;
}
.cid-uqxAvYyyIk .item-title {
  color: #050f0f;
}
.cid-uqxAvYyyIk .item-text {
  color: #050f0f;
}
.cid-uqxAvYyyIk .list {
  color: #050f0f;
}
.cid-uqxAvZ9lCJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqxAvZ9lCJ .row {
  justify-content: flex-start;
}
.cid-uqxAvZ9lCJ .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 1199px) {
  .cid-uqxAvZ9lCJ .mbr-section-head {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-uqxAvZ9lCJ .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-uqxAvZ9lCJ .mbr-section-title {
  color: #000000;
}
.cid-uqxAvZ9lCJ .mbr-section-subtitle {
  margin-top: 24px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-uqxAvZ9lCJ .mbr-section-subtitle {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uqxAvZ9lCJ .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-uqxAvZ9lCJ .card-container {
  width: 100%;
  padding: 7.5% 10%;
  background-color: #a09099;
  border-left: 1px solid #000000;
}
.cid-uqxAvZ9lCJ .mbr-text {
  color: #000000;
}
.cid-uqxAvZ9lCJ .card-text-wrap {
  margin-top: 32px;
}
@media (max-width: 991px) {
  .cid-uqxAvZ9lCJ .card-text-wrap {
    margin-top: 28px;
  }
}
@media (max-width: 767px) {
  .cid-uqxAvZ9lCJ .card-text-wrap {
    margin-top: 22px;
  }
}
.cid-uqxAvZ9lCJ .name-text {
  color: #45494E;
}
.cid-uqxAvZ9lCJ .date-text {
  color: #5c6064;
}
.cid-uqxAvZyywI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqxAvZyywI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxAvZyywI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxAvZyywI .row {
  justify-content: flex-start;
}
.cid-uqxAvZyywI .mbr-section-title {
  color: #000000;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-uqxAvZyywI .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uqxAvZyywI .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-uqxAvZyywI .image-wrapper {
  width: 100%;
}
.cid-uqxAvZyywI .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-uqxAvZyywI .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-uqxAvZyywI .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uqxAvZyywI .mbr-text {
    margin-top: 45px;
  }
}
.cid-uqxAvZyywI .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-uqxAvZyywI .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-uqxAvZyywI .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-uqxAvZyywI .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-uqxAvZyywI .mbr-text,
.cid-uqxAvZyywI .mbr-section-btn {
  color: #000000;
}
.cid-uqxAvZYSJm {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #a09099;
}
.cid-uqxAvZYSJm .row {
  justify-content: flex-start;
}
.cid-uqxAvZYSJm .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uqxAvZYSJm .mbr-section-subtitle {
  margin-top: 24px;
  color: #000000;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uqxAvZYSJm .mbr-section-subtitle {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uqxAvZYSJm .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-uqxAvZYSJm .mbr-text {
  margin-top: 36px;
  color: #000000;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uqxAvZYSJm .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-uqxAvZYSJm .mbr-text {
    margin-top: 20px;
  }
}
.cid-uqxAw0qA7O {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqxAw0qA7O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxAw0qA7O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxAw0qA7O .row {
  margin: 0 !important;
}
.cid-uqxAw0qA7O .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uqxAw0qA7O .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uqxAw0qA7O .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-uqxAw0qA7O .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
  text-align: center;
}
.cid-uqxAw0qA7O .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uqxAw0qA7O .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-uqxAw0qA7O .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uqxAw0qA7O .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-uqxAw0qA7O .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-uqxAw0qA7O .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-uqxAw0qA7O .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uqxAw0qA7O .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #694f5f;
  margin-left: 0.5rem;
}
.cid-uqxAw0qA7O .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #694f5f;
  font-weight: 900;
}
.cid-uqxAw0qA7O .panel-group {
  border: none;
}
.cid-uqxAw0qA7O .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #694f5f;
}
.cid-uqxAw0qA7O .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uqxAw0qA7O .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uqxAw0qA7O .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-uqxAw0qA7O .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-uqxAw0qA7O .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-uqxAw0qA7O .panel-title-edit {
  color: #131313;
}
.cid-uqxAw0qA7O .panel-body {
  padding: 0 0 20px;
}
.cid-uqxAw0qA7O .panel-text {
  color: #131313;
  margin: 0;
}
.cid-uqxAw1bkZL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f6f2;
}
.cid-uqxAw1bkZL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxAw1bkZL .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-uqxAw1bkZL .container {
    padding: 0 30px;
  }
}
.cid-uqxAw1bkZL .row {
  justify-content: center;
}
.cid-uqxAw1bkZL .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uqxAw1bkZL .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqxAw1bkZL .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-uqxAw1bkZL .video-block .video-wrapper .app-video-wrapper::before {
  color: #da0e0e;
  text-shadow: none;
}
.cid-uqxAw1bkZL .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqxAw1bkZL .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uqxAw1bkZL .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uqxAw1FZHY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uqxAw1FZHY .col-title {
    margin-bottom: 20px;
  }
}
.cid-uqxAw1FZHY .mbr-section-title {
  color: #000000;
}
.cid-uqxAw1FZHY .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-uqxAw1FZHY .mbr-text {
  color: #000000;
}
.cid-uqxAw26H3a {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
  position: relative;
}
.cid-uqxAw26H3a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #f3ece6, #694f5f);
}
.cid-uqxAw26H3a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxAw26H3a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxAw26H3a .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uqxAw26H3a .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uqxAw26H3a .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uqxAw26H3a .container {
    padding: 0 16px;
  }
}
.cid-uqxAw26H3a .content-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uqxAw26H3a .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-uqxAw26H3a .item {
  margin-bottom: 32px;
}
.cid-uqxAw26H3a .item .item-wrapper .card-box .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uqxAw26H3a .item .item-wrapper .card-box .title-wrapper .title-wrap {
    margin-bottom: 16px;
  }
}
.cid-uqxAw26H3a .item .item-wrapper .card-box .title-wrapper .title-wrap .mbr-iconfont {
  font-size: 36px;
  color: #f4f4f4;
  margin-right: 12px;
}
.cid-uqxAw26H3a .item .item-wrapper .card-box .title-wrapper .title-wrap .card-title {
  margin-bottom: 0;
}
.cid-uqxAw26H3a .item .item-wrapper .card-box .text-wrap .card-text {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
.cid-uqxAw26H3a .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqxAw26H3a .card-title {
  color: #f4f4f4;
}
.cid-uqxAw26H3a .card-text {
  color: #c1c1c1;
}
.cid-uqxAw2WrE0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uqxAw2WrE0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxAw2WrE0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxAw2WrE0 .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-uqxAw2WrE0 .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uqxAw2WrE0 .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uqxAw2WrE0 .item-img {
    width: 100%;
  }
}
.cid-uqxAw2WrE0 .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uqxAw2WrE0 .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqxAw2WrE0 .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uqxAw2WrE0 .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uqxAw2WrE0 .card-title {
  color: #131313;
}
.cid-uqxAw2WrE0 .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-uqxAw2WrE0 .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 30px;
}
.cid-uqxAw2WrE0 .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 12px;
}
.cid-uqxAw2WrE0 .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-uqxAw2WrE0 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 25px;
  color: #fc7942;
  transform: rotate(-45deg);
}
.cid-uqxAw2WrE0 .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-uqxAw2WrE0 .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 1500px) {
  .cid-uqxAw2WrE0 .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uqxAw3OcmB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a09099;
}
.cid-uqxAw3OcmB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxAw3OcmB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxAw3OcmB .row {
  justify-content: flex-start;
}
.cid-uqxAw3OcmB .mbr-section-title {
  color: #000000;
}
.cid-uqxAw3OcmB .mbr-text {
  margin-top: 36px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-uqxAw3OcmB .mbr-text {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .cid-uqxAw3OcmB .mbr-text {
    margin-top: 20px;
  }
}
.cid-uqxAw3OcmB .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-uqxAw3OcmB .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-uqxAw3OcmB .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-uqxAw3OcmB .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-uqxAw3OcmB .mbr-text,
.cid-uqxAw3OcmB .mbr-section-btn {
  color: #000000;
}
.cid-uqxOBXITAl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uqxOBXITAl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxOBXITAl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxOBXITAl .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uqxOBXITAl .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uqxOBXITAl .container {
    padding: 0 16px;
  }
}
.cid-uqxOBXITAl .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uqxOBXITAl .row {
    margin: 0 10px;
  }
}
.cid-uqxOBXITAl .row .item {
  padding: 0;
}
.cid-uqxOBXITAl .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uqxOBXITAl .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uqxOBXITAl .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uqxOBXITAl .panel-group {
  border: 1px solid #000000;
  border-radius: 20px;
  overflow: hidden;
}
.cid-uqxOBXITAl .panel-group .card {
  border-top: 1px solid #4a5357;
  border-radius: 0 !important;
}
.cid-uqxOBXITAl .panel-group .card:first-child {
  border-top: none;
}
.cid-uqxOBXITAl .panel-group .card:last-child {
  border-bottom: none;
}
.cid-uqxOBXITAl .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-uqxOBXITAl .panel-group .card .card-header .panel-title {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uqxOBXITAl .panel-group .card .card-header .panel-title {
    padding: 20px 10px;
  }
}
.cid-uqxOBXITAl .panel-group .card .card-header .panel-title:not(.collapsed) {
  background-color: #f9a600;
}
.cid-uqxOBXITAl .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
  color: #f9a600;
  background-color: #192227;
}
.cid-uqxOBXITAl .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #192227;
}
.cid-uqxOBXITAl .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uqxOBXITAl .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 30px;
  color: #192227;
  background-color: #f9a600;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uqxOBXITAl .panel-group .card .panel-collapse .panel-body {
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-uqxOBXITAl .panel-group .card .panel-collapse .panel-body {
    padding: 20px 10px;
  }
}
.cid-uqxOBXITAl .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uqxOBXITAl .image-wrapper {
  height: 100%;
}
.cid-uqxOBXITAl .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqxOBXITAl .image-wrapper img {
    height: 350px;
  }
}
.cid-uqxOBXITAl .mbr-section-title {
  color: #000000;
}
.cid-uqxOBXITAl .panel-title-edit {
  color: #000000;
}
.cid-uqxOBXITAl .panel-text {
  color: #000000;
}
.cid-uqxAw4hodZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uqxAw4hodZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxAw4hodZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxAw4hodZ .mbr-section-head {
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-uqxAw4hodZ .mbr-section-head {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uqxAw4hodZ .mbr-section-head {
    margin-bottom: 45px;
  }
}
.cid-uqxAw4hodZ .google-map {
  height: 600px;
  position: relative;
}
.cid-uqxAw4hodZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uqxAw4hodZ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uqxAw4hodZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqxAw4hodZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqxAw5Ay80 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #15171a;
}
.cid-uqxAw5Ay80 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqxAw5Ay80 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqxAw5Ay80 .content-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uqxAw5Ay80 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uqxAw5Ay80 .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uqxAw5Ay80 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqxAw5Ay80 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uqxAw5Ay80 .social-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uqxAw5Ay80 .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uqxAw5Ay80 .social-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uqxAw5Ay80 .social-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uqxAw5Ay80 .social-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uqxAw5Ay80 .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uqxAw5Ay80 .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  color: #f96e47;
}
.cid-uqxAw5Ay80 .social-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: #a09099;
  font-size: 32px;
  border-radius: .5rem;
  transition: all 0.3s ease-in-out;
  margin: 0 8px 8px 0;
}
.cid-uqxAw5Ay80 .social-wrapper .social-wrap .soc-wrap .soc-item:nth-child(2n) a .mbr-iconfont {
  background-color: #a09099;
}
.cid-uqxAw5Ay80 .list-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uqxAw5Ay80 .list-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uqxAw5Ay80 .list-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uqxAw5Ay80 .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uqxAw5Ay80 .list-wrapper .list .item-wrap {
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uqxAw5Ay80 .list-wrapper .list .item-wrap {
    margin-bottom: 16px;
  }
}
.cid-uqxAw5Ay80 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uqxAw5Ay80 .list-wrapper .list .item-wrap:hover,
.cid-uqxAw5Ay80 .list-wrapper .list .item-wrap:focus {
  color: #f96e47;
}
.cid-uqxAw5Ay80 .border-wrap {
  height: 1px;
  background-color: #b9b9b9;
  margin: 78px 0 24px 0;
}
@media (max-width: 992px) {
  .cid-uqxAw5Ay80 .border-wrap {
    margin: 0 0 16px 0;
  }
}
.cid-uqxAw5Ay80 .mbr-copy {
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
.cid-uqxAw5Ay80 .mbr-section-title {
  color: #ffffff;
}
.cid-uqxAw5Ay80 .mbr-text {
  color: #ffffff;
}
.cid-uqxAw5Ay80 .mbr-desc {
  color: #16fab4;
}
.cid-uqxAw5Ay80 .list {
  color: #ffffff;
}
