body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  line-height: 1.5;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.875rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 3rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  line-height: 2;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- 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: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem !important;
    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.5rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.4rem 1rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 8px;
}
.bg-primary {
  background-color: #fd603d !important;
}
.bg-success {
  background-color: #fff900 !important;
}
.bg-info {
  background-color: #61728a !important;
}
.bg-warning {
  background-color: #d52b27 !important;
}
.bg-danger {
  background-color: #1352ff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fd603d !important;
  border-color: #fd603d !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #eb2d02 !important;
  border-color: #eb2d02 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #eb2d02 !important;
  border-color: #eb2d02 !important;
}
.btn-primary:hover {
  background-color: #fd603d !important;
  border-color: #fd603d !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #282f39 !important;
  border-color: #282f39 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #080a0c !important;
  border-color: #080a0c !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #080a0c !important;
  border-color: #080a0c !important;
}
.btn-secondary:hover {
  background-color: #fd603d !important;
  border-color: #fd603d !important;
}
.btn-info,
.btn-info:active {
  background-color: #61728a !important;
  border-color: #61728a !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #414d5d !important;
  border-color: #414d5d !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #414d5d !important;
  border-color: #414d5d !important;
}
.btn-info:hover {
  background-color: #fd603d !important;
  border-color: #fd603d !important;
}
.btn-success,
.btn-success:active {
  background-color: #fff900 !important;
  border-color: #fff900 !important;
  color: #000000 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
  background-color: #b3ae00 !important;
  border-color: #b3ae00 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #b3ae00 !important;
  border-color: #b3ae00 !important;
}
.btn-success:hover {
  background-color: #fd603d !important;
  border-color: #fd603d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #d52b27 !important;
  border-color: #d52b27 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #941e1b !important;
  border-color: #941e1b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #941e1b !important;
  border-color: #941e1b !important;
}
.btn-warning:hover {
  background-color: #fd603d !important;
  border-color: #fd603d !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #1352ff !important;
  border-color: #1352ff !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0035c5 !important;
  border-color: #0035c5 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0035c5 !important;
  border-color: #0035c5 !important;
}
.btn-danger:hover {
  background-color: #fd603d !important;
  border-color: #fd603d !important;
}
.btn-white,
.btn-white:active {
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
  color: #737373 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #737373 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #737373 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-white:hover {
  background-color: #fd603d !important;
  border-color: #fd603d !important;
}
.btn-white:hover {
  color: white!important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:hover {
  background-color: #fd603d !important;
  border-color: #fd603d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #fd603d;
  color: #fd603d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #fd603d;
  border-color: #fd603d;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #fd603d !important;
  border-color: #fd603d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #282f39;
  color: #282f39;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #282f39;
  border-color: #282f39;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #282f39 !important;
  border-color: #282f39 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #61728a;
  color: #61728a;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #61728a;
  border-color: #61728a;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #61728a !important;
  border-color: #61728a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #fff900;
  color: #fff900;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000;
  background-color: #fff900;
  border-color: #fff900;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #fff900 !important;
  border-color: #fff900 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #d52b27;
  color: #d52b27;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #d52b27;
  border-color: #d52b27;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #d52b27 !important;
  border-color: #d52b27 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #1352ff;
  color: #1352ff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #1352ff;
  border-color: #1352ff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #1352ff !important;
  border-color: #1352ff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background: none;
  border-color: #f3f3f3;
  color: #f3f3f3;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #737373;
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #737373 !important;
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
}
.text-primary {
  color: #fd603d !important;
}
.text-secondary {
  color: #282f39 !important;
}
.text-success {
  color: #fff900 !important;
}
.text-info {
  color: #61728a !important;
}
.text-warning {
  color: #d52b27 !important;
}
.text-danger {
  color: #1352ff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #feb3a2 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #526075 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #fffb66 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #99a6b8 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #e77e7b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #799dff !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #61728a;
}
.alert-warning {
  background-color: #d52b27;
}
.alert-danger {
  background-color: #1352ff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fd603d;
  border-color: #fd603d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #fd603d;
}
.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: #fffecc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #a8b3c2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #f7d2d1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfe8ff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #fd603d;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.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: #fd603d;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #fd603d;
  border-bottom-color: #fd603d;
}
.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: #fd603d !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: #282f39 !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='%23fd603d' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-rZq2OOWt7M .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-rZq2OOWt7M .nav-item,
.cid-rZq2OOWt7M .nav-link,
.cid-rZq2OOWt7M .navbar-caption {
  font-weight: normal;
}
.cid-rZq2OOWt7M .nav-item:focus,
.cid-rZq2OOWt7M .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rZq2OOWt7M .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-rZq2OOWt7M .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-rZq2OOWt7M .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rZq2OOWt7M .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rZq2OOWt7M .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rZq2OOWt7M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rZq2OOWt7M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-rZq2OOWt7M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rZq2OOWt7M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rZq2OOWt7M .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-rZq2OOWt7M .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rZq2OOWt7M .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rZq2OOWt7M .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rZq2OOWt7M .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rZq2OOWt7M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rZq2OOWt7M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rZq2OOWt7M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-rZq2OOWt7M .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rZq2OOWt7M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rZq2OOWt7M .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-rZq2OOWt7M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rZq2OOWt7M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-rZq2OOWt7M .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rZq2OOWt7M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rZq2OOWt7M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rZq2OOWt7M .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rZq2OOWt7M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rZq2OOWt7M .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-rZq2OOWt7M .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rZq2OOWt7M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rZq2OOWt7M .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-rZq2OOWt7M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rZq2OOWt7M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rZq2OOWt7M .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rZq2OOWt7M .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rZq2OOWt7M .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rZq2OOWt7M .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rZq2OOWt7M .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rZq2OOWt7M .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rZq2OOWt7M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rZq2OOWt7M .dropdown-item.active,
.cid-rZq2OOWt7M .dropdown-item:active {
  background-color: transparent;
}
.cid-rZq2OOWt7M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rZq2OOWt7M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rZq2OOWt7M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rZq2OOWt7M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rZq2OOWt7M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rZq2OOWt7M ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rZq2OOWt7M .navbar-buttons {
  text-align: center;
}
.cid-rZq2OOWt7M .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-rZq2OOWt7M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rZq2OOWt7M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-rZq2OOWt7M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rZq2OOWt7M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rZq2OOWt7M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rZq2OOWt7M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rZq2OOWt7M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZq2OOWt7M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rZq2OOWt7M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rZq2OOWt7M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZq2OOWt7M .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rZq2OOWt7M a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-rZq2OOWt7M .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rZq2OOWt7M .soc-item {
  margin: .5rem .3rem;
}
.cid-rZq2OOWt7M .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZq2OOWt7M .navbar {
    height: 77px;
  }
  .cid-rZq2OOWt7M .navbar.opened {
    height: auto;
  }
  .cid-rZq2OOWt7M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s4H8a4ElOL {
  padding-top: 135px;
  padding-bottom: 60px;
}
.cid-s4H8a4ElOL .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-s4H8a4ElOL .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-s4H8a4ElOL .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-s4H8a4ElOL .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s4H8a4ElOL .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-s4H8a4ElOL .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-s4H8a4ElOL .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-s4H8a4ElOL .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-s4H8a4ElOL .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-s4H8a4ElOL .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-s4H8a4ElOL .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-s4H8a4ElOL .card .wrapper .mbr-section-title,
.cid-s4H8a4ElOL .mbr-section-btn,
.cid-s4H8a4ElOL .mbr-list .list {
  text-align: center;
}
.cid-sggMdcvFns {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sggMdcvFns .img-wrap {
  position: relative;
}
.cid-sggMdcvFns .img-wrap img {
  width: 100%;
}
.cid-sggMdcvFns .img-wrap .icon-label {
  padding: 19px;
  left: auto;
  top: 0;
  right: 0;
  bottom: auto;
  background-color: #1352ff;
  z-index: 100;
  position: absolute;
}
.cid-sggMdcvFns .img-wrap .icon-label .mbr-iconfont {
  color: #ffffff;
  font-size: 27px;
  line-height: 1;
}
@media (max-width: 768px) {
  .cid-sggMdcvFns .img-wrap .icon-label {
    left: 0;
    top: auto;
    right: auto;
    bottom: 0;
  }
}
.cid-sggMdcvFns .mbr-section-title {
  color: #ffffff;
}
.cid-sggMdcvFns .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sggMdcvFns .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sggMdcvFns .mbr-section-text {
  color: #ffffff;
}
.cid-sggMdcvFns .form-control,
.cid-sggMdcvFns .form-check-label {
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}
.cid-sggMdcvFns .form-group .wrap span {
  display: none;
}
.cid-sggMdcvFns .text-blocks .mbr-text {
  color: #ffffff;
}
.cid-sggMdcvFns a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-sggMdcvFns .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-sggMdcvFns .input-group-btn {
  display: block;
  text-align: left;
}
.cid-sggMdcvFns .input-group-btn .btn-sm {
  padding: 7px 39px;
}
.cid-sggMdcvFns textarea.form-control {
  resize: none;
}
@media (max-width: 767px) {
  .cid-sggMdcvFns h2 {
    padding-top: 2rem;
  }
  .cid-sggMdcvFns .input-group-btn {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .cid-sggMdcvFns .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-sggMdcvFns .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
.cid-sggMdcvFns .gdpr-block {
  padding: 20px;
  text-align: left;
}
.cid-sggMdcvFns .gdpr-block span {
  line-height: 1;
}
.cid-sggMdcvFns .gdpr-block label span.textGDPR input[name='gdpr'] {
  top: 6px;
}
.cid-sggMdcvFns .mbr-section-title,
.cid-sggMdcvFns .col {
  color: #181818;
}
#custom-html-1c6 {
  /* Type valid CSS here */
}
#custom-html-1c6 div {
  padding: 30px 0;
  color: #777;
  text-align: center;
}
#custom-html-1c6 p {
  font-size: 50px;
  color: #777;
}
.cid-rZq2Re8t6T {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rZq2Re8t6T .mbr-section-title {
  color: #06182d;
}
.cid-rZq2Re8t6T .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-rZq2Re8t6T .mbr-section-subtitle {
  color: #06182d;
}
.cid-rZq2Re8t6T .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-rZq2Re8t6T .card:nth-child(even) {
  margin-top: 70px;
}
.cid-rZq2Re8t6T .card:nth-child(odd)::after {
  content: '';
  background-size: contain;
  background-image: url("../../../assets/images/arrow2.webp");
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 185px;
  height: 50px;
  z-index: 4;
  top: 1px;
  right: -148px;
}
.cid-rZq2Re8t6T .card:nth-child(2)::after {
  content: '';
  background-size: contain;
  background-image: url("../../../assets/images/arrow2.webp");
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 175px;
  height: 80px;
  z-index: 4;
  bottom: -12px;
  right: -100px;
  transform: scale(1, -1);
}
.cid-rZq2Re8t6T .card .card-wrapper {
  height: 100%;
}
.cid-rZq2Re8t6T .card .card-wrapper .card-img {
  position: relative;
}
.cid-rZq2Re8t6T .card .card-wrapper .card-img:hover img {
  transform: rotateY(180deg);
}
.cid-rZq2Re8t6T .card .card-wrapper .card-img img {
  border-radius: 100%;
  height: 200px;
  width: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s all ease-in-out;
}
.cid-rZq2Re8t6T .card .card-wrapper .card-box {
  padding-top: 1rem;
}
.cid-rZq2Re8t6T .card .card-wrapper .card-box .card-title {
  margin-bottom: 0;
  color: #06182d;
  text-align: center;
  font-weight: 700;
}
.cid-rZq2Re8t6T .card .card-wrapper .card-box .mbr-text {
  text-align: center;
  color: #030f1c;
}
.cid-rZq2Re8t6T .card .card-wrapper .card-box .card-title {
  color: #ff653c;
}
.cid-rZq2Re8t6T .card .card-wrapper .card-box .mbr-text {
  text-align: center;
}
.cid-sgPsnursEB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/paint-correction-orlando-2000x1500.webp");
}
.cid-sgPsnursEB .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sgPsnursEB .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sgPsnursEB .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-sgPsnursEB .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sgPsnursEB .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sgPsnursEB .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sgPsnursEB .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sgPsnursEB .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sgPsnursEB .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sgPsnursEB .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sgPsnursEB .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sgPsnursEB .card .wrapper .mbr-section-title,
.cid-sgPsnursEB .mbr-section-btn,
.cid-sgPsnursEB .mbr-list .list {
  text-align: center;
  color: #f1ecec;
}
.cid-sgQcY3qySW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sgQcY3qySW .mbr-section-title {
  color: #06182d;
}
.cid-sgQcY3qySW .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sgQcY3qySW .mbr-section-subtitle {
  color: #06182d;
}
.cid-sgQcY3qySW .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sgQcY3qySW .card:nth-child(even) {
  margin-top: 70px;
}
.cid-sgQcY3qySW .card:nth-child(odd)::after {
  content: "";
  background-size: contain;
  background-image: url("../../../assets/images/arrow2.webp");
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 185px;
  height: 50px;
  z-index: 4;
  top: 1px;
  right: -148px;
}
.cid-sgQcY3qySW .card:nth-child(2)::after {
  content: "";
  background-size: contain;
  background-image: url("../../../assets/images/arrow2.webp");
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 175px;
  height: 80px;
  z-index: 4;
  bottom: -12px;
  right: -100px;
  transform: scale(1, -1);
}
.cid-sgQcY3qySW .card .card-wrapper {
  height: 100%;
}
.cid-sgQcY3qySW .card .card-wrapper .card-img {
  position: relative;
}
.cid-sgQcY3qySW .card .card-wrapper .card-img:hover img {
  transform: rotateY(180deg);
}
.cid-sgQcY3qySW .card .card-wrapper .card-img img {
  border-radius: 100%;
  height: 200px;
  width: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s all ease-in-out;
  margin-left: auto;
  margin-right: auto;
}
.cid-sgQcY3qySW .card .card-wrapper .card-box {
  padding-top: 1rem;
}
.cid-sgQcY3qySW .card .card-wrapper .card-box .card-title {
  margin-bottom: 0;
  color: #06182d;
  text-align: center;
  font-weight: 700;
}
.cid-sgQcY3qySW .card .card-wrapper .card-box .mbr-text {
  text-align: center;
  color: #030f1c;
}
@media (max-width: 991px) {
  .cid-sgQcY3qySW .card:after {
    background-image: none !important;
    display: none !important;
  }
  .cid-sgQcY3qySW .card:nth-child(even) {
    margin-top: 0;
  }
}
#custom-html-1 {
  /* Type valid CSS here */
}
#custom-html-1 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1 p {
  font-size: 60px;
  color: #777;
}
.cid-sdqoIJJiVw {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sdqoIJJiVw .img-wrap img {
  width: 100%;
}
.cid-sdqoIJJiVw .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sdqoIJJiVw .card .wrapper {
  overflow: hidden;
}
.cid-sdqoIJJiVw .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-sdqoIJJiVw .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sdqoIJJiVw .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-sdqoIJJiVw .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sdqoIJJiVw .card .wrapper .mbr-text {
  color: #61728a;
  font-weight: 300;
}
.cid-sdqoIJJiVw .card .wrapper .sign-wrap {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cid-sdqoIJJiVw .card .wrapper .sign-wrap::before {
  right: 65.8%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sdqoIJJiVw .card .wrapper .sign-wrap img {
  width: 140px;
}
.cid-sdqoIJJiVw .card .wrapper .sign-wrap::after {
  left: 65.9%;
  height: 2px;
  transform: translateY(-50%);
  width: 250px;
  top: 50%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #dfe3e8;
}
.cid-sdqoIJJiVw .card .wrapper .mbr-section-title {
  text-align: center;
}
.cid-sdqTmJtZxC .google-map {
  height: 30rem;
  position: relative;
}
.cid-sdqTmJtZxC .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sdqTmJtZxC .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-sdqTmJtZxC .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sdqTmJtZxC .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv41Rp9ml {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv41Rp9ml .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv41Rp9ml .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv41Rp9ml .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv41Rp9ml .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv41Rp9ml .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv41Rp9ml .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv41Rp9ml .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv41Rp9ml .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv41Rp9ml .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv41Rp9ml .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv41Rp9ml .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sc73U5IsTo .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sc73U5IsTo .nav-item,
.cid-sc73U5IsTo .nav-link,
.cid-sc73U5IsTo .navbar-caption {
  font-weight: normal;
}
.cid-sc73U5IsTo .nav-item:focus,
.cid-sc73U5IsTo .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sc73U5IsTo .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sc73U5IsTo .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sc73U5IsTo .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sc73U5IsTo .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sc73U5IsTo .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sc73U5IsTo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sc73U5IsTo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sc73U5IsTo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sc73U5IsTo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sc73U5IsTo .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sc73U5IsTo .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sc73U5IsTo .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sc73U5IsTo .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sc73U5IsTo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sc73U5IsTo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sc73U5IsTo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sc73U5IsTo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sc73U5IsTo .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sc73U5IsTo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sc73U5IsTo .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-sc73U5IsTo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sc73U5IsTo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sc73U5IsTo .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sc73U5IsTo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sc73U5IsTo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sc73U5IsTo .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sc73U5IsTo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sc73U5IsTo .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-sc73U5IsTo .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sc73U5IsTo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sc73U5IsTo .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sc73U5IsTo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sc73U5IsTo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sc73U5IsTo .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sc73U5IsTo .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sc73U5IsTo .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sc73U5IsTo .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sc73U5IsTo .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sc73U5IsTo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sc73U5IsTo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sc73U5IsTo .dropdown-item.active,
.cid-sc73U5IsTo .dropdown-item:active {
  background-color: transparent;
}
.cid-sc73U5IsTo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sc73U5IsTo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sc73U5IsTo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sc73U5IsTo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sc73U5IsTo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sc73U5IsTo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sc73U5IsTo .navbar-buttons {
  text-align: center;
}
.cid-sc73U5IsTo .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sc73U5IsTo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sc73U5IsTo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-sc73U5IsTo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sc73U5IsTo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sc73U5IsTo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sc73U5IsTo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sc73U5IsTo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sc73U5IsTo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sc73U5IsTo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sc73U5IsTo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sc73U5IsTo .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sc73U5IsTo a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sc73U5IsTo .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sc73U5IsTo .soc-item {
  margin: .5rem .3rem;
}
.cid-sc73U5IsTo .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sc73U5IsTo .navbar {
    height: 77px;
  }
  .cid-sc73U5IsTo .navbar.opened {
    height: auto;
  }
  .cid-sc73U5IsTo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-seEyKwlknp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-seEyKwlknp .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-seEyKwlknp .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-seEyKwlknp .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-seEyKwlknp .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-seEyKwlknp .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-seEyKwlknp .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-seEyKwlknp .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-seEyKwlknp .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-seEyKwlknp .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-seEyKwlknp .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-seEyKwlknp .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-seEyKwlknp .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-seEyKwlknp .card .wrapper .mbr-section-title,
.cid-seEyKwlknp .mbr-section-btn,
.cid-seEyKwlknp .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-seEyKwlknp .card .wrapper .mbr-list .list,
.cid-seEyKwlknp .card .wrapper .mbr-section-btn {
  color: #000000;
}
.cid-sndgc22AyR {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sndgc22AyR .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-sndgc22AyR .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #fd603d;
}
.cid-sndgc22AyR .contents .mbr-subtitle {
  color: #282f39;
  margin-bottom: 10px;
}
.cid-sndgc22AyR .contents .mbr-section-text {
  margin-top: 20px;
  color: #61728a;
}
.cid-sndgc22AyR .card-wrapper {
  height: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-sndgc22AyR .card-wrapper .card-box {
  padding: 35px 30px 38px;
  border: 1px solid #dcdfe2;
}
.cid-sndgc22AyR .card-wrapper .card-box .card-title {
  color: #fd603d;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-sndgc22AyR .card-wrapper .card-box .card-title:hover {
  color: #fd603d;
  transition: 0.3s all;
}
.cid-sndgc22AyR .card-wrapper .card-box .card-subtitle {
  color: #fd603d;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-sndgc22AyR .card-wrapper .card-box .card-subtitle span {
  color: #83868c;
}
.cid-sndgc22AyR .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  color: #61728a;
}
.cid-sndgc22AyR .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-sndgc22AyR .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-sndgc22AyR .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-sndgc22AyR .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-sndgc22AyR .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-sndgc22AyR .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-sndgc22AyR .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
.cid-sndgc22AyR .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
}
.cid-sndgc22AyR .card-wrapper .card-img img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  vertical-align: middle;
  transition: all .8s;
  opacity: 1;
  width: 100%;
  max-width: 100%;
  margin: auto;
  height: auto;
  display: block;
}
.cid-sndgc22AyR .card-wrapper .card-img:hover img {
  transform: scale3d(1.05, 1.05, 1);
  opacity: .9;
}
@media (max-width: 768px) {
  .cid-sndgc22AyR .card-wrapper .card-box .mbr-section-btn .link {
    justify-content: center;
  }
}
.cid-sndip5De56 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sndip5De56 .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-sndip5De56 .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #fd603d;
}
.cid-sndip5De56 .contents .mbr-subtitle {
  color: #282f39;
  margin-bottom: 10px;
}
.cid-sndip5De56 .contents .mbr-section-text {
  margin-top: 20px;
  color: #61728a;
}
.cid-sndip5De56 .card-wrapper {
  height: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-sndip5De56 .card-wrapper .card-box {
  padding: 35px 30px 38px;
  border: 1px solid #dcdfe2;
}
.cid-sndip5De56 .card-wrapper .card-box .card-title {
  color: #fd603d;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-sndip5De56 .card-wrapper .card-box .card-title:hover {
  color: #fd603d;
  transition: 0.3s all;
}
.cid-sndip5De56 .card-wrapper .card-box .card-subtitle {
  color: #fd603d;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-sndip5De56 .card-wrapper .card-box .card-subtitle span {
  color: #83868c;
}
.cid-sndip5De56 .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  color: #61728a;
}
.cid-sndip5De56 .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-sndip5De56 .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-sndip5De56 .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-sndip5De56 .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-sndip5De56 .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-sndip5De56 .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-sndip5De56 .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
.cid-sndip5De56 .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
}
.cid-sndip5De56 .card-wrapper .card-img img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  vertical-align: middle;
  transition: all .8s;
  opacity: 1;
  width: 100%;
  max-width: 100%;
  margin: auto;
  height: auto;
  display: block;
}
.cid-sndip5De56 .card-wrapper .card-img:hover img {
  transform: scale3d(1.05, 1.05, 1);
  opacity: .9;
}
@media (max-width: 768px) {
  .cid-sndip5De56 .card-wrapper .card-box .mbr-section-btn .link {
    justify-content: center;
  }
}
.cid-sndpDEQOQt {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sndpDEQOQt .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-sndpDEQOQt .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #fd603d;
}
.cid-sndpDEQOQt .contents .mbr-subtitle {
  color: #282f39;
  margin-bottom: 10px;
}
.cid-sndpDEQOQt .contents .mbr-section-text {
  margin-top: 20px;
  color: #61728a;
}
.cid-sndpDEQOQt .card-wrapper {
  height: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-sndpDEQOQt .card-wrapper .card-box {
  padding: 35px 30px 38px;
  border: 1px solid #dcdfe2;
}
.cid-sndpDEQOQt .card-wrapper .card-box .card-title {
  color: #fd603d;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-sndpDEQOQt .card-wrapper .card-box .card-title:hover {
  color: #fd603d;
  transition: 0.3s all;
}
.cid-sndpDEQOQt .card-wrapper .card-box .card-subtitle {
  color: #fd603d;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-sndpDEQOQt .card-wrapper .card-box .card-subtitle span {
  color: #83868c;
}
.cid-sndpDEQOQt .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  color: #61728a;
}
.cid-sndpDEQOQt .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-sndpDEQOQt .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-sndpDEQOQt .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-sndpDEQOQt .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-sndpDEQOQt .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-sndpDEQOQt .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-sndpDEQOQt .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
.cid-sndpDEQOQt .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
}
.cid-sndpDEQOQt .card-wrapper .card-img img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  vertical-align: middle;
  transition: all .8s;
  opacity: 1;
  width: 100%;
  max-width: 100%;
  margin: auto;
  height: auto;
  display: block;
}
.cid-sndpDEQOQt .card-wrapper .card-img:hover img {
  transform: scale3d(1.05, 1.05, 1);
  opacity: .9;
}
@media (max-width: 768px) {
  .cid-sndpDEQOQt .card-wrapper .card-box .mbr-section-btn .link {
    justify-content: center;
  }
}
.cid-sndvoxZK63 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sndvoxZK63 .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-sndvoxZK63 .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #fd603d;
}
.cid-sndvoxZK63 .contents .mbr-subtitle {
  color: #282f39;
  margin-bottom: 10px;
}
.cid-sndvoxZK63 .contents .mbr-section-text {
  margin-top: 20px;
  color: #61728a;
}
.cid-sndvoxZK63 .card-wrapper {
  height: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-sndvoxZK63 .card-wrapper .card-box {
  padding: 35px 30px 38px;
  border: 1px solid #dcdfe2;
}
.cid-sndvoxZK63 .card-wrapper .card-box .card-title {
  color: #fd603d;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-sndvoxZK63 .card-wrapper .card-box .card-title:hover {
  color: #fd603d;
  transition: 0.3s all;
}
.cid-sndvoxZK63 .card-wrapper .card-box .card-subtitle {
  color: #fd603d;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-sndvoxZK63 .card-wrapper .card-box .card-subtitle span {
  color: #83868c;
}
.cid-sndvoxZK63 .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  color: #61728a;
}
.cid-sndvoxZK63 .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-sndvoxZK63 .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-sndvoxZK63 .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-sndvoxZK63 .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-sndvoxZK63 .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-sndvoxZK63 .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-sndvoxZK63 .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
.cid-sndvoxZK63 .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
}
.cid-sndvoxZK63 .card-wrapper .card-img img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  vertical-align: middle;
  transition: all .8s;
  opacity: 1;
  width: 100%;
  max-width: 100%;
  margin: auto;
  height: auto;
  display: block;
}
.cid-sndvoxZK63 .card-wrapper .card-img:hover img {
  transform: scale3d(1.05, 1.05, 1);
  opacity: .9;
}
@media (max-width: 768px) {
  .cid-sndvoxZK63 .card-wrapper .card-box .mbr-section-btn .link {
    justify-content: center;
  }
}
.cid-sndwX3Lpgg {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sndwX3Lpgg .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-sndwX3Lpgg .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #fd603d;
}
.cid-sndwX3Lpgg .contents .mbr-subtitle {
  color: #282f39;
  margin-bottom: 10px;
}
.cid-sndwX3Lpgg .contents .mbr-section-text {
  margin-top: 20px;
  color: #61728a;
}
.cid-sndwX3Lpgg .card-wrapper {
  height: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-sndwX3Lpgg .card-wrapper .card-box {
  padding: 35px 30px 38px;
  border: 1px solid #dcdfe2;
}
.cid-sndwX3Lpgg .card-wrapper .card-box .card-title {
  color: #fd603d;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-sndwX3Lpgg .card-wrapper .card-box .card-title:hover {
  color: #fd603d;
  transition: 0.3s all;
}
.cid-sndwX3Lpgg .card-wrapper .card-box .card-subtitle {
  color: #fd603d;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-sndwX3Lpgg .card-wrapper .card-box .card-subtitle span {
  color: #83868c;
}
.cid-sndwX3Lpgg .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  color: #61728a;
}
.cid-sndwX3Lpgg .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-sndwX3Lpgg .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-sndwX3Lpgg .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-sndwX3Lpgg .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-sndwX3Lpgg .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-sndwX3Lpgg .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-sndwX3Lpgg .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
.cid-sndwX3Lpgg .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
}
.cid-sndwX3Lpgg .card-wrapper .card-img img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  vertical-align: middle;
  transition: all .8s;
  opacity: 1;
  width: 100%;
  max-width: 100%;
  margin: auto;
  height: auto;
  display: block;
}
.cid-sndwX3Lpgg .card-wrapper .card-img:hover img {
  transform: scale3d(1.05, 1.05, 1);
  opacity: .9;
}
@media (max-width: 768px) {
  .cid-sndwX3Lpgg .card-wrapper .card-box .mbr-section-btn .link {
    justify-content: center;
  }
}
.cid-u9KvIXPUmB {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9KvIXPUmB .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u9KvIXPUmB .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-u9KvIXPUmB .card .wrapper .mbr-section-title span:first-child {
  color: #1352ff;
}
.cid-u9KvIXPUmB .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #1352ff;
  background: linear-gradient(#1352ff 0%, #1352ff 69%, #1352ff 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u9KvIXPUmB .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u9KvIXPUmB .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u9KvIXPUmB .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-u9KvIXPUmB .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-u9KvIXPUmB .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u9KvIXPUmB .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u9KvIXPUmB .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u9KvIXPUmB .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-u9KvIXPUmB .card .wrapper .mbr-section-title,
.cid-u9KvIXPUmB .mbr-section-btn,
.cid-u9KvIXPUmB .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-u9KvIXPUmB .card .wrapper .mbr-section-title,
.cid-u9KvIXPUmB .mbr-section-btn,
.cid-u9KvIXPUmB .mbr-list .list DIV {
  text-align: center;
}
#custom-html-4c {
  /* Type valid CSS here */
}
#custom-html-4c div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-4c p {
  font-size: 60px;
  color: #777;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv9KiWQkc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv9KiWQkc .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv9KiWQkc .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv9KiWQkc .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv9KiWQkc .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv9KiWQkc .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv9KiWQkc .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv9KiWQkc .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv9KiWQkc .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv9KiWQkc .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv9KiWQkc .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv9KiWQkc .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sc1qGW42cM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sc1qGW42cM .nav-item,
.cid-sc1qGW42cM .nav-link,
.cid-sc1qGW42cM .navbar-caption {
  font-weight: normal;
}
.cid-sc1qGW42cM .nav-item:focus,
.cid-sc1qGW42cM .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sc1qGW42cM .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sc1qGW42cM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sc1qGW42cM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sc1qGW42cM .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sc1qGW42cM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sc1qGW42cM .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sc1qGW42cM .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sc1qGW42cM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sc1qGW42cM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sc1qGW42cM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sc1qGW42cM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sc1qGW42cM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sc1qGW42cM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sc1qGW42cM .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-sc1qGW42cM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sc1qGW42cM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sc1qGW42cM .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sc1qGW42cM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sc1qGW42cM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sc1qGW42cM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sc1qGW42cM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sc1qGW42cM .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-sc1qGW42cM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sc1qGW42cM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sc1qGW42cM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sc1qGW42cM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sc1qGW42cM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sc1qGW42cM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sc1qGW42cM .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sc1qGW42cM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sc1qGW42cM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sc1qGW42cM .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sc1qGW42cM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sc1qGW42cM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sc1qGW42cM .dropdown-item.active,
.cid-sc1qGW42cM .dropdown-item:active {
  background-color: transparent;
}
.cid-sc1qGW42cM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sc1qGW42cM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sc1qGW42cM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sc1qGW42cM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sc1qGW42cM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sc1qGW42cM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sc1qGW42cM .navbar-buttons {
  text-align: center;
}
.cid-sc1qGW42cM .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sc1qGW42cM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sc1qGW42cM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sc1qGW42cM a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sc1qGW42cM .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sc1qGW42cM .soc-item {
  margin: .5rem .3rem;
}
.cid-sc1qGW42cM .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sc1qGW42cM .navbar {
    height: 77px;
  }
  .cid-sc1qGW42cM .navbar.opened {
    height: auto;
  }
  .cid-sc1qGW42cM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sc7s49cxDa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sc7s49cxDa .img-wrap {
  position: relative;
}
.cid-sc7s49cxDa .img-wrap img {
  width: 100%;
}
.cid-sc7s49cxDa .img-wrap .icon-label {
  padding: 19px;
  left: auto;
  top: 0;
  right: 0;
  bottom: auto;
  background-color: #1352ff;
  z-index: 100;
  position: absolute;
}
.cid-sc7s49cxDa .img-wrap .icon-label .mbr-iconfont {
  color: #ffffff;
  font-size: 27px;
  line-height: 1;
}
@media (max-width: 768px) {
  .cid-sc7s49cxDa .img-wrap .icon-label {
    left: 0;
    top: auto;
    right: auto;
    bottom: 0;
  }
}
.cid-sc7s49cxDa .mbr-section-title {
  color: #ffffff;
}
.cid-sc7s49cxDa .mbr-section-subtitle {
  color: #181818;
}
.cid-sc7s49cxDa .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sc7s49cxDa .mbr-section-text {
  color: #ffffff;
}
.cid-sc7s49cxDa .form-control,
.cid-sc7s49cxDa .form-check-label {
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}
.cid-sc7s49cxDa .form-group .wrap span {
  display: none;
}
.cid-sc7s49cxDa .text-blocks .mbr-text {
  color: #ffffff;
}
.cid-sc7s49cxDa a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-sc7s49cxDa .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-sc7s49cxDa .input-group-btn {
  display: block;
  text-align: left;
}
.cid-sc7s49cxDa .input-group-btn .btn-sm {
  padding: 7px 39px;
}
.cid-sc7s49cxDa textarea.form-control {
  resize: none;
}
@media (max-width: 767px) {
  .cid-sc7s49cxDa h2 {
    padding-top: 2rem;
  }
  .cid-sc7s49cxDa .input-group-btn {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .cid-sc7s49cxDa .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-sc7s49cxDa .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
.cid-sc7s49cxDa .gdpr-block {
  padding: 20px;
  text-align: left;
}
.cid-sc7s49cxDa .gdpr-block span {
  line-height: 1;
}
.cid-sc7s49cxDa .gdpr-block label span.textGDPR input[name='gdpr'] {
  top: 6px;
}
#custom-html-gv {
  /* Type valid CSS here */
}
#custom-html-gv div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-gv p {
  font-size: 60px;
  color: #777;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv9hW0qxE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv9hW0qxE .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv9hW0qxE .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv9hW0qxE .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv9hW0qxE .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv9hW0qxE .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv9hW0qxE .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv9hW0qxE .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv9hW0qxE .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv9hW0qxE .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv9hW0qxE .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv9hW0qxE .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sc1qGW42cM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sc1qGW42cM .nav-item,
.cid-sc1qGW42cM .nav-link,
.cid-sc1qGW42cM .navbar-caption {
  font-weight: normal;
}
.cid-sc1qGW42cM .nav-item:focus,
.cid-sc1qGW42cM .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sc1qGW42cM .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sc1qGW42cM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sc1qGW42cM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sc1qGW42cM .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sc1qGW42cM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sc1qGW42cM .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sc1qGW42cM .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sc1qGW42cM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sc1qGW42cM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sc1qGW42cM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sc1qGW42cM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sc1qGW42cM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sc1qGW42cM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sc1qGW42cM .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-sc1qGW42cM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sc1qGW42cM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sc1qGW42cM .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sc1qGW42cM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sc1qGW42cM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sc1qGW42cM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sc1qGW42cM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sc1qGW42cM .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-sc1qGW42cM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sc1qGW42cM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sc1qGW42cM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sc1qGW42cM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sc1qGW42cM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sc1qGW42cM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sc1qGW42cM .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sc1qGW42cM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sc1qGW42cM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sc1qGW42cM .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sc1qGW42cM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sc1qGW42cM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sc1qGW42cM .dropdown-item.active,
.cid-sc1qGW42cM .dropdown-item:active {
  background-color: transparent;
}
.cid-sc1qGW42cM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sc1qGW42cM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sc1qGW42cM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sc1qGW42cM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sc1qGW42cM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sc1qGW42cM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sc1qGW42cM .navbar-buttons {
  text-align: center;
}
.cid-sc1qGW42cM .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sc1qGW42cM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sc1qGW42cM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sc1qGW42cM a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sc1qGW42cM .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sc1qGW42cM .soc-item {
  margin: .5rem .3rem;
}
.cid-sc1qGW42cM .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sc1qGW42cM .navbar {
    height: 77px;
  }
  .cid-sc1qGW42cM .navbar.opened {
    height: auto;
  }
  .cid-sc1qGW42cM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sdqttY0F6o {
  padding-top: 135px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/car-detailing-orlando-kissimmee-2000x1516.webp");
}
.cid-sdqttY0F6o .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sdqttY0F6o .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sdqttY0F6o .card .wrapper .mbr-section-title span:first-child {
  color: #1352ff;
}
.cid-sdqttY0F6o .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #1352ff;
  background: linear-gradient(#1352ff 0%, #1352ff 69%, #1352ff 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sdqttY0F6o .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sdqttY0F6o .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sdqttY0F6o .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sdqttY0F6o .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sdqttY0F6o .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sdqttY0F6o .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sdqttY0F6o .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sdqttY0F6o .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sdqttY0F6o .card .wrapper .mbr-section-title,
.cid-sdqttY0F6o .mbr-section-btn,
.cid-sdqttY0F6o .mbr-list .list {
  text-align: center;
  color: #f5f5f5;
}
.cid-sdqttY0F6o .card .wrapper .mbr-section-title,
.cid-sdqttY0F6o .mbr-section-btn,
.cid-sdqttY0F6o .mbr-list .list DIV {
  text-align: center;
}
.cid-sdqACNF3qR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sdqACNF3qR .mbr-section-subtitle {
  color: #06182d;
  text-align: center;
}
.cid-sdqACNF3qR .mbr-section-title {
  text-align: center;
  color: #181818;
}
.cid-sdqACNF3qR .card .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #ffffff;
  padding: 0;
}
.cid-sdqACNF3qR .card .card-wrapper .card-img {
  position: relative;
}
.cid-sdqACNF3qR .card .card-wrapper .card-img .price-label {
  padding: 11px;
  left: auto;
  top: auto;
  bottom: -20px;
  background-color: #333333;
  z-index: 100;
  position: absolute;
}
.cid-sdqACNF3qR .card .card-wrapper .card-img .price-label .price-text {
  padding: 0;
  margin: 0;
}
.cid-sdqACNF3qR .card .card-wrapper .card-img .price-label .price-text.display-4 {
  line-height: 1.5;
}
.cid-sdqACNF3qR .card .card-wrapper .card-box {
  padding: 1.5rem;
  background-color: #181818;
}
.cid-sdqACNF3qR .card .card-wrapper .card-box .card-title {
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-sdqACNF3qR .card .card-wrapper .card-box .card-text {
  color: #ffffff;
}
.cid-sdqACNF3qR .card .card-wrapper .card-box .date {
  color: #a1a1a1;
  margin-bottom: 0;
}
.cid-sdqACNF3qR .card .card-wrapper .card-box .link.display-4 .mbr-iconfont {
  font-size: 0.9rem;
}
.cid-sdqACNF3qR .card .card-wrapper .card-box .link .mbr-iconfont {
  align-self: center;
  color: #1352ff;
  margin-left: 0.5rem;
}
.cid-sdqACNF3qR .card .card-wrapper .card-box .card-title,
.cid-sdqACNF3qR .link {
  text-align: center;
}
.cid-se4IWhZpj9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mobile-boat-detailing-orlando-2000x1516.webp");
}
.cid-se4IWhZpj9 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-se4IWhZpj9 .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-se4IWhZpj9 .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-se4IWhZpj9 .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-se4IWhZpj9 .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-se4IWhZpj9 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-se4IWhZpj9 .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-se4IWhZpj9 .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-se4IWhZpj9 .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-se4IWhZpj9 .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-se4IWhZpj9 .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-se4IWhZpj9 .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sdqK1Bgc6Z {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sdqK1Bgc6Z .row {
  flex-direction: row-reverse;
}
.cid-sdqK1Bgc6Z .card1 {
  margin-bottom: 20px;
}
.cid-sdqK1Bgc6Z .card2 {
  margin-top: 20px;
}
.cid-sdqK1Bgc6Z .card3 {
  margin-bottom: 20px;
}
.cid-sdqK1Bgc6Z .card4 {
  margin-top: 20px;
}
.cid-sdqK1Bgc6Z .mbr-section-title {
  color: #000000;
}
.cid-sdqK1Bgc6Z .mbr-section-title.display-2 {
  line-height: 1.2;
  font-size: 30px;
}
.cid-sdqK1Bgc6Z .mbr-section-subtitle {
  color: #000000;
}
.cid-sdqK1Bgc6Z .mbr-text {
  color: #ffffff;
}
.cid-sdqK1Bgc6Z .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sdqK1Bgc6Z .card .card-wrapper {
  display: flex;
  transition: all 0.3s;
  margin: auto;
  min-height: 280px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04) !important;
  border-radius: 4px;
}
.cid-sdqK1Bgc6Z .card .card-wrapper .card-box .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.cid-sdqK1Bgc6Z .card .card-wrapper .card-box .img-wrapper img {
  width: 100%;
}
.cid-sdqK1Bgc6Z .card .card-wrapper .card-box .card-title {
  color: #ffffff;
}
.cid-sdqK1Bgc6Z .card .card-wrapper .card-box .mbr-text {
  color: #ffffff;
}
.cid-sdqK1Bgc6Z .card .card-wrapper .card-box .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sdqK1Bgc6Z .card .card-wrapper .card-box .link-wrap {
  width: 100%;
}
.cid-sdqK1Bgc6Z .card .card-wrapper .card-box .link-wrap .link {
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sdqK1Bgc6Z .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-sdqK1Bgc6Z .card-wrapper {
    flex-direction: column;
  }
  .cid-sdqK1Bgc6Z .card-box {
    padding: 2rem 1rem;
  }
  .cid-sdqK1Bgc6Z .card-box,
  .cid-sdqK1Bgc6Z .img-wrapper {
    width: 100%;
  }
  .cid-sdqK1Bgc6Z .img-wrapper {
    padding: 0rem 1rem;
  }
  .cid-sdqK1Bgc6Z * {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-sdqK1Bgc6Z .card {
    margin-bottom: 2rem;
  }
}
.cid-sdqK1Bgc6Z .card .card-wrapper .card-box .card-title,
.cid-sdqK1Bgc6Z .card-box {
  text-align: center;
  color: #000000;
}
.cid-se0RzunYzZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-se0RzunYzZ .card1 {
  margin-bottom: 20px;
}
.cid-se0RzunYzZ .card2 {
  margin-top: 20px;
}
.cid-se0RzunYzZ .card3 {
  margin-bottom: 20px;
}
.cid-se0RzunYzZ .card4 {
  margin-top: 20px;
}
.cid-se0RzunYzZ .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-se0RzunYzZ .mbr-section-title.display-2 {
  line-height: 1.2;
  font-size: 30px;
}
.cid-se0RzunYzZ .mbr-section-subtitle {
  color: #afafa7;
}
.cid-se0RzunYzZ .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-se0RzunYzZ .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-se0RzunYzZ .card .card-wrapper {
  display: flex;
  transition: all 0.3s;
  margin: auto;
  min-height: 280px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04) !important;
  border-radius: 4px;
}
.cid-se0RzunYzZ .card .card-wrapper .card-box .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.cid-se0RzunYzZ .card .card-wrapper .card-box .img-wrapper img {
  width: 100%;
}
.cid-se0RzunYzZ .card .card-wrapper .card-box .card-title {
  color: #ffffff;
}
.cid-se0RzunYzZ .card .card-wrapper .card-box .mbr-text {
  color: #ffffff;
}
.cid-se0RzunYzZ .card .card-wrapper .card-box .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-se0RzunYzZ .card .card-wrapper .card-box .link-wrap {
  width: 100%;
}
.cid-se0RzunYzZ .card .card-wrapper .card-box .link-wrap .link {
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-se0RzunYzZ .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-se0RzunYzZ .card-wrapper {
    flex-direction: column;
  }
  .cid-se0RzunYzZ .card-box {
    padding: 2rem 1rem;
  }
  .cid-se0RzunYzZ .card-box,
  .cid-se0RzunYzZ .img-wrapper {
    width: 100%;
  }
  .cid-se0RzunYzZ .img-wrapper {
    padding: 0rem 1rem;
  }
  .cid-se0RzunYzZ * {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-se0RzunYzZ .card {
    margin-bottom: 2rem;
  }
}
.cid-se0RzunYzZ .card .card-wrapper .card-box .card-title,
.cid-se0RzunYzZ .card-box {
  color: #000000;
}
.cid-se7XT5ezBf {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/before-after-headlight-restoration-orlando-2-2000x777.webp");
}
.cid-se7XT5ezBf .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-se7XT5ezBf .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-se7XT5ezBf .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-se7XT5ezBf .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-se7XT5ezBf .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-se7XT5ezBf .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-se7XT5ezBf .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-se7XT5ezBf .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-se7XT5ezBf .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-se7XT5ezBf .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-se7XT5ezBf .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-se7XT5ezBf .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
#custom-html-8k {
  /* Type valid CSS here */
}
#custom-html-8k div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-8k p {
  font-size: 60px;
  color: #777;
}
.cid-sdqPGhzsK1 .google-map {
  height: 30rem;
  position: relative;
}
.cid-sdqPGhzsK1 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sdqPGhzsK1 .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-sdqPGhzsK1 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sdqPGhzsK1 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv8Yx5z2o {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv8Yx5z2o .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv8Yx5z2o .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv8Yx5z2o .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv8Yx5z2o .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv8Yx5z2o .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv8Yx5z2o .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv8Yx5z2o .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv8Yx5z2o .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv8Yx5z2o .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv8Yx5z2o .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv8Yx5z2o .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sc1qGW42cM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sc1qGW42cM .nav-item,
.cid-sc1qGW42cM .nav-link,
.cid-sc1qGW42cM .navbar-caption {
  font-weight: normal;
}
.cid-sc1qGW42cM .nav-item:focus,
.cid-sc1qGW42cM .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sc1qGW42cM .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sc1qGW42cM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sc1qGW42cM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sc1qGW42cM .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sc1qGW42cM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sc1qGW42cM .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sc1qGW42cM .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sc1qGW42cM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sc1qGW42cM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sc1qGW42cM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sc1qGW42cM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sc1qGW42cM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sc1qGW42cM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sc1qGW42cM .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-sc1qGW42cM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sc1qGW42cM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sc1qGW42cM .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sc1qGW42cM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sc1qGW42cM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sc1qGW42cM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sc1qGW42cM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sc1qGW42cM .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-sc1qGW42cM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sc1qGW42cM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sc1qGW42cM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sc1qGW42cM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sc1qGW42cM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sc1qGW42cM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sc1qGW42cM .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sc1qGW42cM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sc1qGW42cM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sc1qGW42cM .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sc1qGW42cM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sc1qGW42cM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sc1qGW42cM .dropdown-item.active,
.cid-sc1qGW42cM .dropdown-item:active {
  background-color: transparent;
}
.cid-sc1qGW42cM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sc1qGW42cM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sc1qGW42cM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sc1qGW42cM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sc1qGW42cM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sc1qGW42cM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sc1qGW42cM .navbar-buttons {
  text-align: center;
}
.cid-sc1qGW42cM .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sc1qGW42cM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sc1qGW42cM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sc1qGW42cM a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sc1qGW42cM .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sc1qGW42cM .soc-item {
  margin: .5rem .3rem;
}
.cid-sc1qGW42cM .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sc1qGW42cM .navbar {
    height: 77px;
  }
  .cid-sc1qGW42cM .navbar.opened {
    height: auto;
  }
  .cid-sc1qGW42cM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sdxHShcWcn {
  padding-top: 0px;
  padding-bottom: 60px;
  position: relative;
  background-color: #ffffff;
}
.cid-sdxHShcWcn .mbr-section-title {
  color: #06182d;
}
.cid-sdxHShcWcn .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sdxHShcWcn .mbr-section-subtitle {
  color: #06182d;
}
.cid-sdxHShcWcn .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sdxHShcWcn .mbr-text {
  color: #61728a;
  font-weight: 300;
}
.cid-sdxHShcWcn .title-text {
  margin-bottom: 70px;
}
.cid-sdxHShcWcn .title-text .mbr-section-subtitle {
  color: #06182d;
}
.cid-sdxHShcWcn .title-text .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-sdxHShcWcn .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-sdxHShcWcn .title-text .mbr-section-title {
  color: #282f39;
}
.cid-sdxHShcWcn .title-text .mbr-section-title.mbr-bold {
  font-weight: 700;
}
.cid-sdxHShcWcn .title-text .mbr-section-title span {
  font-weight: 500;
}
.cid-sdxHShcWcn .title-text .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-sdxHShcWcn .mbr-iconfont {
  font-family: "Moririse2" !important;
  display: inline-flex;
  transform-origin: ;
  transform: rotate(45deg);
  transition: all 0.3s;
  font-size: 1.4rem !important;
  color: #ff4e3c;
}
.cid-sdxHShcWcn .mbr-iconfont:before {
  transform: scaleY(0) !important;
  transition: all 0.4s;
}
.cid-sdxHShcWcn .p-4 {
  padding: 1rem 0 !important;
}
.cid-sdxHShcWcn .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-sdxHShcWcn .mbri-arrow-down:before {
  content: "\e960";
}
.cid-sdxHShcWcn .mbri-arrow-up:before {
  content: "\e960";
}
.cid-sdxHShcWcn .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-sdxHShcWcn .collapsed .mbr-iconfont:before {
  transform: scaleY(1) !important;
  transition: all 0.3s;
}
.cid-sdxHShcWcn .card {
  border-radius: 0px;
  background-color: #f5f5f5;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 1.2rem;
}
.cid-sdxHShcWcn .card:hover .card-header {
  transition: all 0.15s linear 0s;
  opacity: 0.7;
}
.cid-sdxHShcWcn .card .card-header {
  border-radius: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-sdxHShcWcn .card .card-header h4 {
  justify-content: flex-start;
  width: 100%;
}
.cid-sdxHShcWcn .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  border-bottom: 2px solid #ff4e3c;
  transition: all 0.3s;
  justify-content: space-between;
}
.cid-sdxHShcWcn .card .card-header a.panel-title.collapsed {
  border-bottom: 1px solid #efefef;
}
.cid-sdxHShcWcn .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sdxHShcWcn .card .card-header a.panel-title h4 {
  padding: 0 0rem 1.2rem;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #28303f;
}
.cid-sdxHShcWcn .card .card-header a.panel-title h4 .sign {
  line-height: 1.6 !important;
}
.cid-sdxHShcWcn .card .card-header a.panel-title .toggle-icon {
  right: 14px;
  position: absolute;
  top: 20px;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
  border-radius: 50%;
  border: 2px solid rgba(97, 114, 138, 0.4);
  padding: 13px;
}
.cid-sdxHShcWcn .card .card-header a.panel-title .toggle-icon:before,
.cid-sdxHShcWcn .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-sdxHShcWcn .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  transform: none;
}
.cid-sdxHShcWcn .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-sdxHShcWcn .card .panel-body {
  padding: 14px 20px;
}
.cid-sdxHShcWcn .card .panel-body p {
  color: #61728a;
  line-height: 1.5;
}
.cid-sdxHShcWcn .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-sdxHShcWcn .card .card-header a.panel-title h4 {
  text-align: center;
}
.cid-sdxHShcWcn .title-text .mbr-section-title {
  color: #ff653c;
}
.cid-u9K10E5qry {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u9K10E5qry .img-wrap {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-position: 50% 50%;
  z-index: 2;
  background-image: url("../../../assets/images/dscf1035-2000x1500.webp");
}
.cid-u9K10E5qry .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u9K10E5qry .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-u9K10E5qry .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u9K10E5qry .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-u9K10E5qry .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u9K10E5qry .card .wrapper .mbr-text {
  color: #61728a;
  font-weight: 300;
}
.cid-u9K10E5qry .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-u9K10E5qry .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u9K10E5qry .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u9K10E5qry .card .wrapper .link-wrap {
  width: 100%;
}
.cid-u9K10E5qry .card .wrapper .link-wrap .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
  transition-delay: 0.15s;
  text-align: left;
}
.cid-u9K10E5qry .card .wrapper .link-wrap .link:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.2;
  left: 0;
}
.cid-u9K10E5qry .card .wrapper .link-wrap .link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-u9K10E5qry .card .wrapper .link-wrap .link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-u9K2tHaZYI {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9K2tHaZYI .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u9K2tHaZYI .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-u9K2tHaZYI .card .wrapper .mbr-section-title span:first-child {
  color: #1352ff;
}
.cid-u9K2tHaZYI .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #1352ff;
  background: linear-gradient(#1352ff 0%, #1352ff 69%, #1352ff 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u9K2tHaZYI .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u9K2tHaZYI .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u9K2tHaZYI .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-u9K2tHaZYI .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-u9K2tHaZYI .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u9K2tHaZYI .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u9K2tHaZYI .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u9K2tHaZYI .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-u9K2tHaZYI .card .wrapper .mbr-section-title,
.cid-u9K2tHaZYI .mbr-section-btn,
.cid-u9K2tHaZYI .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-u9K2tHaZYI .card .wrapper .mbr-section-title,
.cid-u9K2tHaZYI .mbr-section-btn,
.cid-u9K2tHaZYI .mbr-list .list DIV {
  text-align: center;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv8tbshm0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv8tbshm0 .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv8tbshm0 .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv8tbshm0 .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv8tbshm0 .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv8tbshm0 .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv8tbshm0 .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv8tbshm0 .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv8tbshm0 .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv8tbshm0 .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv8tbshm0 .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv8tbshm0 .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sc1qGW42cM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sc1qGW42cM .nav-item,
.cid-sc1qGW42cM .nav-link,
.cid-sc1qGW42cM .navbar-caption {
  font-weight: normal;
}
.cid-sc1qGW42cM .nav-item:focus,
.cid-sc1qGW42cM .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sc1qGW42cM .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sc1qGW42cM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sc1qGW42cM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sc1qGW42cM .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sc1qGW42cM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sc1qGW42cM .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sc1qGW42cM .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sc1qGW42cM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sc1qGW42cM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sc1qGW42cM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sc1qGW42cM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sc1qGW42cM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sc1qGW42cM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sc1qGW42cM .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-sc1qGW42cM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sc1qGW42cM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sc1qGW42cM .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sc1qGW42cM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sc1qGW42cM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sc1qGW42cM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sc1qGW42cM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sc1qGW42cM .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-sc1qGW42cM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sc1qGW42cM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sc1qGW42cM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sc1qGW42cM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sc1qGW42cM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sc1qGW42cM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sc1qGW42cM .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sc1qGW42cM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sc1qGW42cM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sc1qGW42cM .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sc1qGW42cM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sc1qGW42cM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sc1qGW42cM .dropdown-item.active,
.cid-sc1qGW42cM .dropdown-item:active {
  background-color: transparent;
}
.cid-sc1qGW42cM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sc1qGW42cM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sc1qGW42cM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sc1qGW42cM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sc1qGW42cM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sc1qGW42cM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sc1qGW42cM .navbar-buttons {
  text-align: center;
}
.cid-sc1qGW42cM .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sc1qGW42cM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sc1qGW42cM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sc1qGW42cM a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sc1qGW42cM .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sc1qGW42cM .soc-item {
  margin: .5rem .3rem;
}
.cid-sc1qGW42cM .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sc1qGW42cM .navbar {
    height: 77px;
  }
  .cid-sc1qGW42cM .navbar.opened {
    height: auto;
  }
  .cid-sc1qGW42cM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-se6gRST3rC {
  background-image: url("../../../assets/images/air-bubbles.gif");
}
.cid-se6gRST3rC .link-align {
  width: 100%;
}
.cid-se6gRST3rC .link-wrap {
  display: inline-block;
}
.cid-se6gRST3rC .link {
  position: relative;
  cursor: pointer;
  width: fit-content;
  letter-spacing: 1px;
  margin-left: 80px;
  color: #ffffff;
}
.cid-se6gRST3rC .wrap {
  transform: matrix3d(0.99863, -0.052336, 0, 0, 0.052336, 0.99863, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform-origin: 50% 50% 0px;
}
.cid-se6gRST3rC .wrap .mask {
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: flex;
  z-index: 8;
  visibility: inherit;
  transition: none 0s ease 0s;
  text-align: inherit;
  line-height: 1.05;
  border-width: 0px;
  margin: 0px;
  padding: 0px;
  letter-spacing: 0px;
  font-weight: 400;
  font-size: 17px;
  white-space: nowrap;
  min-height: 88px;
  width: 100%;
  max-height: 100px;
  opacity: 1;
  transform: matrix3d(1, 0, 0, 0, -0.275637, 0.961262, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform-origin: 50% 50% 0px;
}
@media (max-width: 992px) {
  .cid-se6gRST3rC .wrap .mask {
    background: none;
    min-height: auto;
  }
}
.cid-se6gRST3rC .wrap .mbr-section-subtitle {
  line-height: 1;
}
.cid-se6gRST3rC .wrap .price {
  color: #fff900;
}
@media (min-width: 992px) {
  .cid-se6gRST3rC .wrap .mbr-section-title.display-1 {
    font-size: 100px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .cid-se6gRST3rC .mbr-text {
    text-align: right;
  }
}
.cid-sgsGHGe4BC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sgsGHGe4BC .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sgsGHGe4BC .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sgsGHGe4BC .card .wrapper .mbr-section-title span:first-child {
  color: #1352ff;
}
.cid-sgsGHGe4BC .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #1352ff;
  background: linear-gradient(#1352ff 0%, #1352ff 69%, #1352ff 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sgsGHGe4BC .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sgsGHGe4BC .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sgsGHGe4BC .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sgsGHGe4BC .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sgsGHGe4BC .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sgsGHGe4BC .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sgsGHGe4BC .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sgsGHGe4BC .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sgsGHGe4BC .card .wrapper .mbr-section-title,
.cid-sgsGHGe4BC .mbr-section-btn,
.cid-sgsGHGe4BC .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-sgsGHGe4BC .card .wrapper .mbr-section-title,
.cid-sgsGHGe4BC .mbr-section-btn,
.cid-sgsGHGe4BC .mbr-list .list DIV {
  text-align: center;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgvaALsbSt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgvaALsbSt .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgvaALsbSt .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgvaALsbSt .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgvaALsbSt .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgvaALsbSt .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgvaALsbSt .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgvaALsbSt .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgvaALsbSt .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgvaALsbSt .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgvaALsbSt .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgvaALsbSt .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sc1qGW42cM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sc1qGW42cM .nav-item,
.cid-sc1qGW42cM .nav-link,
.cid-sc1qGW42cM .navbar-caption {
  font-weight: normal;
}
.cid-sc1qGW42cM .nav-item:focus,
.cid-sc1qGW42cM .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sc1qGW42cM .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sc1qGW42cM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sc1qGW42cM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sc1qGW42cM .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sc1qGW42cM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sc1qGW42cM .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sc1qGW42cM .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sc1qGW42cM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sc1qGW42cM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sc1qGW42cM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sc1qGW42cM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sc1qGW42cM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sc1qGW42cM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sc1qGW42cM .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-sc1qGW42cM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sc1qGW42cM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sc1qGW42cM .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sc1qGW42cM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sc1qGW42cM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sc1qGW42cM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sc1qGW42cM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sc1qGW42cM .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-sc1qGW42cM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sc1qGW42cM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sc1qGW42cM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sc1qGW42cM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sc1qGW42cM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sc1qGW42cM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sc1qGW42cM .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sc1qGW42cM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sc1qGW42cM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sc1qGW42cM .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sc1qGW42cM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sc1qGW42cM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sc1qGW42cM .dropdown-item.active,
.cid-sc1qGW42cM .dropdown-item:active {
  background-color: transparent;
}
.cid-sc1qGW42cM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sc1qGW42cM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sc1qGW42cM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sc1qGW42cM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sc1qGW42cM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sc1qGW42cM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sc1qGW42cM .navbar-buttons {
  text-align: center;
}
.cid-sc1qGW42cM .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sc1qGW42cM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sc1qGW42cM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sc1qGW42cM a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sc1qGW42cM .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sc1qGW42cM .soc-item {
  margin: .5rem .3rem;
}
.cid-sc1qGW42cM .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sc1qGW42cM .navbar {
    height: 77px;
  }
  .cid-sc1qGW42cM .navbar.opened {
    height: auto;
  }
  .cid-sc1qGW42cM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
#custom-html-to {
  /* Type valid CSS here */
}
#custom-html-to div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-to p {
  font-size: 60px;
  color: #777;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgvaioRtpq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgvaioRtpq .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgvaioRtpq .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgvaioRtpq .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgvaioRtpq .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgvaioRtpq .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgvaioRtpq .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgvaioRtpq .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgvaioRtpq .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgvaioRtpq .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgvaioRtpq .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgvaioRtpq .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sc1qGW42cM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sc1qGW42cM .nav-item,
.cid-sc1qGW42cM .nav-link,
.cid-sc1qGW42cM .navbar-caption {
  font-weight: normal;
}
.cid-sc1qGW42cM .nav-item:focus,
.cid-sc1qGW42cM .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sc1qGW42cM .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sc1qGW42cM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sc1qGW42cM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sc1qGW42cM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sc1qGW42cM .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sc1qGW42cM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sc1qGW42cM .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sc1qGW42cM .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sc1qGW42cM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sc1qGW42cM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sc1qGW42cM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sc1qGW42cM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sc1qGW42cM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sc1qGW42cM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sc1qGW42cM .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-sc1qGW42cM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sc1qGW42cM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sc1qGW42cM .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sc1qGW42cM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sc1qGW42cM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sc1qGW42cM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sc1qGW42cM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sc1qGW42cM .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-sc1qGW42cM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sc1qGW42cM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sc1qGW42cM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sc1qGW42cM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sc1qGW42cM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sc1qGW42cM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sc1qGW42cM .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sc1qGW42cM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sc1qGW42cM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sc1qGW42cM .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sc1qGW42cM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sc1qGW42cM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sc1qGW42cM .dropdown-item.active,
.cid-sc1qGW42cM .dropdown-item:active {
  background-color: transparent;
}
.cid-sc1qGW42cM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sc1qGW42cM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sc1qGW42cM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sc1qGW42cM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sc1qGW42cM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sc1qGW42cM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sc1qGW42cM .navbar-buttons {
  text-align: center;
}
.cid-sc1qGW42cM .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sc1qGW42cM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sc1qGW42cM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sc1qGW42cM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sc1qGW42cM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sc1qGW42cM a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sc1qGW42cM .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sc1qGW42cM .soc-item {
  margin: .5rem .3rem;
}
.cid-sc1qGW42cM .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sc1qGW42cM .navbar {
    height: 77px;
  }
  .cid-sc1qGW42cM .navbar.opened {
    height: auto;
  }
  .cid-sc1qGW42cM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-seyuXPyRbP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-seyuXPyRbP .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-seyuXPyRbP .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-seyuXPyRbP .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-seyuXPyRbP .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-seyuXPyRbP .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-seyuXPyRbP .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-seyuXPyRbP .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-seyuXPyRbP .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-seyuXPyRbP .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-seyuXPyRbP .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-seyuXPyRbP .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-seyuXPyRbP .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-seyuXPyRbP .card .wrapper .mbr-section-title,
.cid-seyuXPyRbP .mbr-section-btn,
.cid-seyuXPyRbP .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-seyuXPyRbP .card .wrapper .mbr-list .list,
.cid-seyuXPyRbP .card .wrapper .mbr-section-btn {
  color: #000000;
}
.cid-seyuXPyRbP .card .wrapper .mbr-list .list,
.cid-seyuXPyRbP .card .wrapper .mbr-section-btn UL {
  text-align: center;
}
.cid-seypY7Q1Sa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-seypY7Q1Sa .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-seypY7Q1Sa .card {
  padding: 5px;
  transition: transform 0.6s ease 0s;
}
.cid-seypY7Q1Sa .card:hover {
  transform: translateY(-20px);
}
.cid-seypY7Q1Sa .card .card-wrapper {
  background: #007bff;
  background-position: center;
  padding: 40px 20px;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-seypY7Q1Sa .card .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-seypY7Q1Sa .card .card-wrapper .card-box .card-subtitle {
  color: #ffffff;
}
.cid-seypY7Q1Sa .card .card-wrapper .card-box .start-from {
  line-height: 1.2;
  margin-bottom: 15px;
}
.cid-seypY7Q1Sa .card .card-wrapper .card-box .mbr-usd {
  vertical-align: top;
  display: inline-block;
  color: #fff900;
  line-height: 0.6;
}
.cid-seypY7Q1Sa .card .card-wrapper .card-box .mbr-price {
  color: #fff900;
  line-height: 0.6;
}
.cid-seypY7Q1Sa .card .card-wrapper .card-box .mbr-text,
.cid-seypY7Q1Sa .card .card-wrapper .card-box .link-align {
  color: #ffffff;
}
.cid-seypY7Q1Sa .card .card-wrapper .card-box .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-seypY7Q1Sa .card .card-wrapper .card-box .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-seypY7Q1Sa .card .card-wrapper .card-box .mbr-list .list li {
  line-height: 1.75;
}
.cid-seypY7Q1Sa .card .card-wrapper .card-box .mbr-list .list li:before {
  font-weight: 900;
  color: #ffffff;
  display: inline-block;
  content: "✓";
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-seXxImCz7z {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/air-bubbles-1.gif");
}
.cid-seXxImCz7z .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-seXxImCz7z .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-seXxImCz7z .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-seXxImCz7z .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-seXxImCz7z .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-seXxImCz7z .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-seXxImCz7z .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-seXxImCz7z .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-seXxImCz7z .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-seXxImCz7z .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-seXxImCz7z .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-seXxImCz7z .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-seXxImCz7z .card .wrapper .mbr-section-title,
.cid-seXxImCz7z .mbr-section-btn,
.cid-seXxImCz7z .mbr-list .list {
  text-align: center;
  color: #1352ff;
}
#custom-html-1cb {
  /* Type valid CSS here */
}
#custom-html-1cb div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1cb p {
  font-size: 60px;
  color: #777;
}
.cid-sgukWM6KDU {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #f5f5f5;
}
.cid-sgukWM6KDU .wrapper {
  overflow: hidden;
  position: relative;
}
.cid-sgukWM6KDU .wrapper .box {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-30%);
}
.cid-sgukWM6KDU .wrapper .box .mbr-media {
  z-index: 2;
}
.cid-sgukWM6KDU .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  background: transparent;
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.cid-sgukWM6KDU .icon-wrap:hover span {
  color: #ff513c;
}
.cid-sgukWM6KDU .icon-wrap span {
  padding-left: 4px;
}
.cid-sgukWM6KDU .mbr-media span {
  font-size: 2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff;
}
.cid-sgukWM6KDU .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-sgukWM6KDU .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sgukWM6KDU .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sgukWM6KDU .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sgukWM6KDU a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sgukWM6KDU a.close:hover {
  color: #ffffff;
}
.cid-sgukWM6KDU .img-wrap .overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #06182d;
  opacity: 0.8;
  pointer-events: none;
}
.cid-sgukWM6KDU .img-wrap img {
  width: 100%;
}
.cid-sgukWM6KDU .mbr-section-title {
  color: #06182d;
  margin-bottom: 1rem;
  transition: all 0.15s linear 0s;
}
.cid-sgukWM6KDU .mbr-section-title.display-5 {
  letter-spacing: 1px;
}
.cid-sgukWM6KDU .mbr-section-title:hover {
  opacity: 0.8;
}
.cid-sgukWM6KDU .mbr-section-subtitle {
  color: #61728a;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.cid-sgukWM6KDU .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-sgukWM6KDU .btn {
  margin: 0px !important;
}
.cid-sgukWM6KDU .btn.btn-success-outline {
  color: #000000;
}
.cid-sgukWM6KDU .btn.btn-sm {
  padding: 7px 39px;
}
.cid-sgukWM6KDU .share_buttons .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #c3cad2;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 10px 0 10px auto;
}
.cid-sgukWM6KDU .share_buttons .icon-wrapper:hover .link-icon {
  color: #007bff;
}
.cid-sgukWM6KDU .share_buttons .icon-wrapper .link-icon {
  display: inline-block;
  color: #61728a;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-sgukWM6KDU .share_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-sgukWM6KDU .share_buttons .icon-wrapper {
    margin: 10px !important;
  }
}
.cid-sgukWM6KDU .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
.cid-sgukWM6KDU .sticky-tag .mbr-text {
  padding: 5px 6px;
  margin: 0 3px 9px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transform: skew(-22deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  font-weight: 400;
  border-image-slice: 1;
  color: #ffffff;
}
.cid-sgukWM6KDU .sticky-tag .mbr-text::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 1.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #ff5e3a transparent transparent;
  transform: skew(22deg) !important;
}
.cid-sgumsVahXh {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f5f5f5;
}
.cid-sgumsVahXh .wrapper {
  overflow: hidden;
  position: relative;
}
.cid-sgumsVahXh .wrapper .box {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-30%);
}
.cid-sgumsVahXh .wrapper .box .mbr-media {
  z-index: 2;
}
.cid-sgumsVahXh .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  background: transparent;
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.cid-sgumsVahXh .icon-wrap:hover span {
  color: #ff513c;
}
.cid-sgumsVahXh .icon-wrap span {
  padding-left: 4px;
}
.cid-sgumsVahXh .mbr-media span {
  font-size: 2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff;
}
.cid-sgumsVahXh .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-sgumsVahXh .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sgumsVahXh .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sgumsVahXh .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sgumsVahXh a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sgumsVahXh a.close:hover {
  color: #ffffff;
}
.cid-sgumsVahXh .img-wrap .overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #06182d;
  opacity: 0.8;
  pointer-events: none;
}
.cid-sgumsVahXh .img-wrap img {
  width: 100%;
}
.cid-sgumsVahXh .mbr-section-title {
  color: #06182d;
  margin-bottom: 1rem;
  transition: all 0.15s linear 0s;
}
.cid-sgumsVahXh .mbr-section-title.display-5 {
  letter-spacing: 1px;
}
.cid-sgumsVahXh .mbr-section-title:hover {
  opacity: 0.8;
}
.cid-sgumsVahXh .mbr-section-subtitle {
  color: #61728a;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.cid-sgumsVahXh .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-sgumsVahXh .btn {
  margin: 0px !important;
}
.cid-sgumsVahXh .btn.btn-success-outline {
  color: #000000;
}
.cid-sgumsVahXh .btn.btn-sm {
  padding: 7px 39px;
}
.cid-sgumsVahXh .share_buttons .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #c3cad2;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 10px 0 10px auto;
}
.cid-sgumsVahXh .share_buttons .icon-wrapper:hover .link-icon {
  color: #007bff;
}
.cid-sgumsVahXh .share_buttons .icon-wrapper .link-icon {
  display: inline-block;
  color: #61728a;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-sgumsVahXh .share_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-sgumsVahXh .share_buttons .icon-wrapper {
    margin: 10px !important;
  }
}
.cid-sgumsVahXh .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
.cid-sgumsVahXh .sticky-tag .mbr-text {
  padding: 5px 6px;
  margin: 0 3px 9px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transform: skew(-22deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  font-weight: 400;
  border-image-slice: 1;
  color: #ffffff;
}
.cid-sgumsVahXh .sticky-tag .mbr-text::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 1.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #ff5e3a transparent transparent;
  transform: skew(22deg) !important;
}
.cid-uckaijKSs4 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f5f5f5;
}
.cid-uckaijKSs4 .wrapper {
  overflow: hidden;
  position: relative;
}
.cid-uckaijKSs4 .wrapper .box {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-30%);
}
.cid-uckaijKSs4 .wrapper .box .mbr-media {
  z-index: 2;
}
.cid-uckaijKSs4 .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  background: transparent;
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.cid-uckaijKSs4 .icon-wrap:hover span {
  color: #ff513c;
}
.cid-uckaijKSs4 .icon-wrap span {
  padding-left: 4px;
}
.cid-uckaijKSs4 .mbr-media span {
  font-size: 2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff;
}
.cid-uckaijKSs4 .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-uckaijKSs4 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uckaijKSs4 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uckaijKSs4 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uckaijKSs4 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uckaijKSs4 a.close:hover {
  color: #ffffff;
}
.cid-uckaijKSs4 .img-wrap .overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #06182d;
  opacity: 0.8;
  pointer-events: none;
}
.cid-uckaijKSs4 .img-wrap img {
  width: 100%;
}
.cid-uckaijKSs4 .mbr-section-title {
  color: #06182d;
  margin-bottom: 1rem;
  transition: all 0.15s linear 0s;
}
.cid-uckaijKSs4 .mbr-section-title.display-5 {
  letter-spacing: 1px;
}
.cid-uckaijKSs4 .mbr-section-title:hover {
  opacity: 0.8;
}
.cid-uckaijKSs4 .mbr-section-subtitle {
  color: #61728a;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.cid-uckaijKSs4 .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-uckaijKSs4 .btn {
  margin: 0px !important;
}
.cid-uckaijKSs4 .btn.btn-success-outline {
  color: #000000;
}
.cid-uckaijKSs4 .btn.btn-sm {
  padding: 7px 39px;
}
.cid-uckaijKSs4 .share_buttons .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #c3cad2;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 10px 0 10px auto;
}
.cid-uckaijKSs4 .share_buttons .icon-wrapper:hover .link-icon {
  color: #007bff;
}
.cid-uckaijKSs4 .share_buttons .icon-wrapper .link-icon {
  display: inline-block;
  color: #61728a;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-uckaijKSs4 .share_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-uckaijKSs4 .share_buttons .icon-wrapper {
    margin: 10px !important;
  }
}
.cid-uckaijKSs4 .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
.cid-uckaijKSs4 .sticky-tag .mbr-text {
  padding: 5px 6px;
  margin: 0 3px 9px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transform: skew(-22deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  font-weight: 400;
  border-image-slice: 1;
  color: #ffffff;
}
.cid-uckaijKSs4 .sticky-tag .mbr-text::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 1.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #ff5e3a transparent transparent;
  transform: skew(22deg) !important;
}
.cid-u9KmSRlu9D {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9KmSRlu9D .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u9KmSRlu9D .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-u9KmSRlu9D .card .wrapper .mbr-section-title span:first-child {
  color: #1352ff;
}
.cid-u9KmSRlu9D .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #1352ff;
  background: linear-gradient(#1352ff 0%, #1352ff 69%, #1352ff 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u9KmSRlu9D .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u9KmSRlu9D .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u9KmSRlu9D .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-u9KmSRlu9D .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-u9KmSRlu9D .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u9KmSRlu9D .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u9KmSRlu9D .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u9KmSRlu9D .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-u9KmSRlu9D .card .wrapper .mbr-section-title,
.cid-u9KmSRlu9D .mbr-section-btn,
.cid-u9KmSRlu9D .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-u9KmSRlu9D .card .wrapper .mbr-section-title,
.cid-u9KmSRlu9D .mbr-section-btn,
.cid-u9KmSRlu9D .mbr-list .list DIV {
  text-align: center;
}
#custom-html-uq {
  /* Type valid CSS here */
}
#custom-html-uq div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-uq p {
  font-size: 60px;
  color: #777;
}
.cid-seyYpk5Ty4 .google-map {
  height: 30rem;
  position: relative;
}
.cid-seyYpk5Ty4 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-seyYpk5Ty4 .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-seyYpk5Ty4 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-seyYpk5Ty4 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv4dDvK1Q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv4dDvK1Q .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv4dDvK1Q .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv4dDvK1Q .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv4dDvK1Q .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv4dDvK1Q .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv4dDvK1Q .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv4dDvK1Q .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv4dDvK1Q .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv4dDvK1Q .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv4dDvK1Q .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv4dDvK1Q .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-seAcXrwwZk .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-seAcXrwwZk .nav-item,
.cid-seAcXrwwZk .nav-link,
.cid-seAcXrwwZk .navbar-caption {
  font-weight: normal;
}
.cid-seAcXrwwZk .nav-item:focus,
.cid-seAcXrwwZk .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-seAcXrwwZk .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-seAcXrwwZk .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-seAcXrwwZk .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-seAcXrwwZk .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-seAcXrwwZk .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-seAcXrwwZk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-seAcXrwwZk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-seAcXrwwZk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-seAcXrwwZk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-seAcXrwwZk .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-seAcXrwwZk .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-seAcXrwwZk .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-seAcXrwwZk .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-seAcXrwwZk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-seAcXrwwZk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-seAcXrwwZk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-seAcXrwwZk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-seAcXrwwZk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-seAcXrwwZk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-seAcXrwwZk .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-seAcXrwwZk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-seAcXrwwZk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-seAcXrwwZk .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-seAcXrwwZk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-seAcXrwwZk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-seAcXrwwZk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-seAcXrwwZk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-seAcXrwwZk .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-seAcXrwwZk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-seAcXrwwZk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-seAcXrwwZk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-seAcXrwwZk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-seAcXrwwZk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-seAcXrwwZk .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-seAcXrwwZk .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-seAcXrwwZk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-seAcXrwwZk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-seAcXrwwZk .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-seAcXrwwZk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-seAcXrwwZk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-seAcXrwwZk .dropdown-item.active,
.cid-seAcXrwwZk .dropdown-item:active {
  background-color: transparent;
}
.cid-seAcXrwwZk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-seAcXrwwZk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-seAcXrwwZk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-seAcXrwwZk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-seAcXrwwZk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-seAcXrwwZk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-seAcXrwwZk .navbar-buttons {
  text-align: center;
}
.cid-seAcXrwwZk .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-seAcXrwwZk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-seAcXrwwZk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-seAcXrwwZk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-seAcXrwwZk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-seAcXrwwZk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-seAcXrwwZk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-seAcXrwwZk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-seAcXrwwZk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-seAcXrwwZk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-seAcXrwwZk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-seAcXrwwZk .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-seAcXrwwZk a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-seAcXrwwZk .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-seAcXrwwZk .soc-item {
  margin: .5rem .3rem;
}
.cid-seAcXrwwZk .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-seAcXrwwZk .navbar {
    height: 77px;
  }
  .cid-seAcXrwwZk .navbar.opened {
    height: auto;
  }
  .cid-seAcXrwwZk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-seAcXtIwQg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-seAcXtIwQg .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-seAcXtIwQg .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-seAcXtIwQg .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-seAcXtIwQg .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-seAcXtIwQg .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-seAcXtIwQg .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-seAcXtIwQg .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-seAcXtIwQg .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-seAcXtIwQg .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-seAcXtIwQg .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-seAcXtIwQg .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-seAcXtIwQg .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-seAcXtIwQg .card .wrapper .mbr-section-title,
