body {
  font-family: Figtree;
}
.display-1 {
  font-family: 'Newsreader', serif;
  font-size: 6.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.225rem;
}
.display-2 {
  font-family: 'Newsreader', serif;
  font-size: 4.625rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.00625rem;
}
.display-4 {
  font-family: 'Figtree', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 0.975rem;
}
.display-5 {
  font-family: 'Newsreader', serif;
  font-size: 2.25rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.4625rem;
}
.display-7 {
  font-family: 'Figtree', sans-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: 5.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.55rem;
    font-size: calc( 2.0999999999999996rem + (6.5 - 2.0999999999999996) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.0999999999999996rem + (6.5 - 2.0999999999999996) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.7rem;
    font-size: calc( 1.7249999999999996rem + (4.625 - 1.7249999999999996) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7249999999999996rem + (4.625 - 1.7249999999999996) * ((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.8rem;
    font-size: calc( 1.3125rem + (2.25 - 1.3125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.3125rem + (2.25 - 1.3125) * ((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: #3450d6 !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: #3450d6 !important;
  border-color: #3450d6 !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: #1e3395 !important;
  border-color: #1e3395 !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: #3450d6;
}
.btn-primary-outline:before,
.btn-primary-outline:active:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: #3450d6;
  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: #3450d6;
  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 #3450d6;
  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: #3450d6 !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: #3450d6;
  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: #3450d6 !important;
  border-color: #3450d6 !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: #3450d6 !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: #1c2e88 !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: #3450d6;
}
.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: #3450d6;
  border-color: #3450d6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #3450d6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #dee2f8;
}
.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: 'Figtree', sans-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: #3450d6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Figtree', sans-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: #3450d6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #3450d6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #3450d6;
}
.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: #3450d6;
  border-bottom-color: #3450d6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #3450d6 !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='%233450d6' %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-tGEXSGjgDI .navbar-dropdown {
  background-color: #f1f2f4 !important;
  padding: 0;
}
.cid-tGEXSGjgDI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f1f2f4 !important;
  background: #f1f2f4;
}
.cid-tGEXSGjgDI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .menu_box .navbar.opened,
  .cid-tGEXSGjgDI .menu_box .navbar-collapse {
    background-color: #f1f2f4 !important;
    transition: all 0s ease 0s;
  }
}
.cid-tGEXSGjgDI .navbar-dropdown {
  position: relative !important;
}
.cid-tGEXSGjgDI .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tGEXSGjgDI .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tGEXSGjgDI .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tGEXSGjgDI .offcanvas {
    padding: 12rem 80px 0;
    width: 30%;
    background-color: #495dff;
  }
  .cid-tGEXSGjgDI .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tGEXSGjgDI .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tGEXSGjgDI .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tGEXSGjgDI .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tGEXSGjgDI .offcanvas-body .mbr-text,
  .cid-tGEXSGjgDI .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tGEXSGjgDI .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #495dff;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tGEXSGjgDI ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tGEXSGjgDI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tGEXSGjgDI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tGEXSGjgDI .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tGEXSGjgDI li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tGEXSGjgDI .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tGEXSGjgDI .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tGEXSGjgDI .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .nav-item {
    margin: 0 !important;
  }
}
.cid-tGEXSGjgDI .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tGEXSGjgDI .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tGEXSGjgDI .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tGEXSGjgDI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tGEXSGjgDI .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tGEXSGjgDI .offcanvas_box {
    display: none;
  }
}
.cid-tGEXSGjgDI .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tGEXSGjgDI .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tGEXSGjgDI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tGEXSGjgDI .container {
  display: flex;
  margin: auto;
}
.cid-tGEXSGjgDI .iconfont-wrapper {
  color: #495dff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tGEXSGjgDI .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tGEXSGjgDI .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tGEXSGjgDI .navbar-caption {
  color: #495DFF;
}
.cid-tGEXSGjgDI .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tGEXSGjgDI .navbar-nav {
    margin: 0;
  }
}
.cid-tGEXSGjgDI .dropdown-menu,
.cid-tGEXSGjgDI .navbar.opened {
  background-color: false !important;
}
.cid-tGEXSGjgDI .nav-item:focus,
.cid-tGEXSGjgDI .nav-link:focus {
  outline: none;
}
.cid-tGEXSGjgDI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGEXSGjgDI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGEXSGjgDI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGEXSGjgDI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGEXSGjgDI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGEXSGjgDI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGEXSGjgDI .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tGEXSGjgDI .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tGEXSGjgDI .navbar.opened {
  transition: all 0.3s;
}
.cid-tGEXSGjgDI .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tGEXSGjgDI .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-tGEXSGjgDI .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tGEXSGjgDI .navbar.collapsed {
  justify-content: center;
}
.cid-tGEXSGjgDI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGEXSGjgDI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGEXSGjgDI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGEXSGjgDI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGEXSGjgDI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGEXSGjgDI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tGEXSGjgDI .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tGEXSGjgDI .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tGEXSGjgDI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGEXSGjgDI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGEXSGjgDI .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tGEXSGjgDI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGEXSGjgDI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tGEXSGjgDI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGEXSGjgDI .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tGEXSGjgDI .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tGEXSGjgDI .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tGEXSGjgDI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGEXSGjgDI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGEXSGjgDI .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tGEXSGjgDI .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGEXSGjgDI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGEXSGjgDI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGEXSGjgDI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGEXSGjgDI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 300;
}
.cid-tGEXSGjgDI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGEXSGjgDI .dropdown-item.active,
.cid-tGEXSGjgDI .dropdown-item:active {
  background-color: transparent;
}
.cid-tGEXSGjgDI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGEXSGjgDI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGEXSGjgDI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGEXSGjgDI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGEXSGjgDI ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tGEXSGjgDI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGEXSGjgDI button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f1f2f4;
  background: #f1f2f4;
}
.cid-tGEXSGjgDI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #495dff;
}
.cid-tGEXSGjgDI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGEXSGjgDI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGEXSGjgDI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGEXSGjgDI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGEXSGjgDI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGEXSGjgDI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGEXSGjgDI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGEXSGjgDI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGEXSGjgDI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tGEXSGjgDI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGEXSGjgDI .navbar {
    height: 70px;
  }
  .cid-tGEXSGjgDI .navbar.opened {
    height: auto;
  }
  .cid-tGEXSGjgDI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGEXSGjgDI .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tGEXSGjgDI .container-fluid {
    padding-left: 22px;
    padding-right: 22px;
  }
}
.cid-tGEXSGjgDI .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tGEXSGjgDI .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-tGEXSGjgDI .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-tGEXSGjgDI .navbar-caption:hover {
  color: #3450d6;
}
@media (min-width: 992px) {
  .cid-tGEXSGjgDI .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tGEXSGjgDI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tGEXSGjgDI .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tGEXSGjgDI .text_widget {
  color: #ffffff;
}
.cid-tGEXSGjgDI .mbr-section-subtitle,
.cid-tGEXSGjgDI .text_widget,
.cid-tGEXSGjgDI .mbr-section-btn {
  text-align: center;
}
.cid-tGEXSGjgDI a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tfw5Ko6eOP {
  display: flex;
  background-image: url("../../../assets/images/mbr-1920x1279.jpg");
  align-items: center;
}
.cid-tfw5Ko6eOP .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 768px) {
  .cid-tfw5Ko6eOP .row {
    justify-content: flex-start;
  }
  .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;
  }
}
@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: #000000;
}
.cid-tfw6B4ePpf {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f8f6f2;
}
.cid-tfw6B4ePpf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfw6B4ePpf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfw6B4ePpf .tabl-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.cid-tfw6B4ePpf .item-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 0;
}
.cid-tfw6B4ePpf .frame-item {
  width: 40px;
  height: 1px;
  margin-right: 20px;
  background-color: #45494e;
}
.cid-tfw6B4ePpf .card-text {
  color: #45494e;
  flex-grow: 1;
  text-align: left;
}
.cid-tfwfZRaZeG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tfwfZRaZeG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfwfZRaZeG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfwfZRaZeG .card-wrapper {
  width: 100%;
}
.cid-tfwfZRaZeG .card-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-tfwfZRaZeG .image-wrapper {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .cid-tfwfZRaZeG .image-wrapper {
    margin-top: 24px;
  }
}
.cid-tfwfZRaZeG .image-wrapper img {
  max-width: 80px;
}
.cid-tfwfZRaZeG .card-title {
  color: #694f5f;
  margin-bottom: 0;
}
.cid-tfwfZRaZeG .card-text {
  color: #45494E;
  margin-bottom: 0;
  margin-top: 24px;
}
.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: #694f5f;
}
.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-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: #694f5f;
}
.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: #c1b7bd;
  border-left: 1px solid #000000;
}
.cid-tfwd0Y8TeR .mbr-text {
  color: #45494E;
}
.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-tGEPamVVDx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGEPamVVDx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGEPamVVDx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGEPamVVDx .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tGEPamVVDx .container-fluid {
    padding: 0 12px;
  }
}
.cid-tGEPamVVDx .container-fluid .row {
  padding: 0;
}
.cid-tGEPamVVDx .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tGEPamVVDx .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tGEPamVVDx .card {
    padding: 48px 20px;
  }
}
.cid-tGEPamVVDx .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tGEPamVVDx .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tGEPamVVDx .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tGEPamVVDx .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tGEPamVVDx .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tfwdhVAiBK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tfwdhVAiBK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfwdhVAiBK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfwdhVAiBK .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tfwdhVAiBK .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .cid-tfwdhVAiBK .col-img {
    order: 2;
  }
}
.cid-tfwdhVAiBK .card-box {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tfwdhVAiBK .card-box {
    max-width: 645px;
    margin: 0 auto 0 0;
    padding-bottom: 74px;
  }
}
@media (max-width: 575px) {
  .cid-tfwdhVAiBK .card-box {
    padding-bottom: 68px;
  }
}
@media (max-width: 991px) {
  .cid-tfwdhVAiBK .col-tex {
    order: 1;
  }
}
.cid-tfwdhVAiBK .card-title {
  color: #694f5f;
}
.cid-tfwdhVAiBK .mbr-text {
  color: #45494E;
  margin-top: 36px;
}
.cid-tfwdhVAiBK .mbr-section-btn {
  margin-top: 60px;
}
.cid-tfwdhVAiBK .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tGEy0I7R5u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f8f6f2;
}
.cid-tGEy0I7R5u .card-box {
  max-width: 505px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tGEy0I7R5u .card-box {
    max-width: 100%;
    margin-bottom: 70px;
  }
}
.cid-tGEy0I7R5u .card-title {
  color: #45494E;
}
.cid-tGEy0I7R5u .mbr-text {
  color: #45494E;
  margin-top: 32px;
}
@media (max-width: 991px) {
  .cid-tGEy0I7R5u .mbr-text {
    margin-top: 24px;
  }
}
.cid-tGEy0I7R5u .mbr-section-btn {
  margin-top: 30px;
}
.cid-tGEy0I7R5u .map-wrap {
  position: relative;
  padding-bottom: 110%;
  width: 100%;
}
.cid-tGEy0I7R5u .map-position-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-tGEy0I7R5u .google-map {
  height: 100%;
  width: 100%;
  position: relative;
}
.cid-tGEy0I7R5u .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tGEy0I7R5u .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-tGEy0I7R5u .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tGEy0I7R5u .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tfwg1OK31G {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tfwg1OK31G .mbr-fallback-image.disabled {
  display: none;
}
.cid-tfwg1OK31G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfwg1OK31G .content-container {
  display: flex;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
@media (max-width: 575px) {
  .cid-tfwg1OK31G .content-container {
    flex-direction: column;
  }
}
.cid-tfwg1OK31G .icons-menu {
  display: flex;
}
.cid-tfwg1OK31G .mbr-section-title {
  color: #45494E;
  margin-right: 20px;
}
@media (max-width: 575px) {
  .cid-tfwg1OK31G .mbr-section-title {
    text-align: center !important;
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px !important;
  }
}
.cid-tfwg1OK31G .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 10px;
  min-width: 40px;
  aspect-ratio: 1;
  border: 1px solid #45494e;
  transition: .3s all;
}
.cid-tfwg1OK31G .iconfont-wrapper:not(:first-child) {
  margin-left: 10px;
}
.cid-tfwg1OK31G .iconfont-wrapper .mbr-iconfont {
  font-size: 20px;
  color: #45494e;
  transition: .3s all;
}
.cid-tfwg1OK31G .iconfont-wrapper:hover {
  background-color: #45494e;
}
.cid-tfwg1OK31G .iconfont-wrapper:hover .mbr-iconfont {
  font-size: 20px;
  color: #FFFFFF;
}
.cid-tfw5MOYr7T {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #45494e;
  overflow: hidden;
}
.cid-tfw5MOYr7T .mbr-text {
  color: #FFFFFF;
}
.cid-tGEAwzNrjy {
  display: flex;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
  align-items: center;
}
.cid-tGEAwzNrjy .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 768px) {
  .cid-tGEAwzNrjy .row {
    justify-content: flex-start;
  }
  .cid-tGEAwzNrjy .content-wrap {
    width: 96%;
  }
}
@media (max-width: 991px) {
  .cid-tGEAwzNrjy .content-wrap {
    width: 100%;
  }
}
.cid-tGEAwzNrjy .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-tGEAwzNrjy .mbr-section-title {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tGEAwzNrjy .mbr-text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tGEAwzNrjy .mbr-section-btn {
    text-align: center;
  }
}
.cid-tGEAwzNrjy .mbr-section-title,
.cid-tGEAwzNrjy .mbr-section-btn {
  color: #000000;
}
.cid-tGEAwBghlU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f8f6f2;
}
.cid-tGEAwBghlU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGEAwBghlU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGEAwBghlU .tabl-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.cid-tGEAwBghlU .item-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 0;
}
.cid-tGEAwBghlU .frame-item {
  width: 40px;
  height: 1px;
  margin-right: 20px;
  background-color: #45494e;
}
.cid-tGEAwBghlU .card-text {
  color: #45494e;
  flex-grow: 1;
  text-align: left;
}
.cid-tGEAwCxkCY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tGEAwCxkCY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGEAwCxkCY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGEAwCxkCY .card-wrapper {
  width: 100%;
}
.cid-tGEAwCxkCY .card-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-tGEAwCxkCY .image-wrapper {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .cid-tGEAwCxkCY .image-wrapper {
    margin-top: 24px;
  }
}
.cid-tGEAwCxkCY .image-wrapper img {
  max-width: 80px;
}
.cid-tGEAwCxkCY .card-title {
  color: #694f5f;
  margin-bottom: 0;
}
.cid-tGEAwCxkCY .card-text {
  color: #45494E;
  margin-bottom: 0;
  margin-top: 24px;
}
.cid-tGEE4vXGzN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f8f6f2;
}
.cid-tGEE4vXGzN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGEE4vXGzN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGEE4vXGzN .container {
  max-width: 100%;
  width: 100%;
}
.cid-tGEE4vXGzN .row {
  justify-content: center;
}
.cid-tGEE4vXGzN .img-container {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-tGEE4vXGzN .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tGEE4vXGzN .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tGEAwEx5MO {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tGEAwEx5MO .row {
  justify-content: flex-start;
}
.cid-tGEAwEx5MO .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 1199px) {
  .cid-tGEAwEx5MO .mbr-section-head {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-tGEAwEx5MO .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-tGEAwEx5MO .mbr-section-title {
  color: #694f5f;
}
.cid-tGEAwEx5MO .mbr-section-subtitle {
  margin-top: 24px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-tGEAwEx5MO .mbr-section-subtitle {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tGEAwEx5MO .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-tGEAwEx5MO .card-container {
  width: 100%;
  padding: 7.5% 10%;
  background-color: #c1b7bd;
  border-left: 1px solid #000000;
}
.cid-tGEAwEx5MO .mbr-text {
  color: #45494E;
}
.cid-tGEAwEx5MO .card-text-wrap {
  margin-top: 32px;
}
@media (max-width: 991px) {
  .cid-tGEAwEx5MO .card-text-wrap {
    margin-top: 28px;
  }
}
@media (max-width: 767px) {
  .cid-tGEAwEx5MO .card-text-wrap {
    margin-top: 22px;
  }
}
.cid-tGEAwEx5MO .name-text {
  color: #45494E;
}
.cid-tGEAwEx5MO .date-text {
  color: #5c6064;
}
.cid-tGEPG7vXEs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGEPG7vXEs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGEPG7vXEs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGEPG7vXEs .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tGEPG7vXEs .container-fluid {
    padding: 0 12px;
  }
}
.cid-tGEPG7vXEs .container-fluid .row {
  padding: 0;
}
.cid-tGEPG7vXEs .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tGEPG7vXEs .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tGEPG7vXEs .card {
    padding: 48px 20px;
  }
}
.cid-tGEPG7vXEs .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tGEPG7vXEs .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tGEPG7vXEs .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tGEPG7vXEs .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tGEPG7vXEs .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tGEDR45kWy {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-tGEDR45kWy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGEDR45kWy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGEDR45kWy .row {
  justify-content: flex-start;
}
.cid-tGEDR45kWy .mbr-section-title {
  color: #44af69;
  margin-bottom: 0;
}
.cid-tGEDR45kWy .mbr-text {
  color: #000000;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-tGEAwGyMCS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f8f6f2;
}
.cid-tGEAwGyMCS .card-box {
  max-width: 505px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tGEAwGyMCS .card-box {
    max-width: 100%;
    margin-bottom: 70px;
  }
}
.cid-tGEAwGyMCS .card-title {
  color: #45494E;
}
.cid-tGEAwGyMCS .mbr-text {
  color: #45494E;
  margin-top: 32px;
}
@media (max-width: 991px) {
  .cid-tGEAwGyMCS .mbr-text {
    margin-top: 24px;
  }
}
.cid-tGEAwGyMCS .mbr-section-btn {
  margin-top: 30px;
}
.cid-tGEAwGyMCS .map-wrap {
  position: relative;
  padding-bottom: 110%;
  width: 100%;
}
.cid-tGEAwGyMCS .map-position-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-tGEAwGyMCS .google-map {
  height: 100%;
  width: 100%;
  position: relative;
}
.cid-tGEAwGyMCS .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tGEAwGyMCS .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-tGEAwGyMCS .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tGEAwGyMCS .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tGEAwHTcn7 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tGEAwHTcn7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGEAwHTcn7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGEAwHTcn7 .content-container {
  display: flex;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
@media (max-width: 575px) {
  .cid-tGEAwHTcn7 .content-container {
    flex-direction: column;
  }
}
.cid-tGEAwHTcn7 .icons-menu {
  display: flex;
}
.cid-tGEAwHTcn7 .mbr-section-title {
  color: #45494E;
  margin-right: 20px;
}
@media (max-width: 575px) {
  .cid-tGEAwHTcn7 .mbr-section-title {
    text-align: center !important;
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px !important;
  }
}
.cid-tGEAwHTcn7 .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 10px;
  min-width: 40px;
  aspect-ratio: 1;
  border: 1px solid #45494e;
  transition: .3s all;
}
.cid-tGEAwHTcn7 .iconfont-wrapper:not(:first-child) {
  margin-left: 10px;
}
.cid-tGEAwHTcn7 .iconfont-wrapper .mbr-iconfont {
  font-size: 20px;
  color: #45494e;
  transition: .3s all;
}
.cid-tGEAwHTcn7 .iconfont-wrapper:hover {
  background-color: #45494e;
}
.cid-tGEAwHTcn7 .iconfont-wrapper:hover .mbr-iconfont {
  font-size: 20px;
  color: #FFFFFF;
}
.cid-tGEAwJqVmG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #45494e;
  overflow: hidden;
}
.cid-tGEAwJqVmG .mbr-text {
  color: #FFFFFF;
}
.cid-tGEXSGjgDI .navbar-dropdown {
  background-color: #f1f2f4 !important;
  padding: 0;
}
.cid-tGEXSGjgDI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f1f2f4 !important;
  background: #f1f2f4;
}
.cid-tGEXSGjgDI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .menu_box .navbar.opened,
  .cid-tGEXSGjgDI .menu_box .navbar-collapse {
    background-color: #f1f2f4 !important;
    transition: all 0s ease 0s;
  }
}
.cid-tGEXSGjgDI .navbar-dropdown {
  position: relative !important;
}
.cid-tGEXSGjgDI .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tGEXSGjgDI .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tGEXSGjgDI .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tGEXSGjgDI .offcanvas {
    padding: 12rem 80px 0;
    width: 30%;
    background-color: #495dff;
  }
  .cid-tGEXSGjgDI .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tGEXSGjgDI .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tGEXSGjgDI .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tGEXSGjgDI .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tGEXSGjgDI .offcanvas-body .mbr-text,
  .cid-tGEXSGjgDI .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tGEXSGjgDI .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #495dff;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tGEXSGjgDI ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tGEXSGjgDI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tGEXSGjgDI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tGEXSGjgDI .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tGEXSGjgDI li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tGEXSGjgDI .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tGEXSGjgDI .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tGEXSGjgDI .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .nav-item {
    margin: 0 !important;
  }
}
.cid-tGEXSGjgDI .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tGEXSGjgDI .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tGEXSGjgDI .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tGEXSGjgDI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tGEXSGjgDI .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tGEXSGjgDI .offcanvas_box {
    display: none;
  }
}
.cid-tGEXSGjgDI .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tGEXSGjgDI .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tGEXSGjgDI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tGEXSGjgDI .container {
  display: flex;
  margin: auto;
}
.cid-tGEXSGjgDI .iconfont-wrapper {
  color: #495dff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tGEXSGjgDI .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tGEXSGjgDI .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tGEXSGjgDI .navbar-caption {
  color: #495DFF;
}
.cid-tGEXSGjgDI .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tGEXSGjgDI .navbar-nav {
    margin: 0;
  }
}
.cid-tGEXSGjgDI .dropdown-menu,
.cid-tGEXSGjgDI .navbar.opened {
  background-color: false !important;
}
.cid-tGEXSGjgDI .nav-item:focus,
.cid-tGEXSGjgDI .nav-link:focus {
  outline: none;
}
.cid-tGEXSGjgDI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGEXSGjgDI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGEXSGjgDI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGEXSGjgDI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGEXSGjgDI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGEXSGjgDI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGEXSGjgDI .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tGEXSGjgDI .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tGEXSGjgDI .navbar.opened {
  transition: all 0.3s;
}
.cid-tGEXSGjgDI .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tGEXSGjgDI .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-tGEXSGjgDI .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tGEXSGjgDI .navbar.collapsed {
  justify-content: center;
}
.cid-tGEXSGjgDI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGEXSGjgDI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGEXSGjgDI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGEXSGjgDI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGEXSGjgDI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGEXSGjgDI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tGEXSGjgDI .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tGEXSGjgDI .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tGEXSGjgDI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGEXSGjgDI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGEXSGjgDI .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tGEXSGjgDI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGEXSGjgDI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tGEXSGjgDI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGEXSGjgDI .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tGEXSGjgDI .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tGEXSGjgDI .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tGEXSGjgDI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGEXSGjgDI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGEXSGjgDI .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tGEXSGjgDI .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGEXSGjgDI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGEXSGjgDI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGEXSGjgDI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGEXSGjgDI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 300;
}
.cid-tGEXSGjgDI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGEXSGjgDI .dropdown-item.active,
.cid-tGEXSGjgDI .dropdown-item:active {
  background-color: transparent;
}
.cid-tGEXSGjgDI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGEXSGjgDI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGEXSGjgDI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGEXSGjgDI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGEXSGjgDI ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tGEXSGjgDI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGEXSGjgDI button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f1f2f4;
  background: #f1f2f4;
}
.cid-tGEXSGjgDI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #495dff;
}
.cid-tGEXSGjgDI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGEXSGjgDI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGEXSGjgDI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGEXSGjgDI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGEXSGjgDI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGEXSGjgDI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGEXSGjgDI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGEXSGjgDI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGEXSGjgDI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tGEXSGjgDI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGEXSGjgDI .navbar {
    height: 70px;
  }
  .cid-tGEXSGjgDI .navbar.opened {
    height: auto;
  }
  .cid-tGEXSGjgDI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGEXSGjgDI .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tGEXSGjgDI .container-fluid {
    padding-left: 22px;
    padding-right: 22px;
  }
}
.cid-tGEXSGjgDI .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tGEXSGjgDI .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-tGEXSGjgDI .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-tGEXSGjgDI .navbar-caption:hover {
  color: #3450d6;
}
@media (min-width: 992px) {
  .cid-tGEXSGjgDI .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tGEXSGjgDI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tGEXSGjgDI .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tGEXSGjgDI .text_widget {
  color: #ffffff;
}
.cid-tGEXSGjgDI .mbr-section-subtitle,
.cid-tGEXSGjgDI .text_widget,
.cid-tGEXSGjgDI .mbr-section-btn {
  text-align: center;
}
.cid-tGEXSGjgDI a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tGEE6nxGFu {
  display: flex;
  background-image: url("../../../assets/images/mbr-1920x1282.jpg");
  align-items: center;
}
.cid-tGEE6nxGFu .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 768px) {
  .cid-tGEE6nxGFu .row {
    justify-content: flex-start;
  }
  .cid-tGEE6nxGFu .content-wrap {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tGEE6nxGFu .content-wrap {
    width: 100%;
  }
}
.cid-tGEE6nxGFu .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-tGEE6nxGFu .mbr-section-title {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tGEE6nxGFu .mbr-text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tGEE6nxGFu .mbr-section-btn {
    text-align: center;
  }
}
.cid-tGEE6nxGFu .mbr-section-title,
.cid-tGEE6nxGFu .mbr-section-btn {
  color: #000000;
}
.cid-tGEE6oQlcO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f8f6f2;
}
.cid-tGEE6oQlcO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGEE6oQlcO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGEE6oQlcO .tabl-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.cid-tGEE6oQlcO .item-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 0;
}
.cid-tGEE6oQlcO .frame-item {
  width: 40px;
  height: 1px;
  margin-right: 20px;
  background-color: #45494e;
}
.cid-tGEE6oQlcO .card-text {
  color: #45494e;
  flex-grow: 1;
  text-align: left;
}
.cid-tGEE6pYNgb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tGEE6pYNgb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGEE6pYNgb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGEE6pYNgb .card-wrapper {
  width: 100%;
}
.cid-tGEE6pYNgb .card-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-tGEE6pYNgb .image-wrapper {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .cid-tGEE6pYNgb .image-wrapper {
    margin-top: 24px;
  }
}
.cid-tGEE6pYNgb .image-wrapper img {
  max-width: 80px;
}
.cid-tGEE6pYNgb .card-title {
  color: #694f5f;
  margin-bottom: 0;
}
.cid-tGEE6pYNgb .card-text {
  color: #45494E;
  margin-bottom: 0;
  margin-top: 24px;
}
.cid-tGEE6qRO7a {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f8f6f2;
}
.cid-tGEE6qRO7a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGEE6qRO7a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGEE6qRO7a .container {
  max-width: 100%;
  width: 100%;
}
.cid-tGEE6qRO7a .row {
  justify-content: center;
}
.cid-tGEE6qRO7a .img-container {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-tGEE6qRO7a .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tGEE6qRO7a .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tGEE6rzNEj {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tGEE6rzNEj .row {
  justify-content: flex-start;
}
.cid-tGEE6rzNEj .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 1199px) {
  .cid-tGEE6rzNEj .mbr-section-head {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-tGEE6rzNEj .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-tGEE6rzNEj .mbr-section-title {
  color: #694f5f;
}
.cid-tGEE6rzNEj .mbr-section-subtitle {
  margin-top: 24px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-tGEE6rzNEj .mbr-section-subtitle {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tGEE6rzNEj .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-tGEE6rzNEj .card-container {
  width: 100%;
  padding: 7.5% 10%;
  background-color: #c1b7bd;
  border-left: 1px solid #000000;
}
.cid-tGEE6rzNEj .mbr-text {
  color: #45494E;
}
.cid-tGEE6rzNEj .card-text-wrap {
  margin-top: 32px;
}
@media (max-width: 991px) {
  .cid-tGEE6rzNEj .card-text-wrap {
    margin-top: 28px;
  }
}
@media (max-width: 767px) {
  .cid-tGEE6rzNEj .card-text-wrap {
    margin-top: 22px;
  }
}
.cid-tGEE6rzNEj .name-text {
  color: #45494E;
}
.cid-tGEE6rzNEj .date-text {
  color: #5c6064;
}
.cid-tGEE6sumGj {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-tGEE6sumGj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGEE6sumGj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGEE6sumGj .row {
  justify-content: flex-start;
}
.cid-tGEE6sumGj .mbr-section-title {
  color: #44af69;
  margin-bottom: 0;
}
.cid-tGEE6sumGj .mbr-text {
  color: #000000;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-tGEE6tpheO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f8f6f2;
}
.cid-tGEE6tpheO .card-box {
  max-width: 505px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tGEE6tpheO .card-box {
    max-width: 100%;
    margin-bottom: 70px;
  }
}
.cid-tGEE6tpheO .card-title {
  color: #45494E;
}
.cid-tGEE6tpheO .mbr-text {
  color: #45494E;
  margin-top: 32px;
}
@media (max-width: 991px) {
  .cid-tGEE6tpheO .mbr-text {
    margin-top: 24px;
  }
}
.cid-tGEE6tpheO .mbr-section-btn {
  margin-top: 30px;
}
.cid-tGEE6tpheO .map-wrap {
  position: relative;
  padding-bottom: 110%;
  width: 100%;
}
.cid-tGEE6tpheO .map-position-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-tGEE6tpheO .google-map {
  height: 100%;
  width: 100%;
  position: relative;
}
.cid-tGEE6tpheO .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tGEE6tpheO .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-tGEE6tpheO .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tGEE6tpheO .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tGEE6uF3mL {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tGEE6uF3mL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGEE6uF3mL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGEE6uF3mL .content-container {
  display: flex;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
@media (max-width: 575px) {
  .cid-tGEE6uF3mL .content-container {
    flex-direction: column;
  }
}
.cid-tGEE6uF3mL .icons-menu {
  display: flex;
}
.cid-tGEE6uF3mL .mbr-section-title {
  color: #45494E;
  margin-right: 20px;
}
@media (max-width: 575px) {
  .cid-tGEE6uF3mL .mbr-section-title {
    text-align: center !important;
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px !important;
  }
}
.cid-tGEE6uF3mL .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 10px;
  min-width: 40px;
  aspect-ratio: 1;
  border: 1px solid #45494e;
  transition: .3s all;
}
.cid-tGEE6uF3mL .iconfont-wrapper:not(:first-child) {
  margin-left: 10px;
}
.cid-tGEE6uF3mL .iconfont-wrapper .mbr-iconfont {
  font-size: 20px;
  color: #45494e;
  transition: .3s all;
}
.cid-tGEE6uF3mL .iconfont-wrapper:hover {
  background-color: #45494e;
}
.cid-tGEE6uF3mL .iconfont-wrapper:hover .mbr-iconfont {
  font-size: 20px;
  color: #FFFFFF;
}
.cid-tGEE6w9KJ3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #45494e;
  overflow: hidden;
}
.cid-tGEE6w9KJ3 .mbr-text {
  color: #FFFFFF;
}
.cid-tGEXSGjgDI .navbar-dropdown {
  background-color: #f1f2f4 !important;
  padding: 0;
}
.cid-tGEXSGjgDI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f1f2f4 !important;
  background: #f1f2f4;
}
.cid-tGEXSGjgDI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .menu_box .navbar.opened,
  .cid-tGEXSGjgDI .menu_box .navbar-collapse {
    background-color: #f1f2f4 !important;
    transition: all 0s ease 0s;
  }
}
.cid-tGEXSGjgDI .navbar-dropdown {
  position: relative !important;
}
.cid-tGEXSGjgDI .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tGEXSGjgDI .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tGEXSGjgDI .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tGEXSGjgDI .offcanvas {
    padding: 12rem 80px 0;
    width: 30%;
    background-color: #495dff;
  }
  .cid-tGEXSGjgDI .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tGEXSGjgDI .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tGEXSGjgDI .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tGEXSGjgDI .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tGEXSGjgDI .offcanvas-body .mbr-text,
  .cid-tGEXSGjgDI .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tGEXSGjgDI .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #495dff;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tGEXSGjgDI ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tGEXSGjgDI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tGEXSGjgDI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tGEXSGjgDI .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tGEXSGjgDI li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tGEXSGjgDI .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tGEXSGjgDI .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tGEXSGjgDI .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .nav-item {
    margin: 0 !important;
  }
}
.cid-tGEXSGjgDI .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tGEXSGjgDI .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tGEXSGjgDI .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tGEXSGjgDI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tGEXSGjgDI .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tGEXSGjgDI .offcanvas_box {
    display: none;
  }
}
.cid-tGEXSGjgDI .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tGEXSGjgDI .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tGEXSGjgDI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tGEXSGjgDI .container {
  display: flex;
  margin: auto;
}
.cid-tGEXSGjgDI .iconfont-wrapper {
  color: #495dff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tGEXSGjgDI .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tGEXSGjgDI .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tGEXSGjgDI .navbar-caption {
  color: #495DFF;
}
.cid-tGEXSGjgDI .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tGEXSGjgDI .navbar-nav {
    margin: 0;
  }
}
.cid-tGEXSGjgDI .dropdown-menu,
.cid-tGEXSGjgDI .navbar.opened {
  background-color: false !important;
}
.cid-tGEXSGjgDI .nav-item:focus,
.cid-tGEXSGjgDI .nav-link:focus {
  outline: none;
}
.cid-tGEXSGjgDI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGEXSGjgDI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGEXSGjgDI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGEXSGjgDI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGEXSGjgDI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGEXSGjgDI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGEXSGjgDI .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tGEXSGjgDI .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tGEXSGjgDI .navbar.opened {
  transition: all 0.3s;
}
.cid-tGEXSGjgDI .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tGEXSGjgDI .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-tGEXSGjgDI .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tGEXSGjgDI .navbar.collapsed {
  justify-content: center;
}
.cid-tGEXSGjgDI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGEXSGjgDI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGEXSGjgDI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGEXSGjgDI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGEXSGjgDI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGEXSGjgDI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tGEXSGjgDI .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tGEXSGjgDI .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tGEXSGjgDI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGEXSGjgDI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGEXSGjgDI .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tGEXSGjgDI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGEXSGjgDI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tGEXSGjgDI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGEXSGjgDI .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tGEXSGjgDI .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tGEXSGjgDI .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tGEXSGjgDI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGEXSGjgDI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGEXSGjgDI .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tGEXSGjgDI .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGEXSGjgDI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGEXSGjgDI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGEXSGjgDI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGEXSGjgDI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 300;
}
.cid-tGEXSGjgDI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGEXSGjgDI .dropdown-item.active,
.cid-tGEXSGjgDI .dropdown-item:active {
  background-color: transparent;
}
.cid-tGEXSGjgDI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGEXSGjgDI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGEXSGjgDI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGEXSGjgDI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGEXSGjgDI ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tGEXSGjgDI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGEXSGjgDI button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f1f2f4;
  background: #f1f2f4;
}
.cid-tGEXSGjgDI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #495dff;
}
.cid-tGEXSGjgDI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGEXSGjgDI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGEXSGjgDI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGEXSGjgDI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGEXSGjgDI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGEXSGjgDI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGEXSGjgDI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGEXSGjgDI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGEXSGjgDI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tGEXSGjgDI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGEXSGjgDI .navbar {
    height: 70px;
  }
  .cid-tGEXSGjgDI .navbar.opened {
    height: auto;
  }
  .cid-tGEXSGjgDI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGEXSGjgDI .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tGEXSGjgDI .container-fluid {
    padding-left: 22px;
    padding-right: 22px;
  }
}
.cid-tGEXSGjgDI .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tGEXSGjgDI .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-tGEXSGjgDI .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-tGEXSGjgDI .navbar-caption:hover {
  color: #3450d6;
}
@media (min-width: 992px) {
  .cid-tGEXSGjgDI .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tGEXSGjgDI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tGEXSGjgDI .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tGEXSGjgDI .text_widget {
  color: #ffffff;
}
.cid-tGEXSGjgDI .mbr-section-subtitle,
.cid-tGEXSGjgDI .text_widget,
.cid-tGEXSGjgDI .mbr-section-btn {
  text-align: center;
}
.cid-tGEXSGjgDI a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tGEF7xfSuQ {
  display: flex;
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
  align-items: center;
}
.cid-tGEF7xfSuQ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 768px) {
  .cid-tGEF7xfSuQ .row {
    justify-content: flex-start;
  }
  .cid-tGEF7xfSuQ .content-wrap {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tGEF7xfSuQ .content-wrap {
    width: 100%;
  }
}
.cid-tGEF7xfSuQ .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-tGEF7xfSuQ .mbr-section-title {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tGEF7xfSuQ .mbr-text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tGEF7xfSuQ .mbr-section-btn {
    text-align: center;
  }
}
.cid-tGEF7xfSuQ .mbr-section-title,
.cid-tGEF7xfSuQ .mbr-section-btn {
  color: #000000;
}
.cid-tGEF7y6OoO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f8f6f2;
}
.cid-tGEF7y6OoO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGEF7y6OoO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGEF7y6OoO .tabl-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.cid-tGEF7y6OoO .item-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 0;
}
.cid-tGEF7y6OoO .frame-item {
  width: 40px;
  height: 1px;
  margin-right: 20px;
  background-color: #45494e;
}
.cid-tGEF7y6OoO .card-text {
  color: #45494e;
  flex-grow: 1;
  text-align: left;
}
.cid-tGEF7zX69z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f8f6f2;
}
.cid-tGEF7zX69z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGEF7zX69z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGEF7zX69z .container {
  max-width: 100%;
  width: 100%;
}
.cid-tGEF7zX69z .row {
  justify-content: center;
}
.cid-tGEF7zX69z .img-container {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-tGEF7zX69z .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-tGEF7zX69z .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tGEF7z8pKE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tGEF7z8pKE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGEF7z8pKE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGEF7z8pKE .card-wrapper {
  width: 100%;
}
.cid-tGEF7z8pKE .card-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-tGEF7z8pKE .image-wrapper {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .cid-tGEF7z8pKE .image-wrapper {
    margin-top: 24px;
  }
}
.cid-tGEF7z8pKE .image-wrapper img {
  max-width: 80px;
}
.cid-tGEF7z8pKE .card-title {
  color: #694f5f;
  margin-bottom: 0;
}
.cid-tGEF7z8pKE .card-text {
  color: #45494E;
  margin-bottom: 0;
  margin-top: 24px;
}
.cid-tGEPJEr1eY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tGEPJEr1eY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGEPJEr1eY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGEPJEr1eY .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tGEPJEr1eY .container-fluid {
    padding: 0 12px;
  }
}
.cid-tGEPJEr1eY .container-fluid .row {
  padding: 0;
}
.cid-tGEPJEr1eY .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tGEPJEr1eY .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tGEPJEr1eY .card {
    padding: 48px 20px;
  }
}
.cid-tGEPJEr1eY .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tGEPJEr1eY .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tGEPJEr1eY .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tGEPJEr1eY .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tGEPJEr1eY .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tGEF7ABKsT {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tGEF7ABKsT .row {
  justify-content: flex-start;
}
.cid-tGEF7ABKsT .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 1199px) {
  .cid-tGEF7ABKsT .mbr-section-head {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-tGEF7ABKsT .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-tGEF7ABKsT .mbr-section-title {
  color: #694f5f;
}
.cid-tGEF7ABKsT .mbr-section-subtitle {
  margin-top: 24px;
  color: #45494E;
}
@media (max-width: 991px) {
  .cid-tGEF7ABKsT .mbr-section-subtitle {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tGEF7ABKsT .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-tGEF7ABKsT .card-container {
  width: 100%;
  padding: 7.5% 10%;
  background-color: #c1b7bd;
  border-left: 1px solid #000000;
}
.cid-tGEF7ABKsT .mbr-text {
  color: #45494E;
}
.cid-tGEF7ABKsT .card-text-wrap {
  margin-top: 32px;
}
@media (max-width: 991px) {
  .cid-tGEF7ABKsT .card-text-wrap {
    margin-top: 28px;
  }
}
@media (max-width: 767px) {
  .cid-tGEF7ABKsT .card-text-wrap {
    margin-top: 22px;
  }
}
.cid-tGEF7ABKsT .name-text {
  color: #45494E;
}
.cid-tGEF7ABKsT .date-text {
  color: #5c6064;
}
.cid-tGEF7Crq1l {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f8f6f2;
}
.cid-tGEF7Crq1l .card-box {
  max-width: 505px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tGEF7Crq1l .card-box {
    max-width: 100%;
    margin-bottom: 70px;
  }
}
.cid-tGEF7Crq1l .card-title {
  color: #45494E;
}
.cid-tGEF7Crq1l .mbr-text {
  color: #45494E;
  margin-top: 32px;
}
@media (max-width: 991px) {
  .cid-tGEF7Crq1l .mbr-text {
    margin-top: 24px;
  }
}
.cid-tGEF7Crq1l .mbr-section-btn {
  margin-top: 30px;
}
.cid-tGEF7Crq1l .map-wrap {
  position: relative;
  padding-bottom: 110%;
  width: 100%;
}
.cid-tGEF7Crq1l .map-position-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-tGEF7Crq1l .google-map {
  height: 100%;
  width: 100%;
  position: relative;
}
.cid-tGEF7Crq1l .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tGEF7Crq1l .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-tGEF7Crq1l .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tGEF7Crq1l .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tGEF7DXRTp {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tGEF7DXRTp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGEF7DXRTp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGEF7DXRTp .content-container {
  display: flex;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
@media (max-width: 575px) {
  .cid-tGEF7DXRTp .content-container {
    flex-direction: column;
  }
}
.cid-tGEF7DXRTp .icons-menu {
  display: flex;
}
.cid-tGEF7DXRTp .mbr-section-title {
  color: #45494E;
  margin-right: 20px;
}
@media (max-width: 575px) {
  .cid-tGEF7DXRTp .mbr-section-title {
    text-align: center !important;
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px !important;
  }
}
.cid-tGEF7DXRTp .iconfont-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 10px;
  min-width: 40px;
  aspect-ratio: 1;
  border: 1px solid #45494e;
  transition: .3s all;
}
.cid-tGEF7DXRTp .iconfont-wrapper:not(:first-child) {
  margin-left: 10px;
}
.cid-tGEF7DXRTp .iconfont-wrapper .mbr-iconfont {
  font-size: 20px;
  color: #45494e;
  transition: .3s all;
}
.cid-tGEF7DXRTp .iconfont-wrapper:hover {
  background-color: #45494e;
}
.cid-tGEF7DXRTp .iconfont-wrapper:hover .mbr-iconfont {
  font-size: 20px;
  color: #FFFFFF;
}
.cid-tGEF7FegC8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #45494e;
  overflow: hidden;
}
.cid-tGEF7FegC8 .mbr-text {
  color: #FFFFFF;
}
.cid-tGEXSGjgDI .navbar-dropdown {
  background-color: #f1f2f4 !important;
  padding: 0;
}
.cid-tGEXSGjgDI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f1f2f4 !important;
  background: #f1f2f4;
}
.cid-tGEXSGjgDI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .menu_box .navbar.opened,
  .cid-tGEXSGjgDI .menu_box .navbar-collapse {
    background-color: #f1f2f4 !important;
    transition: all 0s ease 0s;
  }
}
.cid-tGEXSGjgDI .navbar-dropdown {
  position: relative !important;
}
.cid-tGEXSGjgDI .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tGEXSGjgDI .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tGEXSGjgDI .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tGEXSGjgDI .offcanvas {
    padding: 12rem 80px 0;
    width: 30%;
    background-color: #495dff;
  }
  .cid-tGEXSGjgDI .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tGEXSGjgDI .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tGEXSGjgDI .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tGEXSGjgDI .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tGEXSGjgDI .offcanvas-body .mbr-text,
  .cid-tGEXSGjgDI .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tGEXSGjgDI .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #495dff;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tGEXSGjgDI .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tGEXSGjgDI ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tGEXSGjgDI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tGEXSGjgDI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tGEXSGjgDI .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tGEXSGjgDI li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tGEXSGjgDI .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tGEXSGjgDI .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tGEXSGjgDI .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .nav-item {
    margin: 0 !important;
  }
}
.cid-tGEXSGjgDI .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tGEXSGjgDI .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tGEXSGjgDI .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tGEXSGjgDI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tGEXSGjgDI .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tGEXSGjgDI .offcanvas_box {
    display: none;
  }
}
.cid-tGEXSGjgDI .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tGEXSGjgDI .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tGEXSGjgDI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tGEXSGjgDI .container {
  display: flex;
  margin: auto;
}
.cid-tGEXSGjgDI .iconfont-wrapper {
  color: #495dff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tGEXSGjgDI .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tGEXSGjgDI .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tGEXSGjgDI .navbar-caption {
  color: #495DFF;
}
.cid-tGEXSGjgDI .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tGEXSGjgDI .navbar-nav {
    margin: 0;
  }
}
.cid-tGEXSGjgDI .dropdown-menu,
.cid-tGEXSGjgDI .navbar.opened {
  background-color: false !important;
}
.cid-tGEXSGjgDI .nav-item:focus,
.cid-tGEXSGjgDI .nav-link:focus {
  outline: none;
}
.cid-tGEXSGjgDI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGEXSGjgDI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGEXSGjgDI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGEXSGjgDI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGEXSGjgDI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGEXSGjgDI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGEXSGjgDI .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tGEXSGjgDI .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tGEXSGjgDI .navbar.opened {
  transition: all 0.3s;
}
.cid-tGEXSGjgDI .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tGEXSGjgDI .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-tGEXSGjgDI .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tGEXSGjgDI .navbar.collapsed {
  justify-content: center;
}
.cid-tGEXSGjgDI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGEXSGjgDI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGEXSGjgDI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGEXSGjgDI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGEXSGjgDI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGEXSGjgDI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tGEXSGjgDI .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tGEXSGjgDI .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tGEXSGjgDI .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tGEXSGjgDI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGEXSGjgDI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGEXSGjgDI .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tGEXSGjgDI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGEXSGjgDI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tGEXSGjgDI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGEXSGjgDI .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tGEXSGjgDI .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tGEXSGjgDI .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tGEXSGjgDI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGEXSGjgDI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGEXSGjgDI .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tGEXSGjgDI .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGEXSGjgDI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGEXSGjgDI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGEXSGjgDI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGEXSGjgDI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 300;
}
.cid-tGEXSGjgDI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGEXSGjgDI .dropdown-item.active,
.cid-tGEXSGjgDI .dropdown-item:active {
  background-color: transparent;
}
.cid-tGEXSGjgDI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGEXSGjgDI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGEXSGjgDI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGEXSGjgDI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGEXSGjgDI ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tGEXSGjgDI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGEXSGjgDI button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f1f2f4;
  background: #f1f2f4;
}
.cid-tGEXSGjgDI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #495dff;
}
.cid-tGEXSGjgDI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGEXSGjgDI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGEXSGjgDI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGEXSGjgDI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGEXSGjgDI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGEXSGjgDI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGEXSGjgDI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGEXSGjgDI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGEXSGjgDI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tGEXSGjgDI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGEXSGjgDI .navbar {
    height: 70px;
  }
  .cid-tGEXSGjgDI .navbar.opened {
    height: auto;
  }
  .cid-tGEXSGjgDI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGEXSGjgDI .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tGEXSGjgDI .container-fluid {
    padding-left: 22px;
    padding-right: 22px;
  }
}
.cid-tGEXSGjgDI .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tGEXSGjgDI .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-tGEXSGjgDI .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-tGEXSGjgDI .navbar-caption:hover {
  color: #3450d6;
}
@media (min-width: 992px) {
  .cid-tGEXSGjgDI .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tGEXSGjgDI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tGEXSGjgDI .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tGEXSGjgDI .text_widget {
  color: #ffffff;
}
.cid-tGEXSGjgDI .mbr-section-subtitle,
.cid-tGEXSGjgDI .text_widget,
.cid-tGEXSGjgDI .mbr-section-btn {
  text-align: center;
}
.cid-tGEXSGjgDI a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
