body {
  font-family: 'Lexend', sans-serif;
}
.display-1 {
  font-family: 'Lexend', sans-serif;
  font-size: 4.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.5rem;
}
.display-2 {
  font-family: 'Lexend', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.52rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.08rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #a148ff !important;
}
.bg-success {
  background-color: #263d5a !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary {
  background-color: #a148ff !important;
  background: linear-gradient(90deg, #a148ff 0%, #f70722 100%);
  border: none;
  transition: all 0.3s;
}
.btn-primary,
.btn-primary:active {
  background-color: #a148ff;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #7500f0;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #7500f0;
}
.btn-primary:hover {
  transform: translateY(-3px);
}
.btn-secondary {
  background-color: #f70722 !important;
  background: linear-gradient(90deg, #f70722 0%, #f70722 100%);
  border: none;
  transition: all 0.3s;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f70722;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #a30516;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a30516;
}
.btn-secondary:hover {
  transform: translateY(-3px);
}
.btn-info {
  background-color: #47b5ed !important;
  background: linear-gradient(90deg, #47b5ed 0%, #f70722 100%);
  border: none;
  transition: all 0.3s;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca;
}
.btn-info:hover {
  transform: translateY(-3px);
}
.btn-success {
  background-color: #263d5a !important;
  background: linear-gradient(90deg, #263d5a 0%, #f70722 100%);
  border: none;
  transition: all 0.3s;
}
.btn-success,
.btn-success:active {
  background-color: #263d5a;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #0c141d;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0c141d;
}
.btn-success:hover {
  transform: translateY(-3px);
}
.btn-warning {
  background-color: #ffe161 !important;
  background: linear-gradient(90deg, #ffe161 0%, #f70722 100%);
  border: none;
  transition: all 0.3s;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161;
  color: #614f00 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a;
}
.btn-warning:hover {
  transform: translateY(-3px);
}
.btn-danger {
  background-color: #ff9966 !important;
  background: linear-gradient(90deg, #ff9966 0%, #f70722 100%);
  border: none;
  transition: all 0.3s;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f;
}
.btn-danger:hover {
  transform: translateY(-3px);
}
.btn-white {
  background-color: #fafafa !important;
  background: linear-gradient(90deg, #fafafa 0%, #f70722 100%);
  border: none;
  transition: all 0.3s;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa;
  color: #7a7a7a !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf;
}
.btn-white:hover {
  transform: translateY(-3px);
}
.btn-black {
  background-color: #232323 !important;
  background: linear-gradient(90deg, #232323 0%, #f70722 100%);
  border: none;
  transition: all 0.3s;
}
.btn-black,
.btn-black:active {
  background-color: #232323;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000;
}
.btn-black:hover {
  transform: translateY(-3px);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a148ff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #7500f0 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #a148ff !important;
  border-color: #a148ff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f70722;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a30516 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f70722 !important;
  border-color: #f70722 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #263d5a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0c141d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #263d5a !important;
  border-color: #263d5a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #a148ff !important;
}
.text-secondary {
  color: #f70722 !important;
}
.text-success {
  color: #263d5a !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: #6d00e1 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #940414 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #080c12 !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: #fafafa !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: #a148ff;
}
.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-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a148ff;
  border-color: #a148ff;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #a148ff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #4c7ab3;
}
.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: 'Lexend', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #a148ff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #a148ff;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #a148ff;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #a148ff;
}
.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: #a148ff;
  border-bottom-color: #a148ff;
}
.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: #a148ff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #f70722 !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='%23a148ff' %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;
}
html,
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
@media (max-width: 445px) {
  .container-banner {
    height: 11.5rem!important;
  }
}
.cid-tMUtDyWEpZ .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tMUtDyWEpZ .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tMUtDyWEpZ .nav-item:focus,
.cid-tMUtDyWEpZ .nav-link:focus {
  outline: none;
}
.cid-tMUtDyWEpZ .text-white:hover,
.cid-tMUtDyWEpZ .text-white:active,
.cid-tMUtDyWEpZ .text-white:focus {
  color: white!important;
}
.cid-tMUtDyWEpZ .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #ca1227;
  background: none;
}
.cid-tMUtDyWEpZ .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-tMUtDyWEpZ .navbar.opened {
  transition: all .3s;
  background: #ca1227 !important;
}
.cid-tMUtDyWEpZ .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tMUtDyWEpZ .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-tMUtDyWEpZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMUtDyWEpZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tMUtDyWEpZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tMUtDyWEpZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMUtDyWEpZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMUtDyWEpZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tMUtDyWEpZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMUtDyWEpZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tMUtDyWEpZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tMUtDyWEpZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMUtDyWEpZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMUtDyWEpZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tMUtDyWEpZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMUtDyWEpZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMUtDyWEpZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tMUtDyWEpZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tMUtDyWEpZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMUtDyWEpZ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMUtDyWEpZ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tMUtDyWEpZ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tMUtDyWEpZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tMUtDyWEpZ .navbar.navbar-short {
  background: #ca1227 !important;
  min-height: 60px;
}
.cid-tMUtDyWEpZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tMUtDyWEpZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tMUtDyWEpZ .section {
  position: relative;
  overflow: visible!important;
}
.cid-tMUtDyWEpZ .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tMUtDyWEpZ .dropdown-item:hover {
  color: black!important;
}
.cid-tMUtDyWEpZ .dropdown-menu {
  background-color: white!important;
}
.cid-tMUtDyWEpZ .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tMUtDyWEpZ .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tMUtDyWEpZ .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tMUtDyWEpZ .nav-item .nav-link {
    position: relative;
  }
}
.cid-tMUtDyWEpZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tMUtDyWEpZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMUtDyWEpZ .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
  padding-right: 1rem;
}
.cid-tMUtDyWEpZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tMUtDyWEpZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tMUtDyWEpZ .collapsed {
  flex-direction: row!important;
}
.cid-tMUtDyWEpZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMUtDyWEpZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMUtDyWEpZ .navbar-caption {
  font-weight: 600!important;
}
.cid-tMUtDyWEpZ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMUtDyWEpZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMUtDyWEpZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMUtDyWEpZ .dropdown-item.active,
.cid-tMUtDyWEpZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tMUtDyWEpZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMUtDyWEpZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMUtDyWEpZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMUtDyWEpZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ca1227;
}
.cid-tMUtDyWEpZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMUtDyWEpZ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tMUtDyWEpZ .navbar-buttons {
  text-align: center;
}
.cid-tMUtDyWEpZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tMUtDyWEpZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-tMUtDyWEpZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tMUtDyWEpZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tMUtDyWEpZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tMUtDyWEpZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tMUtDyWEpZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tMUtDyWEpZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tMUtDyWEpZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tMUtDyWEpZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tMUtDyWEpZ .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tMUtDyWEpZ .nav-link {
  font-weight: 600!important;
}
.cid-tMUtDyWEpZ a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tMUtDyWEpZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tMUtDyWEpZ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tMUtDyWEpZ .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMUtDyWEpZ .navbar {
    height: 77px;
  }
  .cid-tMUtDyWEpZ .navbar.opened {
    height: auto;
  }
  .cid-tMUtDyWEpZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tNePyIrFLc img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-tNePyIrFLc H1 {
  color: #e6c63b;
  text-align: center;
}
.cid-tNePyIrFLc .mbr-text,
.cid-tNePyIrFLc .mbr-section-btn {
  color: #716c80;
}
.cid-tNePyIrFLc H3 {
  color: #ffffff;
  text-align: center;
}
.cid-tNePyIrFLc .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tNePyIrFLc .btn-info-outline {
  border: none;
  color: #47b5ed !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-tNePyIrFLc .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-tNePyIrFLc .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-tNePyIrFLc .btn-info-outline:hover {
  background-color: transparent!important;
  color: #a148ff !important;
  box-shadow: none!important;
}
.cid-tNePyIrFLc .btn-info-outline:active,
.cid-tNePyIrFLc .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-tNePyIrFLc DIV {
  color: #57468b;
}
.cid-tNePyIrFLc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNePyIrFLc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/tour2-1599x1200.jpg");
}
.cid-tNePyIrFLc .mbr-text,
.cid-tNePyIrFLc .media-content,
.cid-tNePyIrFLc .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tNeUnqNJSL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/ts.pool1.jpg");
}
.cid-tNeUnqNJSL h4 {
  margin-bottom: 0;
}
.cid-tNeUnqNJSL p {
  color: #767676;
}
.cid-tNeUnqNJSL .btn-info-outline {
  border: none;
  color: #47b5ed !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-tNeUnqNJSL .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-tNeUnqNJSL .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-tNeUnqNJSL .btn-info-outline:hover {
  background-color: transparent!important;
  color: #a148ff !important;
  box-shadow: none!important;
}
.cid-tNeUnqNJSL .btn-info-outline:active,
.cid-tNeUnqNJSL .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-tNeUnqNJSL .card-box {
  padding-top: 2rem;
}
.cid-tNeUnqNJSL .card-wrapper {
  height: 100%;
}
.cid-tNeUnqNJSL .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tNeUnqNJSL img {
  border-radius: 8px;
}
.cid-tNeUnqNJSL .card-title {
  color: #f70722;
}
.cid-tNeUnqNJSL .main-title {
  color: #ff6f45;
  text-align: center;
}
.cid-tNeUnqNJSL DIV {
  color: #57468b;
}
.cid-tNeUnqNJSL .card-img {
  width: auto;
}
.cid-tNeUnqNJSL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNeUnqNJSL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNeUnqNJSL .mbr-text,
.cid-tNeUnqNJSL .mbr-section-btn {
  color: #fafafa;
}
.cid-tNf0CQhu7v {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/ts.resto1.jpg");
}
.cid-tNf0CQhu7v H1 {
  color: #f70722;
  text-align: center;
}
.cid-tNf0CQhu7v .mbr-text,
.cid-tNf0CQhu7v .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-tNf0CQhu7v .img-box {
  position: relative;
}
.cid-tNf0CQhu7v .card-ico span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-tNf0CQhu7v .card-ico .ico1 {
  background-color: #ff8a73;
}
.cid-tNf0CQhu7v .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1.5rem !important;
}
.cid-tNf0CQhu7v .card {
  display: flex;
  flex-direction: row;
  max-width: 350px;
}
.cid-tNf0CQhu7v .img1 {
  position: absolute;
  top: 0;
  left: 3rem;
  z-index: 1;
}
.cid-tNf0CQhu7v .img2 {
  position: absolute;
  bottom: 0;
  right: 3rem;
  z-index: 2;
}
.cid-tNf0CQhu7v img {
  width: 48%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-tNf0CQhu7v .img-box {
    height: 500px;
  }
  .cid-tNf0CQhu7v .img1 {
    left: 1rem;
  }
  .cid-tNf0CQhu7v .img2 {
    right: 1rem;
  }
  .cid-tNf0CQhu7v img {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .cid-tNf0CQhu7v img {
    width: 60%;
  }
  .cid-tNf0CQhu7v .img-box {
    height: 300px;
  }
  .cid-tNf0CQhu7v .author-box {
    justify-content: center;
  }
  .cid-tNf0CQhu7v .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-tNf0CQhu7v .card .card-ico {
    margin-bottom: 2rem;
  }
  .cid-tNf0CQhu7v .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-tNf0CQhu7v .card-ico span {
    margin-right: 0rem;
  }
}
.cid-tNf0CQhu7v .author-box {
  display: flex;
  flex-direction: row;
}
.cid-tNf0CQhu7v .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-tNf0CQhu7v .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-tNf0CQhu7v h3,
.cid-tNf0CQhu7v h4 {
  margin: 0;
  padding: 0;
}
.cid-tNf0CQhu7v H3 {
  color: #57468b;
}
.cid-tNf0CQhu7v H4 {
  color: #716c80;
}
.cid-tNf0CQhu7v .card-title {
  color: #f70722;
  text-align: left;
}
.cid-tNf0CQhu7v .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNf0CQhu7v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNf0CQhu7v .mbr-text {
  text-align: left;
}
.cid-tNfeFkJnGs {
  padding-top: 15px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/ts.spa2-1.jpeg");
}
.cid-tNfeFkJnGs h4 {
  font-weight: 500;
  color: #ffffff;
}
.cid-tNfeFkJnGs p {
  color: #ffffff;
}
.cid-tNfeFkJnGs .card {
  margin-bottom: 2rem;
}
.cid-tNfeFkJnGs .card-img {
  border-radius: 0;
  padding: 2rem 2rem 0 2rem;
  background-color: #ca1227;
}
.cid-tNfeFkJnGs .card-img span {
  font-size: 100px;
  color: #ffffff;
}
.cid-tNfeFkJnGs .card-box {
  padding-bottom: 2rem;
  background-color: #ca1227;
  background: linear-gradient(#ca1227, transparent);
}
.cid-tNfeFkJnGs .card-box .card-title {
  margin: 0;
  padding: 2rem 2rem 0 2rem;
}
.cid-tNfeFkJnGs .card-box .mbr-text {
  margin-bottom: 0;
  padding: 2rem 2rem 0 2rem;
}
.cid-tNfeFkJnGs .card-box .mbr-section-btn {
  padding-top: 1rem;
}
.cid-tNfeFkJnGs .card-box .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-tNfeFkJnGs .card-title,
.cid-tNfeFkJnGs .card-img {
  color: #bbbbbb;
}
.cid-tNfnPs4OMN {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/ts.warung3.jpg");
}
.cid-tNfnPs4OMN H1 {
  color: #f70722;
  text-align: center;
}
.cid-tNfnPs4OMN .mbr-text,
.cid-tNfnPs4OMN .mbr-section-btn {
  color: #fafafa;
}
.cid-tNfnPs4OMN .img-box {
  position: relative;
}
.cid-tNfnPs4OMN .card-ico span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-tNfnPs4OMN .card-ico .ico1 {
  background-color: #ff8a73;
}
.cid-tNfnPs4OMN .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1.5rem !important;
}
.cid-tNfnPs4OMN .card {
  display: flex;
  flex-direction: row;
  max-width: 350px;
}
.cid-tNfnPs4OMN .img1 {
  position: absolute;
  top: 0;
  left: 3rem;
  z-index: 1;
}
.cid-tNfnPs4OMN .img2 {
  position: absolute;
  bottom: 0;
  right: 3rem;
  z-index: 2;
}
.cid-tNfnPs4OMN img {
  width: 48%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-tNfnPs4OMN .img-box {
    height: 500px;
  }
  .cid-tNfnPs4OMN .img1 {
    left: 1rem;
  }
  .cid-tNfnPs4OMN .img2 {
    right: 1rem;
  }
  .cid-tNfnPs4OMN img {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .cid-tNfnPs4OMN img {
    width: 60%;
  }
  .cid-tNfnPs4OMN .img-box {
    height: 300px;
  }
  .cid-tNfnPs4OMN .author-box {
    justify-content: center;
  }
  .cid-tNfnPs4OMN .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-tNfnPs4OMN .card .card-ico {
    margin-bottom: 2rem;
  }
  .cid-tNfnPs4OMN .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-tNfnPs4OMN .card-ico span {
    margin-right: 0rem;
  }
}
.cid-tNfnPs4OMN .author-box {
  display: flex;
  flex-direction: row;
}
.cid-tNfnPs4OMN .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-tNfnPs4OMN .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-tNfnPs4OMN h3,
.cid-tNfnPs4OMN h4 {
  margin: 0;
  padding: 0;
}
.cid-tNfnPs4OMN H3 {
  color: #57468b;
}
.cid-tNfnPs4OMN H4 {
  color: #716c80;
}
.cid-tNfnPs4OMN .card-title {
  color: #f70722;
}
.cid-tNfnPs4OMN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNfnPs4OMN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMUriUQgYw {
  padding-top: 255px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/dewadavid18.jpg");
  position: relative;
  overflow: hidden;
}
.cid-tMUriUQgYw svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-tMUriUQgYw .mbr-text,
.cid-tMUriUQgYw .mbr-section-btn {
  color: #fafafa;
}
.cid-tMUriUQgYw #e12_areaS3 {
  fill: #5e71db !important;
}
.cid-tMUriUQgYw #e19_areaS3 {
  fill: #bbbbbb !important;
}
.cid-tMUriUQgYw H1 {
  color: #5e71db;
}
.cid-tMUriUQgYw img {
  width: 70%;
  border-radius: 10px;
  animation: line 4s ease-in-out infinite;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-tMUriUQgYw .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #232323;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-tMUriUQgYw .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-tMUriUQgYw img {
    width: 100%;
  }
}
.cid-tMUriUQgYw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMUriUQgYw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNlU0aA28R {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e1dfdf;
}
.cid-tNlU0aA28R .fb-page,
.cid-tNlU0aA28R span,
.cid-tNlU0aA28R iframe {
  width: 500px;
  height: 620px;
}
.cid-tNlU0aA28R blockquote {
  display: none;
}
.cid-tNlU0aA28R .fb-page {
  background-color: #1877f2;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 262 266.895'><path id='path3087' fill='%23fff' d='M182.409,262.307v-99.803h33.499l5.016-38.895h-38.515V98.777c0-11.261,3.127-18.935,19.275-18.935 l20.596-0.009V45.045c-3.562-0.474-15.788-1.533-30.012-1.533c-29.695,0-50.025,18.126-50.025,51.413v28.684h-33.585v38.895h33.585 v99.803H182.409z'></path></svg>");
}
.cid-tNlsq5Z16F {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #e1dfdf;
}
@media (max-width: 767px) {
  .cid-tNlsq5Z16F .content {
    text-align: center;
  }
  .cid-tNlsq5Z16F .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tNlsq5Z16F .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tNlsq5Z16F .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tNlsq5Z16F .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tNlsq5Z16F .google-map {
  height: 25rem;
  position: relative;
}
.cid-tNlsq5Z16F .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tNlsq5Z16F .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tNlsq5Z16F .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tNlsq5Z16F .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tNlsq5Z16F .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tNlsq5Z16F .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tNlsq5Z16F .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tNlsq5Z16F .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tNlsq5Z16F .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tNlsq5Z16F .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tNlsq5Z16F .list {
  list-style-type: none;
  padding: 0;
}
.cid-tNlsq5Z16F .mbr-text {
  color: #f25e6e;
}
.cid-tNlsq5Z16F H5 {
  color: #ca1227;
}
.cid-tNizPGB3lr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ca1227;
}