.cid-seAcXtIwQg .mbr-section-btn,
.cid-seAcXtIwQg .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-seAcXtIwQg .card .wrapper .mbr-list .list,
.cid-seAcXtIwQg .card .wrapper .mbr-section-btn {
  color: #000000;
}
.cid-seAcXuJMd2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-seAcXuJMd2 .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-seAcXuJMd2 .card {
  padding: 5px;
  transition: transform 0.6s ease 0s;
}
.cid-seAcXuJMd2 .card:hover {
  transform: translateY(-20px);
}
.cid-seAcXuJMd2 .card .card-wrapper {
  background: #007bff;
  background-position: center;
  padding: 40px 20px;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-seAcXuJMd2 .card .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-seAcXuJMd2 .card .card-wrapper .card-box .card-subtitle {
  color: #ffffff;
}
.cid-seAcXuJMd2 .card .card-wrapper .card-box .start-from {
  line-height: 1.2;
  margin-bottom: 15px;
}
.cid-seAcXuJMd2 .card .card-wrapper .card-box .mbr-usd {
  vertical-align: top;
  display: inline-block;
  color: #fff900;
  line-height: 0.6;
}
.cid-seAcXuJMd2 .card .card-wrapper .card-box .mbr-price {
  color: #fff900;
  line-height: 0.6;
}
.cid-seAcXuJMd2 .card .card-wrapper .card-box .mbr-text,
.cid-seAcXuJMd2 .card .card-wrapper .card-box .link-align {
  color: #ffffff;
}
.cid-seAcXuJMd2 .card .card-wrapper .card-box .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-seAcXuJMd2 .card .card-wrapper .card-box .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-seAcXuJMd2 .card .card-wrapper .card-box .mbr-list .list li {
  line-height: 1.75;
}
.cid-seAcXuJMd2 .card .card-wrapper .card-box .mbr-list .list li:before {
  font-weight: 900;
  color: #ffffff;
  display: inline-block;
  content: "✓";
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-seAcXuJMd2 .mbr-section-title,
.cid-seAcXuJMd2 .col {
  color: #d52b27;
}
.cid-seXrmHS8HW {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/air-bubbles-1.gif");
}
.cid-seXrmHS8HW .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-seXrmHS8HW .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-seXrmHS8HW .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-seXrmHS8HW .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-seXrmHS8HW .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-seXrmHS8HW .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-seXrmHS8HW .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-seXrmHS8HW .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-seXrmHS8HW .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-seXrmHS8HW .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-seXrmHS8HW .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-seXrmHS8HW .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-seXrmHS8HW .card .wrapper .mbr-section-title,
.cid-seXrmHS8HW .mbr-section-btn,
.cid-seXrmHS8HW .mbr-list .list {
  text-align: center;
  color: #1352ff;
}
.cid-uckDyKk23P {
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-uckDyKk23P .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-uckDyKk23P .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-uckDyKk23P .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-uckDyKk23P .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uckDyKk23P .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-uckDyKk23P .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-uckDyKk23P .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-uckDyKk23P .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-uckDyKk23P .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-uckDyKk23P .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-uckDyKk23P .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-uckDyKk23P .card .wrapper .mbr-section-title,
.cid-uckDyKk23P .mbr-section-btn,
.cid-uckDyKk23P .mbr-list .list {
  text-align: center;
}
#custom-html-1ca {
  /* Type valid CSS here */
}
#custom-html-1ca div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1ca p {
  font-size: 60px;
  color: #777;
}
#custom-html-123 {
  /* Type valid CSS here */
}
#custom-html-123 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-123 p {
  font-size: 60px;
  color: #777;
}
.cid-seAcXx2M4I .google-map {
  height: 30rem;
  position: relative;
}
.cid-seAcXx2M4I .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-seAcXx2M4I .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-seAcXx2M4I .google-map[data-state] {
  background: #e9e5dc;
}
.cid-seAcXx2M4I .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv4piZUIs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv4piZUIs .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv4piZUIs .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv4piZUIs .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv4piZUIs .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv4piZUIs .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv4piZUIs .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv4piZUIs .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv4piZUIs .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv4piZUIs .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv4piZUIs .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv4piZUIs .text-wrap .icons-wrap::after {
    display: none;
  }
}
#custom-html-1c9 {
  /* Type valid CSS here */
}
#custom-html-1c9 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1c9 p {
  font-size: 60px;
  color: #777;
}
.cid-seArvOSnzI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-seArvOSnzI .nav-item,
.cid-seArvOSnzI .nav-link,
.cid-seArvOSnzI .navbar-caption {
  font-weight: normal;
}
.cid-seArvOSnzI .nav-item:focus,
.cid-seArvOSnzI .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-seArvOSnzI .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-seArvOSnzI .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-seArvOSnzI .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-seArvOSnzI .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-seArvOSnzI .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-seArvOSnzI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-seArvOSnzI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-seArvOSnzI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-seArvOSnzI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-seArvOSnzI .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-seArvOSnzI .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-seArvOSnzI .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-seArvOSnzI .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-seArvOSnzI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-seArvOSnzI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-seArvOSnzI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-seArvOSnzI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-seArvOSnzI .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-seArvOSnzI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-seArvOSnzI .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-seArvOSnzI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-seArvOSnzI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-seArvOSnzI .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-seArvOSnzI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-seArvOSnzI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-seArvOSnzI .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-seArvOSnzI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-seArvOSnzI .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-seArvOSnzI .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-seArvOSnzI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-seArvOSnzI .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-seArvOSnzI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-seArvOSnzI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-seArvOSnzI .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-seArvOSnzI .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-seArvOSnzI .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-seArvOSnzI .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-seArvOSnzI .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-seArvOSnzI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-seArvOSnzI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-seArvOSnzI .dropdown-item.active,
.cid-seArvOSnzI .dropdown-item:active {
  background-color: transparent;
}
.cid-seArvOSnzI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-seArvOSnzI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-seArvOSnzI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-seArvOSnzI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-seArvOSnzI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-seArvOSnzI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-seArvOSnzI .navbar-buttons {
  text-align: center;
}
.cid-seArvOSnzI .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-seArvOSnzI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-seArvOSnzI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-seArvOSnzI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-seArvOSnzI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-seArvOSnzI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-seArvOSnzI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-seArvOSnzI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-seArvOSnzI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-seArvOSnzI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-seArvOSnzI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-seArvOSnzI .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-seArvOSnzI a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-seArvOSnzI .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-seArvOSnzI .soc-item {
  margin: .5rem .3rem;
}
.cid-seArvOSnzI .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-seArvOSnzI .navbar {
    height: 77px;
  }
  .cid-seArvOSnzI .navbar.opened {
    height: auto;
  }
  .cid-seArvOSnzI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-seArvQNKrW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-seArvQNKrW .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-seArvQNKrW .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-seArvQNKrW .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-seArvQNKrW .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-seArvQNKrW .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-seArvQNKrW .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-seArvQNKrW .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-seArvQNKrW .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-seArvQNKrW .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-seArvQNKrW .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-seArvQNKrW .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-seArvQNKrW .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-seArvQNKrW .card .wrapper .mbr-section-title,
