.btn {
  border-width: 2px;
}
body {
  font-family: Anybody;
}
.display-1 {
  font-family: 'Anybody', display;
  font-size: 7.6rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 9.5rem;
}
.display-2 {
  font-family: 'Anybody', display;
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Anybody', display;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-5 {
  font-family: 'Anybody', display;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Anybody', display;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 6.08rem;
    font-size: calc( 3.3099999999999996rem + (7.6 - 3.3099999999999996) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.3099999999999996rem + (7.6 - 3.3099999999999996) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
@media (max-width: 1400px) {
  .display-1 {
    font-size: 6.08rem;
  }
}
@media (max-width: 992px) {
  .display-1 {
    font-size: 4.56rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.66rem;
    line-height: 1.1;
  }
}
/* Buttons */
@keyframes btn {
  0% {
    transform: rotate3d(0, 0, 0, 90deg);
    transform-origin: top;
  }
  50% {
    transform: rotate3d(1, 0, 0, 90deg);
    transform-origin: top;
  }
  51% {
    transform: rotate3d(1, 0, 0, 90deg);
    transform-origin: bottom;
  }
  100% {
    transform: rotate3d(0, 0, 0, 90deg);
    transform-origin: bottom;
  }
}
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
}
.btn-lg {
  padding: 1.5rem 2.6rem;
  border-radius: 12px;
}
.bg-primary {
  background-color: #e43f3f !important;
}
.bg-success {
  background-color: #2a3ffe !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-primary,
.btn-primary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-primary:hover {
  background: linear-gradient(0deg, #e43f3f 0%, transparent 100%) !important;
  color: black !important;
}
.btn-primary:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-secondary {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #feff70 !important;
  border-color: #feff70 !important;
  color: #6f7000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #191900 !important;
  background-color: #fdff19 !important;
  border-color: #fdff19 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #6f7000 !important;
  background-color: #fdff19 !important;
  border-color: #fdff19 !important;
}
.btn-secondary:hover {
  background: linear-gradient(0deg, #e43f3f 0%, transparent 100%) !important;
  color: black !important;
}
.btn-secondary:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-info {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-info:hover {
  background: linear-gradient(0deg, #e43f3f 0%, transparent 100%) !important;
  color: black !important;
}
.btn-info:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-success {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-success,
.btn-success:active {
  background-color: #2a3ffe !important;
  border-color: #2a3ffe !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #0116d0 !important;
  border-color: #0116d0 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0116d0 !important;
  border-color: #0116d0 !important;
}
.btn-success:hover {
  background: linear-gradient(0deg, #e43f3f 0%, transparent 100%) !important;
  color: black !important;
}
.btn-success:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-warning {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-warning:hover {
  background: linear-gradient(0deg, #e43f3f 0%, transparent 100%) !important;
  color: black !important;
}
.btn-warning:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-danger {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-danger:hover {
  background: linear-gradient(0deg, #e43f3f 0%, transparent 100%) !important;
  color: black !important;
}
.btn-danger:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-white {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-white:hover {
  background: linear-gradient(0deg, #e43f3f 0%, transparent 100%) !important;
  color: black !important;
}
.btn-white:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-black {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:hover {
  background: linear-gradient(0deg, #e43f3f 0%, transparent 100%) !important;
  color: black !important;
}
.btn-black:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-primary-outline {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #e43f3f;
  color: #e43f3f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b31919 !important;
  background-color: transparent !important;
  border-color: #b31919 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-primary-outline:hover {
  background: linear-gradient(0deg, #feff70 0%, transparent 100%) !important;
  color: black !important;
}
.btn-primary-outline:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-secondary-outline {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #feff70;
  color: #feff70;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #fdff19 !important;
  background-color: transparent !important;
  border-color: #fdff19 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #6f7000 !important;
  background-color: #feff70 !important;
  border-color: #feff70 !important;
}
.btn-secondary-outline:hover {
  background: linear-gradient(0deg, #feff70 0%, transparent 100%) !important;
  color: black !important;
}
.btn-secondary-outline:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-info-outline {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent !important;
  border-color: #148cca !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-info-outline:hover {
  background: linear-gradient(0deg, #feff70 0%, transparent 100%) !important;
  color: black !important;
}
.btn-info-outline:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-success-outline {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #2a3ffe;
  color: #2a3ffe;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0116d0 !important;
  background-color: transparent !important;
  border-color: #0116d0 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #2a3ffe !important;
  border-color: #2a3ffe !important;
}
.btn-success-outline:hover {
  background: linear-gradient(0deg, #feff70 0%, transparent 100%) !important;
  color: black !important;
}
.btn-success-outline:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-warning-outline {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: #ffd10a !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning-outline:hover {
  background: linear-gradient(0deg, #feff70 0%, transparent 100%) !important;
  color: black !important;
}
.btn-warning-outline:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-danger-outline {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent !important;
  border-color: #ff5f0f !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-danger-outline:hover {
  background: linear-gradient(0deg, #feff70 0%, transparent 100%) !important;
  color: black !important;
}
.btn-danger-outline:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-black-outline {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-black-outline:hover {
  background: linear-gradient(0deg, #feff70 0%, transparent 100%) !important;
  color: black !important;
}
.btn-black-outline:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.btn-white-outline {
  transition: all 0.3s !important;
  border-width: 1px;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-white-outline:hover {
  background: linear-gradient(0deg, #feff70 0%, transparent 100%) !important;
  color: black !important;
}
.btn-white-outline:hover span {
  animation-duration: 0.3s;
  animation-name: btn;
}
.text-primary {
  color: #e43f3f !important;
}
.text-secondary {
  color: #feff70 !important;
}
.text-success {
  color: #2a3ffe !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #a61717 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #fdff0a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #0114c1 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #e43f3f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e43f3f;
  border-color: #e43f3f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e43f3f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdf2f2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #f5f6ff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Anybody', display;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.75rem;
}
.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: #e43f3f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Anybody', display;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.75rem;
}
blockquote {
  border-color: #e43f3f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e43f3f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e43f3f;
}
.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: #e43f3f;
  border-bottom-color: #e43f3f;
}
.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: #e43f3f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #feff70 !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='%23e43f3f' %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;
}
.cid-t9nvPbhOKt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t9nvPbhOKt nav.navbar {
  position: fixed;
}
.cid-t9nvPbhOKt .btn {
  line-height: 1.2;
}
.cid-t9nvPbhOKt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t9nvPbhOKt .nav-link {
  position: relative;
}
.cid-t9nvPbhOKt .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #2a3ffe;
}
.cid-t9nvPbhOKt .nav-link:hover {
  color: #2a3ffe !important;
}
.cid-t9nvPbhOKt .nav-link:hover:before {
  width: 100%;
}
.cid-t9nvPbhOKt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t9nvPbhOKt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t9nvPbhOKt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t9nvPbhOKt .dropdown-item:hover,
.cid-t9nvPbhOKt .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-t9nvPbhOKt .dropdown-item:hover span {
  color: white;
}
.cid-t9nvPbhOKt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t9nvPbhOKt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t9nvPbhOKt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t9nvPbhOKt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-t9nvPbhOKt .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t9nvPbhOKt .container {
    flex-wrap: nowrap;
  }
}
.cid-t9nvPbhOKt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t9nvPbhOKt .navbar-nav {
  margin: auto;
}
.cid-t9nvPbhOKt .dropdown-menu,
.cid-t9nvPbhOKt .navbar.opened {
  background: #ffffff !important;
}
.cid-t9nvPbhOKt .nav-item:focus,
.cid-t9nvPbhOKt .nav-link:focus {
  outline: none;
}
.cid-t9nvPbhOKt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t9nvPbhOKt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t9nvPbhOKt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t9nvPbhOKt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t9nvPbhOKt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t9nvPbhOKt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t9nvPbhOKt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-t9nvPbhOKt .navbar.opened {
  transition: all 0.3s;
}
.cid-t9nvPbhOKt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t9nvPbhOKt .navbar .navbar-logo img {
  width: auto;
}
.cid-t9nvPbhOKt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t9nvPbhOKt .navbar.collapsed {
  justify-content: center;
}
.cid-t9nvPbhOKt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t9nvPbhOKt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t9nvPbhOKt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-t9nvPbhOKt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t9nvPbhOKt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t9nvPbhOKt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t9nvPbhOKt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t9nvPbhOKt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t9nvPbhOKt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t9nvPbhOKt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t9nvPbhOKt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t9nvPbhOKt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t9nvPbhOKt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t9nvPbhOKt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t9nvPbhOKt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t9nvPbhOKt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t9nvPbhOKt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t9nvPbhOKt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t9nvPbhOKt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t9nvPbhOKt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-t9nvPbhOKt .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-t9nvPbhOKt .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t9nvPbhOKt .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-t9nvPbhOKt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t9nvPbhOKt .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-t9nvPbhOKt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t9nvPbhOKt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t9nvPbhOKt .dropdown-item.active,
.cid-t9nvPbhOKt .dropdown-item:active {
  background-color: transparent;
}
.cid-t9nvPbhOKt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t9nvPbhOKt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t9nvPbhOKt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t9nvPbhOKt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t9nvPbhOKt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t9nvPbhOKt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t9nvPbhOKt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t9nvPbhOKt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t9nvPbhOKt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t9nvPbhOKt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t9nvPbhOKt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t9nvPbhOKt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t9nvPbhOKt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t9nvPbhOKt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t9nvPbhOKt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t9nvPbhOKt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t9nvPbhOKt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t9nvPbhOKt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t9nvPbhOKt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t9nvPbhOKt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t9nvPbhOKt .navbar {
    height: 70px;
  }
  .cid-t9nvPbhOKt .navbar.opened {
    height: auto;
  }
  .cid-t9nvPbhOKt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t9nvOTtekc {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-t9nvOTtekc .mbr-fallback-image.disabled {
  display: none;
}
.cid-t9nvOTtekc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t9nvOTtekc .mbr-section-title {
  text-align: center;
}
.cid-t9nvOTtekc .mbr-text,
.cid-t9nvOTtekc .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-t9nvOTtekc .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-t9nvOTtekc .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-t9nvOTtekc .mbr-section-title,
.cid-t9nvOTtekc .dot {
  color: #ffffff;
  text-align: center;
}
.cid-t9nvOTtekc .mbr-section-subtitle {
  text-align: center;
}
.cid-t9ooGHEbUk {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #171717;
}
.cid-t9ooGHEbUk .mbr-fallback-image.disabled {
  display: none;
}
.cid-t9ooGHEbUk .container-fluid {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-t9ooGHEbUk .container-fluid {
    padding: 0 2rem;
  }
}
.cid-t9ooGHEbUk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t9ooGHEbUk .img-card {
  background: #ffffff;
  padding: 5rem;
  border-top-left-radius: 4rem;
}
@media (max-width: 992px) {
  .cid-t9ooGHEbUk .img-card {
    border-radius: 2rem;
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-t9ooGHEbUk .img-card {
    padding: 1rem;
  }
}
.cid-t9ooGHEbUk .row {
  justify-content: space-between;
}
.cid-t9ooGHEbUk .img-wrapper {
  border-radius: 3rem;
  position: relative;
}
.cid-t9ooGHEbUk .img-wrapper img {
  border-radius: 3rem;
}
@media (max-width: 992px) {
  .cid-t9ooGHEbUk .img-wrapper img {
    border-radius: 2rem;
  }
}
.cid-t9ooGHEbUk .img-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  border-radius: 3rem;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  box-shadow: inset 0px 0px 10px 6px rgba(0, 0, 0, 0.2);
}
@media (max-width: 992px) {
  .cid-t9ooGHEbUk .image-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-t9ooGHEbUk .dot {
  width: 6px;
  height: 6px;
  background: #000000;
}
.cid-t9ooGHEbUk .dot-right {
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 992px) {
  .cid-t9ooGHEbUk .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-t9ooGHEbUk .mbr-text,
.cid-t9ooGHEbUk .mbr-section-btn {
  color: #ffffff;
}
.cid-t9ooGHEbUk .mbr-section-title {
  color: #ffffff;
}
.cid-u29Q2YgImG {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #171717;
}
.cid-u29Q2YgImG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u29Q2YgImG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u29Q2YgImG .row {
  justify-content: space-between;
}
.cid-u29Q2YgImG .line {
  widht: 100%;
  height: 2px;
  background: gray;
  margin-bottom: 2rem;
}
.cid-u29Q2YgImG .mbr-text,
.cid-u29Q2YgImG .mbr-section-btn {
  color: #ffffff;
}
.cid-u29Q2YgImG .mbr-section-title {
  color: #ffffff;
}
.cid-u29Q2YgImG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u29QULA5u6 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #171717;
}
.cid-u29QULA5u6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u29QULA5u6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u29QULA5u6 .row {
  justify-content: space-between;
}
.cid-u29QULA5u6 .line {
  widht: 100%;
  height: 2px;
  background: gray;
  margin-bottom: 2rem;
}
.cid-u29QULA5u6 .mbr-text,
.cid-u29QULA5u6 .mbr-section-btn {
  color: #ffffff;
}
.cid-u29QULA5u6 .mbr-section-title {
  color: #ffffff;
}
.cid-u29QULA5u6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u29Rzo84j1 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u29Rzo84j1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u29Rzo84j1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u29Rzo84j1 .row {
  justify-content: space-between;
}
.cid-u29Rzo84j1 .mbr-text,
.cid-u29Rzo84j1 .mbr-section-btn {
  color: #232323;
}
.cid-t9ooWaMW1p {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t9ooWaMW1p img {
  margin: auto;
  position: relative;
}
.cid-t9ooWaMW1p .col-md-6 {
  margin-bottom: 1rem;
}
.cid-t9ooWaMW1p .card {
  transition: all 0.3s;
  height: fit-content;
  border-radius: 3rem;
  border-top-left-radius: 9rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.cid-t9ooWaMW1p .card:before {
  content: "";
  position: absolute;
  top: 0;
  border-radius: 3rem;
  border-top-left-radius: 9rem;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  box-shadow: inset 0px 0px 10px 6px rgba(0, 0, 0, 0.2);
}
.cid-t9ooWaMW1p .dot {
  width: 6px;
  height: 6px;
  background: #000000;
}
.cid-t9ooWaMW1p .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-t9ooWaMW1p .mbr-section-text {
  color: #000000;
}
.cid-t9ooWaMW1p .mbr-section-subtitle {
  color: #bbbbbb;
}
.cid-t9ooWaMW1p .mbr-section-title {
  color: #000000;
}
.cid-u29RzZQDbb {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background: linear-gradient(transparent -20%, #ffb18a);
}
.cid-u29RzZQDbb .mbr-fallback-image.disabled {
  display: none;
}
.cid-u29RzZQDbb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u29RzZQDbb .row {
  justify-content: flex-end;
}
.cid-u29RzZQDbb .mbr-text,
.cid-u29RzZQDbb .mbr-section-btn {
  color: #232323;
}
.cid-u2aL9U27Vx {
  background: #fff0b0;
  padding-top: 45px;
  padding-bottom: 45px;
}
.cid-u2aL9U27Vx .image-block {
  margin: auto;
}
.cid-u2aL9U27Vx .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u2aL9U27Vx .image-block {
    width: 100% !important;
  }
}
.cid-u2aL9U27Vx .container-fluid {
  padding: 0;
}
.cid-u29RBiwjBY {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #171717;
}
.cid-u29RBiwjBY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u29RBiwjBY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u29RBiwjBY .row {
  justify-content: space-between;
}
.cid-u29RBiwjBY .mbr-text,
.cid-u29RBiwjBY .mbr-section-btn {
  color: #ffffff;
}
.cid-u29RBiwjBY h2 {
  width: fit-content;
  float: left;
  border: 2px solid currentColor;
  padding: 1rem 4rem;
  padding-bottom: 0.5rem;
  margin: 0;
  border-radius: 1rem;
  border-top-left-radius: 4rem;
  border-bottom-right-radius: 4rem;
  margin-bottom: 0;
  margin-right: 2rem;
}
@media (max-width: 767px) {
  .cid-u29RBiwjBY h2 {
    padding: 1rem 1rem;
    margin-right: 1rem;
    border-top-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
  }
}
.cid-u29RBiwjBY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u29RBiwjBY .mbr-section-title {
  color: #ffffff;
}
.cid-t9ooNfF3y1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t9ooNfF3y1 .mbr-section-subtitle {
  transition: all 0.3s;
}
.cid-t9ooNfF3y1 .col-md-6 {
  margin-bottom: 1rem;
}
.cid-t9ooNfF3y1 .col-md-3 {
  margin-bottom: 2rem;
}
.cid-t9ooNfF3y1 .card {
  transition: all 0.3s;
  height: 100%;
  padding: 3rem 2rem;
  border-radius: 2rem;
  border-top-left-radius: 12rem;
  overflow: hidden;
  box-shadow: inset 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background: linear-gradient(transparent 60%, #e43f3f);
}
@media (max-width: 1400px) {
  .cid-t9ooNfF3y1 .card {
    border-top-left-radius: 6rem;
  }
}
.cid-t9ooNfF3y1 img {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  object-fit: cover;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-t9ooNfF3y1 img {
    width: 200px;
    height: 200px;
  }
}
.cid-t9ooNfF3y1 .mbr-section-title {
  text-align: center;
}
.cid-u29SZBPUJ0 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #171717;
}
.cid-u29SZBPUJ0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u29SZBPUJ0 .container-fluid {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-u29SZBPUJ0 .container-fluid {
    padding: 0 2rem;
  }
}
.cid-u29SZBPUJ0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u29SZBPUJ0 .img-card {
  background: #ffffff;
  padding: 5rem;
  border-top-left-radius: 4rem;
}
@media (max-width: 992px) {
  .cid-u29SZBPUJ0 .img-card {
    border-radius: 2rem;
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-u29SZBPUJ0 .img-card {
    padding: 1rem;
  }
}
.cid-u29SZBPUJ0 .row {
  justify-content: space-between;
}
.cid-u29SZBPUJ0 .img-wrapper {
  border-radius: 3rem;
  position: relative;
}
.cid-u29SZBPUJ0 .img-wrapper img {
  border-radius: 3rem;
}
@media (max-width: 992px) {
  .cid-u29SZBPUJ0 .img-wrapper img {
    border-radius: 2rem;
  }
}
.cid-u29SZBPUJ0 .img-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  border-radius: 3rem;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  box-shadow: inset 0px 0px 10px 6px rgba(0, 0, 0, 0.2);
}
@media (max-width: 992px) {
  .cid-u29SZBPUJ0 .image-wrapper {
    margin-bottom: 4rem;
  }
}
.cid-u29SZBPUJ0 .dot {
  width: 6px;
  height: 6px;
  background: #000000;
}
.cid-u29SZBPUJ0 .dot-right {
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 992px) {
  .cid-u29SZBPUJ0 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u29SZBPUJ0 .mbr-text,
.cid-u29SZBPUJ0 .mbr-section-btn {
  color: #ffffff;
}
.cid-u29SZBPUJ0 .mbr-section-title {
  color: #ffffff;
}
.cid-u29TDHMUNr {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background: linear-gradient(transparent -20%, #ffb18a);
}
.cid-u29TDHMUNr .mbr-fallback-image.disabled {
  display: none;
}
.cid-u29TDHMUNr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u29TDHMUNr .row {
  justify-content: flex-end;
}
.cid-u29TDHMUNr .mbr-text,
.cid-u29TDHMUNr .mbr-section-btn {
  color: #232323;
}
.cid-u29TDHMUNr .mbr-section-title {
  text-align: center;
}
.cid-u29Trz1uxR {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/6-2000x1335.jpg");
}
.cid-u29Trz1uxR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u29Trz1uxR .container-fluid {
  padding: 0;
}
.cid-u29Trz1uxR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u29Trz1uxR h2:before {
  content: attr(data-replace);
  position: absolute;
  bottom: 0;
  left: 0;
}
.cid-u29Trz1uxR .mbr-overlay {
  box-shadow: inset 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
}
.cid-u29Trz1uxR .row {
  justify-content: space-between;
}
.cid-u29Trz1uxR .card {
  background: white;
  border-radius: 0;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  padding: 6rem 8rem;
  box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1400px) {
  .cid-u29Trz1uxR .card {
    padding: 4rem 6rem;
  }
}
@media (max-width: 992px) {
  .cid-u29Trz1uxR .card {
    padding: 2rem 3rem;
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-u29Trz1uxR .card {
    padding: 3rem 1rem;
  }
}
.cid-u29Trz1uxR .mbr-text,
.cid-u29Trz1uxR .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-u2a9EtKI7g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2c4b3;
}
.cid-u2a9EtKI7g .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2a9EtKI7g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u2a9EtKI7g .container {
    padding: 0 30px;
  }
}
.cid-u2a9EtKI7g .row {
  justify-content: center;
}
.cid-u2a9EtKI7g .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-u2a9EtKI7g .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u2a9EtKI7g .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-u2a9EtKI7g .video-block .video-wrapper .app-video-wrapper::before {
  color: #212529;
  text-shadow: none;
}
.cid-u2a9EtKI7g .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u2a9EtKI7g .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-u2a9EtKI7g .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u29U8cCQZ5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e7f2ed;
}
.cid-u29U8cCQZ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u29U8cCQZ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u29U8cCQZ5 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u29U8cCQZ5 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u29U8cCQZ5 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u29U8cCQZ5 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u29U8cCQZ5 .container {
    padding: 0 16px;
  }
}
.cid-u29U8cCQZ5 .row {
  padding: 60px 44px;
  background-color: #fffaf5;
  justify-content: space-between;
  margin: 0;
  border-radius: 1rem;
}
@media (max-width: 1200px) {
  .cid-u29U8cCQZ5 .row {
    padding: 32px 16px;
  }
}
@media (max-width: 992px) {
  .cid-u29U8cCQZ5 .row {
    padding: 25px 9px;
  }
}
.cid-u29U8cCQZ5 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u29U8cCQZ5 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-u29U8cCQZ5 .content-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u29U8cCQZ5 .content-wrapper {
    height: auto;
    margin-bottom: 32px;
  }
}
.cid-u29U8cCQZ5 .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-u29U8cCQZ5 .image-wrapper img {
  height: 500px;
  object-fit: cover;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-u29U8cCQZ5 .image-wrapper img {
    height: 350px;
  }
}
.cid-u29U8cCQZ5 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-u29U8cCQZ5 .mbr-text {
  color: #000000;
}
.cid-u29U8cCQZ5 .mbr-name {
  color: #000000;
}
.cid-u29UyfJ864 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u29UyfJ864 .mbr-section-title {
  color: #000000;
}
.cid-u29UyfJ864 .mbr-section-subtitle {
  color: #000000;
}
.cid-u29UyfJ864 .mbr-text {
  color: #000000;
  padding: 2rem;
}
@media (max-width: 992px) {
  .cid-u29UyfJ864 .mbr-text {
    padding: 0;
    margin-top: 2rem;
  }
}
.cid-u29UyfJ864 .line {
  height: 2px;
  background: currentColor;
  margin-bottom: 1.5rem;
}
.cid-u29UyfJ864 .mbr-section-title,
.cid-u29UyfJ864 .line {
  color: #000000;
  text-align: center;
}
.cid-u29UxgOBXz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u29UxgOBXz .item-img {
  position: relative;
}
.cid-u29UxgOBXz .item-img img {
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-u29UxgOBXz .card-text {
    padding-left: 4rem;
  }
}
.cid-u29UxgOBXz h5 {
  line-height: 1.2;
}
.cid-u29UxgOBXz .card {
  margin-bottom: 2rem;
}
.cid-u29UxgOBXz .card:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
.cid-u29UxgOBXz .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-u29UxgOBXz .image-wrapper {
  overflow: hidden;
  border-radius: 2rem;
  min-height: 250px;
  background: #d9db4d;
}
@media (max-width: 992px) {
  .cid-u29UxgOBXz .image-wrapper {
    min-height: 200px;
  }
}
.cid-u29UxgOBXz .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u29UxgOBXz .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-u29UxgOBXz .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-u29UxgOBXz .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-u29UxgOBXz .link-icon-wrapper .icon-wrap {
  background: #000000;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-u29UxgOBXz .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-u29UxgOBXz .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-u29UxgOBXz .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-u29UxgOBXz .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-u29UxgOBXz .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-u29UxgOBXz .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-u29UxgOBXz .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-u29UxgOBXz img,
.cid-u29UxgOBXz .item-img {
  width: 100%;
}
.cid-u29UxgOBXz .item:focus,
.cid-u29UxgOBXz span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-u29UxgOBXz .item {
    margin-bottom: 1rem;
  }
}
.cid-u29UxgOBXz .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-u29UxgOBXz .item-title {
  text-align: left;
  color: #000000;
}
.cid-u29UxgOBXz .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-u29UxgOBXz .mbr-section-subtitle,
.cid-u29UxgOBXz .subtitle-wrap,
.cid-u29UxgOBXz .mbr-section-btn {
  text-align: left;
}
.cid-u29UxgOBXz .mbr-text,
.cid-u29UxgOBXz .item .mbr-section-btn {
  color: #ffffff;
}
.cid-u29UxgOBXz .mbr-text {
  color: #000000;
}
.cid-u29ZmWkNwG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #232323;
}
.cid-u29ZmWkNwG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u29ZmWkNwG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u29ZmWkNwG .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-u29ZmWkNwG .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-u29ZmWkNwG .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-u29ZmWkNwG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u29ZmWkNwG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u29ZmWkNwG .content-head {
  max-width: 800px;
}
.cid-u29ZmWkNwG .mbr-section-title {
  color: #ffffff;
}
.cid-u2a0VC4BsN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2a0VC4BsN [class^='socicon-']:before,
.cid-u2a0VC4BsN [class*=' socicon-']:before {
  line-height: 55px;
}
.cid-u2a0VC4BsN .btn-social {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #000000;
  transition: all 0.3s;
  border-color: #000000;
}
.cid-u2a0VC4BsN .btn-social:hover {
  background: #000000;
}
.cid-u2a0VC4BsN .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-u2a0VC4BsN .btn-social:hover span {
  color: #ffffff !important;
}
.cid-u2a0VC4BsN .mbr-section-title {
  color: #2e6b75;
}
.cid-u2a0VC4BsN .mbr-social-likes {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.cid-u2a0VC4BsN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2a0VC4BsN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2a0VC4BsN .mbr-section-title,
.cid-u2a0VC4BsN .mbr-social-likes {
  color: #000000;
}
.cid-u29Zuspd8G {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-u29Zuspd8G .mbr-fallback-image.disabled {
  display: none;
}
.cid-u29Zuspd8G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u29Zuspd8G .container {
    padding: 0 16px;
  }
}
.cid-u29Zuspd8G .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u29Zuspd8G .card {
    margin-bottom: 40px;
  }
}
.cid-u29Zuspd8G .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-u29Zuspd8G .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-u29Zuspd8G .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-u29Zuspd8G .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-u29Zuspd8G .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-u29Zuspd8G .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-u29Zuspd8G .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-u29Zuspd8G .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-u29Zuspd8G .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-u29Zuspd8G .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-u29Zuspd8G .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-u29Zuspd8G .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-u29Zuspd8G .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-u29Zuspd8G .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-u29Zuspd8G .mbr-section-title {
  color: #ffffff;
}
.cid-u29Zuspd8G .copyright {
  color: #ffffff;
}
.cid-u29Zuspd8G .mbr-card-title {
  color: #ffffff;
}
.cid-u29Zuspd8G .list {
  color: #ffffff;
}
.cid-t9nvPbhOKt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t9nvPbhOKt nav.navbar {
  position: fixed;
}
.cid-t9nvPbhOKt .btn {
  line-height: 1.2;
}
.cid-t9nvPbhOKt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t9nvPbhOKt .nav-link {
  position: relative;
}
.cid-t9nvPbhOKt .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #2a3ffe;
}
.cid-t9nvPbhOKt .nav-link:hover {
  color: #2a3ffe !important;
}
.cid-t9nvPbhOKt .nav-link:hover:before {
  width: 100%;
}
.cid-t9nvPbhOKt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t9nvPbhOKt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t9nvPbhOKt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t9nvPbhOKt .dropdown-item:hover,
.cid-t9nvPbhOKt .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-t9nvPbhOKt .dropdown-item:hover span {
  color: white;
}
.cid-t9nvPbhOKt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t9nvPbhOKt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t9nvPbhOKt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t9nvPbhOKt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-t9nvPbhOKt .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t9nvPbhOKt .container {
    flex-wrap: nowrap;
  }
}
.cid-t9nvPbhOKt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t9nvPbhOKt .navbar-nav {
  margin: auto;
}
.cid-t9nvPbhOKt .dropdown-menu,
.cid-t9nvPbhOKt .navbar.opened {
  background: #ffffff !important;
}
.cid-t9nvPbhOKt .nav-item:focus,
.cid-t9nvPbhOKt .nav-link:focus {
  outline: none;
}
.cid-t9nvPbhOKt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t9nvPbhOKt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t9nvPbhOKt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t9nvPbhOKt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t9nvPbhOKt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t9nvPbhOKt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t9nvPbhOKt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-t9nvPbhOKt .navbar.opened {
  transition: all 0.3s;
}
.cid-t9nvPbhOKt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t9nvPbhOKt .navbar .navbar-logo img {
  width: auto;
}
.cid-t9nvPbhOKt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t9nvPbhOKt .navbar.collapsed {
  justify-content: center;
}
.cid-t9nvPbhOKt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t9nvPbhOKt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t9nvPbhOKt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-t9nvPbhOKt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t9nvPbhOKt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t9nvPbhOKt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t9nvPbhOKt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t9nvPbhOKt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t9nvPbhOKt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t9nvPbhOKt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t9nvPbhOKt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t9nvPbhOKt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t9nvPbhOKt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t9nvPbhOKt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t9nvPbhOKt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t9nvPbhOKt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t9nvPbhOKt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t9nvPbhOKt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t9nvPbhOKt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t9nvPbhOKt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-t9nvPbhOKt .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-t9nvPbhOKt .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t9nvPbhOKt .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-t9nvPbhOKt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t9nvPbhOKt .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-t9nvPbhOKt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t9nvPbhOKt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t9nvPbhOKt .dropdown-item.active,
.cid-t9nvPbhOKt .dropdown-item:active {
  background-color: transparent;
}
.cid-t9nvPbhOKt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t9nvPbhOKt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t9nvPbhOKt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t9nvPbhOKt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t9nvPbhOKt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t9nvPbhOKt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t9nvPbhOKt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t9nvPbhOKt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t9nvPbhOKt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t9nvPbhOKt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t9nvPbhOKt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t9nvPbhOKt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t9nvPbhOKt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t9nvPbhOKt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t9nvPbhOKt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t9nvPbhOKt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t9nvPbhOKt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t9nvPbhOKt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t9nvPbhOKt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t9nvPbhOKt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t9nvPbhOKt .navbar {
    height: 70px;
  }
  .cid-t9nvPbhOKt .navbar.opened {
    height: auto;
  }
  .cid-t9nvPbhOKt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2a8tzjECT {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/thumbnail-lead-1416x840.jpg");
}
.cid-u2a8tzjECT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2a8tzjECT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2a8tzjECT .mbr-section-title {
  text-align: center;
}
.cid-u2a8tzjECT .mbr-text,
.cid-u2a8tzjECT .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u2a8tzjECT .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-u2a8tzjECT .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-u2a8tzjECT .mbr-section-title,
.cid-u2a8tzjECT .dot {
  color: #ffffff;
  text-align: center;
}
.cid-u2a8tzjECT .mbr-section-subtitle {
  text-align: center;
}
.cid-u2a8ysDr7c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-u2a8ysDr7c .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2a8ysDr7c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2a8ysDr7c .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u2a8ysDr7c .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-u2a8ysDr7c .container {
    padding: 0 24px;
  }
}
.cid-u2a8ysDr7c .row {
  justify-content: center;
}
.cid-u2a8ysDr7c .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-u2a8ysDr7c .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-u2a8ysDr7c .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ffffff;
  border-radius: .75rem;
}
.cid-u2a8ysDr7c .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u2a8ysDr7c .mbr-section-title {
  color: #141414;
}
.cid-u2a8ysDr7c .mbr-text {
  color: #141414;
}
.cid-u2a8ysDr7c .mbr-desc,
.cid-u2a8ysDr7c .desc-wrapper {
  text-align: center;
}
.cid-u2a8pWzshq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #232323;
}
.cid-u2a8pWzshq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2a8pWzshq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2a8pWzshq .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-u2a8pWzshq .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-u2a8pWzshq .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-u2a8pWzshq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2a8pWzshq .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2a8pWzshq .content-head {
  max-width: 800px;
}
.cid-u2a8pWzshq .mbr-section-title {
  color: #ffffff;
}
.cid-u2a8m7YGmD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2a8m7YGmD [class^='socicon-']:before,
.cid-u2a8m7YGmD [class*=' socicon-']:before {
  line-height: 55px;
}
.cid-u2a8m7YGmD .btn-social {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #000000;
  transition: all 0.3s;
  border-color: #000000;
}
.cid-u2a8m7YGmD .btn-social:hover {
  background: #000000;
}
.cid-u2a8m7YGmD .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-u2a8m7YGmD .btn-social:hover span {
  color: #ffffff !important;
}
.cid-u2a8m7YGmD .mbr-section-title {
  color: #2e6b75;
}
.cid-u2a8m7YGmD .mbr-social-likes {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.cid-u2a8m7YGmD .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2a8m7YGmD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2a8m7YGmD .mbr-section-title,
.cid-u2a8m7YGmD .mbr-social-likes {
  color: #000000;
}
.cid-u29Zuspd8G {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-u29Zuspd8G .mbr-fallback-image.disabled {
  display: none;
}
.cid-u29Zuspd8G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u29Zuspd8G .container {
    padding: 0 16px;
  }
}
.cid-u29Zuspd8G .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u29Zuspd8G .card {
    margin-bottom: 40px;
  }
}
.cid-u29Zuspd8G .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-u29Zuspd8G .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-u29Zuspd8G .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-u29Zuspd8G .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-u29Zuspd8G .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-u29Zuspd8G .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-u29Zuspd8G .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-u29Zuspd8G .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-u29Zuspd8G .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-u29Zuspd8G .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-u29Zuspd8G .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-u29Zuspd8G .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-u29Zuspd8G .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-u29Zuspd8G .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-u29Zuspd8G .mbr-section-title {
  color: #ffffff;
}
.cid-u29Zuspd8G .copyright {
  color: #ffffff;
}
.cid-u29Zuspd8G .mbr-card-title {
  color: #ffffff;
}
.cid-u29Zuspd8G .list {
  color: #ffffff;
}
.cid-u2fMnhhL9f {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2fMnhhL9f nav.navbar {
  position: fixed;
}
.cid-u2fMnhhL9f .btn {
  line-height: 1.2;
}
.cid-u2fMnhhL9f .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2fMnhhL9f .nav-link {
  position: relative;
}
.cid-u2fMnhhL9f .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #2a3ffe;
}
.cid-u2fMnhhL9f .nav-link:hover {
  color: #2a3ffe !important;
}
.cid-u2fMnhhL9f .nav-link:hover:before {
  width: 100%;
}
.cid-u2fMnhhL9f .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2fMnhhL9f .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2fMnhhL9f .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2fMnhhL9f .dropdown-item:hover,
.cid-u2fMnhhL9f .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-u2fMnhhL9f .dropdown-item:hover span {
  color: white;
}
.cid-u2fMnhhL9f .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2fMnhhL9f .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2fMnhhL9f .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2fMnhhL9f .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-u2fMnhhL9f .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u2fMnhhL9f .container {
    flex-wrap: nowrap;
  }
}
.cid-u2fMnhhL9f .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2fMnhhL9f .navbar-nav {
  margin: auto;
}
.cid-u2fMnhhL9f .dropdown-menu,
.cid-u2fMnhhL9f .navbar.opened {
  background: #ffffff !important;
}
.cid-u2fMnhhL9f .nav-item:focus,
.cid-u2fMnhhL9f .nav-link:focus {
  outline: none;
}
.cid-u2fMnhhL9f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2fMnhhL9f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2fMnhhL9f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2fMnhhL9f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2fMnhhL9f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2fMnhhL9f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2fMnhhL9f .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-u2fMnhhL9f .navbar.opened {
  transition: all 0.3s;
}
.cid-u2fMnhhL9f .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2fMnhhL9f .navbar .navbar-logo img {
  width: auto;
}
.cid-u2fMnhhL9f .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2fMnhhL9f .navbar.collapsed {
  justify-content: center;
}
.cid-u2fMnhhL9f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2fMnhhL9f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2fMnhhL9f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-u2fMnhhL9f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2fMnhhL9f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2fMnhhL9f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2fMnhhL9f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2fMnhhL9f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2fMnhhL9f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2fMnhhL9f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2fMnhhL9f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2fMnhhL9f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2fMnhhL9f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2fMnhhL9f .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2fMnhhL9f .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2fMnhhL9f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2fMnhhL9f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2fMnhhL9f .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2fMnhhL9f .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2fMnhhL9f .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u2fMnhhL9f .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u2fMnhhL9f .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2fMnhhL9f .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-u2fMnhhL9f .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2fMnhhL9f .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-u2fMnhhL9f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2fMnhhL9f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2fMnhhL9f .dropdown-item.active,
.cid-u2fMnhhL9f .dropdown-item:active {
  background-color: transparent;
}
.cid-u2fMnhhL9f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2fMnhhL9f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2fMnhhL9f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2fMnhhL9f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u2fMnhhL9f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2fMnhhL9f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2fMnhhL9f ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2fMnhhL9f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2fMnhhL9f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2fMnhhL9f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2fMnhhL9f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2fMnhhL9f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2fMnhhL9f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2fMnhhL9f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2fMnhhL9f nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2fMnhhL9f nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2fMnhhL9f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2fMnhhL9f .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2fMnhhL9f a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2fMnhhL9f .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2fMnhhL9f .navbar {
    height: 70px;
  }
  .cid-u2fMnhhL9f .navbar.opened {
    height: auto;
  }
  .cid-u2fMnhhL9f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2fMnimIvo {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/3-easy-link-building-tactics-to-improve-your-seo-1024x768.jpg");
}
.cid-u2fMnimIvo .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2fMnimIvo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2fMnimIvo .mbr-section-title {
  text-align: center;
}
.cid-u2fMnimIvo .mbr-text,
.cid-u2fMnimIvo .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u2fMnimIvo .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-u2fMnimIvo .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-u2fMnimIvo .mbr-section-title,
.cid-u2fMnimIvo .dot {
  color: #ffffff;
  text-align: center;
}
.cid-u2fMnimIvo .mbr-section-subtitle {
  text-align: center;
}
.cid-u2fMnj3kc3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-u2fMnj3kc3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2fMnj3kc3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2fMnj3kc3 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u2fMnj3kc3 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-u2fMnj3kc3 .container {
    padding: 0 24px;
  }
}
.cid-u2fMnj3kc3 .row {
  justify-content: center;
}
.cid-u2fMnj3kc3 .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-u2fMnj3kc3 .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-u2fMnj3kc3 .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ffffff;
  border-radius: .75rem;
}
.cid-u2fMnj3kc3 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u2fMnj3kc3 .mbr-section-title {
  color: #141414;
}
.cid-u2fMnj3kc3 .mbr-text {
  color: #141414;
}
.cid-u2fMnj3kc3 .mbr-desc,
.cid-u2fMnj3kc3 .desc-wrapper {
  text-align: center;
}
.cid-u2fMnjAda8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #232323;
}
.cid-u2fMnjAda8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2fMnjAda8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2fMnjAda8 .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-u2fMnjAda8 .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-u2fMnjAda8 .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-u2fMnjAda8 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2fMnjAda8 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2fMnjAda8 .content-head {
  max-width: 800px;
}
.cid-u2fMnjAda8 .mbr-section-title {
  color: #ffffff;
}
.cid-u2fMnkezFP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2fMnkezFP [class^='socicon-']:before,
.cid-u2fMnkezFP [class*=' socicon-']:before {
  line-height: 55px;
}
.cid-u2fMnkezFP .btn-social {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #000000;
  transition: all 0.3s;
  border-color: #000000;
}
.cid-u2fMnkezFP .btn-social:hover {
  background: #000000;
}
.cid-u2fMnkezFP .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-u2fMnkezFP .btn-social:hover span {
  color: #ffffff !important;
}
.cid-u2fMnkezFP .mbr-section-title {
  color: #2e6b75;
}
.cid-u2fMnkezFP .mbr-social-likes {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.cid-u2fMnkezFP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2fMnkezFP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2fMnkezFP .mbr-section-title,
.cid-u2fMnkezFP .mbr-social-likes {
  color: #000000;
}
.cid-u2fMnkLESW {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-u2fMnkLESW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2fMnkLESW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u2fMnkLESW .container {
    padding: 0 16px;
  }
}
.cid-u2fMnkLESW .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u2fMnkLESW .card {
    margin-bottom: 40px;
  }
}
.cid-u2fMnkLESW .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-u2fMnkLESW .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-u2fMnkLESW .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-u2fMnkLESW .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-u2fMnkLESW .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-u2fMnkLESW .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-u2fMnkLESW .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-u2fMnkLESW .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-u2fMnkLESW .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-u2fMnkLESW .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-u2fMnkLESW .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-u2fMnkLESW .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-u2fMnkLESW .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-u2fMnkLESW .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-u2fMnkLESW .mbr-section-title {
  color: #ffffff;
}
.cid-u2fMnkLESW .copyright {
  color: #ffffff;
}
.cid-u2fMnkLESW .mbr-card-title {
  color: #ffffff;
}
.cid-u2fMnkLESW .list {
  color: #ffffff;
}
.cid-u2fPTvDN9G {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2fPTvDN9G nav.navbar {
  position: fixed;
}
.cid-u2fPTvDN9G .btn {
  line-height: 1.2;
}
.cid-u2fPTvDN9G .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2fPTvDN9G .nav-link {
  position: relative;
}
.cid-u2fPTvDN9G .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #2a3ffe;
}
.cid-u2fPTvDN9G .nav-link:hover {
  color: #2a3ffe !important;
}
.cid-u2fPTvDN9G .nav-link:hover:before {
  width: 100%;
}
.cid-u2fPTvDN9G .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2fPTvDN9G .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2fPTvDN9G .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2fPTvDN9G .dropdown-item:hover,
.cid-u2fPTvDN9G .dropdown-item:focus {
  background: #e43f3f !important;
  color: white !important;
}
.cid-u2fPTvDN9G .dropdown-item:hover span {
  color: white;
}
.cid-u2fPTvDN9G .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2fPTvDN9G .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2fPTvDN9G .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2fPTvDN9G .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-u2fPTvDN9G .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u2fPTvDN9G .container {
    flex-wrap: nowrap;
  }
}
.cid-u2fPTvDN9G .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2fPTvDN9G .navbar-nav {
  margin: auto;
}
.cid-u2fPTvDN9G .dropdown-menu,
.cid-u2fPTvDN9G .navbar.opened {
  background: #ffffff !important;
}
.cid-u2fPTvDN9G .nav-item:focus,
.cid-u2fPTvDN9G .nav-link:focus {
  outline: none;
}
.cid-u2fPTvDN9G .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2fPTvDN9G .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2fPTvDN9G .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2fPTvDN9G .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2fPTvDN9G .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2fPTvDN9G .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2fPTvDN9G .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-u2fPTvDN9G .navbar.opened {
  transition: all 0.3s;
}
.cid-u2fPTvDN9G .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2fPTvDN9G .navbar .navbar-logo img {
  width: auto;
}
.cid-u2fPTvDN9G .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2fPTvDN9G .navbar.collapsed {
  justify-content: center;
}
.cid-u2fPTvDN9G .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2fPTvDN9G .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2fPTvDN9G .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-u2fPTvDN9G .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2fPTvDN9G .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2fPTvDN9G .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2fPTvDN9G .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2fPTvDN9G .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2fPTvDN9G .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2fPTvDN9G .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2fPTvDN9G .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2fPTvDN9G .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2fPTvDN9G .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2fPTvDN9G .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2fPTvDN9G .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2fPTvDN9G .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2fPTvDN9G .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2fPTvDN9G .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2fPTvDN9G .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2fPTvDN9G .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u2fPTvDN9G .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u2fPTvDN9G .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2fPTvDN9G .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-u2fPTvDN9G .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2fPTvDN9G .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-u2fPTvDN9G .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2fPTvDN9G .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2fPTvDN9G .dropdown-item.active,
.cid-u2fPTvDN9G .dropdown-item:active {
  background-color: transparent;
}
.cid-u2fPTvDN9G .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2fPTvDN9G .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2fPTvDN9G .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2fPTvDN9G .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u2fPTvDN9G .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2fPTvDN9G .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2fPTvDN9G ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2fPTvDN9G button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2fPTvDN9G button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2fPTvDN9G button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2fPTvDN9G button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2fPTvDN9G button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2fPTvDN9G button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2fPTvDN9G nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2fPTvDN9G nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2fPTvDN9G nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2fPTvDN9G nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2fPTvDN9G .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2fPTvDN9G a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2fPTvDN9G .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u2fPTvDN9G .navbar {
    height: 70px;
  }
  .cid-u2fPTvDN9G .navbar.opened {
    height: auto;
  }
  .cid-u2fPTvDN9G .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2fPTxpH2i {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/best-digital-marketing-agencies-in-mumbai-1029x551.jpg");
}
.cid-u2fPTxpH2i .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2fPTxpH2i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2fPTxpH2i .mbr-section-title {
  text-align: center;
}
.cid-u2fPTxpH2i .mbr-text,
.cid-u2fPTxpH2i .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u2fPTxpH2i .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-u2fPTxpH2i .dot-right {
  margin-right: 0;
  margin-left: auto;
}
.cid-u2fPTxpH2i .mbr-section-title,
.cid-u2fPTxpH2i .dot {
  color: #ffffff;
  text-align: center;
}
.cid-u2fPTxpH2i .mbr-section-subtitle {
  text-align: center;
}
.cid-u2fPTy7iWS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-u2fPTy7iWS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2fPTy7iWS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2fPTy7iWS .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u2fPTy7iWS .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-u2fPTy7iWS .container {
    padding: 0 24px;
  }
}
.cid-u2fPTy7iWS .row {
  justify-content: center;
}
.cid-u2fPTy7iWS .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-u2fPTy7iWS .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-u2fPTy7iWS .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ffffff;
  border-radius: .75rem;
}
.cid-u2fPTy7iWS .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u2fPTy7iWS .mbr-section-title {
  color: #141414;
}
.cid-u2fPTy7iWS .mbr-text {
  color: #141414;
}
.cid-u2fPTy7iWS .mbr-desc,
.cid-u2fPTy7iWS .desc-wrapper {
  text-align: center;
}
.cid-u2fPTyEod3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #232323;
}
.cid-u2fPTyEod3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2fPTyEod3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2fPTyEod3 .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-u2fPTyEod3 .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-u2fPTyEod3 .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-u2fPTyEod3 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2fPTyEod3 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2fPTyEod3 .content-head {
  max-width: 800px;
}
.cid-u2fPTyEod3 .mbr-section-title {
  color: #ffffff;
}
.cid-u2fPTzj1vU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2fPTzj1vU [class^='socicon-']:before,
.cid-u2fPTzj1vU [class*=' socicon-']:before {
  line-height: 55px;
}
.cid-u2fPTzj1vU .btn-social {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #000000;
  transition: all 0.3s;
  border-color: #000000;
}
.cid-u2fPTzj1vU .btn-social:hover {
  background: #000000;
}
.cid-u2fPTzj1vU .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-u2fPTzj1vU .btn-social:hover span {
  color: #ffffff !important;
}
.cid-u2fPTzj1vU .mbr-section-title {
  color: #2e6b75;
}
.cid-u2fPTzj1vU .mbr-social-likes {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.cid-u2fPTzj1vU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2fPTzj1vU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2fPTzj1vU .mbr-section-title,
.cid-u2fPTzj1vU .mbr-social-likes {
  color: #000000;
}
.cid-u2fPTzRFmo {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-u2fPTzRFmo .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2fPTzRFmo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u2fPTzRFmo .container {
    padding: 0 16px;
  }
}
.cid-u2fPTzRFmo .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u2fPTzRFmo .card {
    margin-bottom: 40px;
  }
}
.cid-u2fPTzRFmo .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-u2fPTzRFmo .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-u2fPTzRFmo .card .content-wrapper .title-wrapper .title-wrap img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-u2fPTzRFmo .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-u2fPTzRFmo .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-u2fPTzRFmo .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-u2fPTzRFmo .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-u2fPTzRFmo .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-u2fPTzRFmo .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-u2fPTzRFmo .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 28px;
  color: #ffffff;
}
.cid-u2fPTzRFmo .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-u2fPTzRFmo .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-u2fPTzRFmo .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-u2fPTzRFmo .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-u2fPTzRFmo .mbr-section-title {
  color: #ffffff;
}
.cid-u2fPTzRFmo .copyright {
  color: #ffffff;
}
.cid-u2fPTzRFmo .mbr-card-title {
  color: #ffffff;
}
.cid-u2fPTzRFmo .list {
  color: #ffffff;
}