.cid-seArvQNKrW .mbr-section-btn,
.cid-seArvQNKrW .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-seArvQNKrW .card .wrapper .mbr-list .list,
.cid-seArvQNKrW .card .wrapper .mbr-section-btn {
  color: #000000;
}
.cid-seArvRTOnI {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-seArvRTOnI .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-seArvRTOnI .card {
  padding: 5px;
  transition: transform 0.6s ease 0s;
}
.cid-seArvRTOnI .card:hover {
  transform: translateY(-20px);
}
.cid-seArvRTOnI .card .card-wrapper {
  background: #007bff;
  background-position: center;
  padding: 40px 20px;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-seArvRTOnI .card .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-seArvRTOnI .card .card-wrapper .card-box .card-subtitle {
  color: #ffffff;
}
.cid-seArvRTOnI .card .card-wrapper .card-box .start-from {
  line-height: 1.2;
  margin-bottom: 15px;
}
.cid-seArvRTOnI .card .card-wrapper .card-box .mbr-usd {
  vertical-align: top;
  display: inline-block;
  color: #fff900;
  line-height: 0.6;
}
.cid-seArvRTOnI .card .card-wrapper .card-box .mbr-price {
  color: #fff900;
  line-height: 0.6;
}
.cid-seArvRTOnI .card .card-wrapper .card-box .mbr-text,
.cid-seArvRTOnI .card .card-wrapper .card-box .link-align {
  color: #ffffff;
}
.cid-seArvRTOnI .card .card-wrapper .card-box .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-seArvRTOnI .card .card-wrapper .card-box .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-seArvRTOnI .card .card-wrapper .card-box .mbr-list .list li {
  line-height: 1.75;
}
.cid-seArvRTOnI .card .card-wrapper .card-box .mbr-list .list li:before {
  font-weight: 900;
  color: #ffffff;
  display: inline-block;
  content: "✓";
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-seXqUopbqk {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/air-bubbles-1.gif");
}
.cid-seXqUopbqk .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-seXqUopbqk .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-seXqUopbqk .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-seXqUopbqk .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-seXqUopbqk .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-seXqUopbqk .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-seXqUopbqk .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-seXqUopbqk .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-seXqUopbqk .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-seXqUopbqk .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-seXqUopbqk .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-seXqUopbqk .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-seXqUopbqk .card .wrapper .mbr-section-title,
.cid-seXqUopbqk .mbr-section-btn,
.cid-seXqUopbqk .mbr-list .list {
  text-align: center;
  color: #1352ff;
}
.cid-uckHmNikUf {
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-uckHmNikUf .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-uckHmNikUf .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-uckHmNikUf .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-uckHmNikUf .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uckHmNikUf .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-uckHmNikUf .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-uckHmNikUf .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-uckHmNikUf .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-uckHmNikUf .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-uckHmNikUf .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-uckHmNikUf .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-uckHmNikUf .card .wrapper .mbr-section-title,
.cid-uckHmNikUf .mbr-section-btn,
.cid-uckHmNikUf .mbr-list .list {
  text-align: center;
}
#custom-html-1cd {
  /* Type valid CSS here */
}
#custom-html-1cd div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1cd p {
  font-size: 60px;
  color: #777;
}
#custom-html-12c {
  /* Type valid CSS here */
}
#custom-html-12c div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-12c p {
  font-size: 60px;
  color: #777;
}
.cid-seArvU4Zu6 .google-map {
  height: 30rem;
  position: relative;
}
.cid-seArvU4Zu6 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-seArvU4Zu6 .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-seArvU4Zu6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-seArvU4Zu6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv4xkM4fl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv4xkM4fl .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv4xkM4fl .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv4xkM4fl .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv4xkM4fl .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv4xkM4fl .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv4xkM4fl .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv4xkM4fl .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv4xkM4fl .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv4xkM4fl .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv4xkM4fl .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv4xkM4fl .text-wrap .icons-wrap::after {
    display: none;
  }
}
#custom-html-1cc {
  /* Type valid CSS here */
}
#custom-html-1cc div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1cc p {
  font-size: 60px;
  color: #777;
}
.cid-seDIbc8a05 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-seDIbc8a05 .nav-item,
.cid-seDIbc8a05 .nav-link,
.cid-seDIbc8a05 .navbar-caption {
  font-weight: normal;
}
.cid-seDIbc8a05 .nav-item:focus,
.cid-seDIbc8a05 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-seDIbc8a05 .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-seDIbc8a05 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-seDIbc8a05 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-seDIbc8a05 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-seDIbc8a05 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-seDIbc8a05 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-seDIbc8a05 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-seDIbc8a05 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-seDIbc8a05 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-seDIbc8a05 .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-seDIbc8a05 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-seDIbc8a05 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-seDIbc8a05 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-seDIbc8a05 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-seDIbc8a05 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-seDIbc8a05 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-seDIbc8a05 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-seDIbc8a05 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-seDIbc8a05 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-seDIbc8a05 .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-seDIbc8a05 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-seDIbc8a05 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-seDIbc8a05 .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-seDIbc8a05 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-seDIbc8a05 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-seDIbc8a05 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-seDIbc8a05 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-seDIbc8a05 .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-seDIbc8a05 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-seDIbc8a05 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-seDIbc8a05 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-seDIbc8a05 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-seDIbc8a05 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-seDIbc8a05 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-seDIbc8a05 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-seDIbc8a05 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-seDIbc8a05 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-seDIbc8a05 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-seDIbc8a05 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-seDIbc8a05 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-seDIbc8a05 .dropdown-item.active,
.cid-seDIbc8a05 .dropdown-item:active {
  background-color: transparent;
}
.cid-seDIbc8a05 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-seDIbc8a05 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-seDIbc8a05 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-seDIbc8a05 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-seDIbc8a05 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-seDIbc8a05 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-seDIbc8a05 .navbar-buttons {
  text-align: center;
}
.cid-seDIbc8a05 .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-seDIbc8a05 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-seDIbc8a05 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-seDIbc8a05 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-seDIbc8a05 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-seDIbc8a05 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-seDIbc8a05 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-seDIbc8a05 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-seDIbc8a05 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-seDIbc8a05 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-seDIbc8a05 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-seDIbc8a05 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-seDIbc8a05 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-seDIbc8a05 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-seDIbc8a05 .soc-item {
  margin: .5rem .3rem;
}
.cid-seDIbc8a05 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-seDIbc8a05 .navbar {
    height: 77px;
  }
  .cid-seDIbc8a05 .navbar.opened {
    height: auto;
  }
  .cid-seDIbc8a05 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-seDOBKNIj9 {
  padding-top: 135px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-seDOBKNIj9 .row {
  flex-direction: row-reverse;
}
.cid-seDOBKNIj9 .card1 {
  margin-bottom: 20px;
}
.cid-seDOBKNIj9 .card2 {
  margin-top: 20px;
}
.cid-seDOBKNIj9 .card3 {
  margin-bottom: 20px;
}
.cid-seDOBKNIj9 .card4 {
  margin-top: 20px;
}
.cid-seDOBKNIj9 .mbr-section-title {
  color: #ff653c;
  text-align: center;
}
.cid-seDOBKNIj9 .mbr-section-title.display-2 {
  line-height: 1.2;
  font-size: 30px;
}
.cid-seDOBKNIj9 .mbr-section-subtitle {
  color: #afafa7;
}
.cid-seDOBKNIj9 .mbr-text {
  color: #55acee;
}
.cid-seDOBKNIj9 .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-seDOBKNIj9 .card .card-wrapper {
  display: flex;
  transition: all 0.3s;
  margin: auto;
  min-height: 280px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04) !important;
  border-radius: 4px;
}
.cid-seDOBKNIj9 .card .card-wrapper .card-box .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.cid-seDOBKNIj9 .card .card-wrapper .card-box .img-wrapper img {
  width: 100%;
}
.cid-seDOBKNIj9 .card .card-wrapper .card-box .card-title {
  color: #ffffff;
}
.cid-seDOBKNIj9 .card .card-wrapper .card-box .mbr-text {
  color: #ffffff;
}
.cid-seDOBKNIj9 .card .card-wrapper .card-box .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-seDOBKNIj9 .card .card-wrapper .card-box .link-wrap {
  width: 100%;
}
.cid-seDOBKNIj9 .card .card-wrapper .card-box .link-wrap .link {
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-seDOBKNIj9 .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-seDOBKNIj9 .card-wrapper {
    flex-direction: column;
  }
  .cid-seDOBKNIj9 .card-box {
    padding: 2rem 1rem;
  }
  .cid-seDOBKNIj9 .card-box,
  .cid-seDOBKNIj9 .img-wrapper {
    width: 100%;
  }
  .cid-seDOBKNIj9 .img-wrapper {
    padding: 0rem 1rem;
  }
  .cid-seDOBKNIj9 * {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-seDOBKNIj9 .card {
    margin-bottom: 2rem;
  }
}
.cid-seXqCmP2zk {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/air-bubbles-1.gif");
}
.cid-seXqCmP2zk .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-seXqCmP2zk .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-seXqCmP2zk .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-seXqCmP2zk .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-seXqCmP2zk .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-seXqCmP2zk .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-seXqCmP2zk .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-seXqCmP2zk .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-seXqCmP2zk .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-seXqCmP2zk .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-seXqCmP2zk .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-seXqCmP2zk .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-seXqCmP2zk .card .wrapper .mbr-section-title,
.cid-seXqCmP2zk .mbr-section-btn,
.cid-seXqCmP2zk .mbr-list .list {
  text-align: center;
  color: #1352ff;
}
.cid-uBWfnadfFV {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uBWfnadfFV .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-uBWfnadfFV .contents .mbr-section-title {
  margin-bottom: 20px;
  color: #fd603d;
}
.cid-uBWfnadfFV .contents .mbr-subtitle {
  color: #282f39;
  margin-bottom: 10px;
}
.cid-uBWfnadfFV .contents .mbr-section-text {
  margin-top: 20px;
  color: #61728a;
}
.cid-uBWfnadfFV .card-wrapper {
  height: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}
.cid-uBWfnadfFV .card-wrapper .card-box {
  padding: 35px 30px 38px;
  border: 1px solid #dcdfe2;
}
.cid-uBWfnadfFV .card-wrapper .card-box .card-title {
  color: #fd603d;
  transition: 0.3s all;
  margin-bottom: 20px;
}
.cid-uBWfnadfFV .card-wrapper .card-box .card-title:hover {
  color: #fd603d;
  transition: 0.3s all;
}
.cid-uBWfnadfFV .card-wrapper .card-box .card-subtitle {
  color: #fd603d;
  margin-bottom: 13px;
  font-weight: 500;
}
.cid-uBWfnadfFV .card-wrapper .card-box .card-subtitle span {
  color: #83868c;
}
.cid-uBWfnadfFV .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  color: #61728a;
}
.cid-uBWfnadfFV .card-wrapper .card-box .mbr-section-btn {
  position: relative;
  margin-left: 1px;
}
.cid-uBWfnadfFV .card-wrapper .card-box .mbr-section-btn .link {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
}
.cid-uBWfnadfFV .card-wrapper .card-box .mbr-section-btn .mbr-iconfont {
  font-size: 16px;
  margin-left: 40px;
  position: relative;
  top: 1px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  background: 0 0;
  color: #13287d;
  align-items: center;
  justify-content: center;
  transition: all .3s linear 0s;
  order: 2;
}
.cid-uBWfnadfFV .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #279e64;
  transform: scale(0);
  transition: all .3s linear 0s;
}
.cid-uBWfnadfFV .card-wrapper .card-box .mbr-section-btn .mbr-iconfont::before {
  position: relative;
  z-index: 1;
}
.cid-uBWfnadfFV .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::before {
  color: #ffffff;
}
.cid-uBWfnadfFV .card-wrapper .card-box:hover .mbr-section-btn .mbr-iconfont::after {
  transform: scale(1);
  box-shadow: 0 10px 30px 0 #279e64;
}
.cid-uBWfnadfFV .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
}
.cid-uBWfnadfFV .card-wrapper .card-img img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  vertical-align: middle;
  transition: all .8s;
  opacity: 1;
  width: 100%;
  max-width: 100%;
  margin: auto;
  height: auto;
  display: block;
}
.cid-uBWfnadfFV .card-wrapper .card-img:hover img {
  transform: scale3d(1.05, 1.05, 1);
  opacity: .9;
}
@media (max-width: 768px) {
  .cid-uBWfnadfFV .card-wrapper .card-box .mbr-section-btn .link {
    justify-content: center;
  }
}
.cid-u9Kl9FUlNK {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9Kl9FUlNK .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u9Kl9FUlNK .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-u9Kl9FUlNK .card .wrapper .mbr-section-title span:first-child {
  color: #1352ff;
}
.cid-u9Kl9FUlNK .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #1352ff;
  background: linear-gradient(#1352ff 0%, #1352ff 69%, #1352ff 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u9Kl9FUlNK .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u9Kl9FUlNK .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u9Kl9FUlNK .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-u9Kl9FUlNK .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-u9Kl9FUlNK .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u9Kl9FUlNK .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u9Kl9FUlNK .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u9Kl9FUlNK .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-u9Kl9FUlNK .card .wrapper .mbr-section-title,
.cid-u9Kl9FUlNK .mbr-section-btn,
.cid-u9Kl9FUlNK .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-u9Kl9FUlNK .card .wrapper .mbr-section-title,
.cid-u9Kl9FUlNK .mbr-section-btn,
.cid-u9Kl9FUlNK .mbr-list .list DIV {
  text-align: center;
}
#custom-html-12l {
  /* Type valid CSS here */
}
#custom-html-12l div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-12l p {
  font-size: 60px;
  color: #777;
}
.cid-seDIbheKqA .google-map {
  height: 30rem;
  position: relative;
}
.cid-seDIbheKqA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-seDIbheKqA .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-seDIbheKqA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-seDIbheKqA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv6epvwRs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv6epvwRs .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv6epvwRs .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv6epvwRs .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv6epvwRs .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv6epvwRs .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv6epvwRs .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv6epvwRs .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv6epvwRs .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv6epvwRs .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv6epvwRs .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv6epvwRs .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-seLlmaf28h .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-seLlmaf28h .nav-item,
.cid-seLlmaf28h .nav-link,
.cid-seLlmaf28h .navbar-caption {
  font-weight: normal;
}
.cid-seLlmaf28h .nav-item:focus,
.cid-seLlmaf28h .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-seLlmaf28h .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-seLlmaf28h .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-seLlmaf28h .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-seLlmaf28h .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-seLlmaf28h .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-seLlmaf28h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-seLlmaf28h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-seLlmaf28h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-seLlmaf28h .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-seLlmaf28h .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-seLlmaf28h .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-seLlmaf28h .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-seLlmaf28h .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-seLlmaf28h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-seLlmaf28h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-seLlmaf28h .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-seLlmaf28h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-seLlmaf28h .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-seLlmaf28h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-seLlmaf28h .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-seLlmaf28h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-seLlmaf28h .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-seLlmaf28h .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-seLlmaf28h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-seLlmaf28h .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-seLlmaf28h .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-seLlmaf28h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-seLlmaf28h .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-seLlmaf28h .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-seLlmaf28h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-seLlmaf28h .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-seLlmaf28h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-seLlmaf28h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-seLlmaf28h .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-seLlmaf28h .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-seLlmaf28h .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-seLlmaf28h .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-seLlmaf28h .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-seLlmaf28h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-seLlmaf28h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-seLlmaf28h .dropdown-item.active,
.cid-seLlmaf28h .dropdown-item:active {
  background-color: transparent;
}
.cid-seLlmaf28h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-seLlmaf28h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-seLlmaf28h .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-seLlmaf28h .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-seLlmaf28h .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-seLlmaf28h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-seLlmaf28h .navbar-buttons {
  text-align: center;
}
.cid-seLlmaf28h .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-seLlmaf28h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-seLlmaf28h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-seLlmaf28h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-seLlmaf28h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-seLlmaf28h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-seLlmaf28h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-seLlmaf28h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-seLlmaf28h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-seLlmaf28h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-seLlmaf28h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-seLlmaf28h .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-seLlmaf28h a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-seLlmaf28h .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-seLlmaf28h .soc-item {
  margin: .5rem .3rem;
}
.cid-seLlmaf28h .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-seLlmaf28h .navbar {
    height: 77px;
  }
  .cid-seLlmaf28h .navbar.opened {
    height: auto;
  }
  .cid-seLlmaf28h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-seXixkcXNN {
  background-image: url("../../../assets/images/boat-detailing-orlando-1896x747.webp");
}
.cid-seXixkcXNN .block {
  height: 544px;
}
@media (max-width: 992px) {
  .cid-seXixkcXNN .block {
    height: 272px;
  }
}
.cid-seLDp6ktGc {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/air-bubbles-1.gif");
}
.cid-seLDp6ktGc .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-seLDp6ktGc .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-seLDp6ktGc .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-seLDp6ktGc .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-seLDp6ktGc .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-seLDp6ktGc .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-seLDp6ktGc .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-seLDp6ktGc .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-seLDp6ktGc .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-seLDp6ktGc .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-seLDp6ktGc .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-seLDp6ktGc .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-seLDp6ktGc .card .wrapper .mbr-section-title,
.cid-seLDp6ktGc .mbr-section-btn,
.cid-seLDp6ktGc .mbr-list .list {
  text-align: center;
  color: #1352ff;
}
.cid-seLlmbh8dw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-seLlmbh8dw .row {
  flex-direction: row-reverse;
}
.cid-seLlmbh8dw .card1 {
  margin-bottom: 20px;
}
.cid-seLlmbh8dw .card2 {
  margin-top: 20px;
}
.cid-seLlmbh8dw .card3 {
  margin-bottom: 20px;
}
.cid-seLlmbh8dw .card4 {
  margin-top: 20px;
}
.cid-seLlmbh8dw .mbr-section-title {
  color: #ff653c;
  text-align: center;
}
.cid-seLlmbh8dw .mbr-section-title.display-2 {
  line-height: 1.2;
  font-size: 30px;
}
.cid-seLlmbh8dw .mbr-section-subtitle {
  color: #afafa7;
}
.cid-seLlmbh8dw .mbr-text {
  color: #007bff;
}
.cid-seLlmbh8dw .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-seLlmbh8dw .card .card-wrapper {
  display: flex;
  transition: all 0.3s;
  margin: auto;
  min-height: 280px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04) !important;
  border-radius: 4px;
}
.cid-seLlmbh8dw .card .card-wrapper .card-box .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.cid-seLlmbh8dw .card .card-wrapper .card-box .img-wrapper img {
  width: 100%;
}
.cid-seLlmbh8dw .card .card-wrapper .card-box .card-title {
  color: #ffffff;
}
.cid-seLlmbh8dw .card .card-wrapper .card-box .mbr-text {
  color: #ffffff;
}
.cid-seLlmbh8dw .card .card-wrapper .card-box .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-seLlmbh8dw .card .card-wrapper .card-box .link-wrap {
  width: 100%;
}
.cid-seLlmbh8dw .card .card-wrapper .card-box .link-wrap .link {
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-seLlmbh8dw .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-seLlmbh8dw .card-wrapper {
    flex-direction: column;
  }
  .cid-seLlmbh8dw .card-box {
    padding: 2rem 1rem;
  }
  .cid-seLlmbh8dw .card-box,
  .cid-seLlmbh8dw .img-wrapper {
    width: 100%;
  }
  .cid-seLlmbh8dw .img-wrapper {
    padding: 0rem 1rem;
  }
  .cid-seLlmbh8dw * {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-seLlmbh8dw .card {
    margin-bottom: 2rem;
  }
}
.cid-seLs1p1TNc {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-seLs1p1TNc .row {
  flex-direction: row-reverse;
}
.cid-seLs1p1TNc .card1 {
  margin-bottom: 20px;
}
.cid-seLs1p1TNc .card2 {
  margin-top: 20px;
}
.cid-seLs1p1TNc .card3 {
  margin-bottom: 20px;
}
.cid-seLs1p1TNc .card4 {
  margin-top: 20px;
}
.cid-seLs1p1TNc .mbr-section-title {
  color: #1887cd;
  text-align: center;
}
.cid-seLs1p1TNc .mbr-section-title.display-2 {
  line-height: 1.2;
  font-size: 30px;
}
.cid-seLs1p1TNc .mbr-section-subtitle {
  color: #afafa7;
}
.cid-seLs1p1TNc .mbr-text {
  color: #55acee;
}
.cid-seLs1p1TNc .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-seLs1p1TNc .card .card-wrapper {
  display: flex;
  transition: all 0.3s;
  margin: auto;
  min-height: 280px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04) !important;
  border-radius: 4px;
}
.cid-seLs1p1TNc .card .card-wrapper .card-box .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.cid-seLs1p1TNc .card .card-wrapper .card-box .img-wrapper img {
  width: 100%;
}
.cid-seLs1p1TNc .card .card-wrapper .card-box .card-title {
  color: #ffffff;
}
.cid-seLs1p1TNc .card .card-wrapper .card-box .mbr-text {
  color: #ffffff;
}
.cid-seLs1p1TNc .card .card-wrapper .card-box .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-seLs1p1TNc .card .card-wrapper .card-box .link-wrap {
  width: 100%;
}
.cid-seLs1p1TNc .card .card-wrapper .card-box .link-wrap .link {
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-seLs1p1TNc .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-seLs1p1TNc .card-wrapper {
    flex-direction: column;
  }
  .cid-seLs1p1TNc .card-box {
    padding: 2rem 1rem;
  }
  .cid-seLs1p1TNc .card-box,
  .cid-seLs1p1TNc .img-wrapper {
    width: 100%;
  }
  .cid-seLs1p1TNc .img-wrapper {
    padding: 0rem 1rem;
  }
  .cid-seLs1p1TNc * {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-seLs1p1TNc .card {
    margin-bottom: 2rem;
  }
}
.cid-seLs1p1TNc .card .card-wrapper .card-box .card-title,
.cid-seLs1p1TNc .card-box {
  color: #55acee;
}
.cid-seLFEyOiaO {
  background-image: url("../../../assets/images/mobile-boat-detailing-orlando-kissimmee-2000x1516.webp");
}
.cid-seLFEyOiaO .mbr-text {
  color: #e5e5e5;
}
.cid-seLFEyOiaO .icon-wrap {
  margin: auto;
  transition: all 0.3s;
  font-size: 2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  color: #ffffff;
}
.cid-seLFEyOiaO .icon-wrap:hover {
  border-color: #ff513c;
  transition: all 0.3s;
}
.cid-seLFEyOiaO .icon-wrap:hover .mbr-iconfont {
  color: #ff513c;
  transition: all 0.3s;
}
.cid-seLFEyOiaO .icon-wrap.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-seLFEyOiaO .icon-wrap span {
  padding-left: 6px;
}
.cid-seLFEyOiaO .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-seLFEyOiaO .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-seLFEyOiaO .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-seLFEyOiaO a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-seLFEyOiaO a.close:hover {
  color: #ffffff;
}
.cid-uBWp41CMdM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uBWp41CMdM .img-wrap {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-position: 50% 50%;
  z-index: 2;
  background-image: url("../../../assets/images/mobile-boat-detailing-orlando-fl-2000x1516.webp");
}
.cid-uBWp41CMdM .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-uBWp41CMdM .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-uBWp41CMdM .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-uBWp41CMdM .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-uBWp41CMdM .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-uBWp41CMdM .card .wrapper .mbr-text {
  color: #61728a;
  font-weight: 300;
}
.cid-uBWp41CMdM .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-uBWp41CMdM .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-uBWp41CMdM .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-uBWp41CMdM .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-uBWp41CMdM .card .wrapper .link-wrap {
  width: 100%;
}
.cid-uBWp41CMdM .card .wrapper .link-wrap .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
  transition-delay: 0.15s;
  text-align: left;
}
.cid-uBWp41CMdM .card .wrapper .link-wrap .link:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.2;
  left: 0;
}
.cid-uBWp41CMdM .card .wrapper .link-wrap .link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-uBWp41CMdM .card .wrapper .link-wrap .link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-u9KsYNHYdl {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9KsYNHYdl .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u9KsYNHYdl .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-u9KsYNHYdl .card .wrapper .mbr-section-title span:first-child {
  color: #1352ff;
}
.cid-u9KsYNHYdl .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #1352ff;
  background: linear-gradient(#1352ff 0%, #1352ff 69%, #1352ff 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u9KsYNHYdl .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u9KsYNHYdl .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u9KsYNHYdl .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-u9KsYNHYdl .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-u9KsYNHYdl .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u9KsYNHYdl .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u9KsYNHYdl .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u9KsYNHYdl .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-u9KsYNHYdl .card .wrapper .mbr-section-title,
.cid-u9KsYNHYdl .mbr-section-btn,
.cid-u9KsYNHYdl .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-u9KsYNHYdl .card .wrapper .mbr-section-title,
.cid-u9KsYNHYdl .mbr-section-btn,
.cid-u9KsYNHYdl .mbr-list .list DIV {
  text-align: center;
}
#custom-html-130 {
  /* Type valid CSS here */
}
#custom-html-130 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-130 p {
  font-size: 60px;
  color: #777;
}
.cid-seLlmdiVPQ .google-map {
  height: 30rem;
  position: relative;
}
.cid-seLlmdiVPQ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-seLlmdiVPQ .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-seLlmdiVPQ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-seLlmdiVPQ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv7tprjWD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv7tprjWD .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv7tprjWD .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv7tprjWD .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv7tprjWD .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv7tprjWD .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv7tprjWD .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv7tprjWD .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv7tprjWD .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv7tprjWD .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv7tprjWD .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv7tprjWD .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-seRaut2qeq .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-seRaut2qeq .nav-item,
.cid-seRaut2qeq .nav-link,
.cid-seRaut2qeq .navbar-caption {
  font-weight: normal;
}
.cid-seRaut2qeq .nav-item:focus,
.cid-seRaut2qeq .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-seRaut2qeq .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-seRaut2qeq .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-seRaut2qeq .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-seRaut2qeq .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-seRaut2qeq .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-seRaut2qeq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-seRaut2qeq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-seRaut2qeq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-seRaut2qeq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-seRaut2qeq .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-seRaut2qeq .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-seRaut2qeq .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-seRaut2qeq .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-seRaut2qeq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-seRaut2qeq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-seRaut2qeq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-seRaut2qeq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-seRaut2qeq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-seRaut2qeq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-seRaut2qeq .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-seRaut2qeq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-seRaut2qeq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-seRaut2qeq .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-seRaut2qeq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-seRaut2qeq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-seRaut2qeq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-seRaut2qeq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-seRaut2qeq .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-seRaut2qeq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-seRaut2qeq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-seRaut2qeq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-seRaut2qeq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-seRaut2qeq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-seRaut2qeq .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-seRaut2qeq .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-seRaut2qeq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-seRaut2qeq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-seRaut2qeq .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-seRaut2qeq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-seRaut2qeq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-seRaut2qeq .dropdown-item.active,
.cid-seRaut2qeq .dropdown-item:active {
  background-color: transparent;
}
.cid-seRaut2qeq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-seRaut2qeq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-seRaut2qeq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-seRaut2qeq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-seRaut2qeq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-seRaut2qeq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-seRaut2qeq .navbar-buttons {
  text-align: center;
}
.cid-seRaut2qeq .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-seRaut2qeq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-seRaut2qeq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-seRaut2qeq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-seRaut2qeq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-seRaut2qeq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-seRaut2qeq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-seRaut2qeq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-seRaut2qeq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-seRaut2qeq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-seRaut2qeq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-seRaut2qeq .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-seRaut2qeq a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-seRaut2qeq .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-seRaut2qeq .soc-item {
  margin: .5rem .3rem;
}
.cid-seRaut2qeq .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-seRaut2qeq .navbar {
    height: 77px;
  }
  .cid-seRaut2qeq .navbar.opened {
    height: auto;
  }
  .cid-seRaut2qeq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucjB10mQ2U .block {
  height: 800px;
}
@media (max-width: 992px) {
  .cid-ucjB10mQ2U .block {
    height: 400px;
  }
}
.cid-seRauwTw3K {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-seRauwTw3K .row {
  flex-direction: row-reverse;
}
.cid-seRauwTw3K .card1 {
  margin-bottom: 20px;
}
.cid-seRauwTw3K .card2 {
  margin-top: 20px;
}
.cid-seRauwTw3K .card3 {
  margin-bottom: 20px;
}
.cid-seRauwTw3K .card4 {
  margin-top: 20px;
}
.cid-seRauwTw3K .mbr-section-title {
  color: #ff653c;
  text-align: center;
}
.cid-seRauwTw3K .mbr-section-title.display-2 {
  line-height: 1.2;
  font-size: 30px;
}
.cid-seRauwTw3K .mbr-section-subtitle {
  color: #afafa7;
}
.cid-seRauwTw3K .mbr-text {
  color: #007bff;
}
.cid-seRauwTw3K .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-seRauwTw3K .card .card-wrapper {
  display: flex;
  transition: all 0.3s;
  margin: auto;
  min-height: 280px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04) !important;
  border-radius: 4px;
}
.cid-seRauwTw3K .card .card-wrapper .card-box .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.cid-seRauwTw3K .card .card-wrapper .card-box .img-wrapper img {
  width: 100%;
}
.cid-seRauwTw3K .card .card-wrapper .card-box .card-title {
  color: #ffffff;
}
.cid-seRauwTw3K .card .card-wrapper .card-box .mbr-text {
  color: #ffffff;
}
.cid-seRauwTw3K .card .card-wrapper .card-box .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-seRauwTw3K .card .card-wrapper .card-box .link-wrap {
  width: 100%;
}
.cid-seRauwTw3K .card .card-wrapper .card-box .link-wrap .link {
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-seRauwTw3K .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-seRauwTw3K .card-wrapper {
    flex-direction: column;
  }
  .cid-seRauwTw3K .card-box {
    padding: 2rem 1rem;
  }
  .cid-seRauwTw3K .card-box,
  .cid-seRauwTw3K .img-wrapper {
    width: 100%;
  }
  .cid-seRauwTw3K .img-wrapper {
    padding: 0rem 1rem;
  }
  .cid-seRauwTw3K * {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-seRauwTw3K .card {
    margin-bottom: 2rem;
  }
}
.cid-seRauwTw3K .card .card-wrapper .card-box .card-title,
.cid-seRauwTw3K .card-box {
  color: #007bff;
}
.cid-seRauy1jHq {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-seRauy1jHq .row {
  flex-direction: row-reverse;
}
.cid-seRauy1jHq .card1 {
  margin-bottom: 20px;
}
.cid-seRauy1jHq .card2 {
  margin-top: 20px;
}
.cid-seRauy1jHq .card3 {
  margin-bottom: 20px;
}
.cid-seRauy1jHq .card4 {
  margin-top: 20px;
}
.cid-seRauy1jHq .mbr-section-title {
  color: #1887cd;
  text-align: center;
}
.cid-seRauy1jHq .mbr-section-title.display-2 {
  line-height: 1.2;
  font-size: 30px;
}
.cid-seRauy1jHq .mbr-section-subtitle {
  color: #afafa7;
}
.cid-seRauy1jHq .mbr-text {
  color: #55acee;
}
.cid-seRauy1jHq .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-seRauy1jHq .card .card-wrapper {
  display: flex;
  transition: all 0.3s;
  margin: auto;
  min-height: 280px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04) !important;
  border-radius: 4px;
}
.cid-seRauy1jHq .card .card-wrapper .card-box .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.cid-seRauy1jHq .card .card-wrapper .card-box .img-wrapper img {
  width: 100%;
}
.cid-seRauy1jHq .card .card-wrapper .card-box .card-title {
  color: #ffffff;
}
.cid-seRauy1jHq .card .card-wrapper .card-box .mbr-text {
  color: #ffffff;
}
.cid-seRauy1jHq .card .card-wrapper .card-box .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-seRauy1jHq .card .card-wrapper .card-box .link-wrap {
  width: 100%;
}
.cid-seRauy1jHq .card .card-wrapper .card-box .link-wrap .link {
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-seRauy1jHq .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-seRauy1jHq .card-wrapper {
    flex-direction: column;
  }
  .cid-seRauy1jHq .card-box {
    padding: 2rem 1rem;
  }
  .cid-seRauy1jHq .card-box,
  .cid-seRauy1jHq .img-wrapper {
    width: 100%;
  }
  .cid-seRauy1jHq .img-wrapper {
    padding: 0rem 1rem;
  }
  .cid-seRauy1jHq * {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-seRauy1jHq .card {
    margin-bottom: 2rem;
  }
}
.cid-seRauy1jHq .card .card-wrapper .card-box .card-title,
.cid-seRauy1jHq .card-box {
  color: #55acee;
}
.cid-seXqc8xFOs {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/air-bubbles-1.gif");
}
.cid-seXqc8xFOs .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-seXqc8xFOs .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-seXqc8xFOs .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-seXqc8xFOs .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-seXqc8xFOs .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-seXqc8xFOs .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-seXqc8xFOs .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-seXqc8xFOs .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-seXqc8xFOs .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-seXqc8xFOs .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-seXqc8xFOs .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-seXqc8xFOs .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-seXqc8xFOs .card .wrapper .mbr-section-title,
.cid-seXqc8xFOs .mbr-section-btn,
.cid-seXqc8xFOs .mbr-list .list {
  text-align: center;
  color: #1352ff;
}
.cid-seRauz4JBi {
  background-image: url("../../../assets/images/paint-correction-orlando-2000x1500.webp");
}
.cid-seRauz4JBi .mbr-text {
  color: #e5e5e5;
}
.cid-seRauz4JBi .icon-wrap {
  margin: auto;
  transition: all 0.3s;
  font-size: 2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  color: #ffffff;
}
.cid-seRauz4JBi .icon-wrap:hover {
  border-color: #ff513c;
  transition: all 0.3s;
}
.cid-seRauz4JBi .icon-wrap:hover .mbr-iconfont {
  color: #ff513c;
  transition: all 0.3s;
}
.cid-seRauz4JBi .icon-wrap.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-seRauz4JBi .icon-wrap span {
  padding-left: 6px;
}
.cid-seRauz4JBi .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-seRauz4JBi .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-seRauz4JBi .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-seRauz4JBi a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-seRauz4JBi a.close:hover {
  color: #ffffff;
}
.cid-u9Ktb9v5uy {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9Ktb9v5uy .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u9Ktb9v5uy .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-u9Ktb9v5uy .card .wrapper .mbr-section-title span:first-child {
  color: #1352ff;
}
.cid-u9Ktb9v5uy .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #1352ff;
  background: linear-gradient(#1352ff 0%, #1352ff 69%, #1352ff 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u9Ktb9v5uy .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u9Ktb9v5uy .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u9Ktb9v5uy .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-u9Ktb9v5uy .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-u9Ktb9v5uy .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u9Ktb9v5uy .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u9Ktb9v5uy .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u9Ktb9v5uy .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-u9Ktb9v5uy .card .wrapper .mbr-section-title,
.cid-u9Ktb9v5uy .mbr-section-btn,
.cid-u9Ktb9v5uy .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-u9Ktb9v5uy .card .wrapper .mbr-section-title,
.cid-u9Ktb9v5uy .mbr-section-btn,
.cid-u9Ktb9v5uy .mbr-list .list DIV {
  text-align: center;
}
#custom-html-13f {
  /* Type valid CSS here */
}
#custom-html-13f div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-13f p {
  font-size: 60px;
  color: #777;
}
.cid-seRauIZIVB .google-map {
  height: 30rem;
  position: relative;
}
.cid-seRauIZIVB .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-seRauIZIVB .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-seRauIZIVB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-seRauIZIVB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv7R7bM7y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv7R7bM7y .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv7R7bM7y .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv7R7bM7y .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv7R7bM7y .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv7R7bM7y .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv7R7bM7y .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv7R7bM7y .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv7R7bM7y .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv7R7bM7y .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv7R7bM7y .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv7R7bM7y .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-seRva11OT1 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-seRva11OT1 .nav-item,
.cid-seRva11OT1 .nav-link,
.cid-seRva11OT1 .navbar-caption {
  font-weight: normal;
}
.cid-seRva11OT1 .nav-item:focus,
.cid-seRva11OT1 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-seRva11OT1 .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-seRva11OT1 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-seRva11OT1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-seRva11OT1 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-seRva11OT1 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-seRva11OT1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-seRva11OT1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-seRva11OT1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-seRva11OT1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-seRva11OT1 .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-seRva11OT1 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-seRva11OT1 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-seRva11OT1 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-seRva11OT1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-seRva11OT1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-seRva11OT1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-seRva11OT1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-seRva11OT1 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-seRva11OT1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-seRva11OT1 .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-seRva11OT1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-seRva11OT1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-seRva11OT1 .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-seRva11OT1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-seRva11OT1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-seRva11OT1 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-seRva11OT1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-seRva11OT1 .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-seRva11OT1 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-seRva11OT1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-seRva11OT1 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-seRva11OT1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-seRva11OT1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-seRva11OT1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-seRva11OT1 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-seRva11OT1 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-seRva11OT1 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-seRva11OT1 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-seRva11OT1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-seRva11OT1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-seRva11OT1 .dropdown-item.active,
.cid-seRva11OT1 .dropdown-item:active {
  background-color: transparent;
}
.cid-seRva11OT1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-seRva11OT1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-seRva11OT1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-seRva11OT1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-seRva11OT1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-seRva11OT1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-seRva11OT1 .navbar-buttons {
  text-align: center;
}
.cid-seRva11OT1 .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-seRva11OT1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-seRva11OT1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-seRva11OT1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-seRva11OT1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-seRva11OT1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-seRva11OT1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-seRva11OT1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-seRva11OT1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-seRva11OT1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-seRva11OT1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-seRva11OT1 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-seRva11OT1 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-seRva11OT1 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-seRva11OT1 .soc-item {
  margin: .5rem .3rem;
}
.cid-seRva11OT1 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-seRva11OT1 .navbar {
    height: 77px;
  }
  .cid-seRva11OT1 .navbar.opened {
    height: auto;
  }
  .cid-seRva11OT1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-seRx8rA3oN {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-seRx8rA3oN .img-wrap img {
  width: 100%;
  position: relative;
  z-index: 1;
}
.cid-seRx8rA3oN .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-seRx8rA3oN .card .wrapper {
  overflow: hidden;
}
.cid-seRx8rA3oN .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-seRx8rA3oN .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-seRx8rA3oN .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-seRx8rA3oN .card .wrapper .mbr-text {
  color: #61728a;
  font-weight: 300;
}
.cid-seRx8rA3oN .card .wrapper .sign-wrap {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cid-seRx8rA3oN .card .wrapper .sign-wrap img {
  width: 140px;
}
.cid-seRx8rA3oN .card .wrapper .mbr-section-title {
  color: #ff653c;
}
.cid-seXpfddTRT {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/air-bubbles-1.gif");
}
.cid-seXpfddTRT .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-seXpfddTRT .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-seXpfddTRT .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-seXpfddTRT .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-seXpfddTRT .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-seXpfddTRT .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-seXpfddTRT .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-seXpfddTRT .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-seXpfddTRT .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-seXpfddTRT .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-seXpfddTRT .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-seXpfddTRT .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-seXpfddTRT .card .wrapper .mbr-section-title,
.cid-seXpfddTRT .mbr-section-btn,
.cid-seXpfddTRT .mbr-list .list {
  text-align: center;
  color: #1352ff;
}
.cid-u9KuK7yF3X {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9KuK7yF3X .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u9KuK7yF3X .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-u9KuK7yF3X .card .wrapper .mbr-section-title span:first-child {
  color: #1352ff;
}
.cid-u9KuK7yF3X .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #1352ff;
  background: linear-gradient(#1352ff 0%, #1352ff 69%, #1352ff 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u9KuK7yF3X .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u9KuK7yF3X .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u9KuK7yF3X .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-u9KuK7yF3X .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-u9KuK7yF3X .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u9KuK7yF3X .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u9KuK7yF3X .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u9KuK7yF3X .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-u9KuK7yF3X .card .wrapper .mbr-section-title,
.cid-u9KuK7yF3X .mbr-section-btn,
.cid-u9KuK7yF3X .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-u9KuK7yF3X .card .wrapper .mbr-section-title,
.cid-u9KuK7yF3X .mbr-section-btn,
.cid-u9KuK7yF3X .mbr-list .list DIV {
  text-align: center;
}
#custom-html-13p {
  /* Type valid CSS here */
}
#custom-html-13p div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-13p p {
  font-size: 60px;
  color: #777;
}
.cid-seRva6mAuQ .google-map {
  height: 30rem;
  position: relative;
}
.cid-seRva6mAuQ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-seRva6mAuQ .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-seRva6mAuQ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-seRva6mAuQ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv89kSYQm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv89kSYQm .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv89kSYQm .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv89kSYQm .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv89kSYQm .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv89kSYQm .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv89kSYQm .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv89kSYQm .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv89kSYQm .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv89kSYQm .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv89kSYQm .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv89kSYQm .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-seXFFvp9X5 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-seXFFvp9X5 .nav-item,
.cid-seXFFvp9X5 .nav-link,
.cid-seXFFvp9X5 .navbar-caption {
  font-weight: normal;
}
.cid-seXFFvp9X5 .nav-item:focus,
.cid-seXFFvp9X5 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-seXFFvp9X5 .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-seXFFvp9X5 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-seXFFvp9X5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-seXFFvp9X5 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-seXFFvp9X5 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-seXFFvp9X5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-seXFFvp9X5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-seXFFvp9X5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-seXFFvp9X5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-seXFFvp9X5 .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-seXFFvp9X5 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-seXFFvp9X5 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-seXFFvp9X5 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-seXFFvp9X5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-seXFFvp9X5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-seXFFvp9X5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-seXFFvp9X5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-seXFFvp9X5 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-seXFFvp9X5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-seXFFvp9X5 .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-seXFFvp9X5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-seXFFvp9X5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-seXFFvp9X5 .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-seXFFvp9X5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-seXFFvp9X5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-seXFFvp9X5 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-seXFFvp9X5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-seXFFvp9X5 .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-seXFFvp9X5 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-seXFFvp9X5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-seXFFvp9X5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-seXFFvp9X5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-seXFFvp9X5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-seXFFvp9X5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-seXFFvp9X5 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-seXFFvp9X5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-seXFFvp9X5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-seXFFvp9X5 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-seXFFvp9X5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-seXFFvp9X5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-seXFFvp9X5 .dropdown-item.active,
.cid-seXFFvp9X5 .dropdown-item:active {
  background-color: transparent;
}
.cid-seXFFvp9X5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-seXFFvp9X5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-seXFFvp9X5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-seXFFvp9X5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-seXFFvp9X5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-seXFFvp9X5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-seXFFvp9X5 .navbar-buttons {
  text-align: center;
}
.cid-seXFFvp9X5 .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-seXFFvp9X5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-seXFFvp9X5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-seXFFvp9X5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-seXFFvp9X5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-seXFFvp9X5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-seXFFvp9X5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-seXFFvp9X5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-seXFFvp9X5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-seXFFvp9X5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-seXFFvp9X5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-seXFFvp9X5 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-seXFFvp9X5 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-seXFFvp9X5 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-seXFFvp9X5 .soc-item {
  margin: .5rem .3rem;
}
.cid-seXFFvp9X5 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-seXFFvp9X5 .navbar {
    height: 77px;
  }
  .cid-seXFFvp9X5 .navbar.opened {
    height: auto;
  }
  .cid-seXFFvp9X5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-seXFFwoWlO {
  padding-top: 135px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-seXFFwoWlO .row {
  flex-direction: row-reverse;
}
.cid-seXFFwoWlO .card1 {
  margin-bottom: 20px;
}
.cid-seXFFwoWlO .card2 {
  margin-top: 20px;
}
.cid-seXFFwoWlO .card3 {
  margin-bottom: 20px;
}
.cid-seXFFwoWlO .card4 {
  margin-top: 20px;
}
.cid-seXFFwoWlO .mbr-section-title {
  color: #ff653c;
  text-align: center;
}
.cid-seXFFwoWlO .mbr-section-title.display-2 {
  line-height: 1.2;
  font-size: 30px;
}
.cid-seXFFwoWlO .mbr-section-subtitle {
  color: #afafa7;
}
.cid-seXFFwoWlO .mbr-text {
  color: #55acee;
}
.cid-seXFFwoWlO .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-seXFFwoWlO .card .card-wrapper {
  display: flex;
  transition: all 0.3s;
  margin: auto;
  min-height: 280px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04) !important;
  border-radius: 4px;
}
.cid-seXFFwoWlO .card .card-wrapper .card-box .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.cid-seXFFwoWlO .card .card-wrapper .card-box .img-wrapper img {
  width: 100%;
}
.cid-seXFFwoWlO .card .card-wrapper .card-box .card-title {
  color: #ffffff;
}
.cid-seXFFwoWlO .card .card-wrapper .card-box .mbr-text {
  color: #ffffff;
}
.cid-seXFFwoWlO .card .card-wrapper .card-box .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-seXFFwoWlO .card .card-wrapper .card-box .link-wrap {
  width: 100%;
}
.cid-seXFFwoWlO .card .card-wrapper .card-box .link-wrap .link {
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-seXFFwoWlO .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-seXFFwoWlO .card-wrapper {
    flex-direction: column;
  }
  .cid-seXFFwoWlO .card-box {
    padding: 2rem 1rem;
  }
  .cid-seXFFwoWlO .card-box,
  .cid-seXFFwoWlO .img-wrapper {
    width: 100%;
  }
  .cid-seXFFwoWlO .img-wrapper {
    padding: 0rem 1rem;
  }
  .cid-seXFFwoWlO * {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-seXFFwoWlO .card {
    margin-bottom: 2rem;
  }
}
.cid-seXFFxnDRM {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/air-bubbles-1.gif");
}
.cid-seXFFxnDRM .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-seXFFxnDRM .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-seXFFxnDRM .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-seXFFxnDRM .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-seXFFxnDRM .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-seXFFxnDRM .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-seXFFxnDRM .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-seXFFxnDRM .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-seXFFxnDRM .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-seXFFxnDRM .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-seXFFxnDRM .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-seXFFxnDRM .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-seXFFxnDRM .card .wrapper .mbr-section-title,
.cid-seXFFxnDRM .mbr-section-btn,
.cid-seXFFxnDRM .mbr-list .list {
  text-align: center;
  color: #1352ff;
}
.cid-u9KswHHrQ1 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9KswHHrQ1 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u9KswHHrQ1 .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-u9KswHHrQ1 .card .wrapper .mbr-section-title span:first-child {
  color: #1352ff;
}
.cid-u9KswHHrQ1 .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #1352ff;
  background: linear-gradient(#1352ff 0%, #1352ff 69%, #1352ff 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u9KswHHrQ1 .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u9KswHHrQ1 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u9KswHHrQ1 .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-u9KswHHrQ1 .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-u9KswHHrQ1 .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u9KswHHrQ1 .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u9KswHHrQ1 .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u9KswHHrQ1 .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-u9KswHHrQ1 .card .wrapper .mbr-section-title,
.cid-u9KswHHrQ1 .mbr-section-btn,
.cid-u9KswHHrQ1 .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-u9KswHHrQ1 .card .wrapper .mbr-section-title,
.cid-u9KswHHrQ1 .mbr-section-btn,
.cid-u9KswHHrQ1 .mbr-list .list DIV {
  text-align: center;
}
#custom-html-14t {
  /* Type valid CSS here */
}
#custom-html-14t div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-14t p {
  font-size: 60px;
  color: #777;
}
.cid-seXFFywIS7 .google-map {
  height: 30rem;
  position: relative;
}
.cid-seXFFywIS7 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-seXFFywIS7 .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-seXFFywIS7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-seXFFywIS7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv6o8YvM7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv6o8YvM7 .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv6o8YvM7 .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv6o8YvM7 .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv6o8YvM7 .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv6o8YvM7 .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv6o8YvM7 .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv6o8YvM7 .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv6o8YvM7 .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv6o8YvM7 .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv6o8YvM7 .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv6o8YvM7 .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-seXSUUY5ca .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-seXSUUY5ca .nav-item,
.cid-seXSUUY5ca .nav-link,
.cid-seXSUUY5ca .navbar-caption {
  font-weight: normal;
}
.cid-seXSUUY5ca .nav-item:focus,
.cid-seXSUUY5ca .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-seXSUUY5ca .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-seXSUUY5ca .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-seXSUUY5ca .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-seXSUUY5ca .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-seXSUUY5ca .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-seXSUUY5ca .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-seXSUUY5ca .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-seXSUUY5ca .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-seXSUUY5ca .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-seXSUUY5ca .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-seXSUUY5ca .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-seXSUUY5ca .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-seXSUUY5ca .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-seXSUUY5ca .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-seXSUUY5ca .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-seXSUUY5ca .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-seXSUUY5ca .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-seXSUUY5ca .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-seXSUUY5ca .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-seXSUUY5ca .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-seXSUUY5ca .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-seXSUUY5ca .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-seXSUUY5ca .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-seXSUUY5ca .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-seXSUUY5ca .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-seXSUUY5ca .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-seXSUUY5ca .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-seXSUUY5ca .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-seXSUUY5ca .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-seXSUUY5ca .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-seXSUUY5ca .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-seXSUUY5ca .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-seXSUUY5ca .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-seXSUUY5ca .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-seXSUUY5ca .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-seXSUUY5ca .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-seXSUUY5ca .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-seXSUUY5ca .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-seXSUUY5ca .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-seXSUUY5ca .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-seXSUUY5ca .dropdown-item.active,
.cid-seXSUUY5ca .dropdown-item:active {
  background-color: transparent;
}
.cid-seXSUUY5ca .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-seXSUUY5ca .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-seXSUUY5ca .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-seXSUUY5ca .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-seXSUUY5ca .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-seXSUUY5ca ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-seXSUUY5ca .navbar-buttons {
  text-align: center;
}
.cid-seXSUUY5ca .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-seXSUUY5ca button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-seXSUUY5ca button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-seXSUUY5ca button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-seXSUUY5ca button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-seXSUUY5ca button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-seXSUUY5ca button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-seXSUUY5ca nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-seXSUUY5ca nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-seXSUUY5ca nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-seXSUUY5ca nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-seXSUUY5ca .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-seXSUUY5ca a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-seXSUUY5ca .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-seXSUUY5ca .soc-item {
  margin: .5rem .3rem;
}
.cid-seXSUUY5ca .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-seXSUUY5ca .navbar {
    height: 77px;
  }
  .cid-seXSUUY5ca .navbar.opened {
    height: auto;
  }
  .cid-seXSUUY5ca .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-srKp7q2UKF {
  background-image: url("../../../assets/images/best-mobile-detailing-orlandofl-1-1920x1920.webp");
}
.cid-srKp7q2UKF .block {
  height: 704px;
}
@media (max-width: 992px) {
  .cid-srKp7q2UKF .block {
    height: 352px;
  }
}
.cid-seXSUW679l {
  padding-top: 135px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-seXSUW679l .row {
  flex-direction: row-reverse;
}
.cid-seXSUW679l .card1 {
  margin-bottom: 20px;
}
.cid-seXSUW679l .card2 {
  margin-top: 20px;
}
.cid-seXSUW679l .card3 {
  margin-bottom: 20px;
}
.cid-seXSUW679l .card4 {
  margin-top: 20px;
}
.cid-seXSUW679l .mbr-section-title {
  color: #ff653c;
  text-align: center;
}
.cid-seXSUW679l .mbr-section-title.display-2 {
  line-height: 1.2;
  font-size: 30px;
}
.cid-seXSUW679l .mbr-section-subtitle {
  color: #afafa7;
}
.cid-seXSUW679l .mbr-text {
  color: #55acee;
}
.cid-seXSUW679l .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-seXSUW679l .card .card-wrapper {
  display: flex;
  transition: all 0.3s;
  margin: auto;
  min-height: 280px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04) !important;
  border-radius: 4px;
}
.cid-seXSUW679l .card .card-wrapper .card-box .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.cid-seXSUW679l .card .card-wrapper .card-box .img-wrapper img {
  width: 100%;
}
.cid-seXSUW679l .card .card-wrapper .card-box .card-title {
  color: #ffffff;
}
.cid-seXSUW679l .card .card-wrapper .card-box .mbr-text {
  color: #ffffff;
}
.cid-seXSUW679l .card .card-wrapper .card-box .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-seXSUW679l .card .card-wrapper .card-box .link-wrap {
  width: 100%;
}
.cid-seXSUW679l .card .card-wrapper .card-box .link-wrap .link {
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-seXSUW679l .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-seXSUW679l .card-wrapper {
    flex-direction: column;
  }
  .cid-seXSUW679l .card-box {
    padding: 2rem 1rem;
  }
  .cid-seXSUW679l .card-box,
  .cid-seXSUW679l .img-wrapper {
    width: 100%;
  }
  .cid-seXSUW679l .img-wrapper {
    padding: 0rem 1rem;
  }
  .cid-seXSUW679l * {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-seXSUW679l .card {
    margin-bottom: 2rem;
  }
}
.cid-seXSUWN2js {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/air-bubbles-1.gif");
}
.cid-seXSUWN2js .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-seXSUWN2js .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-seXSUWN2js .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-seXSUWN2js .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-seXSUWN2js .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-seXSUWN2js .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-seXSUWN2js .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-seXSUWN2js .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-seXSUWN2js .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-seXSUWN2js .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-seXSUWN2js .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-seXSUWN2js .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-seXSUWN2js .card .wrapper .mbr-section-title,
.cid-seXSUWN2js .mbr-section-btn,
.cid-seXSUWN2js .mbr-list .list {
  text-align: center;
  color: #1352ff;
}
.cid-u9KsObGBNj {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9KsObGBNj .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u9KsObGBNj .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-u9KsObGBNj .card .wrapper .mbr-section-title span:first-child {
  color: #1352ff;
}
.cid-u9KsObGBNj .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #1352ff;
  background: linear-gradient(#1352ff 0%, #1352ff 69%, #1352ff 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u9KsObGBNj .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u9KsObGBNj .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u9KsObGBNj .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-u9KsObGBNj .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-u9KsObGBNj .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u9KsObGBNj .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u9KsObGBNj .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u9KsObGBNj .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-u9KsObGBNj .card .wrapper .mbr-section-title,
.cid-u9KsObGBNj .mbr-section-btn,
.cid-u9KsObGBNj .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-u9KsObGBNj .card .wrapper .mbr-section-title,
.cid-u9KsObGBNj .mbr-section-btn,
.cid-u9KsObGBNj .mbr-list .list DIV {
  text-align: center;
}
#custom-html-151 {
  /* Type valid CSS here */
}
#custom-html-151 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-151 p {
  font-size: 60px;
  color: #777;
}
.cid-seXSUXUfAA .google-map {
  height: 30rem;
  position: relative;
}
.cid-seXSUXUfAA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-seXSUXUfAA .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-seXSUXUfAA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-seXSUXUfAA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv7kobUGo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv7kobUGo .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv7kobUGo .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv7kobUGo .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv7kobUGo .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv7kobUGo .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv7kobUGo .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv7kobUGo .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv7kobUGo .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv7kobUGo .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv7kobUGo .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv7kobUGo .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sfve7UOgUM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sfve7UOgUM .nav-item,
.cid-sfve7UOgUM .nav-link,
.cid-sfve7UOgUM .navbar-caption {
  font-weight: normal;
}
.cid-sfve7UOgUM .nav-item:focus,
.cid-sfve7UOgUM .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sfve7UOgUM .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sfve7UOgUM .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sfve7UOgUM .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sfve7UOgUM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sfve7UOgUM .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sfve7UOgUM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sfve7UOgUM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sfve7UOgUM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sfve7UOgUM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sfve7UOgUM .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sfve7UOgUM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sfve7UOgUM .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sfve7UOgUM .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sfve7UOgUM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sfve7UOgUM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sfve7UOgUM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sfve7UOgUM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sfve7UOgUM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sfve7UOgUM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sfve7UOgUM .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-sfve7UOgUM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sfve7UOgUM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sfve7UOgUM .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sfve7UOgUM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sfve7UOgUM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sfve7UOgUM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sfve7UOgUM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sfve7UOgUM .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-sfve7UOgUM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sfve7UOgUM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sfve7UOgUM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sfve7UOgUM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sfve7UOgUM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sfve7UOgUM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sfve7UOgUM .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sfve7UOgUM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sfve7UOgUM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sfve7UOgUM .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sfve7UOgUM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sfve7UOgUM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sfve7UOgUM .dropdown-item.active,
.cid-sfve7UOgUM .dropdown-item:active {
  background-color: transparent;
}
.cid-sfve7UOgUM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sfve7UOgUM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sfve7UOgUM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sfve7UOgUM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sfve7UOgUM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sfve7UOgUM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sfve7UOgUM .navbar-buttons {
  text-align: center;
}
.cid-sfve7UOgUM .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sfve7UOgUM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sfve7UOgUM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-sfve7UOgUM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sfve7UOgUM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sfve7UOgUM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sfve7UOgUM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sfve7UOgUM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfve7UOgUM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sfve7UOgUM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sfve7UOgUM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfve7UOgUM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sfve7UOgUM a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sfve7UOgUM .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sfve7UOgUM .soc-item {
  margin: .5rem .3rem;
}
.cid-sfve7UOgUM .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sfve7UOgUM .navbar {
    height: 77px;
  }
  .cid-sfve7UOgUM .navbar.opened {
    height: auto;
  }
  .cid-sfve7UOgUM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sfve7VyWbm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sfve7VyWbm .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sfve7VyWbm .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sfve7VyWbm .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-sfve7VyWbm .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sfve7VyWbm .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sfve7VyWbm .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sfve7VyWbm .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sfve7VyWbm .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sfve7VyWbm .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sfve7VyWbm .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sfve7VyWbm .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sfve7VyWbm .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sfve7VyWbm .card .wrapper .mbr-section-title,
.cid-sfve7VyWbm .mbr-section-btn,
.cid-sfve7VyWbm .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-sfve7VyWbm .card .wrapper .mbr-list .list,
.cid-sfve7VyWbm .card .wrapper .mbr-section-btn {
  color: #000000;
}
.cid-sfve7VUbKO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sfve7VUbKO .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sfve7VUbKO .card {
  padding: 5px;
  transition: transform 0.6s ease 0s;
}
.cid-sfve7VUbKO .card:hover {
  transform: translateY(-20px);
}
.cid-sfve7VUbKO .card .card-wrapper {
  background: #007bff;
  background-position: center;
  padding: 40px 20px;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-sfve7VUbKO .card .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sfve7VUbKO .card .card-wrapper .card-box .card-subtitle {
  color: #ffffff;
}
.cid-sfve7VUbKO .card .card-wrapper .card-box .start-from {
  line-height: 1.2;
  margin-bottom: 15px;
}
.cid-sfve7VUbKO .card .card-wrapper .card-box .mbr-usd {
  vertical-align: top;
  display: inline-block;
  color: #fff900;
  line-height: 0.6;
}
.cid-sfve7VUbKO .card .card-wrapper .card-box .mbr-price {
  color: #fff900;
  line-height: 0.6;
}
.cid-sfve7VUbKO .card .card-wrapper .card-box .mbr-text,
.cid-sfve7VUbKO .card .card-wrapper .card-box .link-align {
  color: #ffffff;
}
.cid-sfve7VUbKO .card .card-wrapper .card-box .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sfve7VUbKO .card .card-wrapper .card-box .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sfve7VUbKO .card .card-wrapper .card-box .mbr-list .list li {
  line-height: 1.75;
}
.cid-sfve7VUbKO .card .card-wrapper .card-box .mbr-list .list li:before {
  font-weight: 900;
  color: #ffffff;
  display: inline-block;
  content: "✓";
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-sfve7WGssu {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/air-bubbles-1.gif");
}
.cid-sfve7WGssu .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sfve7WGssu .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sfve7WGssu .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-sfve7WGssu .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sfve7WGssu .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sfve7WGssu .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sfve7WGssu .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sfve7WGssu .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sfve7WGssu .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sfve7WGssu .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sfve7WGssu .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sfve7WGssu .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sfve7WGssu .card .wrapper .mbr-section-title,
.cid-sfve7WGssu .mbr-section-btn,
.cid-sfve7WGssu .mbr-list .list {
  text-align: center;
  color: #1352ff;
}
.cid-sguDHBbSwN {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f5f5f5;
}
.cid-sguDHBbSwN .wrapper {
  overflow: hidden;
  position: relative;
}
.cid-sguDHBbSwN .wrapper .box {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-30%);
}
.cid-sguDHBbSwN .wrapper .box .mbr-media {
  z-index: 2;
}
.cid-sguDHBbSwN .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  background: transparent;
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.cid-sguDHBbSwN .icon-wrap:hover span {
  color: #ff513c;
}
.cid-sguDHBbSwN .icon-wrap span {
  padding-left: 4px;
}
.cid-sguDHBbSwN .mbr-media span {
  font-size: 2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff;
}
.cid-sguDHBbSwN .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-sguDHBbSwN .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sguDHBbSwN .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sguDHBbSwN .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sguDHBbSwN a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sguDHBbSwN a.close:hover {
  color: #ffffff;
}
.cid-sguDHBbSwN .img-wrap .overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #06182d;
  opacity: 0.8;
  pointer-events: none;
}
.cid-sguDHBbSwN .img-wrap img {
  width: 100%;
}
.cid-sguDHBbSwN .mbr-section-title {
  color: #06182d;
  margin-bottom: 1rem;
  transition: all 0.15s linear 0s;
}
.cid-sguDHBbSwN .mbr-section-title.display-5 {
  letter-spacing: 1px;
}
.cid-sguDHBbSwN .mbr-section-title:hover {
  opacity: 0.8;
}
.cid-sguDHBbSwN .mbr-section-subtitle {
  color: #61728a;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.cid-sguDHBbSwN .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-sguDHBbSwN .btn {
  margin: 0px !important;
}
.cid-sguDHBbSwN .btn.btn-success-outline {
  color: #000000;
}
.cid-sguDHBbSwN .btn.btn-sm {
  padding: 7px 39px;
}
.cid-sguDHBbSwN .share_buttons .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #c3cad2;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 10px 0 10px auto;
}
.cid-sguDHBbSwN .share_buttons .icon-wrapper:hover .link-icon {
  color: #007bff;
}
.cid-sguDHBbSwN .share_buttons .icon-wrapper .link-icon {
  display: inline-block;
  color: #61728a;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-sguDHBbSwN .share_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-sguDHBbSwN .share_buttons .icon-wrapper {
    margin: 10px !important;
  }
}
.cid-sguDHBbSwN .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
.cid-sguDHBbSwN .sticky-tag .mbr-text {
  padding: 5px 6px;
  margin: 0 3px 9px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transform: skew(-22deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  font-weight: 400;
  border-image-slice: 1;
  color: #ffffff;
}
.cid-sguDHBbSwN .sticky-tag .mbr-text::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 1.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #ff5e3a transparent transparent;
  transform: skew(22deg) !important;
}
.cid-uckJjN3Xvl {
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-uckJjN3Xvl .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-uckJjN3Xvl .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-uckJjN3Xvl .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-uckJjN3Xvl .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uckJjN3Xvl .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-uckJjN3Xvl .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-uckJjN3Xvl .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-uckJjN3Xvl .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-uckJjN3Xvl .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-uckJjN3Xvl .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-uckJjN3Xvl .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-uckJjN3Xvl .card .wrapper .mbr-section-title,
.cid-uckJjN3Xvl .mbr-section-btn,
.cid-uckJjN3Xvl .mbr-list .list {
  text-align: center;
}
#custom-html-15i {
  /* Type valid CSS here */
}
#custom-html-15i div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-15i p {
  font-size: 60px;
  color: #777;
}
.cid-sfve7XjBBg .google-map {
  height: 30rem;
  position: relative;
}
.cid-sfve7XjBBg .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sfve7XjBBg .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-sfve7XjBBg .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sfve7XjBBg .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv4G2764F {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv4G2764F .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv4G2764F .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv4G2764F .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv4G2764F .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv4G2764F .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv4G2764F .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv4G2764F .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv4G2764F .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv4G2764F .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv4G2764F .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv4G2764F .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sfvondpcyC .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sfvondpcyC .nav-item,
.cid-sfvondpcyC .nav-link,
.cid-sfvondpcyC .navbar-caption {
  font-weight: normal;
}
.cid-sfvondpcyC .nav-item:focus,
.cid-sfvondpcyC .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sfvondpcyC .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sfvondpcyC .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sfvondpcyC .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sfvondpcyC .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sfvondpcyC .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sfvondpcyC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sfvondpcyC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sfvondpcyC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sfvondpcyC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sfvondpcyC .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sfvondpcyC .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sfvondpcyC .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sfvondpcyC .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sfvondpcyC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sfvondpcyC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sfvondpcyC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sfvondpcyC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sfvondpcyC .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sfvondpcyC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sfvondpcyC .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-sfvondpcyC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sfvondpcyC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sfvondpcyC .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sfvondpcyC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sfvondpcyC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sfvondpcyC .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sfvondpcyC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sfvondpcyC .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-sfvondpcyC .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sfvondpcyC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sfvondpcyC .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sfvondpcyC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sfvondpcyC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sfvondpcyC .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sfvondpcyC .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sfvondpcyC .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sfvondpcyC .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sfvondpcyC .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sfvondpcyC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sfvondpcyC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sfvondpcyC .dropdown-item.active,
.cid-sfvondpcyC .dropdown-item:active {
  background-color: transparent;
}
.cid-sfvondpcyC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sfvondpcyC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sfvondpcyC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sfvondpcyC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sfvondpcyC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sfvondpcyC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sfvondpcyC .navbar-buttons {
  text-align: center;
}
.cid-sfvondpcyC .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sfvondpcyC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sfvondpcyC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-sfvondpcyC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sfvondpcyC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sfvondpcyC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sfvondpcyC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sfvondpcyC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfvondpcyC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sfvondpcyC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sfvondpcyC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfvondpcyC .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sfvondpcyC a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sfvondpcyC .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sfvondpcyC .soc-item {
  margin: .5rem .3rem;
}
.cid-sfvondpcyC .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sfvondpcyC .navbar {
    height: 77px;
  }
  .cid-sfvondpcyC .navbar.opened {
    height: auto;
  }
  .cid-sfvondpcyC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sfvAy6mbL3 {
  padding-top: 135px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sfvAy6mbL3 .row {
  flex-direction: row-reverse;
}
.cid-sfvAy6mbL3 .card1 {
  margin-bottom: 20px;
}
.cid-sfvAy6mbL3 .card2 {
  margin-top: 20px;
}
.cid-sfvAy6mbL3 .card3 {
  margin-bottom: 20px;
}
.cid-sfvAy6mbL3 .card4 {
  margin-top: 20px;
}
.cid-sfvAy6mbL3 .mbr-section-title {
  color: #ff653c;
  text-align: center;
}
.cid-sfvAy6mbL3 .mbr-section-title.display-2 {
  line-height: 1.2;
  font-size: 30px;
}
.cid-sfvAy6mbL3 .mbr-section-subtitle {
  color: #afafa7;
}
.cid-sfvAy6mbL3 .mbr-text {
  color: #007bff;
}
.cid-sfvAy6mbL3 .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sfvAy6mbL3 .card .card-wrapper {
  display: flex;
  transition: all 0.3s;
  margin: auto;
  min-height: 280px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04) !important;
  border-radius: 4px;
}
.cid-sfvAy6mbL3 .card .card-wrapper .card-box .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.cid-sfvAy6mbL3 .card .card-wrapper .card-box .img-wrapper img {
  width: 100%;
}
.cid-sfvAy6mbL3 .card .card-wrapper .card-box .card-title {
  color: #ffffff;
}
.cid-sfvAy6mbL3 .card .card-wrapper .card-box .mbr-text {
  color: #ffffff;
}
.cid-sfvAy6mbL3 .card .card-wrapper .card-box .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sfvAy6mbL3 .card .card-wrapper .card-box .link-wrap {
  width: 100%;
}
.cid-sfvAy6mbL3 .card .card-wrapper .card-box .link-wrap .link {
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sfvAy6mbL3 .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-sfvAy6mbL3 .card-wrapper {
    flex-direction: column;
  }
  .cid-sfvAy6mbL3 .card-box {
    padding: 2rem 1rem;
  }
  .cid-sfvAy6mbL3 .card-box,
  .cid-sfvAy6mbL3 .img-wrapper {
    width: 100%;
  }
  .cid-sfvAy6mbL3 .img-wrapper {
    padding: 0rem 1rem;
  }
  .cid-sfvAy6mbL3 * {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-sfvAy6mbL3 .card {
    margin-bottom: 2rem;
  }
}
.cid-sfvAy6mbL3 .card .card-wrapper .card-box .card-title,
.cid-sfvAy6mbL3 .card-box {
  color: #007bff;
}
.cid-sfvDS3oPFQ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/air-bubbles-1.gif");
}
.cid-sfvDS3oPFQ .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sfvDS3oPFQ .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sfvDS3oPFQ .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-sfvDS3oPFQ .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sfvDS3oPFQ .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sfvDS3oPFQ .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sfvDS3oPFQ .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sfvDS3oPFQ .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sfvDS3oPFQ .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sfvDS3oPFQ .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sfvDS3oPFQ .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sfvDS3oPFQ .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sfvDS3oPFQ .card .wrapper .mbr-section-title,
.cid-sfvDS3oPFQ .mbr-section-btn,
.cid-sfvDS3oPFQ .mbr-list .list {
  text-align: center;
  color: #1352ff;
}
.cid-sguGk7FITO {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f5f5f5;
}
.cid-sguGk7FITO .wrapper {
  overflow: hidden;
  position: relative;
}
.cid-sguGk7FITO .wrapper .box {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-30%);
}
.cid-sguGk7FITO .wrapper .box .mbr-media {
  z-index: 2;
}
.cid-sguGk7FITO .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  background: transparent;
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.cid-sguGk7FITO .icon-wrap:hover span {
  color: #ff513c;
}
.cid-sguGk7FITO .icon-wrap span {
  padding-left: 4px;
}
.cid-sguGk7FITO .mbr-media span {
  font-size: 2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff;
}
.cid-sguGk7FITO .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-sguGk7FITO .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sguGk7FITO .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sguGk7FITO .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sguGk7FITO a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sguGk7FITO a.close:hover {
  color: #ffffff;
}
.cid-sguGk7FITO .img-wrap .overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #06182d;
  opacity: 0.8;
  pointer-events: none;
}
.cid-sguGk7FITO .img-wrap img {
  width: 100%;
}
.cid-sguGk7FITO .mbr-section-title {
  color: #06182d;
  margin-bottom: 1rem;
  transition: all 0.15s linear 0s;
}
.cid-sguGk7FITO .mbr-section-title.display-5 {
  letter-spacing: 1px;
}
.cid-sguGk7FITO .mbr-section-title:hover {
  opacity: 0.8;
}
.cid-sguGk7FITO .mbr-section-subtitle {
  color: #61728a;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.cid-sguGk7FITO .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-sguGk7FITO .btn {
  margin: 0px !important;
}
.cid-sguGk7FITO .btn.btn-success-outline {
  color: #000000;
}
.cid-sguGk7FITO .btn.btn-sm {
  padding: 7px 39px;
}
.cid-sguGk7FITO .share_buttons .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #c3cad2;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 10px 0 10px auto;
}
.cid-sguGk7FITO .share_buttons .icon-wrapper:hover .link-icon {
  color: #007bff;
}
.cid-sguGk7FITO .share_buttons .icon-wrapper .link-icon {
  display: inline-block;
  color: #61728a;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-sguGk7FITO .share_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-sguGk7FITO .share_buttons .icon-wrapper {
    margin: 10px !important;
  }
}
.cid-sguGk7FITO .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
.cid-sguGk7FITO .sticky-tag .mbr-text {
  padding: 5px 6px;
  margin: 0 3px 9px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transform: skew(-22deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  font-weight: 400;
  border-image-slice: 1;
  color: #ffffff;
}
.cid-sguGk7FITO .sticky-tag .mbr-text::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 1.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #ff5e3a transparent transparent;
  transform: skew(22deg) !important;
}
.cid-u9KqU9aEj6 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9KqU9aEj6 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u9KqU9aEj6 .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-u9KqU9aEj6 .card .wrapper .mbr-section-title span:first-child {
  color: #1352ff;
}
.cid-u9KqU9aEj6 .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #1352ff;
  background: linear-gradient(#1352ff 0%, #1352ff 69%, #1352ff 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u9KqU9aEj6 .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u9KqU9aEj6 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u9KqU9aEj6 .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-u9KqU9aEj6 .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-u9KqU9aEj6 .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u9KqU9aEj6 .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u9KqU9aEj6 .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u9KqU9aEj6 .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-u9KqU9aEj6 .card .wrapper .mbr-section-title,
.cid-u9KqU9aEj6 .mbr-section-btn,
.cid-u9KqU9aEj6 .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-u9KqU9aEj6 .card .wrapper .mbr-section-title,
.cid-u9KqU9aEj6 .mbr-section-btn,
.cid-u9KqU9aEj6 .mbr-list .list DIV {
  text-align: center;
}
#custom-html-15p {
  /* Type valid CSS here */
}
#custom-html-15p div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-15p p {
  font-size: 60px;
  color: #777;
}
.cid-sfvonht5l7 .google-map {
  height: 30rem;
  position: relative;
}
.cid-sfvonht5l7 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sfvonht5l7 .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-sfvonht5l7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sfvonht5l7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv5s8VgRc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv5s8VgRc .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv5s8VgRc .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv5s8VgRc .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv5s8VgRc .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv5s8VgRc .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv5s8VgRc .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv5s8VgRc .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv5s8VgRc .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv5s8VgRc .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv5s8VgRc .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv5s8VgRc .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sfvTFpsQfc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sfvTFpsQfc .nav-item,
.cid-sfvTFpsQfc .nav-link,
.cid-sfvTFpsQfc .navbar-caption {
  font-weight: normal;
}
.cid-sfvTFpsQfc .nav-item:focus,
.cid-sfvTFpsQfc .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sfvTFpsQfc .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sfvTFpsQfc .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sfvTFpsQfc .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sfvTFpsQfc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sfvTFpsQfc .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sfvTFpsQfc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sfvTFpsQfc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sfvTFpsQfc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sfvTFpsQfc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sfvTFpsQfc .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sfvTFpsQfc .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sfvTFpsQfc .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sfvTFpsQfc .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sfvTFpsQfc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sfvTFpsQfc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sfvTFpsQfc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sfvTFpsQfc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sfvTFpsQfc .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sfvTFpsQfc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sfvTFpsQfc .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-sfvTFpsQfc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sfvTFpsQfc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sfvTFpsQfc .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sfvTFpsQfc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sfvTFpsQfc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sfvTFpsQfc .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sfvTFpsQfc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sfvTFpsQfc .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-sfvTFpsQfc .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sfvTFpsQfc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sfvTFpsQfc .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sfvTFpsQfc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sfvTFpsQfc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sfvTFpsQfc .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sfvTFpsQfc .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sfvTFpsQfc .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sfvTFpsQfc .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sfvTFpsQfc .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sfvTFpsQfc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sfvTFpsQfc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sfvTFpsQfc .dropdown-item.active,
.cid-sfvTFpsQfc .dropdown-item:active {
  background-color: transparent;
}
.cid-sfvTFpsQfc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sfvTFpsQfc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sfvTFpsQfc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sfvTFpsQfc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sfvTFpsQfc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sfvTFpsQfc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sfvTFpsQfc .navbar-buttons {
  text-align: center;
}
.cid-sfvTFpsQfc .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sfvTFpsQfc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sfvTFpsQfc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-sfvTFpsQfc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sfvTFpsQfc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sfvTFpsQfc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sfvTFpsQfc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sfvTFpsQfc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfvTFpsQfc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sfvTFpsQfc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sfvTFpsQfc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfvTFpsQfc .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sfvTFpsQfc a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sfvTFpsQfc .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sfvTFpsQfc .soc-item {
  margin: .5rem .3rem;
}
.cid-sfvTFpsQfc .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sfvTFpsQfc .navbar {
    height: 77px;
  }
  .cid-sfvTFpsQfc .navbar.opened {
    height: auto;
  }
  .cid-sfvTFpsQfc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sfvTFqwsQk {
  padding-top: 135px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sfvTFqwsQk .row {
  flex-direction: row-reverse;
}
.cid-sfvTFqwsQk .card1 {
  margin-bottom: 20px;
}
.cid-sfvTFqwsQk .card2 {
  margin-top: 20px;
}
.cid-sfvTFqwsQk .card3 {
  margin-bottom: 20px;
}
.cid-sfvTFqwsQk .card4 {
  margin-top: 20px;
}
.cid-sfvTFqwsQk .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-sfvTFqwsQk .mbr-section-title.display-2 {
  line-height: 1.2;
  font-size: 30px;
}
.cid-sfvTFqwsQk .mbr-section-subtitle {
  color: #afafa7;
}
.cid-sfvTFqwsQk .mbr-text {
  color: #007bff;
}
.cid-sfvTFqwsQk .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sfvTFqwsQk .card .card-wrapper {
  display: flex;
  transition: all 0.3s;
  margin: auto;
  min-height: 280px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04) !important;
  border-radius: 4px;
}
.cid-sfvTFqwsQk .card .card-wrapper .card-box .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.cid-sfvTFqwsQk .card .card-wrapper .card-box .img-wrapper img {
  width: 100%;
}
.cid-sfvTFqwsQk .card .card-wrapper .card-box .card-title {
  color: #ffffff;
}
.cid-sfvTFqwsQk .card .card-wrapper .card-box .mbr-text {
  color: #ffffff;
}
.cid-sfvTFqwsQk .card .card-wrapper .card-box .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sfvTFqwsQk .card .card-wrapper .card-box .link-wrap {
  width: 100%;
}
.cid-sfvTFqwsQk .card .card-wrapper .card-box .link-wrap .link {
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sfvTFqwsQk .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-sfvTFqwsQk .card-wrapper {
    flex-direction: column;
  }
  .cid-sfvTFqwsQk .card-box {
    padding: 2rem 1rem;
  }
  .cid-sfvTFqwsQk .card-box,
  .cid-sfvTFqwsQk .img-wrapper {
    width: 100%;
  }
  .cid-sfvTFqwsQk .img-wrapper {
    padding: 0rem 1rem;
  }
  .cid-sfvTFqwsQk * {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-sfvTFqwsQk .card {
    margin-bottom: 2rem;
  }
}
.cid-sfvTFqwsQk .card .card-wrapper .card-box .card-title,
.cid-sfvTFqwsQk .card-box {
  color: #007bff;
}
.cid-sfvTFro8MA {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/air-bubbles-1.gif");
}
.cid-sfvTFro8MA .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sfvTFro8MA .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sfvTFro8MA .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-sfvTFro8MA .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sfvTFro8MA .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sfvTFro8MA .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sfvTFro8MA .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sfvTFro8MA .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sfvTFro8MA .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sfvTFro8MA .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sfvTFro8MA .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sfvTFro8MA .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sfvTFro8MA .card .wrapper .mbr-section-title,
.cid-sfvTFro8MA .mbr-section-btn,
.cid-sfvTFro8MA .mbr-list .list {
  text-align: center;
  color: #1352ff;
}
.cid-u9KkDhnuLw {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9KkDhnuLw .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u9KkDhnuLw .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-u9KkDhnuLw .card .wrapper .mbr-section-title span:first-child {
  color: #1352ff;
}
.cid-u9KkDhnuLw .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #1352ff;
  background: linear-gradient(#1352ff 0%, #1352ff 69%, #1352ff 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u9KkDhnuLw .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u9KkDhnuLw .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u9KkDhnuLw .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-u9KkDhnuLw .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-u9KkDhnuLw .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u9KkDhnuLw .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u9KkDhnuLw .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u9KkDhnuLw .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-u9KkDhnuLw .card .wrapper .mbr-section-title,
.cid-u9KkDhnuLw .mbr-section-btn,
.cid-u9KkDhnuLw .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-u9KkDhnuLw .card .wrapper .mbr-section-title,
.cid-u9KkDhnuLw .mbr-section-btn,
.cid-u9KkDhnuLw .mbr-list .list DIV {
  text-align: center;
}
#custom-html-162 {
  /* Type valid CSS here */
}
#custom-html-162 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-162 p {
  font-size: 60px;
  color: #777;
}
.cid-sfvTFt9605 .google-map {
  height: 30rem;
  position: relative;
}
.cid-sfvTFt9605 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sfvTFt9605 .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-sfvTFt9605 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sfvTFt9605 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv64IuHPH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv64IuHPH .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv64IuHPH .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv64IuHPH .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv64IuHPH .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv64IuHPH .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv64IuHPH .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv64IuHPH .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv64IuHPH .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv64IuHPH .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv64IuHPH .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv64IuHPH .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sfw8DNdH5x .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sfw8DNdH5x .nav-item,
.cid-sfw8DNdH5x .nav-link,
.cid-sfw8DNdH5x .navbar-caption {
  font-weight: normal;
}
.cid-sfw8DNdH5x .nav-item:focus,
.cid-sfw8DNdH5x .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sfw8DNdH5x .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sfw8DNdH5x .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sfw8DNdH5x .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sfw8DNdH5x .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sfw8DNdH5x .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sfw8DNdH5x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sfw8DNdH5x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sfw8DNdH5x .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sfw8DNdH5x .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sfw8DNdH5x .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sfw8DNdH5x .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sfw8DNdH5x .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sfw8DNdH5x .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sfw8DNdH5x .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sfw8DNdH5x .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sfw8DNdH5x .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sfw8DNdH5x .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sfw8DNdH5x .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sfw8DNdH5x .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sfw8DNdH5x .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-sfw8DNdH5x .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sfw8DNdH5x .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sfw8DNdH5x .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sfw8DNdH5x .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sfw8DNdH5x .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sfw8DNdH5x .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sfw8DNdH5x .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sfw8DNdH5x .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-sfw8DNdH5x .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sfw8DNdH5x .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sfw8DNdH5x .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sfw8DNdH5x .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sfw8DNdH5x .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sfw8DNdH5x .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sfw8DNdH5x .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sfw8DNdH5x .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sfw8DNdH5x .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sfw8DNdH5x .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sfw8DNdH5x .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sfw8DNdH5x .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sfw8DNdH5x .dropdown-item.active,
.cid-sfw8DNdH5x .dropdown-item:active {
  background-color: transparent;
}
.cid-sfw8DNdH5x .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sfw8DNdH5x .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sfw8DNdH5x .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sfw8DNdH5x .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sfw8DNdH5x .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sfw8DNdH5x ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sfw8DNdH5x .navbar-buttons {
  text-align: center;
}
.cid-sfw8DNdH5x .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sfw8DNdH5x button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sfw8DNdH5x button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-sfw8DNdH5x button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sfw8DNdH5x button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sfw8DNdH5x button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sfw8DNdH5x button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sfw8DNdH5x nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfw8DNdH5x nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sfw8DNdH5x nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sfw8DNdH5x nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfw8DNdH5x .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sfw8DNdH5x a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sfw8DNdH5x .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sfw8DNdH5x .soc-item {
  margin: .5rem .3rem;
}
.cid-sfw8DNdH5x .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sfw8DNdH5x .navbar {
    height: 77px;
  }
  .cid-sfw8DNdH5x .navbar.opened {
    height: auto;
  }
  .cid-sfw8DNdH5x .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sfw8DQE6Rp {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sfw8DQE6Rp .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sfw8DQE6Rp .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sfw8DQE6Rp .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-sfw8DQE6Rp .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sfw8DQE6Rp .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sfw8DQE6Rp .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sfw8DQE6Rp .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sfw8DQE6Rp .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sfw8DQE6Rp .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sfw8DQE6Rp .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sfw8DQE6Rp .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sfw8DQE6Rp .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sfw8DQE6Rp .card .wrapper .mbr-section-title,
.cid-sfw8DQE6Rp .mbr-section-btn,
.cid-sfw8DQE6Rp .mbr-list .list {
  text-align: center;
  color: #d52b27;
}
.cid-sfw8DQE6Rp .card .wrapper .mbr-list .list,
.cid-sfw8DQE6Rp .card .wrapper .mbr-section-btn {
  color: #000000;
}
.cid-sfw8DQE6Rp .card .wrapper .mbr-list .list,
.cid-sfw8DQE6Rp .card .wrapper .mbr-section-btn UL {
  text-align: center;
}
.cid-sfw8DS6ZlK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sfw8DS6ZlK .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sfw8DS6ZlK .card {
  padding: 5px;
  transition: transform 0.6s ease 0s;
}
.cid-sfw8DS6ZlK .card:hover {
  transform: translateY(-20px);
}
.cid-sfw8DS6ZlK .card .card-wrapper {
  background: #007bff;
  background-position: center;
  padding: 40px 20px;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-sfw8DS6ZlK .card .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sfw8DS6ZlK .card .card-wrapper .card-box .card-subtitle {
  color: #ffffff;
}
.cid-sfw8DS6ZlK .card .card-wrapper .card-box .start-from {
  line-height: 1.2;
  margin-bottom: 15px;
}
.cid-sfw8DS6ZlK .card .card-wrapper .card-box .mbr-usd {
  vertical-align: top;
  display: inline-block;
  color: #fff900;
  line-height: 0.6;
}
.cid-sfw8DS6ZlK .card .card-wrapper .card-box .mbr-price {
  color: #fff900;
  line-height: 0.6;
}
.cid-sfw8DS6ZlK .card .card-wrapper .card-box .mbr-text,
.cid-sfw8DS6ZlK .card .card-wrapper .card-box .link-align {
  color: #ffffff;
}
.cid-sfw8DS6ZlK .card .card-wrapper .card-box .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sfw8DS6ZlK .card .card-wrapper .card-box .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sfw8DS6ZlK .card .card-wrapper .card-box .mbr-list .list li {
  line-height: 1.75;
}
.cid-sfw8DS6ZlK .card .card-wrapper .card-box .mbr-list .list li:before {
  font-weight: 900;
  color: #ffffff;
  display: inline-block;
  content: "✓";
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-sfwg3Fm9fe {
  padding-top: 0px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/air-bubbles-1.gif");
}
.cid-sfwg3Fm9fe .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sfwg3Fm9fe .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sfwg3Fm9fe .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-sfwg3Fm9fe .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sfwg3Fm9fe .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sfwg3Fm9fe .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sfwg3Fm9fe .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sfwg3Fm9fe .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sfwg3Fm9fe .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sfwg3Fm9fe .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sfwg3Fm9fe .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sfwg3Fm9fe .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sfwg3Fm9fe .card .wrapper .mbr-section-title,
.cid-sfwg3Fm9fe .mbr-section-btn,
.cid-sfwg3Fm9fe .mbr-list .list {
  text-align: center;
  color: #1352ff;
}
.cid-srKq92Z8Lq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-srKq92Z8Lq .img-wrap {
  position: relative;
}
.cid-srKq92Z8Lq .img-wrap img {
  width: 100%;
}
.cid-srKq92Z8Lq .img-wrap .icon-label {
  padding: 19px;
  left: auto;
  top: 0;
  right: 0;
  bottom: auto;
  background-color: #1352ff;
  z-index: 100;
  position: absolute;
}
.cid-srKq92Z8Lq .img-wrap .icon-label .mbr-iconfont {
  color: #ffffff;
  font-size: 27px;
  line-height: 1;
}
@media (max-width: 768px) {
  .cid-srKq92Z8Lq .img-wrap .icon-label {
    left: 0;
    top: auto;
    right: auto;
    bottom: 0;
  }
}
.cid-srKq92Z8Lq .mbr-section-title {
  color: #ffffff;
}
.cid-srKq92Z8Lq .mbr-section-subtitle {
  color: #181818;
  text-align: center;
}
.cid-srKq92Z8Lq .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-srKq92Z8Lq .mbr-section-text {
  color: #ffffff;
}
.cid-srKq92Z8Lq .form-control,
.cid-srKq92Z8Lq .form-check-label {
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}
.cid-srKq92Z8Lq .form-group .wrap span {
  display: none;
}
.cid-srKq92Z8Lq .text-blocks .mbr-text {
  color: #ffffff;
}
.cid-srKq92Z8Lq a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-srKq92Z8Lq .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-srKq92Z8Lq .input-group-btn {
  display: block;
  text-align: left;
}
.cid-srKq92Z8Lq .input-group-btn .btn-sm {
  padding: 7px 39px;
}
.cid-srKq92Z8Lq textarea.form-control {
  resize: none;
}
@media (max-width: 767px) {
  .cid-srKq92Z8Lq h2 {
    padding-top: 2rem;
  }
  .cid-srKq92Z8Lq .input-group-btn {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .cid-srKq92Z8Lq .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-srKq92Z8Lq .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
.cid-srKq92Z8Lq .gdpr-block {
  padding: 20px;
  text-align: left;
}
.cid-srKq92Z8Lq .gdpr-block span {
  line-height: 1;
}
.cid-srKq92Z8Lq .gdpr-block label span.textGDPR input[name='gdpr'] {
  top: 6px;
}
.cid-u9HfA8gK9N {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9HfA8gK9N .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u9HfA8gK9N .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-u9HfA8gK9N .card .wrapper .mbr-section-title span:first-child {
  color: #1352ff;
}
.cid-u9HfA8gK9N .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #1352ff;
  background: linear-gradient(#1352ff 0%, #1352ff 69%, #1352ff 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u9HfA8gK9N .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u9HfA8gK9N .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u9HfA8gK9N .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-u9HfA8gK9N .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-u9HfA8gK9N .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u9HfA8gK9N .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u9HfA8gK9N .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u9HfA8gK9N .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-u9HfA8gK9N .card .wrapper .mbr-section-title,
.cid-u9HfA8gK9N .mbr-section-btn,
.cid-u9HfA8gK9N .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-u9HfA8gK9N .card .wrapper .mbr-section-title,
.cid-u9HfA8gK9N .mbr-section-btn,
.cid-u9HfA8gK9N .mbr-list .list DIV {
  text-align: center;
}
#custom-html-16c {
  /* Type valid CSS here */
}
#custom-html-16c div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-16c p {
  font-size: 60px;
  color: #777;
}
.cid-uQicEDbneX {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mobile-car-wash-orlando-2000x1500.webp");
}
.cid-uQicEDbneX .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-uQicEDbneX .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-uQicEDbneX .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-uQicEDbneX .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uQicEDbneX .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-uQicEDbneX .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-uQicEDbneX .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-uQicEDbneX .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-uQicEDbneX .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-sfw8DUpIpp .google-map {
  height: 30rem;
  position: relative;
}
.cid-sfw8DUpIpp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sfw8DUpIpp .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-sfw8DUpIpp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sfw8DUpIpp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv5f4MIm0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv5f4MIm0 .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv5f4MIm0 .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv5f4MIm0 .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv5f4MIm0 .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv5f4MIm0 .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv5f4MIm0 .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv5f4MIm0 .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv5f4MIm0 .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv5f4MIm0 .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv5f4MIm0 .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv5f4MIm0 .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sfwDRj4p2Y .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sfwDRj4p2Y .nav-item,
.cid-sfwDRj4p2Y .nav-link,
.cid-sfwDRj4p2Y .navbar-caption {
  font-weight: normal;
}
.cid-sfwDRj4p2Y .nav-item:focus,
.cid-sfwDRj4p2Y .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sfwDRj4p2Y .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sfwDRj4p2Y .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sfwDRj4p2Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sfwDRj4p2Y .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sfwDRj4p2Y .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sfwDRj4p2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sfwDRj4p2Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sfwDRj4p2Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sfwDRj4p2Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sfwDRj4p2Y .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sfwDRj4p2Y .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sfwDRj4p2Y .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sfwDRj4p2Y .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sfwDRj4p2Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sfwDRj4p2Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sfwDRj4p2Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sfwDRj4p2Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sfwDRj4p2Y .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sfwDRj4p2Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sfwDRj4p2Y .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-sfwDRj4p2Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sfwDRj4p2Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sfwDRj4p2Y .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sfwDRj4p2Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sfwDRj4p2Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sfwDRj4p2Y .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sfwDRj4p2Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sfwDRj4p2Y .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-sfwDRj4p2Y .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sfwDRj4p2Y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sfwDRj4p2Y .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sfwDRj4p2Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sfwDRj4p2Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sfwDRj4p2Y .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sfwDRj4p2Y .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sfwDRj4p2Y .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sfwDRj4p2Y .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sfwDRj4p2Y .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sfwDRj4p2Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sfwDRj4p2Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sfwDRj4p2Y .dropdown-item.active,
.cid-sfwDRj4p2Y .dropdown-item:active {
  background-color: transparent;
}
.cid-sfwDRj4p2Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sfwDRj4p2Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sfwDRj4p2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sfwDRj4p2Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sfwDRj4p2Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sfwDRj4p2Y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sfwDRj4p2Y .navbar-buttons {
  text-align: center;
}
.cid-sfwDRj4p2Y .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sfwDRj4p2Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sfwDRj4p2Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-sfwDRj4p2Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sfwDRj4p2Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sfwDRj4p2Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sfwDRj4p2Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sfwDRj4p2Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfwDRj4p2Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sfwDRj4p2Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sfwDRj4p2Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfwDRj4p2Y .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sfwDRj4p2Y a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sfwDRj4p2Y .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sfwDRj4p2Y .soc-item {
  margin: .5rem .3rem;
}
.cid-sfwDRj4p2Y .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sfwDRj4p2Y .navbar {
    height: 77px;
  }
  .cid-sfwDRj4p2Y .navbar.opened {
    height: auto;
  }
  .cid-sfwDRj4p2Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sfwDRk8a9S {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sfwDRk8a9S .row {
  flex-direction: row-reverse;
}
.cid-sfwDRk8a9S .card1 {
  margin-bottom: 20px;
}
.cid-sfwDRk8a9S .card2 {
  margin-top: 20px;
}
.cid-sfwDRk8a9S .card3 {
  margin-bottom: 20px;
}
.cid-sfwDRk8a9S .card4 {
  margin-top: 20px;
}
.cid-sfwDRk8a9S .mbr-section-title {
  color: #ff653c;
  text-align: center;
}
.cid-sfwDRk8a9S .mbr-section-title.display-2 {
  line-height: 1.2;
  font-size: 30px;
}
.cid-sfwDRk8a9S .mbr-section-subtitle {
  color: #afafa7;
}
.cid-sfwDRk8a9S .mbr-text {
  color: #007bff;
}
.cid-sfwDRk8a9S .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sfwDRk8a9S .card .card-wrapper {
  display: flex;
  transition: all 0.3s;
  margin: auto;
  min-height: 280px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04) !important;
  border-radius: 4px;
}
.cid-sfwDRk8a9S .card .card-wrapper .card-box .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.cid-sfwDRk8a9S .card .card-wrapper .card-box .img-wrapper img {
  width: 100%;
}
.cid-sfwDRk8a9S .card .card-wrapper .card-box .card-title {
  color: #ffffff;
}
.cid-sfwDRk8a9S .card .card-wrapper .card-box .mbr-text {
  color: #ffffff;
}
.cid-sfwDRk8a9S .card .card-wrapper .card-box .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sfwDRk8a9S .card .card-wrapper .card-box .link-wrap {
  width: 100%;
}
.cid-sfwDRk8a9S .card .card-wrapper .card-box .link-wrap .link {
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sfwDRk8a9S .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-sfwDRk8a9S .card-wrapper {
    flex-direction: column;
  }
  .cid-sfwDRk8a9S .card-box {
    padding: 2rem 1rem;
  }
  .cid-sfwDRk8a9S .card-box,
  .cid-sfwDRk8a9S .img-wrapper {
    width: 100%;
  }
  .cid-sfwDRk8a9S .img-wrapper {
    padding: 0rem 1rem;
  }
  .cid-sfwDRk8a9S * {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-sfwDRk8a9S .card {
    margin-bottom: 2rem;
  }
}
.cid-sfwDRk8a9S .card .card-wrapper .card-box .card-title,
.cid-sfwDRk8a9S .card-box {
  color: #007bff;
}
.cid-sBuOjHspzc {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #f5f5f5;
}
.cid-sBuOjHspzc .mbr-section-title {
  color: #06182d;
  margin-bottom: 1rem;
  transition: all 0.15s linear 0s;
}
.cid-sBuOjHspzc .mbr-section-title.display-5 {
  letter-spacing: 1px;
}
.cid-sBuOjHspzc .mbr-section-title:hover {
  opacity: 0.8;
}
.cid-sBuOjHspzc .mbr-section-subtitle {
  color: #61728a;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.cid-sBuOjHspzc .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-sBuOjHspzc .btn {
  margin: 0px !important;
}
.cid-sBuOjHspzc .btn.btn-success-outline {
  color: #000000;
}
.cid-sBuOjHspzc .btn.btn-sm {
  padding: 7px 39px;
}
.cid-sBuOjHspzc .second-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBuOjHspzc .carousel-item {
  justify-content: center;
}
.cid-sBuOjHspzc .carousel-item .media-container-row {
  flex-grow: 1;
}
.cid-sBuOjHspzc .carousel-item .media-container-row .col-md-12 {
  padding: 0;
}
.cid-sBuOjHspzc .carousel-item .wrap-img {
  text-align: center;
  max-height: 400px;
}
.cid-sBuOjHspzc .carousel-item .wrap-img img {
  width: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-sBuOjHspzc .carousel {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  position: relative;
  z-index: 1;
}
.cid-sBuOjHspzc .carousel-indicators {
  display: none;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sBuOjHspzc .second-col {
    padding-top: 2rem;
  }
  .cid-sBuOjHspzc .share_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-sBuOjHspzc .share_buttons .icon-wrapper {
    margin: 10px !important;
  }
}
.cid-sBuOjHspzc .carousel-controls {
  display: flex;
  justify-content: center;
  position: static;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
}
.cid-sBuOjHspzc .carousel-controls .carousel-control {
  background: #000000;
}
.cid-sBuOjHspzc .carousel-controls .carousel-control.carousel-control-prev {
  right: auto;
  left: 0;
  bottom: 0;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  position: absolute;
  text-align: center;
}
.cid-sBuOjHspzc .carousel-controls .carousel-control.carousel-control-next {
  left: auto;
  right: 0;
  bottom: 0;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  margin-right: 0;
  position: absolute;
  text-align: center;
}
.cid-sBuOjHspzc .carousel-controls .carousel-control .span {
  font-size: 1rem;
  opacity: 1 !important;
}
.cid-sBuOjHspzc .share_buttons .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #c3cad2;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 10px 0 10px auto;
}
.cid-sBuOjHspzc .share_buttons .icon-wrapper:hover .link-icon {
  color: #007bff;
}
.cid-sBuOjHspzc .share_buttons .icon-wrapper .link-icon {
  display: inline-block;
  color: #61728a;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sBuOjHspzc .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
.cid-sBuOjHspzc .sticky-tag .mbr-text {
  padding: 5px 6px;
  margin: 0 3px 9px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transform: skew(-22deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  font-weight: 400;
  border-image-slice: 1;
  color: #ffffff;
}
.cid-sBuOjHspzc .sticky-tag .mbr-text::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 1.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #ff5e3a transparent transparent;
  transform: skew(22deg) !important;
}
.cid-sfwDRl601e {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/air-bubbles-1.gif");
}
.cid-sfwDRl601e .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sfwDRl601e .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sfwDRl601e .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-sfwDRl601e .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sfwDRl601e .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sfwDRl601e .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sfwDRl601e .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sfwDRl601e .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sfwDRl601e .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sfwDRl601e .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sfwDRl601e .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sfwDRl601e .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sfwDRl601e .card .wrapper .mbr-section-title,
.cid-sfwDRl601e .mbr-section-btn,
.cid-sfwDRl601e .mbr-list .list {
  text-align: center;
  color: #1352ff;
}
.cid-sguJCxsUOb {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f5f5f5;
}
.cid-sguJCxsUOb .wrapper {
  overflow: hidden;
  position: relative;
}
.cid-sguJCxsUOb .wrapper .box {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-30%);
}
.cid-sguJCxsUOb .wrapper .box .mbr-media {
  z-index: 2;
}
.cid-sguJCxsUOb .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  background: transparent;
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.cid-sguJCxsUOb .icon-wrap:hover span {
  color: #ff513c;
}
.cid-sguJCxsUOb .icon-wrap span {
  padding-left: 4px;
}
.cid-sguJCxsUOb .mbr-media span {
  font-size: 2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff;
}
.cid-sguJCxsUOb .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-sguJCxsUOb .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sguJCxsUOb .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sguJCxsUOb .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sguJCxsUOb a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sguJCxsUOb a.close:hover {
  color: #ffffff;
}
.cid-sguJCxsUOb .img-wrap .overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #06182d;
  opacity: 0.8;
  pointer-events: none;
}
.cid-sguJCxsUOb .img-wrap img {
  width: 100%;
}
.cid-sguJCxsUOb .mbr-section-title {
  color: #06182d;
  margin-bottom: 1rem;
  transition: all 0.15s linear 0s;
}
.cid-sguJCxsUOb .mbr-section-title.display-5 {
  letter-spacing: 1px;
}
.cid-sguJCxsUOb .mbr-section-title:hover {
  opacity: 0.8;
}
.cid-sguJCxsUOb .mbr-section-subtitle {
  color: #61728a;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.cid-sguJCxsUOb .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-sguJCxsUOb .btn {
  margin: 0px !important;
}
.cid-sguJCxsUOb .btn.btn-success-outline {
  color: #000000;
}
.cid-sguJCxsUOb .btn.btn-sm {
  padding: 7px 39px;
}
.cid-sguJCxsUOb .share_buttons .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #c3cad2;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 10px 0 10px auto;
}
.cid-sguJCxsUOb .share_buttons .icon-wrapper:hover .link-icon {
  color: #007bff;
}
.cid-sguJCxsUOb .share_buttons .icon-wrapper .link-icon {
  display: inline-block;
  color: #61728a;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-sguJCxsUOb .share_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-sguJCxsUOb .share_buttons .icon-wrapper {
    margin: 10px !important;
  }
}
.cid-sguJCxsUOb .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
.cid-sguJCxsUOb .sticky-tag .mbr-text {
  padding: 5px 6px;
  margin: 0 3px 9px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transform: skew(-22deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  font-weight: 400;
  border-image-slice: 1;
  color: #ffffff;
}
.cid-sguJCxsUOb .sticky-tag .mbr-text::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 1.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #ff5e3a transparent transparent;
  transform: skew(22deg) !important;
}
.cid-u9KrnPO4jL {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9KrnPO4jL .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u9KrnPO4jL .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-u9KrnPO4jL .card .wrapper .mbr-section-title span:first-child {
  color: #1352ff;
}
.cid-u9KrnPO4jL .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #1352ff;
  background: linear-gradient(#1352ff 0%, #1352ff 69%, #1352ff 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u9KrnPO4jL .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u9KrnPO4jL .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u9KrnPO4jL .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-u9KrnPO4jL .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-u9KrnPO4jL .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u9KrnPO4jL .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u9KrnPO4jL .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u9KrnPO4jL .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-u9KrnPO4jL .card .wrapper .mbr-section-title,
.cid-u9KrnPO4jL .mbr-section-btn,
.cid-u9KrnPO4jL .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-u9KrnPO4jL .card .wrapper .mbr-section-title,
.cid-u9KrnPO4jL .mbr-section-btn,
.cid-u9KrnPO4jL .mbr-list .list DIV {
  text-align: center;
}
#custom-html-16x {
  /* Type valid CSS here */
}
#custom-html-16x div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-16x p {
  font-size: 60px;
  color: #777;
}
.cid-sfwDRnqunD .google-map {
  height: 30rem;
  position: relative;
}
.cid-sfwDRnqunD .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sfwDRnqunD .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-sfwDRnqunD .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sfwDRnqunD .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv5ARrN8A {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv5ARrN8A .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv5ARrN8A .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv5ARrN8A .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv5ARrN8A .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv5ARrN8A .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv5ARrN8A .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv5ARrN8A .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv5ARrN8A .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv5ARrN8A .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv5ARrN8A .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv5ARrN8A .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sgsPCyMEe6 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sgsPCyMEe6 .nav-item,
.cid-sgsPCyMEe6 .nav-link,
.cid-sgsPCyMEe6 .navbar-caption {
  font-weight: normal;
}
.cid-sgsPCyMEe6 .nav-item:focus,
.cid-sgsPCyMEe6 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sgsPCyMEe6 .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sgsPCyMEe6 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sgsPCyMEe6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sgsPCyMEe6 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sgsPCyMEe6 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sgsPCyMEe6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sgsPCyMEe6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sgsPCyMEe6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sgsPCyMEe6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sgsPCyMEe6 .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sgsPCyMEe6 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sgsPCyMEe6 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sgsPCyMEe6 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sgsPCyMEe6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sgsPCyMEe6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sgsPCyMEe6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sgsPCyMEe6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sgsPCyMEe6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sgsPCyMEe6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sgsPCyMEe6 .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-sgsPCyMEe6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sgsPCyMEe6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sgsPCyMEe6 .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sgsPCyMEe6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sgsPCyMEe6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sgsPCyMEe6 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sgsPCyMEe6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sgsPCyMEe6 .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-sgsPCyMEe6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sgsPCyMEe6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sgsPCyMEe6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sgsPCyMEe6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sgsPCyMEe6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sgsPCyMEe6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sgsPCyMEe6 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sgsPCyMEe6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sgsPCyMEe6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sgsPCyMEe6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sgsPCyMEe6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sgsPCyMEe6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sgsPCyMEe6 .dropdown-item.active,
.cid-sgsPCyMEe6 .dropdown-item:active {
  background-color: transparent;
}
.cid-sgsPCyMEe6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sgsPCyMEe6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sgsPCyMEe6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sgsPCyMEe6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sgsPCyMEe6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sgsPCyMEe6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sgsPCyMEe6 .navbar-buttons {
  text-align: center;
}
.cid-sgsPCyMEe6 .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sgsPCyMEe6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sgsPCyMEe6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-sgsPCyMEe6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sgsPCyMEe6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sgsPCyMEe6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sgsPCyMEe6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sgsPCyMEe6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sgsPCyMEe6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sgsPCyMEe6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sgsPCyMEe6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sgsPCyMEe6 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sgsPCyMEe6 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sgsPCyMEe6 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sgsPCyMEe6 .soc-item {
  margin: .5rem .3rem;
}
.cid-sgsPCyMEe6 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sgsPCyMEe6 .navbar {
    height: 77px;
  }
  .cid-sgsPCyMEe6 .navbar.opened {
    height: auto;
  }
  .cid-sgsPCyMEe6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sjjo3yDBoy {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/air-bubbles-1.gif");
}
.cid-sjjo3yDBoy .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sjjo3yDBoy .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sjjo3yDBoy .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-sjjo3yDBoy .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sjjo3yDBoy .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sjjo3yDBoy .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sjjo3yDBoy .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sjjo3yDBoy .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sjjo3yDBoy .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sjjo3yDBoy .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sjjo3yDBoy .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sjjo3yDBoy .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sjjo3yDBoy .card .wrapper .mbr-section-title,
.cid-sjjo3yDBoy .mbr-section-btn,
.cid-sjjo3yDBoy .mbr-list .list {
  text-align: center;
  color: #1352ff;
}
.cid-sgsPCBRk48 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgsPCBRk48 .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgsPCBRk48 .title {
  text-align: left;
}
.cid-sgsPCBRk48 .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgsPCBRk48 .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgsPCBRk48 .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgsPCBRk48 li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgsPCBRk48 .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgsPCBRk48 .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgsPCBRk48 .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgsPCBRk48 .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgsPCBRk48 .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgsPCBRk48 .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgsPCBRk48 .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgsPCBRk48 .align-wrap .item-wrap span,
.cid-sgsPCBRk48 .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgsPCBRk48 .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgsPCBRk48 .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgsPCBRk48 .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgsPCBRk48 .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgsPCBRk48 .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgsPCBRk48 .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgsPCBRk48 .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgsPCBRk48 .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgsPCBRk48 .socicon-wrap {
    margin: auto;
  }
}
.cid-sgvaqbhAsS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgvaqbhAsS .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgvaqbhAsS .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgvaqbhAsS .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgvaqbhAsS .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgvaqbhAsS .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgvaqbhAsS .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgvaqbhAsS .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgvaqbhAsS .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgvaqbhAsS .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgvaqbhAsS .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgvaqbhAsS .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sgt1rnf4oz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sgt1rnf4oz .nav-item,
.cid-sgt1rnf4oz .nav-link,
.cid-sgt1rnf4oz .navbar-caption {
  font-weight: normal;
}
.cid-sgt1rnf4oz .nav-item:focus,
.cid-sgt1rnf4oz .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sgt1rnf4oz .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sgt1rnf4oz .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sgt1rnf4oz .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sgt1rnf4oz .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sgt1rnf4oz .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sgt1rnf4oz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sgt1rnf4oz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sgt1rnf4oz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sgt1rnf4oz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sgt1rnf4oz .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sgt1rnf4oz .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sgt1rnf4oz .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sgt1rnf4oz .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sgt1rnf4oz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sgt1rnf4oz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sgt1rnf4oz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sgt1rnf4oz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sgt1rnf4oz .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sgt1rnf4oz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sgt1rnf4oz .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-sgt1rnf4oz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sgt1rnf4oz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sgt1rnf4oz .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sgt1rnf4oz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sgt1rnf4oz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sgt1rnf4oz .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sgt1rnf4oz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sgt1rnf4oz .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-sgt1rnf4oz .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sgt1rnf4oz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sgt1rnf4oz .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sgt1rnf4oz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sgt1rnf4oz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sgt1rnf4oz .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sgt1rnf4oz .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sgt1rnf4oz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sgt1rnf4oz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sgt1rnf4oz .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sgt1rnf4oz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sgt1rnf4oz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sgt1rnf4oz .dropdown-item.active,
.cid-sgt1rnf4oz .dropdown-item:active {
  background-color: transparent;
}
.cid-sgt1rnf4oz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sgt1rnf4oz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sgt1rnf4oz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sgt1rnf4oz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sgt1rnf4oz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sgt1rnf4oz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sgt1rnf4oz .navbar-buttons {
  text-align: center;
}
.cid-sgt1rnf4oz .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sgt1rnf4oz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sgt1rnf4oz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-sgt1rnf4oz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sgt1rnf4oz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sgt1rnf4oz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sgt1rnf4oz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sgt1rnf4oz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sgt1rnf4oz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sgt1rnf4oz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sgt1rnf4oz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sgt1rnf4oz .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sgt1rnf4oz a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sgt1rnf4oz .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sgt1rnf4oz .soc-item {
  margin: .5rem .3rem;
}
.cid-sgt1rnf4oz .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sgt1rnf4oz .navbar {
    height: 77px;
  }
  .cid-sgt1rnf4oz .navbar.opened {
    height: auto;
  }
  .cid-sgt1rnf4oz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sgt4r61js0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sgt4r61js0 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sgt4r61js0 .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sgt4r61js0 .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-sgt4r61js0 .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sgt4r61js0 .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sgt4r61js0 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sgt4r61js0 .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sgt4r61js0 .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sgt4r61js0 .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sgt4r61js0 .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sgt4r61js0 .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sgt4r61js0 .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sgt4r61js0 .card .wrapper .mbr-section-title,
.cid-sgt4r61js0 .mbr-section-btn,
.cid-sgt4r61js0 .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-sgt4r61js0 .card .wrapper .mbr-list .list,
.cid-sgt4r61js0 .card .wrapper .mbr-section-btn {
  color: #000000;
}
#custom-html-1c3 {
  /* Type valid CSS here */
}
#custom-html-1c3 div {
  padding: 30px 0;
  color: #777;
  text-align: center;
}
#custom-html-1c3 p {
  font-size: 50px;
  color: #777;
}
#custom-html-187 {
  /* Type valid CSS here */
}
#custom-html-187 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-187 p {
  font-size: 60px;
  color: #777;
}
#custom-html-18a {
  /* Type valid CSS here */
}
#custom-html-18a div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-18a p {
  font-size: 60px;
  color: #777;
}
#custom-html-18b {
  /* Type valid CSS here */
}
#custom-html-18b div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-18b p {
  font-size: 60px;
  color: #777;
}
#custom-html-18c {
  /* Type valid CSS here */
}
#custom-html-18c div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-18c p {
  font-size: 60px;
  color: #777;
}
#custom-html-18f {
  /* Type valid CSS here */
}
#custom-html-18f div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-18f p {
  font-size: 60px;
  color: #777;
}
.cid-sgt1roJb33 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgt1roJb33 .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgt1roJb33 .title {
  text-align: left;
}
.cid-sgt1roJb33 .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgt1roJb33 .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgt1roJb33 .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgt1roJb33 li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgt1roJb33 .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgt1roJb33 .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgt1roJb33 .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgt1roJb33 .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgt1roJb33 .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgt1roJb33 .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgt1roJb33 .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgt1roJb33 .align-wrap .item-wrap span,
.cid-sgt1roJb33 .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgt1roJb33 .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgt1roJb33 .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgt1roJb33 .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgt1roJb33 .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgt1roJb33 .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgt1roJb33 .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgt1roJb33 .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgt1roJb33 .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgt1roJb33 .socicon-wrap {
    margin: auto;
  }
}
.cid-sgvavXgH1A {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgvavXgH1A .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgvavXgH1A .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgvavXgH1A .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgvavXgH1A .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgvavXgH1A .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgvavXgH1A .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgvavXgH1A .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgvavXgH1A .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgvavXgH1A .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgvavXgH1A .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgvavXgH1A .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sfwlTWanwL .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sfwlTWanwL .nav-item,
.cid-sfwlTWanwL .nav-link,
.cid-sfwlTWanwL .navbar-caption {
  font-weight: normal;
}
.cid-sfwlTWanwL .nav-item:focus,
.cid-sfwlTWanwL .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sfwlTWanwL .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sfwlTWanwL .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sfwlTWanwL .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sfwlTWanwL .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sfwlTWanwL .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sfwlTWanwL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sfwlTWanwL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sfwlTWanwL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sfwlTWanwL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sfwlTWanwL .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sfwlTWanwL .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sfwlTWanwL .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sfwlTWanwL .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sfwlTWanwL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sfwlTWanwL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sfwlTWanwL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sfwlTWanwL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sfwlTWanwL .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sfwlTWanwL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sfwlTWanwL .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-sfwlTWanwL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sfwlTWanwL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sfwlTWanwL .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sfwlTWanwL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sfwlTWanwL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sfwlTWanwL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sfwlTWanwL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sfwlTWanwL .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-sfwlTWanwL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sfwlTWanwL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sfwlTWanwL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sfwlTWanwL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sfwlTWanwL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sfwlTWanwL .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sfwlTWanwL .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sfwlTWanwL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sfwlTWanwL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sfwlTWanwL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sfwlTWanwL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sfwlTWanwL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sfwlTWanwL .dropdown-item.active,
.cid-sfwlTWanwL .dropdown-item:active {
  background-color: transparent;
}
.cid-sfwlTWanwL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sfwlTWanwL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sfwlTWanwL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sfwlTWanwL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sfwlTWanwL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sfwlTWanwL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sfwlTWanwL .navbar-buttons {
  text-align: center;
}
.cid-sfwlTWanwL .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sfwlTWanwL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sfwlTWanwL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-sfwlTWanwL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sfwlTWanwL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sfwlTWanwL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sfwlTWanwL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sfwlTWanwL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfwlTWanwL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sfwlTWanwL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sfwlTWanwL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfwlTWanwL .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sfwlTWanwL a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sfwlTWanwL .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sfwlTWanwL .soc-item {
  margin: .5rem .3rem;
}
.cid-sfwlTWanwL .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sfwlTWanwL .navbar {
    height: 77px;
  }
  .cid-sfwlTWanwL .navbar.opened {
    height: auto;
  }
  .cid-sfwlTWanwL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sfwlTX7aIv {
  padding-top: 135px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sfwlTX7aIv .row {
  flex-direction: row-reverse;
}
.cid-sfwlTX7aIv .card1 {
  margin-bottom: 20px;
}
.cid-sfwlTX7aIv .card2 {
  margin-top: 20px;
}
.cid-sfwlTX7aIv .card3 {
  margin-bottom: 20px;
}
.cid-sfwlTX7aIv .card4 {
  margin-top: 20px;
}
.cid-sfwlTX7aIv .mbr-section-title {
  color: #ff653c;
  text-align: center;
}
.cid-sfwlTX7aIv .mbr-section-title.display-2 {
  line-height: 1.2;
  font-size: 30px;
}
.cid-sfwlTX7aIv .mbr-section-subtitle {
  color: #afafa7;
}
.cid-sfwlTX7aIv .mbr-text {
  color: #55acee;
}
.cid-sfwlTX7aIv .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sfwlTX7aIv .card .card-wrapper {
  display: flex;
  transition: all 0.3s;
  margin: auto;
  min-height: 280px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04) !important;
  border-radius: 4px;
}
.cid-sfwlTX7aIv .card .card-wrapper .card-box .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.cid-sfwlTX7aIv .card .card-wrapper .card-box .img-wrapper img {
  width: 100%;
}
.cid-sfwlTX7aIv .card .card-wrapper .card-box .card-title {
  color: #ffffff;
}
.cid-sfwlTX7aIv .card .card-wrapper .card-box .mbr-text {
  color: #ffffff;
}
.cid-sfwlTX7aIv .card .card-wrapper .card-box .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-sfwlTX7aIv .card .card-wrapper .card-box .link-wrap {
  width: 100%;
}
.cid-sfwlTX7aIv .card .card-wrapper .card-box .link-wrap .link {
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sfwlTX7aIv .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-sfwlTX7aIv .card-wrapper {
    flex-direction: column;
  }
  .cid-sfwlTX7aIv .card-box {
    padding: 2rem 1rem;
  }
  .cid-sfwlTX7aIv .card-box,
  .cid-sfwlTX7aIv .img-wrapper {
    width: 100%;
  }
  .cid-sfwlTX7aIv .img-wrapper {
    padding: 0rem 1rem;
  }
  .cid-sfwlTX7aIv * {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-sfwlTX7aIv .card {
    margin-bottom: 2rem;
  }
}
.cid-sfwlTXYev5 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/air-bubbles-1.gif");
}
.cid-sfwlTXYev5 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-sfwlTXYev5 .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-sfwlTXYev5 .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-sfwlTXYev5 .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-sfwlTXYev5 .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sfwlTXYev5 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sfwlTXYev5 .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-sfwlTXYev5 .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-sfwlTXYev5 .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-sfwlTXYev5 .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-sfwlTXYev5 .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-sfwlTXYev5 .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-sfwlTXYev5 .card .wrapper .mbr-section-title,
.cid-sfwlTXYev5 .mbr-section-btn,
.cid-sfwlTXYev5 .mbr-list .list {
  text-align: center;
  color: #1352ff;
}
.cid-u9KsEabmyp {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9KsEabmyp .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u9KsEabmyp .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-u9KsEabmyp .card .wrapper .mbr-section-title span:first-child {
  color: #1352ff;
}
.cid-u9KsEabmyp .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #1352ff;
  background: linear-gradient(#1352ff 0%, #1352ff 69%, #1352ff 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u9KsEabmyp .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u9KsEabmyp .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u9KsEabmyp .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-u9KsEabmyp .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-u9KsEabmyp .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u9KsEabmyp .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u9KsEabmyp .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u9KsEabmyp .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-u9KsEabmyp .card .wrapper .mbr-section-title,
.cid-u9KsEabmyp .mbr-section-btn,
.cid-u9KsEabmyp .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-u9KsEabmyp .card .wrapper .mbr-section-title,
.cid-u9KsEabmyp .mbr-section-btn,
.cid-u9KsEabmyp .mbr-list .list DIV {
  text-align: center;
}
#custom-html-16l {
  /* Type valid CSS here */
}
#custom-html-16l div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-16l p {
  font-size: 60px;
  color: #777;
}
.cid-sfwlTYXwNR .google-map {
  height: 30rem;
  position: relative;
}
.cid-sfwlTYXwNR .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sfwlTYXwNR .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-sfwlTYXwNR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sfwlTYXwNR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv7aE38FT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv7aE38FT .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv7aE38FT .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv7aE38FT .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv7aE38FT .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv7aE38FT .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv7aE38FT .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv7aE38FT .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv7aE38FT .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv7aE38FT .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv7aE38FT .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv7aE38FT .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-seRWlBsLN4 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-seRWlBsLN4 .nav-item,
.cid-seRWlBsLN4 .nav-link,
.cid-seRWlBsLN4 .navbar-caption {
  font-weight: normal;
}
.cid-seRWlBsLN4 .nav-item:focus,
.cid-seRWlBsLN4 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-seRWlBsLN4 .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-seRWlBsLN4 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-seRWlBsLN4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-seRWlBsLN4 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-seRWlBsLN4 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-seRWlBsLN4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-seRWlBsLN4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-seRWlBsLN4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-seRWlBsLN4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-seRWlBsLN4 .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-seRWlBsLN4 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-seRWlBsLN4 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-seRWlBsLN4 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-seRWlBsLN4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-seRWlBsLN4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-seRWlBsLN4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-seRWlBsLN4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-seRWlBsLN4 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-seRWlBsLN4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-seRWlBsLN4 .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-seRWlBsLN4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-seRWlBsLN4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-seRWlBsLN4 .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-seRWlBsLN4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-seRWlBsLN4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-seRWlBsLN4 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-seRWlBsLN4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-seRWlBsLN4 .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-seRWlBsLN4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-seRWlBsLN4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-seRWlBsLN4 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-seRWlBsLN4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-seRWlBsLN4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-seRWlBsLN4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-seRWlBsLN4 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-seRWlBsLN4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-seRWlBsLN4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-seRWlBsLN4 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-seRWlBsLN4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-seRWlBsLN4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-seRWlBsLN4 .dropdown-item.active,
.cid-seRWlBsLN4 .dropdown-item:active {
  background-color: transparent;
}
.cid-seRWlBsLN4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-seRWlBsLN4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-seRWlBsLN4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-seRWlBsLN4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-seRWlBsLN4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-seRWlBsLN4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-seRWlBsLN4 .navbar-buttons {
  text-align: center;
}
.cid-seRWlBsLN4 .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-seRWlBsLN4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-seRWlBsLN4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-seRWlBsLN4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-seRWlBsLN4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-seRWlBsLN4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-seRWlBsLN4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-seRWlBsLN4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-seRWlBsLN4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-seRWlBsLN4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-seRWlBsLN4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-seRWlBsLN4 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-seRWlBsLN4 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-seRWlBsLN4 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-seRWlBsLN4 .soc-item {
  margin: .5rem .3rem;
}
.cid-seRWlBsLN4 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-seRWlBsLN4 .navbar {
    height: 77px;
  }
  .cid-seRWlBsLN4 .navbar.opened {
    height: auto;
  }
  .cid-seRWlBsLN4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-seWLFzp5vS {
  background-image: url("../../../assets/images/rv-detailing-orlando-fl-407-2000x1500.webp");
}
.cid-seWLFzp5vS .block {
  height: 480px;
}
@media (max-width: 992px) {
  .cid-seWLFzp5vS .block {
    height: 240px;
  }
}
.cid-seXpD3YFsK {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/air-bubbles-1.gif");
}
.cid-seXpD3YFsK .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-seXpD3YFsK .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-seXpD3YFsK .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-seXpD3YFsK .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-seXpD3YFsK .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-seXpD3YFsK .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-seXpD3YFsK .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-seXpD3YFsK .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-seXpD3YFsK .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-seXpD3YFsK .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-seXpD3YFsK .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-seXpD3YFsK .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-seXpD3YFsK .card .wrapper .mbr-section-title,
.cid-seXpD3YFsK .mbr-section-btn,
.cid-seXpD3YFsK .mbr-list .list {
  text-align: center;
  color: #1352ff;
}
.cid-seRWlCmyzo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-seRWlCmyzo .row {
  flex-direction: row-reverse;
}
.cid-seRWlCmyzo .card1 {
  margin-bottom: 20px;
}
.cid-seRWlCmyzo .card2 {
  margin-top: 20px;
}
.cid-seRWlCmyzo .card3 {
  margin-bottom: 20px;
}
.cid-seRWlCmyzo .card4 {
  margin-top: 20px;
}
.cid-seRWlCmyzo .mbr-section-title {
  color: #ff653c;
  text-align: center;
}
.cid-seRWlCmyzo .mbr-section-title.display-2 {
  line-height: 1.2;
  font-size: 30px;
}
.cid-seRWlCmyzo .mbr-section-subtitle {
  color: #afafa7;
}
.cid-seRWlCmyzo .mbr-text {
  color: #007bff;
  text-align: center;
}
.cid-seRWlCmyzo .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-seRWlCmyzo .card .card-wrapper {
  display: flex;
  transition: all 0.3s;
  margin: auto;
  min-height: 280px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.04) !important;
  border-radius: 4px;
}
.cid-seRWlCmyzo .card .card-wrapper .card-box .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.cid-seRWlCmyzo .card .card-wrapper .card-box .img-wrapper img {
  width: 100%;
}
.cid-seRWlCmyzo .card .card-wrapper .card-box .card-title {
  color: #ffffff;
}
.cid-seRWlCmyzo .card .card-wrapper .card-box .mbr-text {
  color: #ffffff;
}
.cid-seRWlCmyzo .card .card-wrapper .card-box .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-seRWlCmyzo .card .card-wrapper .card-box .link-wrap {
  width: 100%;
}
.cid-seRWlCmyzo .card .card-wrapper .card-box .link-wrap .link {
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-seRWlCmyzo .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-seRWlCmyzo .card-wrapper {
    flex-direction: column;
  }
  .cid-seRWlCmyzo .card-box {
    padding: 2rem 1rem;
  }
  .cid-seRWlCmyzo .card-box,
  .cid-seRWlCmyzo .img-wrapper {
    width: 100%;
  }
  .cid-seRWlCmyzo .img-wrapper {
    padding: 0rem 1rem;
  }
  .cid-seRWlCmyzo * {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-seRWlCmyzo .card {
    margin-bottom: 2rem;
  }
}
.cid-seRWlCmyzo .card .card-wrapper .card-box .card-title,
.cid-seRWlCmyzo .card-box {
  color: #007bff;
}
.cid-uEp4uDQ8Kk {
  background-image: url("../../../assets/images/rv-detailing-kissimmeee-562x422.webp");
}
.cid-uEp4uDQ8Kk .block {
  height: 704px;
}
@media (max-width: 992px) {
  .cid-uEp4uDQ8Kk .block {
    height: 352px;
  }
}
.cid-u9KuwT88nx {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9KuwT88nx .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u9KuwT88nx .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-u9KuwT88nx .card .wrapper .mbr-section-title span:first-child {
  color: #1352ff;
}
.cid-u9KuwT88nx .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #1352ff;
  background: linear-gradient(#1352ff 0%, #1352ff 69%, #1352ff 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u9KuwT88nx .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u9KuwT88nx .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u9KuwT88nx .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-u9KuwT88nx .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-u9KuwT88nx .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u9KuwT88nx .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u9KuwT88nx .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u9KuwT88nx .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-u9KuwT88nx .card .wrapper .mbr-section-title,
.cid-u9KuwT88nx .mbr-section-btn,
.cid-u9KuwT88nx .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-u9KuwT88nx .card .wrapper .mbr-section-title,
.cid-u9KuwT88nx .mbr-section-btn,
.cid-u9KuwT88nx .mbr-list .list DIV {
  text-align: center;
}
#custom-html-148 {
  /* Type valid CSS here */
}
#custom-html-148 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-148 p {
  font-size: 60px;
  color: #777;
}
.cid-seRWlEiWe8 .google-map {
  height: 30rem;
  position: relative;
}
.cid-seRWlEiWe8 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-seRWlEiWe8 .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-seRWlEiWe8 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-seRWlEiWe8 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv802yRVn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv802yRVn .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv802yRVn .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv802yRVn .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv802yRVn .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv802yRVn .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv802yRVn .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv802yRVn .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv802yRVn .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv802yRVn .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv802yRVn .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv802yRVn .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sc1qDTsqgL .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sc1qDTsqgL .nav-item,
.cid-sc1qDTsqgL .nav-link,
.cid-sc1qDTsqgL .navbar-caption {
  font-weight: normal;
}
.cid-sc1qDTsqgL .nav-item:focus,
.cid-sc1qDTsqgL .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sc1qDTsqgL .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sc1qDTsqgL .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sc1qDTsqgL .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sc1qDTsqgL .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sc1qDTsqgL .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sc1qDTsqgL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sc1qDTsqgL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sc1qDTsqgL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sc1qDTsqgL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sc1qDTsqgL .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sc1qDTsqgL .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sc1qDTsqgL .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sc1qDTsqgL .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sc1qDTsqgL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sc1qDTsqgL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sc1qDTsqgL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sc1qDTsqgL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sc1qDTsqgL .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sc1qDTsqgL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sc1qDTsqgL .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-sc1qDTsqgL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sc1qDTsqgL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sc1qDTsqgL .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sc1qDTsqgL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sc1qDTsqgL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sc1qDTsqgL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sc1qDTsqgL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sc1qDTsqgL .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-sc1qDTsqgL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sc1qDTsqgL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sc1qDTsqgL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sc1qDTsqgL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sc1qDTsqgL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sc1qDTsqgL .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sc1qDTsqgL .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sc1qDTsqgL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sc1qDTsqgL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sc1qDTsqgL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sc1qDTsqgL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sc1qDTsqgL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sc1qDTsqgL .dropdown-item.active,
.cid-sc1qDTsqgL .dropdown-item:active {
  background-color: transparent;
}
.cid-sc1qDTsqgL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sc1qDTsqgL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sc1qDTsqgL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sc1qDTsqgL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sc1qDTsqgL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sc1qDTsqgL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sc1qDTsqgL .navbar-buttons {
  text-align: center;
}
.cid-sc1qDTsqgL .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sc1qDTsqgL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sc1qDTsqgL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-sc1qDTsqgL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sc1qDTsqgL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sc1qDTsqgL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sc1qDTsqgL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sc1qDTsqgL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sc1qDTsqgL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sc1qDTsqgL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sc1qDTsqgL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sc1qDTsqgL .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sc1qDTsqgL a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sc1qDTsqgL .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sc1qDTsqgL .soc-item {
  margin: .5rem .3rem;
}
.cid-sc1qDTsqgL .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sc1qDTsqgL .navbar {
    height: 77px;
  }
  .cid-sc1qDTsqgL .navbar.opened {
    height: auto;
  }
  .cid-sc1qDTsqgL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sfx04yLLFP {
  padding-top: 270px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/amazing-mobile-detailing-add.gif");
}
.cid-sfx04yLLFP .mbr-section-title {
  color: #ffffff;
}
.cid-sfx04yLLFP .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-sfx04yLLFP .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #fd603d;
  margin-bottom: 2rem;
}
.cid-sfx04yLLFP .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sfx04yLLFP .items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.cid-sfx04yLLFP .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
}
.cid-sfx04yLLFP .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  padding-left: 1rem;
  font-size: 0.6rem;
  margin: auto;
  color: #ff513c;
}
.cid-sfx04yLLFP .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sfx04yLLFP .items .list-item:last-child .listico {
  display: none;
}
.cid-sc2fQ8QYUM {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sc2fQ8QYUM .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-sc2fQ8QYUM .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sc2fQ8QYUM .card .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #ffffff;
  padding: 0;
}
.cid-sc2fQ8QYUM .card .card-wrapper .card-img {
  position: relative;
}
.cid-sc2fQ8QYUM .card .card-wrapper .card-img .price-label {
  padding: 11px;
  left: auto;
  top: auto;
  bottom: -20px;
  background-color: #55acee;
  z-index: 100;
  position: absolute;
}
.cid-sc2fQ8QYUM .card .card-wrapper .card-img .price-label .price-text {
  padding: 0;
  margin: 0;
}
.cid-sc2fQ8QYUM .card .card-wrapper .card-img .price-label .price-text.display-4 {
  line-height: 1.5;
}
.cid-sc2fQ8QYUM .card .card-wrapper .card-box {
  padding: 1.5rem;
  background-color: #0e1b28;
}
.cid-sc2fQ8QYUM .card .card-wrapper .card-box .card-title {
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-sc2fQ8QYUM .card .card-wrapper .card-box .card-text {
  color: #ffffff;
}
.cid-sc2fQ8QYUM .card .card-wrapper .card-box .date {
  color: #a1a1a1;
  margin-bottom: 0;
}
.cid-sc2fQ8QYUM .card .card-wrapper .card-box .link.display-4 .mbr-iconfont {
  font-size: 0.9rem;
}
.cid-sc2fQ8QYUM .card .card-wrapper .card-box .link .mbr-iconfont {
  align-self: center;
  color: #1352ff;
  margin-left: 0.5rem;
}
.cid-sc2fQ8QYUM .card .card-wrapper .card-img .price-label .price-text {
  text-align: left;
}
#custom-html-17x {
  /* Type valid CSS here */
}
#custom-html-17x div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-17x p {
  font-size: 60px;
  color: #777;
}
.cid-u9KvSIjxGr {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9KvSIjxGr .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u9KvSIjxGr .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-u9KvSIjxGr .card .wrapper .mbr-section-title span:first-child {
  color: #1352ff;
}
.cid-u9KvSIjxGr .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #1352ff;
  background: linear-gradient(#1352ff 0%, #1352ff 69%, #1352ff 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u9KvSIjxGr .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u9KvSIjxGr .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u9KvSIjxGr .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-u9KvSIjxGr .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-u9KvSIjxGr .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u9KvSIjxGr .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u9KvSIjxGr .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u9KvSIjxGr .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-u9KvSIjxGr .card .wrapper .mbr-section-title,
.cid-u9KvSIjxGr .mbr-section-btn,
.cid-u9KvSIjxGr .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-u9KvSIjxGr .card .wrapper .mbr-section-title,
.cid-u9KvSIjxGr .mbr-section-btn,
.cid-u9KvSIjxGr .mbr-list .list DIV {
  text-align: center;
}
#custom-html-x {
  /* Type valid CSS here */
}
#custom-html-x div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-x p {
  font-size: 60px;
  color: #777;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgva2ltBjg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgva2ltBjg .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgva2ltBjg .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgva2ltBjg .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgva2ltBjg .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgva2ltBjg .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgva2ltBjg .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgva2ltBjg .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgva2ltBjg .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgva2ltBjg .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgva2ltBjg .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgva2ltBjg .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-sc1qAJtJVF .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sc1qAJtJVF .nav-item,
.cid-sc1qAJtJVF .nav-link,
.cid-sc1qAJtJVF .navbar-caption {
  font-weight: normal;
}
.cid-sc1qAJtJVF .nav-item:focus,
.cid-sc1qAJtJVF .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sc1qAJtJVF .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-sc1qAJtJVF .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sc1qAJtJVF .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sc1qAJtJVF .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-sc1qAJtJVF .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sc1qAJtJVF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sc1qAJtJVF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sc1qAJtJVF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sc1qAJtJVF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sc1qAJtJVF .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-sc1qAJtJVF .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-sc1qAJtJVF .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-sc1qAJtJVF .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-sc1qAJtJVF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sc1qAJtJVF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sc1qAJtJVF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sc1qAJtJVF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-sc1qAJtJVF .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sc1qAJtJVF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sc1qAJtJVF .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-sc1qAJtJVF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sc1qAJtJVF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-sc1qAJtJVF .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sc1qAJtJVF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sc1qAJtJVF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sc1qAJtJVF .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sc1qAJtJVF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sc1qAJtJVF .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-sc1qAJtJVF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sc1qAJtJVF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sc1qAJtJVF .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-sc1qAJtJVF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sc1qAJtJVF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sc1qAJtJVF .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sc1qAJtJVF .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sc1qAJtJVF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sc1qAJtJVF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sc1qAJtJVF .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sc1qAJtJVF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sc1qAJtJVF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sc1qAJtJVF .dropdown-item.active,
.cid-sc1qAJtJVF .dropdown-item:active {
  background-color: transparent;
}
.cid-sc1qAJtJVF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sc1qAJtJVF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sc1qAJtJVF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sc1qAJtJVF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sc1qAJtJVF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sc1qAJtJVF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sc1qAJtJVF .navbar-buttons {
  text-align: center;
}
.cid-sc1qAJtJVF .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-sc1qAJtJVF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sc1qAJtJVF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-sc1qAJtJVF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sc1qAJtJVF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sc1qAJtJVF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sc1qAJtJVF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sc1qAJtJVF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sc1qAJtJVF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sc1qAJtJVF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sc1qAJtJVF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sc1qAJtJVF .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sc1qAJtJVF a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-sc1qAJtJVF .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sc1qAJtJVF .soc-item {
  margin: .5rem .3rem;
}
.cid-sc1qAJtJVF .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sc1qAJtJVF .navbar {
    height: 77px;
  }
  .cid-sc1qAJtJVF .navbar.opened {
    height: auto;
  }
  .cid-sc1qAJtJVF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sguCWVBWu0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sguCWVBWu0 .img-wrap {
  position: relative;
}
.cid-sguCWVBWu0 .img-wrap img {
  width: 100%;
}
.cid-sguCWVBWu0 .img-wrap .icon-label {
  padding: 19px;
  left: auto;
  top: 0;
  right: 0;
  bottom: auto;
  background-color: #1352ff;
  z-index: 100;
  position: absolute;
}
.cid-sguCWVBWu0 .img-wrap .icon-label .mbr-iconfont {
  color: #ffffff;
  font-size: 27px;
  line-height: 1;
}
@media (max-width: 768px) {
  .cid-sguCWVBWu0 .img-wrap .icon-label {
    left: 0;
    top: auto;
    right: auto;
    bottom: 0;
  }
}
.cid-sguCWVBWu0 .mbr-section-title {
  color: #ffffff;
}
.cid-sguCWVBWu0 .mbr-section-subtitle {
  color: #181818;
  text-align: center;
}
.cid-sguCWVBWu0 .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sguCWVBWu0 .mbr-section-text {
  color: #ffffff;
}
.cid-sguCWVBWu0 .form-control,
.cid-sguCWVBWu0 .form-check-label {
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}
.cid-sguCWVBWu0 .form-group .wrap span {
  display: none;
}
.cid-sguCWVBWu0 .text-blocks .mbr-text {
  color: #ffffff;
}
.cid-sguCWVBWu0 a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-sguCWVBWu0 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-sguCWVBWu0 .input-group-btn {
  display: block;
  text-align: left;
}
.cid-sguCWVBWu0 .input-group-btn .btn-sm {
  padding: 7px 39px;
}
.cid-sguCWVBWu0 textarea.form-control {
  resize: none;
}
@media (max-width: 767px) {
  .cid-sguCWVBWu0 h2 {
    padding-top: 2rem;
  }
  .cid-sguCWVBWu0 .input-group-btn {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .cid-sguCWVBWu0 .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-sguCWVBWu0 .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
.cid-sguCWVBWu0 .gdpr-block {
  padding: 20px;
  text-align: left;
}
.cid-sguCWVBWu0 .gdpr-block span {
  line-height: 1;
}
.cid-sguCWVBWu0 .gdpr-block label span.textGDPR input[name='gdpr'] {
  top: 6px;
}
.cid-sgu7qkV84x {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f5f5f5;
}
.cid-sgu7qkV84x .wrapper {
  overflow: hidden;
  position: relative;
}
.cid-sgu7qkV84x .wrapper .box {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-30%);
}
.cid-sgu7qkV84x .wrapper .box .mbr-media {
  z-index: 2;
}
.cid-sgu7qkV84x .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  background: transparent;
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.cid-sgu7qkV84x .icon-wrap:hover span {
  color: #ff513c;
}
.cid-sgu7qkV84x .icon-wrap span {
  padding-left: 4px;
}
.cid-sgu7qkV84x .mbr-media span {
  font-size: 2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff;
}
.cid-sgu7qkV84x .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-sgu7qkV84x .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sgu7qkV84x .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sgu7qkV84x .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sgu7qkV84x a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sgu7qkV84x a.close:hover {
  color: #ffffff;
}
.cid-sgu7qkV84x .img-wrap .overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #06182d;
  opacity: 0.8;
  pointer-events: none;
}
.cid-sgu7qkV84x .img-wrap img {
  width: 100%;
}
.cid-sgu7qkV84x .mbr-section-title {
  color: #06182d;
  margin-bottom: 1rem;
  transition: all 0.15s linear 0s;
}
.cid-sgu7qkV84x .mbr-section-title.display-5 {
  letter-spacing: 1px;
}
.cid-sgu7qkV84x .mbr-section-title:hover {
  opacity: 0.8;
}
.cid-sgu7qkV84x .mbr-section-subtitle {
  color: #61728a;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.cid-sgu7qkV84x .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-sgu7qkV84x .btn {
  margin: 0px !important;
}
.cid-sgu7qkV84x .btn.btn-success-outline {
  color: #000000;
}
.cid-sgu7qkV84x .btn.btn-sm {
  padding: 7px 39px;
}
.cid-sgu7qkV84x .share_buttons .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #c3cad2;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 10px 0 10px auto;
}
.cid-sgu7qkV84x .share_buttons .icon-wrapper:hover .link-icon {
  color: #007bff;
}
.cid-sgu7qkV84x .share_buttons .icon-wrapper .link-icon {
  display: inline-block;
  color: #61728a;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-sgu7qkV84x .share_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-sgu7qkV84x .share_buttons .icon-wrapper {
    margin: 10px !important;
  }
}
.cid-sgu7qkV84x .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
.cid-sgu7qkV84x .sticky-tag .mbr-text {
  padding: 5px 6px;
  margin: 0 3px 9px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transform: skew(-22deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  font-weight: 400;
  border-image-slice: 1;
  color: #ffffff;
}
.cid-sgu7qkV84x .sticky-tag .mbr-text::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 1.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #ff5e3a transparent transparent;
  transform: skew(22deg) !important;
}
.cid-sguzzhpaly {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f5f5f5;
}
.cid-sguzzhpaly .wrapper {
  overflow: hidden;
  position: relative;
}
.cid-sguzzhpaly .wrapper .box {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-30%);
}
.cid-sguzzhpaly .wrapper .box .mbr-media {
  z-index: 2;
}
.cid-sguzzhpaly .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  background: transparent;
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.cid-sguzzhpaly .icon-wrap:hover span {
  color: #ff513c;
}
.cid-sguzzhpaly .icon-wrap span {
  padding-left: 4px;
}
.cid-sguzzhpaly .mbr-media span {
  font-size: 2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff;
}
.cid-sguzzhpaly .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-sguzzhpaly .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sguzzhpaly .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sguzzhpaly .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sguzzhpaly a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sguzzhpaly a.close:hover {
  color: #ffffff;
}
.cid-sguzzhpaly .img-wrap .overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #06182d;
  opacity: 0.8;
  pointer-events: none;
}
.cid-sguzzhpaly .img-wrap img {
  width: 100%;
}
.cid-sguzzhpaly .mbr-section-title {
  color: #06182d;
  margin-bottom: 1rem;
  transition: all 0.15s linear 0s;
}
.cid-sguzzhpaly .mbr-section-title.display-5 {
  letter-spacing: 1px;
}
.cid-sguzzhpaly .mbr-section-title:hover {
  opacity: 0.8;
}
.cid-sguzzhpaly .mbr-section-subtitle {
  color: #61728a;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.cid-sguzzhpaly .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-sguzzhpaly .btn {
  margin: 0px !important;
}
.cid-sguzzhpaly .btn.btn-success-outline {
  color: #000000;
}
.cid-sguzzhpaly .btn.btn-sm {
  padding: 7px 39px;
}
.cid-sguzzhpaly .share_buttons .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #c3cad2;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 10px 0 10px auto;
}
.cid-sguzzhpaly .share_buttons .icon-wrapper:hover .link-icon {
  color: #007bff;
}
.cid-sguzzhpaly .share_buttons .icon-wrapper .link-icon {
  display: inline-block;
  color: #61728a;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-sguzzhpaly .share_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-sguzzhpaly .share_buttons .icon-wrapper {
    margin: 10px !important;
  }
}
.cid-sguzzhpaly .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
.cid-sguzzhpaly .sticky-tag .mbr-text {
  padding: 5px 6px;
  margin: 0 3px 9px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transform: skew(-22deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  font-weight: 400;
  border-image-slice: 1;
  color: #ffffff;
}
.cid-sguzzhpaly .sticky-tag .mbr-text::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 1.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #ff5e3a transparent transparent;
  transform: skew(22deg) !important;
}
.cid-sgusWnKCis {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f5f5f5;
}
.cid-sgusWnKCis .wrapper {
  overflow: hidden;
  position: relative;
}
.cid-sgusWnKCis .wrapper .box {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-30%);
}
.cid-sgusWnKCis .wrapper .box .mbr-media {
  z-index: 2;
}
.cid-sgusWnKCis .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  background: transparent;
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.cid-sgusWnKCis .icon-wrap:hover span {
  color: #ff513c;
}
.cid-sgusWnKCis .icon-wrap span {
  padding-left: 4px;
}
.cid-sgusWnKCis .mbr-media span {
  font-size: 2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff;
}
.cid-sgusWnKCis .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-sgusWnKCis .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sgusWnKCis .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sgusWnKCis .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sgusWnKCis a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sgusWnKCis a.close:hover {
  color: #ffffff;
}
.cid-sgusWnKCis .img-wrap .overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #06182d;
  opacity: 0.8;
  pointer-events: none;
}
.cid-sgusWnKCis .img-wrap img {
  width: 100%;
}
.cid-sgusWnKCis .mbr-section-title {
  color: #06182d;
  margin-bottom: 1rem;
  transition: all 0.15s linear 0s;
}
.cid-sgusWnKCis .mbr-section-title.display-5 {
  letter-spacing: 1px;
}
.cid-sgusWnKCis .mbr-section-title:hover {
  opacity: 0.8;
}
.cid-sgusWnKCis .mbr-section-subtitle {
  color: #61728a;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.cid-sgusWnKCis .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-sgusWnKCis .btn {
  margin: 0px !important;
}
.cid-sgusWnKCis .btn.btn-success-outline {
  color: #000000;
}
.cid-sgusWnKCis .btn.btn-sm {
  padding: 7px 39px;
}
.cid-sgusWnKCis .share_buttons .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #c3cad2;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 10px 0 10px auto;
}
.cid-sgusWnKCis .share_buttons .icon-wrapper:hover .link-icon {
  color: #007bff;
}
.cid-sgusWnKCis .share_buttons .icon-wrapper .link-icon {
  display: inline-block;
  color: #61728a;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-sgusWnKCis .share_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-sgusWnKCis .share_buttons .icon-wrapper {
    margin: 10px !important;
  }
}
.cid-sgusWnKCis .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
.cid-sgusWnKCis .sticky-tag .mbr-text {
  padding: 5px 6px;
  margin: 0 3px 9px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transform: skew(-22deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  font-weight: 400;
  border-image-slice: 1;
  color: #ffffff;
}
.cid-sgusWnKCis .sticky-tag .mbr-text::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 1.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #ff5e3a transparent transparent;
  transform: skew(22deg) !important;
}
.cid-sguEppLEMJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f5f5f5;
}
.cid-sguEppLEMJ .wrapper {
  overflow: hidden;
  position: relative;
}
.cid-sguEppLEMJ .wrapper .box {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-30%);
}
.cid-sguEppLEMJ .wrapper .box .mbr-media {
  z-index: 2;
}
.cid-sguEppLEMJ .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  background: transparent;
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.cid-sguEppLEMJ .icon-wrap:hover span {
  color: #ff513c;
}
.cid-sguEppLEMJ .icon-wrap span {
  padding-left: 4px;
}
.cid-sguEppLEMJ .mbr-media span {
  font-size: 2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff;
}
.cid-sguEppLEMJ .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-sguEppLEMJ .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sguEppLEMJ .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sguEppLEMJ .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sguEppLEMJ a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sguEppLEMJ a.close:hover {
  color: #ffffff;
}
.cid-sguEppLEMJ .img-wrap .overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #06182d;
  opacity: 0.8;
  pointer-events: none;
}
.cid-sguEppLEMJ .img-wrap img {
  width: 100%;
}
.cid-sguEppLEMJ .mbr-section-title {
  color: #06182d;
  margin-bottom: 1rem;
  transition: all 0.15s linear 0s;
}
.cid-sguEppLEMJ .mbr-section-title.display-5 {
  letter-spacing: 1px;
}
.cid-sguEppLEMJ .mbr-section-title:hover {
  opacity: 0.8;
}
.cid-sguEppLEMJ .mbr-section-subtitle {
  color: #61728a;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.cid-sguEppLEMJ .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-sguEppLEMJ .btn {
  margin: 0px !important;
}
.cid-sguEppLEMJ .btn.btn-success-outline {
  color: #000000;
}
.cid-sguEppLEMJ .btn.btn-sm {
  padding: 7px 39px;
}
.cid-sguEppLEMJ .share_buttons .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #c3cad2;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 10px 0 10px auto;
}
.cid-sguEppLEMJ .share_buttons .icon-wrapper:hover .link-icon {
  color: #007bff;
}
.cid-sguEppLEMJ .share_buttons .icon-wrapper .link-icon {
  display: inline-block;
  color: #61728a;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-sguEppLEMJ .share_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-sguEppLEMJ .share_buttons .icon-wrapper {
    margin: 10px !important;
  }
}
.cid-sguEppLEMJ .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
.cid-sguEppLEMJ .sticky-tag .mbr-text {
  padding: 5px 6px;
  margin: 0 3px 9px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transform: skew(-22deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  font-weight: 400;
  border-image-slice: 1;
  color: #ffffff;
}
.cid-sguEppLEMJ .sticky-tag .mbr-text::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 1.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #ff5e3a transparent transparent;
  transform: skew(22deg) !important;
}
.cid-sguSsaSPwf {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f5f5f5;
}
.cid-sguSsaSPwf .wrapper {
  overflow: hidden;
  position: relative;
}
.cid-sguSsaSPwf .wrapper .box {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-30%);
}
.cid-sguSsaSPwf .wrapper .box .mbr-media {
  z-index: 2;
}
.cid-sguSsaSPwf .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  background: transparent;
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.cid-sguSsaSPwf .icon-wrap:hover span {
  color: #ff513c;
}
.cid-sguSsaSPwf .icon-wrap span {
  padding-left: 4px;
}
.cid-sguSsaSPwf .mbr-media span {
  font-size: 2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff;
}
.cid-sguSsaSPwf .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-sguSsaSPwf .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sguSsaSPwf .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sguSsaSPwf .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sguSsaSPwf a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sguSsaSPwf a.close:hover {
  color: #ffffff;
}
.cid-sguSsaSPwf .img-wrap .overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #06182d;
  opacity: 0.8;
  pointer-events: none;
}
.cid-sguSsaSPwf .img-wrap img {
  width: 100%;
}
.cid-sguSsaSPwf .mbr-section-title {
  color: #06182d;
  margin-bottom: 1rem;
  transition: all 0.15s linear 0s;
}
.cid-sguSsaSPwf .mbr-section-title.display-5 {
  letter-spacing: 1px;
}
.cid-sguSsaSPwf .mbr-section-title:hover {
  opacity: 0.8;
}
.cid-sguSsaSPwf .mbr-section-subtitle {
  color: #61728a;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.cid-sguSsaSPwf .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-sguSsaSPwf .btn {
  margin: 0px !important;
}
.cid-sguSsaSPwf .btn.btn-success-outline {
  color: #000000;
}
.cid-sguSsaSPwf .btn.btn-sm {
  padding: 7px 39px;
}
.cid-sguSsaSPwf .share_buttons .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #c3cad2;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 10px 0 10px auto;
}
.cid-sguSsaSPwf .share_buttons .icon-wrapper:hover .link-icon {
  color: #007bff;
}
.cid-sguSsaSPwf .share_buttons .icon-wrapper .link-icon {
  display: inline-block;
  color: #61728a;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-sguSsaSPwf .share_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-sguSsaSPwf .share_buttons .icon-wrapper {
    margin: 10px !important;
  }
}
.cid-sguSsaSPwf .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
.cid-sguSsaSPwf .sticky-tag .mbr-text {
  padding: 5px 6px;
  margin: 0 3px 9px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transform: skew(-22deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  font-weight: 400;
  border-image-slice: 1;
  color: #ffffff;
}
.cid-sguSsaSPwf .sticky-tag .mbr-text::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 1.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #ff5e3a transparent transparent;
  transform: skew(22deg) !important;
}
.cid-sguv4sjkVg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f5f5f5;
}
.cid-sguv4sjkVg .wrapper {
  overflow: hidden;
  position: relative;
}
.cid-sguv4sjkVg .wrapper .box {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-30%);
}
.cid-sguv4sjkVg .wrapper .box .mbr-media {
  z-index: 2;
}
.cid-sguv4sjkVg .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  background: transparent;
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.cid-sguv4sjkVg .icon-wrap:hover span {
  color: #ff513c;
}
.cid-sguv4sjkVg .icon-wrap span {
  padding-left: 4px;
}
.cid-sguv4sjkVg .mbr-media span {
  font-size: 2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff;
}
.cid-sguv4sjkVg .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-sguv4sjkVg .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sguv4sjkVg .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sguv4sjkVg .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sguv4sjkVg a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sguv4sjkVg a.close:hover {
  color: #ffffff;
}
.cid-sguv4sjkVg .img-wrap .overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #06182d;
  opacity: 0.8;
  pointer-events: none;
}
.cid-sguv4sjkVg .img-wrap img {
  width: 100%;
}
.cid-sguv4sjkVg .mbr-section-title {
  color: #06182d;
  margin-bottom: 1rem;
  transition: all 0.15s linear 0s;
}
.cid-sguv4sjkVg .mbr-section-title.display-5 {
  letter-spacing: 1px;
}
.cid-sguv4sjkVg .mbr-section-title:hover {
  opacity: 0.8;
}
.cid-sguv4sjkVg .mbr-section-subtitle {
  color: #61728a;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.cid-sguv4sjkVg .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-sguv4sjkVg .btn {
  margin: 0px !important;
}
.cid-sguv4sjkVg .btn.btn-success-outline {
  color: #000000;
}
.cid-sguv4sjkVg .btn.btn-sm {
  padding: 7px 39px;
}
.cid-sguv4sjkVg .share_buttons .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #c3cad2;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 10px 0 10px auto;
}
.cid-sguv4sjkVg .share_buttons .icon-wrapper:hover .link-icon {
  color: #007bff;
}
.cid-sguv4sjkVg .share_buttons .icon-wrapper .link-icon {
  display: inline-block;
  color: #61728a;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-sguv4sjkVg .share_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-sguv4sjkVg .share_buttons .icon-wrapper {
    margin: 10px !important;
  }
}
.cid-sguv4sjkVg .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
.cid-sguv4sjkVg .sticky-tag .mbr-text {
  padding: 5px 6px;
  margin: 0 3px 9px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transform: skew(-22deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  font-weight: 400;
  border-image-slice: 1;
  color: #ffffff;
}
.cid-sguv4sjkVg .sticky-tag .mbr-text::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 1.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #ff5e3a transparent transparent;
  transform: skew(22deg) !important;
}
.cid-sguxkKJt8k {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f5f5f5;
}
.cid-sguxkKJt8k .wrapper {
  overflow: hidden;
  position: relative;
}
.cid-sguxkKJt8k .wrapper .box {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-30%);
}
.cid-sguxkKJt8k .wrapper .box .mbr-media {
  z-index: 2;
}
.cid-sguxkKJt8k .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  background: transparent;
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.cid-sguxkKJt8k .icon-wrap:hover span {
  color: #ff513c;
}
.cid-sguxkKJt8k .icon-wrap span {
  padding-left: 4px;
}
.cid-sguxkKJt8k .mbr-media span {
  font-size: 2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff;
}
.cid-sguxkKJt8k .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-sguxkKJt8k .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sguxkKJt8k .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sguxkKJt8k .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sguxkKJt8k a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sguxkKJt8k a.close:hover {
  color: #ffffff;
}
.cid-sguxkKJt8k .img-wrap .overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #06182d;
  opacity: 0.8;
  pointer-events: none;
}
.cid-sguxkKJt8k .img-wrap img {
  width: 100%;
}
.cid-sguxkKJt8k .mbr-section-title {
  color: #06182d;
  margin-bottom: 1rem;
  transition: all 0.15s linear 0s;
}
.cid-sguxkKJt8k .mbr-section-title.display-5 {
  letter-spacing: 1px;
}
.cid-sguxkKJt8k .mbr-section-title:hover {
  opacity: 0.8;
}
.cid-sguxkKJt8k .mbr-section-subtitle {
  color: #61728a;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.cid-sguxkKJt8k .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-sguxkKJt8k .btn {
  margin: 0px !important;
}
.cid-sguxkKJt8k .btn.btn-success-outline {
  color: #000000;
}
.cid-sguxkKJt8k .btn.btn-sm {
  padding: 7px 39px;
}
.cid-sguxkKJt8k .share_buttons .icon-wrapper {
  background: #ffffff;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #c3cad2;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 10px 0 10px auto;
}
.cid-sguxkKJt8k .share_buttons .icon-wrapper:hover .link-icon {
  color: #007bff;
}
.cid-sguxkKJt8k .share_buttons .icon-wrapper .link-icon {
  display: inline-block;
  color: #61728a;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-sguxkKJt8k .share_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-sguxkKJt8k .share_buttons .icon-wrapper {
    margin: 10px !important;
  }
}
.cid-sguxkKJt8k .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
.cid-sguxkKJt8k .sticky-tag .mbr-text {
  padding: 5px 6px;
  margin: 0 3px 9px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transform: skew(-22deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  font-weight: 400;
  border-image-slice: 1;
  color: #ffffff;
}
.cid-sguxkKJt8k .sticky-tag .mbr-text::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 1.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #ff5e3a transparent transparent;
  transform: skew(22deg) !important;
}
#custom-html-r {
  /* Type valid CSS here */
}
#custom-html-r div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-r p {
  font-size: 60px;
  color: #777;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sc1qAOXuLt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sc1qAOXuLt .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sc1qAOXuLt .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sc1qAOXuLt .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sc1qAOXuLt .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sc1qAOXuLt .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sc1qAOXuLt .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sc1qAOXuLt .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sc1qAOXuLt .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sc1qAOXuLt .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sc1qAOXuLt .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sc1qAOXuLt .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-rZq2OOWt7M .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-rZq2OOWt7M .nav-item,
.cid-rZq2OOWt7M .nav-link,
.cid-rZq2OOWt7M .navbar-caption {
  font-weight: normal;
}
.cid-rZq2OOWt7M .nav-item:focus,
.cid-rZq2OOWt7M .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rZq2OOWt7M .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-rZq2OOWt7M .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-rZq2OOWt7M .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rZq2OOWt7M .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rZq2OOWt7M .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rZq2OOWt7M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rZq2OOWt7M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-rZq2OOWt7M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rZq2OOWt7M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rZq2OOWt7M .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-rZq2OOWt7M .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rZq2OOWt7M .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rZq2OOWt7M .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rZq2OOWt7M .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rZq2OOWt7M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rZq2OOWt7M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rZq2OOWt7M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.9rem - 1rem);
  }
}
.cid-rZq2OOWt7M .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rZq2OOWt7M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rZq2OOWt7M .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-rZq2OOWt7M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rZq2OOWt7M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-rZq2OOWt7M .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rZq2OOWt7M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rZq2OOWt7M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rZq2OOWt7M .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rZq2OOWt7M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rZq2OOWt7M .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-rZq2OOWt7M .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rZq2OOWt7M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rZq2OOWt7M .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-rZq2OOWt7M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rZq2OOWt7M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rZq2OOWt7M .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rZq2OOWt7M .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rZq2OOWt7M .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rZq2OOWt7M .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rZq2OOWt7M .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rZq2OOWt7M .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rZq2OOWt7M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rZq2OOWt7M .dropdown-item.active,
.cid-rZq2OOWt7M .dropdown-item:active {
  background-color: transparent;
}
.cid-rZq2OOWt7M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rZq2OOWt7M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rZq2OOWt7M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rZq2OOWt7M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rZq2OOWt7M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rZq2OOWt7M ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rZq2OOWt7M .navbar-buttons {
  text-align: center;
}
.cid-rZq2OOWt7M .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-rZq2OOWt7M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rZq2OOWt7M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1352ff;
}
.cid-rZq2OOWt7M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rZq2OOWt7M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rZq2OOWt7M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rZq2OOWt7M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rZq2OOWt7M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZq2OOWt7M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rZq2OOWt7M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rZq2OOWt7M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZq2OOWt7M .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rZq2OOWt7M a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-rZq2OOWt7M .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rZq2OOWt7M .soc-item {
  margin: .5rem .3rem;
}
.cid-rZq2OOWt7M .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZq2OOWt7M .navbar {
    height: 77px;
  }
  .cid-rZq2OOWt7M .navbar.opened {
    height: auto;
  }
  .cid-rZq2OOWt7M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u9GNFhK6gl {
  padding-top: 165px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/benefits-of-interior-car-detailing-2000x1500.webp");
}
.cid-u9GNFhK6gl .row {
  flex-direction: row-reverse;
}
.cid-u9GNFhK6gl .content-left-wrapper .mbr-section-subtitle {
  color: #b6af8b;
}
.cid-u9GNFhK6gl .content-left-wrapper .btn {
  margin: 0.4rem !important;
  justify-content: space-between;
}
.cid-u9GNFhK6gl .content-left-wrapper .btn .mbr-iconfont {
  order: 2;
  margin-left: 24px;
}
.cid-u9GNFhK6gl .content-left-wrapper .mbr-section-title,
.cid-u9GNFhK6gl .mbr-section-btn {
  text-align: center;
}
.cid-u9GWbpMhKz {
  padding-top: 75px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/interior-car-detailing-celebrationfl-2000x1500.webp");
}
.cid-u9GWbpMhKz .mbr-section-title.mbr-bold {
  font-weight: 700;
}
.cid-u9GWbpMhKz .mbr-section-subtitle {
  color: #ff4e3c;
}
.cid-u9GWbpMhKz .mbr-section-subtitle.mbr-bold {
  font-weight: 700;
}
.cid-u9GWbpMhKz .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u9GWbpMhKz .mbr-text {
  color: #ffffff;
}
.cid-u9GWbpMhKz .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-u9GWbpMhKz .text-wrap .icons-wrap .icon-wrapper {
  background: transparent;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #61728a;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-u9GWbpMhKz .text-wrap .icons-wrap .icon-wrapper:hover {
  background-color: #55acee;
  border-color: #55acee;
}
.cid-u9GWbpMhKz .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffff;
}
.cid-u9GWbpMhKz .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffff;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-u9GWbpMhKz .text-wrap .icons-wrap::before {
  height: 2px;
  width: 30%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #61728a;
}
@media (max-width: 992px) {
  .cid-u9GWbpMhKz .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-u9GWbpMhKz .text-wrap .icons-wrap::after {
  height: 2px;
  width: 30%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #61728a;
}
@media (max-width: 992px) {
  .cid-u9GWbpMhKz .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-u9GWbpMhKz .buttons-wrap {
  text-align: center;
}
.cid-u9GWbpMhKz .buttons-wrap .mbr-section-btn {
  display: inline-block;
}
.cid-u9GWbpMhKz .buttons-wrap .mbr-section-btn .btn {
  padding-left: 39px;
  padding-right: 39px;
}
.cid-u9GWbpMhKz .buttons-wrap .mbr-section-btn .btn-success-outline {
  color: #ffffff;
}
.cid-u9GWbpMhKz .buttons-wrap .mbr-section-btn .btn-success-outline:hover {
  color: #000000;
}
.cid-u9GWbpMhKz .buttons-wrap .or {
  text-align: center;
  display: inline;
  margin-left: 25px;
  margin-right: 25px;
}
#custom-html-1cf {
  /* Type valid CSS here */
}
#custom-html-1cf div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1cf p {
  font-size: 60px;
  color: #777;
}
.cid-uckNSPGOug {
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-color: #fffeda;
}
.cid-uckNSPGOug .mbr-fallback-image.disabled {
  display: none;
}
.cid-uckNSPGOug .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uckNSPGOug .row {
  align-items: flex-end;
}
.cid-uckNSPGOug .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uckNSPGOug .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-uckNSPGOug img,
.cid-uckNSPGOug .item-img {
  width: 100%;
}
.cid-uckNSPGOug H5 {
  color: #291f1e;
}
.cid-uckNSPGOug .mbr-text,
.cid-uckNSPGOug .mbr-section-btn {
  color: #291f1e;
}
.cid-u9KmJnAGoM {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9KmJnAGoM .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u9KmJnAGoM .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-u9KmJnAGoM .card .wrapper .mbr-section-title span:first-child {
  color: #1352ff;
}
.cid-u9KmJnAGoM .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #e5e5e5;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #1352ff;
  background: linear-gradient(#1352ff 0%, #1352ff 69%, #1352ff 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u9KmJnAGoM .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u9KmJnAGoM .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u9KmJnAGoM .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-u9KmJnAGoM .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-u9KmJnAGoM .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u9KmJnAGoM .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u9KmJnAGoM .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #ff4e3c;
  display: inline-block;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u9KmJnAGoM .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-u9KmJnAGoM .card .wrapper .mbr-section-title,
.cid-u9KmJnAGoM .mbr-section-btn,
.cid-u9KmJnAGoM .mbr-list .list {
  text-align: center;
  color: #000000;
}
.cid-u9KmJnAGoM .card .wrapper .mbr-section-title,
.cid-u9KmJnAGoM .mbr-section-btn,
.cid-u9KmJnAGoM .mbr-list .list DIV {
  text-align: center;
}
.cid-u9K5Q0NepZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u9K5Q0NepZ .img-wrap {
  position: relative;
}
.cid-u9K5Q0NepZ .img-wrap img {
  width: 100%;
}
.cid-u9K5Q0NepZ .img-wrap .icon-label {
  padding: 19px;
  left: auto;
  top: 0;
  right: 0;
  bottom: auto;
  background-color: #1352ff;
  z-index: 100;
  position: absolute;
}
.cid-u9K5Q0NepZ .img-wrap .icon-label .mbr-iconfont {
  color: #ffffff;
  font-size: 27px;
  line-height: 1;
}
@media (max-width: 768px) {
  .cid-u9K5Q0NepZ .img-wrap .icon-label {
    left: 0;
    top: auto;
    right: auto;
    bottom: 0;
  }
}
.cid-u9K5Q0NepZ .mbr-section-title {
  color: #ffffff;
}
.cid-u9K5Q0NepZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u9K5Q0NepZ .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u9K5Q0NepZ .mbr-section-text {
  color: #ffffff;
}
.cid-u9K5Q0NepZ .form-control,
.cid-u9K5Q0NepZ .form-check-label {
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}
.cid-u9K5Q0NepZ .form-control {
  box-shadow: none;
  padding: 0.7em 1.07em 0em 0.8em;
  background-color: #ffffff;
  border: 0px solid #b8b8b8;
  border-bottom: 1px solid #b8b8b8;
  color: #b8b8b8;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-u9K5Q0NepZ .form-control:focus,
.cid-u9K5Q0NepZ .form-control:hover {
  border: 0px solid #b8b8b8;
  border-bottom: 1px solid #b8b8b8;
  background-color: #ffffff;
}
.cid-u9K5Q0NepZ .form-control.textarea {
  padding-top: 40px;
}
.cid-u9K5Q0NepZ .form-group {
  margin-bottom: 1.5rem;
}
.cid-u9K5Q0NepZ input::-webkit-input-placeholder,
.cid-u9K5Q0NepZ textarea::-webkit-input-placeholder {
  color: #b8b8b8;
}
.cid-u9K5Q0NepZ input:-moz-placeholder,
.cid-u9K5Q0NepZ textarea:-moz-placeholder {
  color: #b8b8b8;
}
.cid-u9K5Q0NepZ .jq-selectbox li,
.cid-u9K5Q0NepZ .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-u9K5Q0NepZ .jq-selectbox li:hover,
.cid-u9K5Q0NepZ .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-u9K5Q0NepZ .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-u9K5Q0NepZ .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-u9K5Q0NepZ .text-blocks .mbr-text {
  color: #ffffff;
}
.cid-u9K5Q0NepZ a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-u9K5Q0NepZ .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-u9K5Q0NepZ .input-group-btn {
  display: block;
  text-align: left;
}
.cid-u9K5Q0NepZ .input-group-btn .btn-sm {
  padding: 7px 39px;
}
.cid-u9K5Q0NepZ textarea.form-control {
  resize: none;
}
@media (max-width: 767px) {
  .cid-u9K5Q0NepZ h2 {
    padding-top: 2rem;
  }
  .cid-u9K5Q0NepZ .input-group-btn {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .cid-u9K5Q0NepZ .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-u9K5Q0NepZ .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
.cid-u9K5Q0NepZ .gdpr-block {
  padding: 20px;
  text-align: left;
}
.cid-u9K5Q0NepZ .gdpr-block span {
  line-height: 1;
}
.cid-u9K5Q0NepZ .gdpr-block label span.textGDPR input[name='gdpr'] {
  top: 6px;
}
#custom-html-1az {
  /* Type valid CSS here */
}
#custom-html-1az div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1az p {
  font-size: 60px;
  color: #777;
}
.cid-sgigChyZEh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #06182d;
}
.cid-sgigChyZEh .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-sgigChyZEh .title {
  text-align: left;
}
.cid-sgigChyZEh .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-sgigChyZEh li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-sgigChyZEh .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-sgigChyZEh .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-sgigChyZEh .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.1rem;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-sgigChyZEh .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ff4e3c;
}
.cid-sgigChyZEh .align-wrap .item-wrap span,
.cid-sgigChyZEh .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-sgigChyZEh .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-sgigChyZEh .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-sgigChyZEh .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-sgigChyZEh .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-sgigChyZEh .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-sgigChyZEh .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-sgigChyZEh .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sgigChyZEh .socicon-wrap {
    margin: auto;
  }
}
.cid-sgv41Rp9ml {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-sgv41Rp9ml .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-sgv41Rp9ml .copyright {
    margin-bottom: 1rem;
  }
}
.cid-sgv41Rp9ml .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-sgv41Rp9ml .text-wrap .icons-wrap .icon-wrapper {
  background: #06182d;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #384657;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-sgv41Rp9ml .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-sgv41Rp9ml .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-sgv41Rp9ml .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-sgv41Rp9ml .text-wrap .icons-wrap::before {
  height: 2px;
  width: 100%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv41Rp9ml .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-sgv41Rp9ml .text-wrap .icons-wrap::after {
  height: 2px;
  width: 100%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #384657;
}
@media (max-width: 992px) {
  .cid-sgv41Rp9ml .text-wrap .icons-wrap::after {
    display: none;
  }
}
#custom-html-1b9 {
  /* Type valid CSS here */
}
#custom-html-1b9 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1b9 p {
  font-size: 60px;
  color: #777;
}
