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: 'Roboto Slab', serif;
  font-size: 0.8rem;
  line-height: 1.8;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.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.72rem !important;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-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: #ffffff !important;
}
.bg-success {
  background-color: #fff000 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #d52b27 !important;
}
.bg-danger {
  background-color: #1352ff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-primary:hover {
  background-color: #ffffff !important;
  border-color: #ffffff !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: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-info:hover {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success,
.btn-success:active {
  background-color: #fff000 !important;
  border-color: #fff000 !important;
  color: #000000 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
  background-color: #b3a800 !important;
  border-color: #b3a800 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #b3a800 !important;
  border-color: #b3a800 !important;
}
.btn-success:hover {
  background-color: #ffffff !important;
  border-color: #ffffff !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: #ffffff !important;
  border-color: #ffffff !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: #ffffff !important;
  border-color: #ffffff !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: #ffffff !important;
  border-color: #ffffff !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: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #ffffff;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #fff000;
  color: #fff000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000;
  background-color: #fff000;
  border-color: #fff000;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #fff000 !important;
  border-color: #fff000 !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: #ffffff !important;
}
.text-secondary {
  color: #282f39 !important;
}
.text-success {
  color: #fff000 !important;
}
.text-info {
  color: #ffffff !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: #ffffff !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #526075 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #fff666 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #ffffff !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: #ffffff;
}
.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: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffffff;
}
.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: #fffccc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #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 a {
  border-radius: 100px;
}
blockquote {
  border-color: #ffffff;
}
/* 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: #ffffff;
  color: #000000;
}
.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: #ffffff;
  border-bottom-color: #ffffff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffffff !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='%23ffffff' %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-t1fkKJLhzA .navbar {
  padding: .5rem 0;
  transition: none;
  min-height: 50px;
  background: none;
}
.cid-t1fkKJLhzA .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #0e1b28;
}
.cid-t1fkKJLhzA .navbar-fixed-top {
  padding-top: 0;
}
.cid-t1fkKJLhzA .navbar-collapse {
  flex-basis: auto;
}
.cid-t1fkKJLhzA .dropdown-item {
  padding: 0;
}
.cid-t1fkKJLhzA .dropdown-menu {
  border: 0px solid lightgray;
  background: #0e2640 !important;
}
.cid-t1fkKJLhzA .menu-content-top {
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-t1fkKJLhzA .menu-content-top {
    width: 100%;
  }
  .cid-t1fkKJLhzA .menu-content-top .menu-logo {
    display: none;
  }
  .cid-t1fkKJLhzA .menu-content-top .navbar-buttons {
    display: none !important;
  }
  .cid-t1fkKJLhzA .menu-content-top .menu-content-right {
    justify-content: space-between;
  }
}
.cid-t1fkKJLhzA .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-t1fkKJLhzA .menu-bottom .menu-wrap {
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-t1fkKJLhzA .menu-bottom .navbar-brand-bottom {
    display: none !important;
  }
}
.cid-t1fkKJLhzA .menu-bottom .mbr-overlay2 {
  z-index: 0;
  transition: all .3s;
  background: #0e2640;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}
.cid-t1fkKJLhzA .menu-bottom .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t1fkKJLhzA .menu-bottom .icons-menu span {
  font-size: 16px;
  color: #ffffff;
}
.cid-t1fkKJLhzA .navbar-dropdown.bg-color.transparent.opened {
  background: #0e1b28;
}
.cid-t1fkKJLhzA a {
  font-style: normal;
}
.cid-t1fkKJLhzA .nav-item {
  border-right: 1px #0e2640;
  border-left: 1px #0e2640;
}
.cid-t1fkKJLhzA .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-t1fkKJLhzA .nav-item a {
  padding: 20px 0 !important;
  margin: 0 .5rem !important;
}
.cid-t1fkKJLhzA .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t1fkKJLhzA .content-text {
  margin-bottom: 0;
}
.cid-t1fkKJLhzA .navbar-nav {
  position: relative;
  min-height: 49px;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-t1fkKJLhzA .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-t1fkKJLhzA .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-t1fkKJLhzA .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-t1fkKJLhzA .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-t1fkKJLhzA .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1fkKJLhzA .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1fkKJLhzA .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-t1fkKJLhzA .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1fkKJLhzA .nav-dropdown .link {
  font-weight: 400;
}
.cid-t1fkKJLhzA .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-t1fkKJLhzA .content-right-side {
  text-align: center;
}
.cid-t1fkKJLhzA .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-t1fkKJLhzA .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-t1fkKJLhzA .info-widget {
  margin-left: 16px;
  padding-top: 0.5rem;
}
.cid-t1fkKJLhzA .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-t1fkKJLhzA .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-t1fkKJLhzA .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-t1fkKJLhzA .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-t1fkKJLhzA .widget-content .widget-title {
  margin-bottom: 0px;
  font-weight: 500;
}
.cid-t1fkKJLhzA .widget-content .widget-title .mbr-iconfont {
  display: inline-block;
  padding-right: 0.5rem;
  font-size: 20px !important;
}
.cid-t1fkKJLhzA .widget-content .widget-title.display-7 {
  line-height: 1.2 !important;
}
.cid-t1fkKJLhzA .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-t1fkKJLhzA .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-t1fkKJLhzA .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-t1fkKJLhzA .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-t1fkKJLhzA .navbar {
    display: block;
    padding: 0;
  }
  .cid-t1fkKJLhzA .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-t1fkKJLhzA .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 8rem);
  }
  .cid-t1fkKJLhzA .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    padding-top: 8px !important;
  }
  .cid-t1fkKJLhzA .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-t1fkKJLhzA .navbar-toggler {
    display: none;
  }
  .cid-t1fkKJLhzA .navbar-collapse {
    justify-content: center;
  }
}
.cid-t1fkKJLhzA .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-t1fkKJLhzA .btn {
  display: inline-flex;
  align-items: center;
}
.cid-t1fkKJLhzA .btn.btn-success-outline {
  color: #ffffff;
  font-weight: normal;
  letter-spacing: 0;
}
.cid-t1fkKJLhzA .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-t1fkKJLhzA .menu-logo {
  margin-right: auto;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu {
  background: #0e1b28;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t1fkKJLhzA .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t1fkKJLhzA .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  z-index: 1000;
}
.cid-t1fkKJLhzA .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-t1fkKJLhzA .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 1;
  transition: font-size 0.25s;
}
.cid-t1fkKJLhzA .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t1fkKJLhzA .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t1fkKJLhzA .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t1fkKJLhzA button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: auto;
}
.cid-t1fkKJLhzA button.navbar-toggler.collapsed {
  align-self: center;
}
.cid-t1fkKJLhzA button.navbar-toggler:focus {
  outline: none;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t1fkKJLhzA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1fkKJLhzA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t1fkKJLhzA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t1fkKJLhzA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1fkKJLhzA .collapsed.navbar-toggler {
  align-self: auto;
}
.cid-t1fkKJLhzA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1fkKJLhzA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1fkKJLhzA .collapsed .btn {
  display: flex;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t1fkKJLhzA .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1fkKJLhzA .collapsed button.navbar-toggler {
  display: block;
}
.cid-t1fkKJLhzA .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-t1fkKJLhzA .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-t1fkKJLhzA .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-t1fkKJLhzA .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t1fkKJLhzA .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t1fkKJLhzA .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t1fkKJLhzA .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
.cid-t1fkKJLhzA .collapsed .menu-bottom .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t1fkKJLhzA .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing,
  .cid-t1fkKJLhzA .navbar-collapse.show {
    display: block !important;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing .navbar-nav,
  .cid-t1fkKJLhzA .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t1fkKJLhzA .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing .navbar-buttons,
  .cid-t1fkKJLhzA .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t1fkKJLhzA .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1fkKJLhzA .menu-bottom {
    flex-direction: row;
    justify-content: center;
  }
  .cid-t1fkKJLhzA .menu-bottom .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .cid-t1fkKJLhzA .menu-bottom .navbar-brand-bottom {
    margin-right: auto;
  }
  .cid-t1fkKJLhzA img {
    height: 3.8rem !important;
  }
  .cid-t1fkKJLhzA .btn {
    display: flex;
  }
  .cid-t1fkKJLhzA button.navbar-toggler {
    display: block;
  }
  .cid-t1fkKJLhzA .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-t1fkKJLhzA .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-t1fkKJLhzA .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-t1fkKJLhzA .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t1fkKJLhzA .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t1fkKJLhzA .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-t1fkKJLhzA .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-t1fkKJLhzA .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-t1fkKJLhzA .nav-link:focus {
  outline: none;
}
.cid-t1fkKJLhzA .navbar-toggler {
  position: relative;
}
.cid-t1fkKJLhzA .dropdown-item.active,
.cid-t1fkKJLhzA .dropdown-item:active {
  background: #0e2640;
  color: initial;
}
.cid-t3npBrdVhe {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t3npBrdVhe .row {
  flex-direction: row-reverse;
}
.cid-t3npBrdVhe .img-wrap img {
  width: 100%;
}
.cid-t3npBrdVhe .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-t3npBrdVhe .card .wrapper {
  overflow: hidden;
}
.cid-t3npBrdVhe .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-t3npBrdVhe .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-t3npBrdVhe .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-t3npBrdVhe .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-t3npBrdVhe .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-t3npBrdVhe .card .wrapper .sign-wrap {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cid-t3npBrdVhe .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-t3npBrdVhe .card .wrapper .sign-wrap img {
  width: 140px;
}
.cid-t3npBrdVhe .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-t3npBrdVhe .card .wrapper .mbr-section-title {
  text-align: left;
}
.cid-t3npBrdVhe .card .wrapper .mbr-text {
  color: #181818;
}
.cid-tegnqN1ikY {
  padding-top: 60px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/photo-2022-04-06-13-47-29-1051x591.jpg");
}
.cid-tegnqN1ikY .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-tegnqN1ikY .card:hover .card-wrapper .img-wrapper .mbr-section-btn {
  opacity: 1;
  transform: translateY(-50px);
  transform: translateY(40px);
}
.cid-tegnqN1ikY .card .card-wrapper .img-wrapper {
  overflow: hidden;
  trasnition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  margin-bottom: 1.5rem;
}
.cid-tegnqN1ikY .card .card-wrapper .img-wrapper img {
  width: 100%;
  transition: all 0.6s ease-in-out;
}
.cid-tegnqN1ikY .card .card-wrapper .img-wrapper .mbr-section-btn {
  position: absolute;
  bottom: 150px;
  transition: all 0.2s ease-in-out 0s;
  opacity: 0;
  transform: translateY(100px);
  width: 100%;
}
.cid-tegnqN1ikY .card .card-wrapper .img-wrapper .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  letter-spacing: 0;
}
.cid-tegnqN1ikY .card .card-wrapper .card-box .card-title {
  color: #06182d;
  font-weight: 700;
  margin-bottom: 0;
}
.cid-tegnqN1ikY .card .card-wrapper .card-box .card-title.display-7 {
  line-height: 1.2;
}
.cid-tegnqN1ikY .card .card-wrapper .card-box .mbr-section-subtitle {
  color: #ffffff;
  letter-spacing: 0;
}
.cid-tegnqN1ikY .card .card-wrapper .card-box .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-tegnqN1ikY .card .card-wrapper .card-box .text-wrap .icons-wrap .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: 0 0.2rem;
}
.cid-tegnqN1ikY .card .card-wrapper .card-box .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #007bff;
}
.cid-tegnqN1ikY .card .card-wrapper .card-box .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #61728a;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-tegnqN1ikY .card .card-wrapper .card-box .text-wrap .icons-wrap::before {
  height: 2px;
  width: 25%;
  top: 50%;
  right: 70%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #c3cad2;
}
@media (max-width: 992px) {
  .cid-tegnqN1ikY .card .card-wrapper .card-box .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-tegnqN1ikY .card .card-wrapper .card-box .text-wrap .icons-wrap::after {
  height: 2px;
  width: 25%;
  top: 50%;
  left: 70%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #c3cad2;
}
@media (max-width: 992px) {
  .cid-tegnqN1ikY .card .card-wrapper .card-box .text-wrap .icons-wrap::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .cid-tegnqN1ikY .card .text-wrap {
    opacity: 1;
    padding: 1rem;
  }
}
.cid-tegnqN1ikY .card .card-wrapper .card-box .mbr-section-subtitle {
  color: #181818;
}
.cid-tdLxBuY2xa {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-tdLxBuY2xa .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-tdLxBuY2xa .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-tdLxBuY2xa .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-tdLxBuY2xa .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-tdLxBuY2xa li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-tdLxBuY2xa .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-tdLxBuY2xa .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-tdLxBuY2xa .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-tdLxBuY2xa .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.3rem;
}
.cid-tdLxBuY2xa .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-tdLxBuY2xa .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-tdLxBuY2xa .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ffffff;
}
.cid-tdLxBuY2xa .align-wrap .item-wrap span,
.cid-tdLxBuY2xa .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-tdLxBuY2xa .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-tdLxBuY2xa .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-tdLxBuY2xa .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-tdLxBuY2xa .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-tdLxBuY2xa .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-tdLxBuY2xa .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-tdLxBuY2xa .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-tdLxBuY2xa .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tdLxBuY2xa .socicon-wrap {
    margin: auto;
  }
}
.cid-tdLxBuY2xa .items .list-item .text2,
.cid-tdLxBuY2xa .items .list-item {
  text-align: left;
}
.cid-tdLuo1GxUw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-tdLuo1GxUw .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tdLuo1GxUw .copyright {
    margin-bottom: 1rem;
  }
}
.cid-tdLuo1GxUw .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-tdLuo1GxUw .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-tdLuo1GxUw .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-tdLuo1GxUw .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-tdLuo1GxUw .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-tdLuo1GxUw .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-tdLuo1GxUw .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-tdLuo1GxUw .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-tdLuo1GxUw .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-t1fkKJLhzA .navbar {
  padding: .5rem 0;
  transition: none;
  min-height: 50px;
  background: none;
}
.cid-t1fkKJLhzA .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #0e1b28;
}
.cid-t1fkKJLhzA .navbar-fixed-top {
  padding-top: 0;
}
.cid-t1fkKJLhzA .navbar-collapse {
  flex-basis: auto;
}
.cid-t1fkKJLhzA .dropdown-item {
  padding: 0;
}
.cid-t1fkKJLhzA .dropdown-menu {
  border: 0px solid lightgray;
  background: #0e2640 !important;
}
.cid-t1fkKJLhzA .menu-content-top {
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-t1fkKJLhzA .menu-content-top {
    width: 100%;
  }
  .cid-t1fkKJLhzA .menu-content-top .menu-logo {
    display: none;
  }
  .cid-t1fkKJLhzA .menu-content-top .navbar-buttons {
    display: none !important;
  }
  .cid-t1fkKJLhzA .menu-content-top .menu-content-right {
    justify-content: space-between;
  }
}
.cid-t1fkKJLhzA .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-t1fkKJLhzA .menu-bottom .menu-wrap {
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-t1fkKJLhzA .menu-bottom .navbar-brand-bottom {
    display: none !important;
  }
}
.cid-t1fkKJLhzA .menu-bottom .mbr-overlay2 {
  z-index: 0;
  transition: all .3s;
  background: #0e2640;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}
.cid-t1fkKJLhzA .menu-bottom .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t1fkKJLhzA .menu-bottom .icons-menu span {
  font-size: 16px;
  color: #ffffff;
}
.cid-t1fkKJLhzA .navbar-dropdown.bg-color.transparent.opened {
  background: #0e1b28;
}
.cid-t1fkKJLhzA a {
  font-style: normal;
}
.cid-t1fkKJLhzA .nav-item {
  border-right: 1px #0e2640;
  border-left: 1px #0e2640;
}
.cid-t1fkKJLhzA .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-t1fkKJLhzA .nav-item a {
  padding: 20px 0 !important;
  margin: 0 .5rem !important;
}
.cid-t1fkKJLhzA .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t1fkKJLhzA .content-text {
  margin-bottom: 0;
}
.cid-t1fkKJLhzA .navbar-nav {
  position: relative;
  min-height: 49px;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-t1fkKJLhzA .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-t1fkKJLhzA .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-t1fkKJLhzA .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-t1fkKJLhzA .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-t1fkKJLhzA .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1fkKJLhzA .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1fkKJLhzA .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-t1fkKJLhzA .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1fkKJLhzA .nav-dropdown .link {
  font-weight: 400;
}
.cid-t1fkKJLhzA .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-t1fkKJLhzA .content-right-side {
  text-align: center;
}
.cid-t1fkKJLhzA .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-t1fkKJLhzA .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-t1fkKJLhzA .info-widget {
  margin-left: 16px;
  padding-top: 0.5rem;
}
.cid-t1fkKJLhzA .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-t1fkKJLhzA .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-t1fkKJLhzA .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-t1fkKJLhzA .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-t1fkKJLhzA .widget-content .widget-title {
  margin-bottom: 0px;
  font-weight: 500;
}
.cid-t1fkKJLhzA .widget-content .widget-title .mbr-iconfont {
  display: inline-block;
  padding-right: 0.5rem;
  font-size: 20px !important;
}
.cid-t1fkKJLhzA .widget-content .widget-title.display-7 {
  line-height: 1.2 !important;
}
.cid-t1fkKJLhzA .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-t1fkKJLhzA .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-t1fkKJLhzA .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-t1fkKJLhzA .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-t1fkKJLhzA .navbar {
    display: block;
    padding: 0;
  }
  .cid-t1fkKJLhzA .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-t1fkKJLhzA .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 8rem);
  }
  .cid-t1fkKJLhzA .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    padding-top: 8px !important;
  }
  .cid-t1fkKJLhzA .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-t1fkKJLhzA .navbar-toggler {
    display: none;
  }
  .cid-t1fkKJLhzA .navbar-collapse {
    justify-content: center;
  }
}
.cid-t1fkKJLhzA .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-t1fkKJLhzA .btn {
  display: inline-flex;
  align-items: center;
}
.cid-t1fkKJLhzA .btn.btn-success-outline {
  color: #ffffff;
  font-weight: normal;
  letter-spacing: 0;
}
.cid-t1fkKJLhzA .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-t1fkKJLhzA .menu-logo {
  margin-right: auto;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu {
  background: #0e1b28;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t1fkKJLhzA .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t1fkKJLhzA .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  z-index: 1000;
}
.cid-t1fkKJLhzA .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-t1fkKJLhzA .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 1;
  transition: font-size 0.25s;
}
.cid-t1fkKJLhzA .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t1fkKJLhzA .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t1fkKJLhzA .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t1fkKJLhzA button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: auto;
}
.cid-t1fkKJLhzA button.navbar-toggler.collapsed {
  align-self: center;
}
.cid-t1fkKJLhzA button.navbar-toggler:focus {
  outline: none;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t1fkKJLhzA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1fkKJLhzA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t1fkKJLhzA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t1fkKJLhzA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1fkKJLhzA .collapsed.navbar-toggler {
  align-self: auto;
}
.cid-t1fkKJLhzA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1fkKJLhzA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1fkKJLhzA .collapsed .btn {
  display: flex;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t1fkKJLhzA .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1fkKJLhzA .collapsed button.navbar-toggler {
  display: block;
}
.cid-t1fkKJLhzA .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-t1fkKJLhzA .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-t1fkKJLhzA .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-t1fkKJLhzA .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t1fkKJLhzA .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t1fkKJLhzA .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t1fkKJLhzA .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
.cid-t1fkKJLhzA .collapsed .menu-bottom .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t1fkKJLhzA .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing,
  .cid-t1fkKJLhzA .navbar-collapse.show {
    display: block !important;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing .navbar-nav,
  .cid-t1fkKJLhzA .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t1fkKJLhzA .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing .navbar-buttons,
  .cid-t1fkKJLhzA .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t1fkKJLhzA .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1fkKJLhzA .menu-bottom {
    flex-direction: row;
    justify-content: center;
  }
  .cid-t1fkKJLhzA .menu-bottom .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .cid-t1fkKJLhzA .menu-bottom .navbar-brand-bottom {
    margin-right: auto;
  }
  .cid-t1fkKJLhzA img {
    height: 3.8rem !important;
  }
  .cid-t1fkKJLhzA .btn {
    display: flex;
  }
  .cid-t1fkKJLhzA button.navbar-toggler {
    display: block;
  }
  .cid-t1fkKJLhzA .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-t1fkKJLhzA .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-t1fkKJLhzA .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-t1fkKJLhzA .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t1fkKJLhzA .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t1fkKJLhzA .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-t1fkKJLhzA .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-t1fkKJLhzA .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-t1fkKJLhzA .nav-link:focus {
  outline: none;
}
.cid-t1fkKJLhzA .navbar-toggler {
  position: relative;
}
.cid-t1fkKJLhzA .dropdown-item.active,
.cid-t1fkKJLhzA .dropdown-item:active {
  background: #0e2640;
  color: initial;
}
.cid-t1eGUqN01c {
  padding-top: 210px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-t1eGUqN01c .mbr-section-title.mbr-bold {
  font-weight: 700;
}
.cid-t1eGUqN01c .mbr-section-subtitle {
  color: #ff4e3c;
}
.cid-t1eGUqN01c .mbr-section-subtitle.mbr-bold {
  font-weight: 700;
}
.cid-t1eGUqN01c .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-t1eGUqN01c .mbr-text {
  color: #ffffff;
}
.cid-t1eGUqN01c .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-t1eGUqN01c .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-t1eGUqN01c .text-wrap .icons-wrap .icon-wrapper:hover {
  background-color: #55acee;
  border-color: #55acee;
}
.cid-t1eGUqN01c .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffff;
}
.cid-t1eGUqN01c .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffff;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-t1eGUqN01c .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-t1eGUqN01c .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-t1eGUqN01c .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-t1eGUqN01c .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-t1eGUqN01c .buttons-wrap {
  text-align: center;
}
.cid-t1eGUqN01c .buttons-wrap .mbr-section-btn {
  display: inline-block;
}
.cid-t1eGUqN01c .buttons-wrap .mbr-section-btn .btn {
  padding-left: 39px;
  padding-right: 39px;
}
.cid-t1eGUqN01c .buttons-wrap .mbr-section-btn .btn-success-outline {
  color: #ffffff;
}
.cid-t1eGUqN01c .buttons-wrap .mbr-section-btn .btn-success-outline:hover {
  color: #000000;
}
.cid-t1eGUqN01c .buttons-wrap .or {
  text-align: center;
  display: inline;
  margin-left: 25px;
  margin-right: 25px;
}
.cid-t1eE78eFhs {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #282f39;
}
.cid-t1eE78eFhs .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-t1eE78eFhs .card {
  padding: 5px;
  transition: transform 0.6s ease 0s;
}
.cid-t1eE78eFhs .card:hover {
  transform: translateY(-20px);
}
.cid-t1eE78eFhs .card .card-wrapper {
  background: #ff513c;
  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-t1eE78eFhs .card .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-t1eE78eFhs .card .card-wrapper .card-box .card-subtitle {
  color: #ffffff;
}
.cid-t1eE78eFhs .card .card-wrapper .card-box .start-from {
  line-height: 1.2;
  margin-bottom: 15px;
}
.cid-t1eE78eFhs .card .card-wrapper .card-box .mbr-usd {
  vertical-align: top;
  display: inline-block;
  color: #fff000;
  line-height: 0.6;
}
.cid-t1eE78eFhs .card .card-wrapper .card-box .mbr-price {
  color: #fff000;
  line-height: 0.6;
}
.cid-t1eE78eFhs .card .card-wrapper .card-box .mbr-text,
.cid-t1eE78eFhs .card .card-wrapper .card-box .link-align {
  color: #ffffff;
}
.cid-t1eE78eFhs .card .card-wrapper .card-box .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-t1eE78eFhs .card .card-wrapper .card-box .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-t1eE78eFhs .card .card-wrapper .card-box .mbr-list .list li {
  line-height: 1.75;
}
.cid-t1eE78eFhs .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-t27p5l6A2G {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #282f39;
}
.cid-t27p5l6A2G .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-t27p5l6A2G .card {
  padding: 5px;
  transition: transform 0.6s ease 0s;
}
.cid-t27p5l6A2G .card:hover {
  transform: translateY(-20px);
}
.cid-t27p5l6A2G .card .card-wrapper {
  background: #ff513c;
  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-t27p5l6A2G .card .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-t27p5l6A2G .card .card-wrapper .card-box .card-subtitle {
  color: #ffffff;
}
.cid-t27p5l6A2G .card .card-wrapper .card-box .start-from {
  line-height: 1.2;
  margin-bottom: 15px;
}
.cid-t27p5l6A2G .card .card-wrapper .card-box .mbr-usd {
  vertical-align: top;
  display: inline-block;
  color: #fff000;
  line-height: 0.6;
}
.cid-t27p5l6A2G .card .card-wrapper .card-box .mbr-price {
  color: #fff000;
  line-height: 0.6;
}
.cid-t27p5l6A2G .card .card-wrapper .card-box .mbr-text,
.cid-t27p5l6A2G .card .card-wrapper .card-box .link-align {
  color: #ffffff;
}
.cid-t27p5l6A2G .card .card-wrapper .card-box .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-t27p5l6A2G .card .card-wrapper .card-box .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-t27p5l6A2G .card .card-wrapper .card-box .mbr-list .list li {
  line-height: 1.75;
}
.cid-t27p5l6A2G .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-t3kChFVw7F {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-t3kChFVw7F .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-t3kChFVw7F .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-t3kChFVw7F .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-t3kChFVw7F .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-t3kChFVw7F li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-t3kChFVw7F .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t3kChFVw7F .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-t3kChFVw7F .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-t3kChFVw7F .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.3rem;
}
.cid-t3kChFVw7F .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-t3kChFVw7F .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-t3kChFVw7F .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ffffff;
}
.cid-t3kChFVw7F .align-wrap .item-wrap span,
.cid-t3kChFVw7F .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-t3kChFVw7F .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-t3kChFVw7F .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-t3kChFVw7F .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-t3kChFVw7F .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-t3kChFVw7F .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-t3kChFVw7F .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-t3kChFVw7F .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-t3kChFVw7F .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3kChFVw7F .socicon-wrap {
    margin: auto;
  }
}
.cid-t3kChFVw7F .items .list-item .text2,
.cid-t3kChFVw7F .items .list-item {
  text-align: left;
}
.cid-tdLuo1GxUw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-tdLuo1GxUw .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tdLuo1GxUw .copyright {
    margin-bottom: 1rem;
  }
}
.cid-tdLuo1GxUw .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-tdLuo1GxUw .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-tdLuo1GxUw .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-tdLuo1GxUw .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-tdLuo1GxUw .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-tdLuo1GxUw .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-tdLuo1GxUw .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-tdLuo1GxUw .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-tdLuo1GxUw .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-t1fkKJLhzA .navbar {
  padding: .5rem 0;
  transition: none;
  min-height: 50px;
  background: none;
}
.cid-t1fkKJLhzA .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #0e1b28;
}
.cid-t1fkKJLhzA .navbar-fixed-top {
  padding-top: 0;
}
.cid-t1fkKJLhzA .navbar-collapse {
  flex-basis: auto;
}
.cid-t1fkKJLhzA .dropdown-item {
  padding: 0;
}
.cid-t1fkKJLhzA .dropdown-menu {
  border: 0px solid lightgray;
  background: #0e2640 !important;
}
.cid-t1fkKJLhzA .menu-content-top {
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-t1fkKJLhzA .menu-content-top {
    width: 100%;
  }
  .cid-t1fkKJLhzA .menu-content-top .menu-logo {
    display: none;
  }
  .cid-t1fkKJLhzA .menu-content-top .navbar-buttons {
    display: none !important;
  }
  .cid-t1fkKJLhzA .menu-content-top .menu-content-right {
    justify-content: space-between;
  }
}
.cid-t1fkKJLhzA .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-t1fkKJLhzA .menu-bottom .menu-wrap {
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-t1fkKJLhzA .menu-bottom .navbar-brand-bottom {
    display: none !important;
  }
}
.cid-t1fkKJLhzA .menu-bottom .mbr-overlay2 {
  z-index: 0;
  transition: all .3s;
  background: #0e2640;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}
.cid-t1fkKJLhzA .menu-bottom .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t1fkKJLhzA .menu-bottom .icons-menu span {
  font-size: 16px;
  color: #ffffff;
}
.cid-t1fkKJLhzA .navbar-dropdown.bg-color.transparent.opened {
  background: #0e1b28;
}
.cid-t1fkKJLhzA a {
  font-style: normal;
}
.cid-t1fkKJLhzA .nav-item {
  border-right: 1px #0e2640;
  border-left: 1px #0e2640;
}
.cid-t1fkKJLhzA .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-t1fkKJLhzA .nav-item a {
  padding: 20px 0 !important;
  margin: 0 .5rem !important;
}
.cid-t1fkKJLhzA .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t1fkKJLhzA .content-text {
  margin-bottom: 0;
}
.cid-t1fkKJLhzA .navbar-nav {
  position: relative;
  min-height: 49px;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-t1fkKJLhzA .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-t1fkKJLhzA .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-t1fkKJLhzA .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-t1fkKJLhzA .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-t1fkKJLhzA .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1fkKJLhzA .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1fkKJLhzA .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-t1fkKJLhzA .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1fkKJLhzA .nav-dropdown .link {
  font-weight: 400;
}
.cid-t1fkKJLhzA .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-t1fkKJLhzA .content-right-side {
  text-align: center;
}
.cid-t1fkKJLhzA .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-t1fkKJLhzA .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-t1fkKJLhzA .info-widget {
  margin-left: 16px;
  padding-top: 0.5rem;
}
.cid-t1fkKJLhzA .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-t1fkKJLhzA .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-t1fkKJLhzA .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-t1fkKJLhzA .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-t1fkKJLhzA .widget-content .widget-title {
  margin-bottom: 0px;
  font-weight: 500;
}
.cid-t1fkKJLhzA .widget-content .widget-title .mbr-iconfont {
  display: inline-block;
  padding-right: 0.5rem;
  font-size: 20px !important;
}
.cid-t1fkKJLhzA .widget-content .widget-title.display-7 {
  line-height: 1.2 !important;
}
.cid-t1fkKJLhzA .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-t1fkKJLhzA .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-t1fkKJLhzA .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-t1fkKJLhzA .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-t1fkKJLhzA .navbar {
    display: block;
    padding: 0;
  }
  .cid-t1fkKJLhzA .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-t1fkKJLhzA .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 8rem);
  }
  .cid-t1fkKJLhzA .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    padding-top: 8px !important;
  }
  .cid-t1fkKJLhzA .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-t1fkKJLhzA .navbar-toggler {
    display: none;
  }
  .cid-t1fkKJLhzA .navbar-collapse {
    justify-content: center;
  }
}
.cid-t1fkKJLhzA .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-t1fkKJLhzA .btn {
  display: inline-flex;
  align-items: center;
}
.cid-t1fkKJLhzA .btn.btn-success-outline {
  color: #ffffff;
  font-weight: normal;
  letter-spacing: 0;
}
.cid-t1fkKJLhzA .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-t1fkKJLhzA .menu-logo {
  margin-right: auto;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu {
  background: #0e1b28;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t1fkKJLhzA .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t1fkKJLhzA .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  z-index: 1000;
}
.cid-t1fkKJLhzA .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-t1fkKJLhzA .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 1;
  transition: font-size 0.25s;
}
.cid-t1fkKJLhzA .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t1fkKJLhzA .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t1fkKJLhzA .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t1fkKJLhzA button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: auto;
}
.cid-t1fkKJLhzA button.navbar-toggler.collapsed {
  align-self: center;
}
.cid-t1fkKJLhzA button.navbar-toggler:focus {
  outline: none;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t1fkKJLhzA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1fkKJLhzA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t1fkKJLhzA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t1fkKJLhzA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1fkKJLhzA .collapsed.navbar-toggler {
  align-self: auto;
}
.cid-t1fkKJLhzA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1fkKJLhzA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1fkKJLhzA .collapsed .btn {
  display: flex;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t1fkKJLhzA .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1fkKJLhzA .collapsed button.navbar-toggler {
  display: block;
}
.cid-t1fkKJLhzA .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-t1fkKJLhzA .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-t1fkKJLhzA .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-t1fkKJLhzA .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t1fkKJLhzA .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t1fkKJLhzA .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t1fkKJLhzA .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
.cid-t1fkKJLhzA .collapsed .menu-bottom .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t1fkKJLhzA .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing,
  .cid-t1fkKJLhzA .navbar-collapse.show {
    display: block !important;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing .navbar-nav,
  .cid-t1fkKJLhzA .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t1fkKJLhzA .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing .navbar-buttons,
  .cid-t1fkKJLhzA .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t1fkKJLhzA .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1fkKJLhzA .menu-bottom {
    flex-direction: row;
    justify-content: center;
  }
  .cid-t1fkKJLhzA .menu-bottom .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .cid-t1fkKJLhzA .menu-bottom .navbar-brand-bottom {
    margin-right: auto;
  }
  .cid-t1fkKJLhzA img {
    height: 3.8rem !important;
  }
  .cid-t1fkKJLhzA .btn {
    display: flex;
  }
  .cid-t1fkKJLhzA button.navbar-toggler {
    display: block;
  }
  .cid-t1fkKJLhzA .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-t1fkKJLhzA .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-t1fkKJLhzA .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-t1fkKJLhzA .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t1fkKJLhzA .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t1fkKJLhzA .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-t1fkKJLhzA .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-t1fkKJLhzA .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-t1fkKJLhzA .nav-link:focus {
  outline: none;
}
.cid-t1fkKJLhzA .navbar-toggler {
  position: relative;
}
.cid-t1fkKJLhzA .dropdown-item.active,
.cid-t1fkKJLhzA .dropdown-item:active {
  background: #0e2640;
  color: initial;
}
.cid-t1eg23paZf {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #333333;
}
.cid-t1eg23paZf .logo-footer {
  line-height: normal;
}
.cid-t1eg23paZf .logo-footer .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
}
.cid-t1eg23paZf .copyright {
  display: flex;
  align-items: center;
}
.cid-t1eg23paZf .copyright .mbr-list {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin-bottom: 0;
  align-self: center;
  flex-wrap: wrap;
}
.cid-t1eg23paZf .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1eg23paZf .social-btns a:focus {
  text-decoration: none;
}
.cid-t1eg23paZf .social-btns .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
}
.cid-t1eg23paZf .copyrightPart {
  display: flex;
}
.cid-t1eg23paZf .copyrightPart .wrap {
  justify-content: space-between;
  color: #ffffff;
}
.cid-t1egoXYIfD {
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/favicon-art-scale-2-00x-gigapixel-2000x1599.jpg");
}
.cid-t1egoXYIfD .contacts-name {
  padding-bottom: 5px;
  margin: 0;
  color: #a3a6b2;
}
.cid-t1egoXYIfD .contacts-info {
  padding-bottom: 30px;
  color: #ffffff;
  margin: 0;
}
.cid-t1egoXYIfD .margin {
  margin-bottom: 10px;
}
.cid-t1egoXYIfD .mbr-section-title {
  color: white;
  margin-bottom: 20px;
  padding: 0;
}
.cid-t1egoXYIfD .description {
  color: #a3a6b2;
  margin-bottom: 50px;
  padding: 0;
}
.cid-t1egoXYIfD .title {
  font-size: 24px;
}
.cid-t1egoXYIfD .form-heading {
  margin-bottom: 40px;
}
.cid-t1egoXYIfD label {
  color: #ffffff;
  margin-bottom: 5px;
}
.cid-t1egoXYIfD input,
.cid-t1egoXYIfD textarea {
  background-color: #3F424E;
  margin-bottom: 30px;
}
.cid-t1egoXYIfD .gray-button {
  margin: 0;
  background-color: #3F424E;
  color: #ffffff;
}
.cid-t1egoXYIfD .mbr-section-btn {
  margin: 0;
  padding: 0;
}
.cid-t1egoXYIfD .form-group {
  padding: 0 5px;
  margin: 0;
}
.cid-t1egoXYIfD .left-side {
  padding: 0;
}
@media (max-width: 1000px) {
  .cid-t1egoXYIfD .gray-button {
    margin-bottom: 50px;
    margin-top: 0px;
  }
}
.cid-t1egoXYIfD .gray-button:hover {
  background-color: #5e6068;
}
.cid-t1egoXYIfD ::placeholder {
  color: #a3a6b2;
}
.cid-t1elw1k6Zc {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/img-4406-2000x1250.jpg");
}
.cid-t1elw1k6Zc .btn {
  border: 1px solid #efefef;
}
.cid-t1elw1k6Zc .row {
  align-items: center;
}
.cid-t1elw1k6Zc .mbr-iconfont {
  color: #5b6c8f;
}
@media (max-width: 767px) {
  .cid-t1elw1k6Zc .row {
    text-align: center;
  }
  .cid-t1elw1k6Zc .social-row {
    justify-content: center;
  }
}
.cid-t1elw1k6Zc .list {
  list-style: none;
  padding-left: 0;
  color: #5b6c8f;
}
@media (max-width: 991px) {
  .cid-t1elw1k6Zc .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t1elw1k6Zc .list {
    margin-bottom: 0rem;
  }
}
.cid-t1elw1k6Zc .google-map {
  height: 34rem;
  position: relative;
}
.cid-t1elw1k6Zc .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-t1elw1k6Zc .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-t1elw1k6Zc .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t1elw1k6Zc .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-t1elw1k6Zc .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-t1elw1k6Zc .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0rem;
  height: 2rem;
  width: 2rem;
}
.cid-t1elw1k6Zc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t1elw1k6Zc .mbr-text {
  color: #ffffff;
}
.cid-t1elw1k6Zc .phone {
  color: #ffffff;
}
.cid-t3kChFVw7F {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-t3kChFVw7F .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-t3kChFVw7F .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-t3kChFVw7F .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-t3kChFVw7F .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-t3kChFVw7F li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-t3kChFVw7F .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t3kChFVw7F .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-t3kChFVw7F .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-t3kChFVw7F .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.3rem;
}
.cid-t3kChFVw7F .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-t3kChFVw7F .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-t3kChFVw7F .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ffffff;
}
.cid-t3kChFVw7F .align-wrap .item-wrap span,
.cid-t3kChFVw7F .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-t3kChFVw7F .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-t3kChFVw7F .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-t3kChFVw7F .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-t3kChFVw7F .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-t3kChFVw7F .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-t3kChFVw7F .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-t3kChFVw7F .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-t3kChFVw7F .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3kChFVw7F .socicon-wrap {
    margin: auto;
  }
}
.cid-t3kChFVw7F .items .list-item .text2,
.cid-t3kChFVw7F .items .list-item {
  text-align: left;
}
.cid-tdLuo1GxUw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-tdLuo1GxUw .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tdLuo1GxUw .copyright {
    margin-bottom: 1rem;
  }
}
.cid-tdLuo1GxUw .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-tdLuo1GxUw .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-tdLuo1GxUw .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-tdLuo1GxUw .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-tdLuo1GxUw .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-tdLuo1GxUw .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-tdLuo1GxUw .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-tdLuo1GxUw .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-tdLuo1GxUw .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-t1fkKJLhzA .navbar {
  padding: .5rem 0;
  transition: none;
  min-height: 50px;
  background: none;
}
.cid-t1fkKJLhzA .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #0e1b28;
}
.cid-t1fkKJLhzA .navbar-fixed-top {
  padding-top: 0;
}
.cid-t1fkKJLhzA .navbar-collapse {
  flex-basis: auto;
}
.cid-t1fkKJLhzA .dropdown-item {
  padding: 0;
}
.cid-t1fkKJLhzA .dropdown-menu {
  border: 0px solid lightgray;
  background: #0e2640 !important;
}
.cid-t1fkKJLhzA .menu-content-top {
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-t1fkKJLhzA .menu-content-top {
    width: 100%;
  }
  .cid-t1fkKJLhzA .menu-content-top .menu-logo {
    display: none;
  }
  .cid-t1fkKJLhzA .menu-content-top .navbar-buttons {
    display: none !important;
  }
  .cid-t1fkKJLhzA .menu-content-top .menu-content-right {
    justify-content: space-between;
  }
}
.cid-t1fkKJLhzA .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-t1fkKJLhzA .menu-bottom .menu-wrap {
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-t1fkKJLhzA .menu-bottom .navbar-brand-bottom {
    display: none !important;
  }
}
.cid-t1fkKJLhzA .menu-bottom .mbr-overlay2 {
  z-index: 0;
  transition: all .3s;
  background: #0e2640;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}
.cid-t1fkKJLhzA .menu-bottom .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t1fkKJLhzA .menu-bottom .icons-menu span {
  font-size: 16px;
  color: #ffffff;
}
.cid-t1fkKJLhzA .navbar-dropdown.bg-color.transparent.opened {
  background: #0e1b28;
}
.cid-t1fkKJLhzA a {
  font-style: normal;
}
.cid-t1fkKJLhzA .nav-item {
  border-right: 1px #0e2640;
  border-left: 1px #0e2640;
}
.cid-t1fkKJLhzA .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-t1fkKJLhzA .nav-item a {
  padding: 20px 0 !important;
  margin: 0 .5rem !important;
}
.cid-t1fkKJLhzA .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t1fkKJLhzA .content-text {
  margin-bottom: 0;
}
.cid-t1fkKJLhzA .navbar-nav {
  position: relative;
  min-height: 49px;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-t1fkKJLhzA .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-t1fkKJLhzA .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-t1fkKJLhzA .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-t1fkKJLhzA .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-t1fkKJLhzA .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1fkKJLhzA .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1fkKJLhzA .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-t1fkKJLhzA .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1fkKJLhzA .nav-dropdown .link {
  font-weight: 400;
}
.cid-t1fkKJLhzA .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-t1fkKJLhzA .content-right-side {
  text-align: center;
}
.cid-t1fkKJLhzA .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-t1fkKJLhzA .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-t1fkKJLhzA .info-widget {
  margin-left: 16px;
  padding-top: 0.5rem;
}
.cid-t1fkKJLhzA .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-t1fkKJLhzA .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-t1fkKJLhzA .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-t1fkKJLhzA .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-t1fkKJLhzA .widget-content .widget-title {
  margin-bottom: 0px;
  font-weight: 500;
}
.cid-t1fkKJLhzA .widget-content .widget-title .mbr-iconfont {
  display: inline-block;
  padding-right: 0.5rem;
  font-size: 20px !important;
}
.cid-t1fkKJLhzA .widget-content .widget-title.display-7 {
  line-height: 1.2 !important;
}
.cid-t1fkKJLhzA .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-t1fkKJLhzA .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-t1fkKJLhzA .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-t1fkKJLhzA .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-t1fkKJLhzA .navbar {
    display: block;
    padding: 0;
  }
  .cid-t1fkKJLhzA .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-t1fkKJLhzA .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 8rem);
  }
  .cid-t1fkKJLhzA .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    padding-top: 8px !important;
  }
  .cid-t1fkKJLhzA .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-t1fkKJLhzA .navbar-toggler {
    display: none;
  }
  .cid-t1fkKJLhzA .navbar-collapse {
    justify-content: center;
  }
}
.cid-t1fkKJLhzA .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-t1fkKJLhzA .btn {
  display: inline-flex;
  align-items: center;
}
.cid-t1fkKJLhzA .btn.btn-success-outline {
  color: #ffffff;
  font-weight: normal;
  letter-spacing: 0;
}
.cid-t1fkKJLhzA .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-t1fkKJLhzA .menu-logo {
  margin-right: auto;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu {
  background: #0e1b28;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t1fkKJLhzA .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t1fkKJLhzA .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  z-index: 1000;
}
.cid-t1fkKJLhzA .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-t1fkKJLhzA .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 1;
  transition: font-size 0.25s;
}
.cid-t1fkKJLhzA .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t1fkKJLhzA .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t1fkKJLhzA .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t1fkKJLhzA button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: auto;
}
.cid-t1fkKJLhzA button.navbar-toggler.collapsed {
  align-self: center;
}
.cid-t1fkKJLhzA button.navbar-toggler:focus {
  outline: none;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t1fkKJLhzA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1fkKJLhzA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t1fkKJLhzA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t1fkKJLhzA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1fkKJLhzA .collapsed.navbar-toggler {
  align-self: auto;
}
.cid-t1fkKJLhzA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1fkKJLhzA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1fkKJLhzA .collapsed .btn {
  display: flex;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t1fkKJLhzA .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1fkKJLhzA .collapsed button.navbar-toggler {
  display: block;
}
.cid-t1fkKJLhzA .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-t1fkKJLhzA .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-t1fkKJLhzA .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-t1fkKJLhzA .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t1fkKJLhzA .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t1fkKJLhzA .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t1fkKJLhzA .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
.cid-t1fkKJLhzA .collapsed .menu-bottom .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t1fkKJLhzA .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing,
  .cid-t1fkKJLhzA .navbar-collapse.show {
    display: block !important;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing .navbar-nav,
  .cid-t1fkKJLhzA .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t1fkKJLhzA .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing .navbar-buttons,
  .cid-t1fkKJLhzA .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t1fkKJLhzA .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1fkKJLhzA .menu-bottom {
    flex-direction: row;
    justify-content: center;
  }
  .cid-t1fkKJLhzA .menu-bottom .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .cid-t1fkKJLhzA .menu-bottom .navbar-brand-bottom {
    margin-right: auto;
  }
  .cid-t1fkKJLhzA img {
    height: 3.8rem !important;
  }
  .cid-t1fkKJLhzA .btn {
    display: flex;
  }
  .cid-t1fkKJLhzA button.navbar-toggler {
    display: block;
  }
  .cid-t1fkKJLhzA .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-t1fkKJLhzA .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-t1fkKJLhzA .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-t1fkKJLhzA .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t1fkKJLhzA .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t1fkKJLhzA .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-t1fkKJLhzA .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-t1fkKJLhzA .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-t1fkKJLhzA .nav-link:focus {
  outline: none;
}
.cid-t1fkKJLhzA .navbar-toggler {
  position: relative;
}
.cid-t1fkKJLhzA .dropdown-item.active,
.cid-t1fkKJLhzA .dropdown-item:active {
  background: #0e2640;
  color: initial;
}
.cid-t86ZrPXN10 {
  padding-top: 135px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t86ZrPXN10 .row {
  flex-direction: row-reverse;
}
.cid-t86ZrPXN10 .img-wrap img {
  width: 100%;
}
.cid-t86ZrPXN10 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-t86ZrPXN10 .card .wrapper {
  overflow: hidden;
}
.cid-t86ZrPXN10 .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-t86ZrPXN10 .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-t86ZrPXN10 .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-t86ZrPXN10 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-t86ZrPXN10 .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-t86ZrPXN10 .card .wrapper .sign-wrap {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cid-t86ZrPXN10 .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-t86ZrPXN10 .card .wrapper .sign-wrap img {
  width: 140px;
}
.cid-t86ZrPXN10 .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-t86ZrPXN10 .card .wrapper .mbr-section-title {
  text-align: left;
}
.cid-t86ZrPXN10 .card .wrapper .mbr-text {
  color: #181818;
}
.cid-t875Jyb7YL {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/car-washing4-1536x1024.jpg");
}
.cid-t875Jyb7YL .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-t875Jyb7YL .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-t875Jyb7YL .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-t875Jyb7YL .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t875Jyb7YL .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-t875Jyb7YL .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-t875Jyb7YL .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-t875Jyb7YL .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-t875Jyb7YL .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-t875Hxk36T {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t875Hxk36T .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/beforeafterpaint-901x480.png");
}
.cid-t875Hxk36T .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-t875Hxk36T .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-t875Hxk36T .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-t875Hxk36T .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-t875Hxk36T .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-t875Hxk36T .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-t875Hxk36T .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-t875Hxk36T .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-t875Hxk36T .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-t875Hxk36T .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-t875Hxk36T .card .wrapper .link-wrap {
  width: 100%;
}
.cid-t875Hxk36T .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-t875Hxk36T .card .wrapper .link-wrap .link:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.2;
  left: 0;
}
.cid-t875Hxk36T .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-t875Hxk36T .card .wrapper .link-wrap .link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-t875Hxk36T .card .wrapper .mbr-text {
  color: #181818;
}
.cid-t3kChFVw7F {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-t3kChFVw7F .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-t3kChFVw7F .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-t3kChFVw7F .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-t3kChFVw7F .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-t3kChFVw7F li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-t3kChFVw7F .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t3kChFVw7F .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-t3kChFVw7F .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-t3kChFVw7F .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.3rem;
}
.cid-t3kChFVw7F .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-t3kChFVw7F .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-t3kChFVw7F .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ffffff;
}
.cid-t3kChFVw7F .align-wrap .item-wrap span,
.cid-t3kChFVw7F .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-t3kChFVw7F .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-t3kChFVw7F .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-t3kChFVw7F .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-t3kChFVw7F .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-t3kChFVw7F .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-t3kChFVw7F .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-t3kChFVw7F .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-t3kChFVw7F .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3kChFVw7F .socicon-wrap {
    margin: auto;
  }
}
.cid-t3kChFVw7F .items .list-item .text2,
.cid-t3kChFVw7F .items .list-item {
  text-align: left;
}
.cid-tdLuo1GxUw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-tdLuo1GxUw .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tdLuo1GxUw .copyright {
    margin-bottom: 1rem;
  }
}
.cid-tdLuo1GxUw .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-tdLuo1GxUw .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-tdLuo1GxUw .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-tdLuo1GxUw .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-tdLuo1GxUw .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-tdLuo1GxUw .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-tdLuo1GxUw .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-tdLuo1GxUw .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-tdLuo1GxUw .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-tPc9FQ16jk .navbar {
  padding: .5rem 0;
  transition: none;
  min-height: 50px;
  background: none;
}
.cid-tPc9FQ16jk .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #0e1b28;
}
.cid-tPc9FQ16jk .navbar-fixed-top {
  padding-top: 0;
}
.cid-tPc9FQ16jk .navbar-collapse {
  flex-basis: auto;
}
.cid-tPc9FQ16jk .dropdown-item {
  padding: 0;
}
.cid-tPc9FQ16jk .dropdown-menu {
  border: 0px solid lightgray;
  background: #0e2640 !important;
}
.cid-tPc9FQ16jk .menu-content-top {
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tPc9FQ16jk .menu-content-top {
    width: 100%;
  }
  .cid-tPc9FQ16jk .menu-content-top .menu-logo {
    display: none;
  }
  .cid-tPc9FQ16jk .menu-content-top .navbar-buttons {
    display: none !important;
  }
  .cid-tPc9FQ16jk .menu-content-top .menu-content-right {
    justify-content: space-between;
  }
}
.cid-tPc9FQ16jk .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-tPc9FQ16jk .menu-bottom .menu-wrap {
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-tPc9FQ16jk .menu-bottom .navbar-brand-bottom {
    display: none !important;
  }
}
.cid-tPc9FQ16jk .menu-bottom .mbr-overlay2 {
  z-index: 0;
  transition: all .3s;
  background: #0e2640;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}
.cid-tPc9FQ16jk .menu-bottom .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tPc9FQ16jk .menu-bottom .icons-menu span {
  font-size: 16px;
  color: #ffffff;
}
.cid-tPc9FQ16jk .navbar-dropdown.bg-color.transparent.opened {
  background: #0e1b28;
}
.cid-tPc9FQ16jk a {
  font-style: normal;
}
.cid-tPc9FQ16jk .nav-item {
  border-right: 1px #0e2640;
  border-left: 1px #0e2640;
}
.cid-tPc9FQ16jk .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tPc9FQ16jk .nav-item a {
  padding: 20px 0 !important;
  margin: 0 .5rem !important;
}
.cid-tPc9FQ16jk .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPc9FQ16jk .content-text {
  margin-bottom: 0;
}
.cid-tPc9FQ16jk .navbar-nav {
  position: relative;
  min-height: 49px;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tPc9FQ16jk .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tPc9FQ16jk .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tPc9FQ16jk .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tPc9FQ16jk .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tPc9FQ16jk .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tPc9FQ16jk .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tPc9FQ16jk .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tPc9FQ16jk .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPc9FQ16jk .nav-dropdown .link {
  font-weight: 400;
}
.cid-tPc9FQ16jk .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tPc9FQ16jk .content-right-side {
  text-align: center;
}
.cid-tPc9FQ16jk .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tPc9FQ16jk .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tPc9FQ16jk .info-widget {
  margin-left: 16px;
  padding-top: 0.5rem;
}
.cid-tPc9FQ16jk .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-tPc9FQ16jk .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tPc9FQ16jk .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tPc9FQ16jk .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tPc9FQ16jk .widget-content .widget-title {
  margin-bottom: 0px;
  font-weight: 500;
}
.cid-tPc9FQ16jk .widget-content .widget-title .mbr-iconfont {
  display: inline-block;
  padding-right: 0.5rem;
  font-size: 20px !important;
}
.cid-tPc9FQ16jk .widget-content .widget-title.display-7 {
  line-height: 1.2 !important;
}
.cid-tPc9FQ16jk .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tPc9FQ16jk .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-tPc9FQ16jk .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-tPc9FQ16jk .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-tPc9FQ16jk .navbar {
    display: block;
    padding: 0;
  }
  .cid-tPc9FQ16jk .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-tPc9FQ16jk .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 8rem);
  }
  .cid-tPc9FQ16jk .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    padding-top: 8px !important;
  }
  .cid-tPc9FQ16jk .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tPc9FQ16jk .navbar-toggler {
    display: none;
  }
  .cid-tPc9FQ16jk .navbar-collapse {
    justify-content: center;
  }
}
.cid-tPc9FQ16jk .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tPc9FQ16jk .btn {
  display: inline-flex;
  align-items: center;
}
.cid-tPc9FQ16jk .btn.btn-success-outline {
  color: #ffffff;
  font-weight: normal;
  letter-spacing: 0;
}
.cid-tPc9FQ16jk .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tPc9FQ16jk .menu-logo {
  margin-right: auto;
}
.cid-tPc9FQ16jk .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tPc9FQ16jk .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tPc9FQ16jk .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tPc9FQ16jk .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tPc9FQ16jk .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tPc9FQ16jk .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tPc9FQ16jk .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tPc9FQ16jk .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tPc9FQ16jk .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-tPc9FQ16jk .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tPc9FQ16jk .dropdown .dropdown-menu {
  background: #0e1b28;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tPc9FQ16jk .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tPc9FQ16jk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPc9FQ16jk .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-tPc9FQ16jk .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-tPc9FQ16jk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tPc9FQ16jk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPc9FQ16jk .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tPc9FQ16jk .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPc9FQ16jk .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tPc9FQ16jk .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-tPc9FQ16jk .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 1;
  transition: font-size 0.25s;
}
.cid-tPc9FQ16jk .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tPc9FQ16jk .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tPc9FQ16jk .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tPc9FQ16jk button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: auto;
}
.cid-tPc9FQ16jk button.navbar-toggler.collapsed {
  align-self: center;
}
.cid-tPc9FQ16jk button.navbar-toggler:focus {
  outline: none;
}
.cid-tPc9FQ16jk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tPc9FQ16jk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tPc9FQ16jk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tPc9FQ16jk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tPc9FQ16jk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tPc9FQ16jk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tPc9FQ16jk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tPc9FQ16jk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tPc9FQ16jk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tPc9FQ16jk .collapsed.navbar-toggler {
  align-self: auto;
}
.cid-tPc9FQ16jk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPc9FQ16jk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPc9FQ16jk .collapsed .btn {
  display: flex;
}
.cid-tPc9FQ16jk .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tPc9FQ16jk .collapsed .navbar-collapse.collapsing,
.cid-tPc9FQ16jk .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tPc9FQ16jk .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tPc9FQ16jk .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tPc9FQ16jk .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tPc9FQ16jk .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tPc9FQ16jk .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tPc9FQ16jk .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-tPc9FQ16jk .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tPc9FQ16jk .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tPc9FQ16jk .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tPc9FQ16jk .collapsed button.navbar-toggler {
  display: block;
}
.cid-tPc9FQ16jk .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-tPc9FQ16jk .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-tPc9FQ16jk .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-tPc9FQ16jk .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tPc9FQ16jk .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tPc9FQ16jk .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tPc9FQ16jk .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
.cid-tPc9FQ16jk .collapsed .menu-bottom .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tPc9FQ16jk .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tPc9FQ16jk .navbar-collapse.collapsing,
  .cid-tPc9FQ16jk .navbar-collapse.show {
    display: block !important;
  }
  .cid-tPc9FQ16jk .navbar-collapse.collapsing .navbar-nav,
  .cid-tPc9FQ16jk .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tPc9FQ16jk .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tPc9FQ16jk .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tPc9FQ16jk .navbar-collapse.collapsing .navbar-buttons,
  .cid-tPc9FQ16jk .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-tPc9FQ16jk .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tPc9FQ16jk .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tPc9FQ16jk .menu-bottom {
    flex-direction: row;
    justify-content: center;
  }
  .cid-tPc9FQ16jk .menu-bottom .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .cid-tPc9FQ16jk .menu-bottom .navbar-brand-bottom {
    margin-right: auto;
  }
  .cid-tPc9FQ16jk img {
    height: 3.8rem !important;
  }
  .cid-tPc9FQ16jk .btn {
    display: flex;
  }
  .cid-tPc9FQ16jk button.navbar-toggler {
    display: block;
  }
  .cid-tPc9FQ16jk .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-tPc9FQ16jk .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-tPc9FQ16jk .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-tPc9FQ16jk .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tPc9FQ16jk .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tPc9FQ16jk .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-tPc9FQ16jk .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tPc9FQ16jk .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tPc9FQ16jk .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-tPc9FQ16jk .nav-link:focus {
  outline: none;
}
.cid-tPc9FQ16jk .navbar-toggler {
  position: relative;
}
.cid-tPc9FQ16jk .dropdown-item.active,
.cid-tPc9FQ16jk .dropdown-item:active {
  background: #0e2640;
  color: initial;
}
.cid-tPKYMRRxYt {
  padding-top: 165px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/ceramic3-720x1280.jpg");
}
.cid-tPKYMRRxYt .link-align {
  width: 100%;
}
.cid-tPKYMRRxYt .link-wrap {
  display: inline-block;
}
.cid-tPKYMRRxYt .link {
  position: relative;
  cursor: pointer;
  width: fit-content;
  letter-spacing: 1px;
  margin-left: 80px;
  color: #ffffff;
}
.cid-tPKYMRRxYt .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-tPKYMRRxYt .wrap .mask {
  background: #ff5e3a;
  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-tPKYMRRxYt .wrap .mask {
    background: none;
    min-height: auto;
  }
}
.cid-tPKYMRRxYt .wrap .mbr-section-subtitle {
  line-height: 1;
}
.cid-tPKYMRRxYt .wrap .price {
  color: #fff000;
}
@media (min-width: 992px) {
  .cid-tPKYMRRxYt .wrap .mbr-section-title.display-1 {
    font-size: 100px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .cid-tPKYMRRxYt .mbr-text {
    text-align: right;
  }
}
.cid-tPKYMRRxYt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPKYMRRxYt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPKYMRRxYt .wrap .mask .wrap-text .mbr-section-title {
  color: #ffffff;
}
.cid-tPc9FQBZBl {
  padding-top: 135px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/71374189982-d8bfad39-d317-492a-9652-72d9b51e8976-2000x2667.jpg");
}
.cid-tPc9FQBZBl .row {
  flex-direction: row-reverse;
}
.cid-tPc9FQBZBl .img-wrap img {
  width: 100%;
}
.cid-tPc9FQBZBl .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-tPc9FQBZBl .card .wrapper {
  overflow: hidden;
}
.cid-tPc9FQBZBl .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-tPc9FQBZBl .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-tPc9FQBZBl .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-tPc9FQBZBl .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-tPc9FQBZBl .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-tPc9FQBZBl .card .wrapper .sign-wrap {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cid-tPc9FQBZBl .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-tPc9FQBZBl .card .wrapper .sign-wrap img {
  width: 140px;
}
.cid-tPc9FQBZBl .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-tPc9FQBZBl .card .wrapper .mbr-section-title {
  text-align: left;
  color: #0a1c44;
}
.cid-tPc9FQBZBl .card .wrapper .mbr-text {
  color: #181818;
}
.cid-tPc9FR4evO {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/ceramic2-960x1280.jpg");
}
.cid-tPc9FR4evO .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-tPc9FR4evO .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-tPc9FR4evO .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-tPc9FR4evO .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tPc9FR4evO .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-tPc9FR4evO .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-tPc9FR4evO .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-tPc9FR4evO .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-tPc9FR4evO .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-tPc9FRUqI1 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-tPc9FRUqI1 .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-tPc9FRUqI1 .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-tPc9FRUqI1 .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-tPc9FRUqI1 .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-tPc9FRUqI1 li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-tPc9FRUqI1 .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-tPc9FRUqI1 .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-tPc9FRUqI1 .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-tPc9FRUqI1 .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.3rem;
}
.cid-tPc9FRUqI1 .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-tPc9FRUqI1 .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-tPc9FRUqI1 .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ffffff;
}
.cid-tPc9FRUqI1 .align-wrap .item-wrap span,
.cid-tPc9FRUqI1 .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-tPc9FRUqI1 .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-tPc9FRUqI1 .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-tPc9FRUqI1 .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-tPc9FRUqI1 .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-tPc9FRUqI1 .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-tPc9FRUqI1 .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-tPc9FRUqI1 .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-tPc9FRUqI1 .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tPc9FRUqI1 .socicon-wrap {
    margin: auto;
  }
}
.cid-tPc9FRUqI1 .items .list-item .text2,
.cid-tPc9FRUqI1 .items .list-item {
  text-align: left;
}
.cid-tPc9FSIcBN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-tPc9FSIcBN .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tPc9FSIcBN .copyright {
    margin-bottom: 1rem;
  }
}
.cid-tPc9FSIcBN .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-tPc9FSIcBN .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-tPc9FSIcBN .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-tPc9FSIcBN .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-tPc9FSIcBN .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-tPc9FSIcBN .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-tPc9FSIcBN .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-tPc9FSIcBN .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-tPc9FSIcBN .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-t1fkKJLhzA .navbar {
  padding: .5rem 0;
  transition: none;
  min-height: 50px;
  background: none;
}
.cid-t1fkKJLhzA .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #0e1b28;
}
.cid-t1fkKJLhzA .navbar-fixed-top {
  padding-top: 0;
}
.cid-t1fkKJLhzA .navbar-collapse {
  flex-basis: auto;
}
.cid-t1fkKJLhzA .dropdown-item {
  padding: 0;
}
.cid-t1fkKJLhzA .dropdown-menu {
  border: 0px solid lightgray;
  background: #0e2640 !important;
}
.cid-t1fkKJLhzA .menu-content-top {
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-t1fkKJLhzA .menu-content-top {
    width: 100%;
  }
  .cid-t1fkKJLhzA .menu-content-top .menu-logo {
    display: none;
  }
  .cid-t1fkKJLhzA .menu-content-top .navbar-buttons {
    display: none !important;
  }
  .cid-t1fkKJLhzA .menu-content-top .menu-content-right {
    justify-content: space-between;
  }
}
.cid-t1fkKJLhzA .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-t1fkKJLhzA .menu-bottom .menu-wrap {
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-t1fkKJLhzA .menu-bottom .navbar-brand-bottom {
    display: none !important;
  }
}
.cid-t1fkKJLhzA .menu-bottom .mbr-overlay2 {
  z-index: 0;
  transition: all .3s;
  background: #0e2640;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}
.cid-t1fkKJLhzA .menu-bottom .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-t1fkKJLhzA .menu-bottom .icons-menu span {
  font-size: 16px;
  color: #ffffff;
}
.cid-t1fkKJLhzA .navbar-dropdown.bg-color.transparent.opened {
  background: #0e1b28;
}
.cid-t1fkKJLhzA a {
  font-style: normal;
}
.cid-t1fkKJLhzA .nav-item {
  border-right: 1px #0e2640;
  border-left: 1px #0e2640;
}
.cid-t1fkKJLhzA .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-t1fkKJLhzA .nav-item a {
  padding: 20px 0 !important;
  margin: 0 .5rem !important;
}
.cid-t1fkKJLhzA .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t1fkKJLhzA .content-text {
  margin-bottom: 0;
}
.cid-t1fkKJLhzA .navbar-nav {
  position: relative;
  min-height: 49px;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-t1fkKJLhzA .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-t1fkKJLhzA .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-t1fkKJLhzA .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-t1fkKJLhzA .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-t1fkKJLhzA .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1fkKJLhzA .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1fkKJLhzA .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-t1fkKJLhzA .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1fkKJLhzA .nav-dropdown .link {
  font-weight: 400;
}
.cid-t1fkKJLhzA .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-t1fkKJLhzA .content-right-side {
  text-align: center;
}
.cid-t1fkKJLhzA .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-t1fkKJLhzA .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-t1fkKJLhzA .info-widget {
  margin-left: 16px;
  padding-top: 0.5rem;
}
.cid-t1fkKJLhzA .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-t1fkKJLhzA .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-t1fkKJLhzA .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-t1fkKJLhzA .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-t1fkKJLhzA .widget-content .widget-title {
  margin-bottom: 0px;
  font-weight: 500;
}
.cid-t1fkKJLhzA .widget-content .widget-title .mbr-iconfont {
  display: inline-block;
  padding-right: 0.5rem;
  font-size: 20px !important;
}
.cid-t1fkKJLhzA .widget-content .widget-title.display-7 {
  line-height: 1.2 !important;
}
.cid-t1fkKJLhzA .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-t1fkKJLhzA .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-t1fkKJLhzA .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-t1fkKJLhzA .menu-content-top {
    border-bottom: 0px solid rgba(0, 0, 0, 0.12);
  }
  .cid-t1fkKJLhzA .navbar {
    display: block;
    padding: 0;
  }
  .cid-t1fkKJLhzA .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-t1fkKJLhzA .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 8rem);
  }
  .cid-t1fkKJLhzA .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    padding-top: 8px !important;
  }
  .cid-t1fkKJLhzA .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-t1fkKJLhzA .navbar-toggler {
    display: none;
  }
  .cid-t1fkKJLhzA .navbar-collapse {
    justify-content: center;
  }
}
.cid-t1fkKJLhzA .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-t1fkKJLhzA .btn {
  display: inline-flex;
  align-items: center;
}
.cid-t1fkKJLhzA .btn.btn-success-outline {
  color: #ffffff;
  font-weight: normal;
  letter-spacing: 0;
}
.cid-t1fkKJLhzA .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-t1fkKJLhzA .menu-logo {
  margin-right: auto;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t1fkKJLhzA .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu {
  background: #0e1b28;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t1fkKJLhzA .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t1fkKJLhzA .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1fkKJLhzA .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  z-index: 1000;
}
.cid-t1fkKJLhzA .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-t1fkKJLhzA .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 1;
  transition: font-size 0.25s;
}
.cid-t1fkKJLhzA .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t1fkKJLhzA .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t1fkKJLhzA .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t1fkKJLhzA button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: auto;
}
.cid-t1fkKJLhzA button.navbar-toggler.collapsed {
  align-self: center;
}
.cid-t1fkKJLhzA button.navbar-toggler:focus {
  outline: none;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t1fkKJLhzA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t1fkKJLhzA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1fkKJLhzA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t1fkKJLhzA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t1fkKJLhzA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1fkKJLhzA .collapsed.navbar-toggler {
  align-self: auto;
}
.cid-t1fkKJLhzA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1fkKJLhzA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1fkKJLhzA .collapsed .btn {
  display: flex;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-t1fkKJLhzA .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t1fkKJLhzA .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t1fkKJLhzA .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1fkKJLhzA .collapsed button.navbar-toggler {
  display: block;
}
.cid-t1fkKJLhzA .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-t1fkKJLhzA .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-t1fkKJLhzA .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-t1fkKJLhzA .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t1fkKJLhzA .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t1fkKJLhzA .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t1fkKJLhzA .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
.cid-t1fkKJLhzA .collapsed .menu-bottom .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t1fkKJLhzA .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing,
  .cid-t1fkKJLhzA .navbar-collapse.show {
    display: block !important;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing .navbar-nav,
  .cid-t1fkKJLhzA .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t1fkKJLhzA .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing .navbar-buttons,
  .cid-t1fkKJLhzA .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-t1fkKJLhzA .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t1fkKJLhzA .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1fkKJLhzA .menu-bottom {
    flex-direction: row;
    justify-content: center;
  }
  .cid-t1fkKJLhzA .menu-bottom .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
  .cid-t1fkKJLhzA .menu-bottom .navbar-brand-bottom {
    margin-right: auto;
  }
  .cid-t1fkKJLhzA img {
    height: 3.8rem !important;
  }
  .cid-t1fkKJLhzA .btn {
    display: flex;
  }
  .cid-t1fkKJLhzA button.navbar-toggler {
    display: block;
  }
  .cid-t1fkKJLhzA .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-t1fkKJLhzA .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-t1fkKJLhzA .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-t1fkKJLhzA .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t1fkKJLhzA .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t1fkKJLhzA .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-t1fkKJLhzA .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-t1fkKJLhzA .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-t1fkKJLhzA .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-t1fkKJLhzA .nav-link:focus {
  outline: none;
}
.cid-t1fkKJLhzA .navbar-toggler {
  position: relative;
}
.cid-t1fkKJLhzA .dropdown-item.active,
.cid-t1fkKJLhzA .dropdown-item:active {
  background: #0e2640;
  color: initial;
}
.cid-tdLIhDMxI9 {
  padding-top: 180px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tdLIhDMxI9 .link-align {
  width: 100%;
}
.cid-tdLIhDMxI9 .link-wrap {
  display: inline-block;
}
.cid-tdLIhDMxI9 .link {
  position: relative;
  cursor: pointer;
  width: fit-content;
  letter-spacing: 1px;
  margin-left: 80px;
  color: #ffffff;
}
.cid-tdLIhDMxI9 .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-tdLIhDMxI9 .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-tdLIhDMxI9 .wrap .mask {
    background: none;
    min-height: auto;
  }
}
.cid-tdLIhDMxI9 .wrap .mbr-section-subtitle {
  line-height: 1;
}
.cid-tdLIhDMxI9 .wrap .price {
  color: #fff000;
}
@media (min-width: 992px) {
  .cid-tdLIhDMxI9 .wrap .mbr-section-title.display-1 {
    font-size: 100px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .cid-tdLIhDMxI9 .mbr-text {
    text-align: right;
  }
}
.cid-rZqakYmFVv {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rZqakYmFVv .row {
  flex-direction: row-reverse;
}
.cid-rZqakYmFVv .img-wrap img {
  width: 100%;
}
.cid-rZqakYmFVv .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-rZqakYmFVv .card .wrapper {
  overflow: hidden;
}
.cid-rZqakYmFVv .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-rZqakYmFVv .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-rZqakYmFVv .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-rZqakYmFVv .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-rZqakYmFVv .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-rZqakYmFVv .card .wrapper .sign-wrap {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cid-rZqakYmFVv .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-rZqakYmFVv .card .wrapper .sign-wrap img {
  width: 140px;
}
.cid-rZqakYmFVv .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-rZqakYmFVv .card .wrapper .mbr-section-title {
  text-align: left;
}
.cid-rZqakYmFVv .card .wrapper .mbr-text {
  color: #181818;
}
.cid-rZqamDmpQI {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #06182d;
}
.cid-rZqamDmpQI .mbr-section-title {
  color: #06182d;
}
.cid-rZqamDmpQI .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-rZqamDmpQI .mbr-text,
.cid-rZqamDmpQI .mbr-section-btn {
  color: #ffffff;
}
.cid-rZqamDmpQI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rZqamDmpQI .card {
  margin-bottom: 40px;
}
.cid-rZqamDmpQI .card .card-wrapper {
  display: flex;
}
@media (max-width: 768px) {
  .cid-rZqamDmpQI .card .card-wrapper {
    justify-content: center;
  }
  .cid-rZqamDmpQI .card .card-wrapper .card-box {
    width: auto;
  }
}
.cid-rZqamDmpQI .card .card-wrapper .mbr-iconfont {
  font-size: 41px;
  color: #ff513c;
  transition: all 0.3s ease-in-out;
  align-self: center;
}
.cid-rZqamDmpQI .card .card-wrapper .card-box {
  margin-left: 14px;
}
.cid-rZqamDmpQI .card .card-wrapper .card-box .card-title {
  cursor: pointer;
  color: #ffffff;
  margin-bottom: 0rem;
}
.cid-rZqamDmpQI .card .card-wrapper .card-box .card-text {
  color: #ffffff;
}
.cid-rZqamDmpQI .buttons-wrap {
  text-align: left;
}
@media (max-width: 768px) {
  .cid-rZqamDmpQI .buttons-wrap {
    text-align: center;
  }
}
.cid-rZqamDmpQI .buttons-wrap .mbr-section-btn {
  display: inline-block;
}
.cid-rZqamDmpQI .buttons-wrap .mbr-section-btn .btn {
  padding-left: 39px;
  padding-right: 39px;
}
.cid-rZqamDmpQI .buttons-wrap .mbr-section-btn .btn-success-outline {
  color: #030f1c;
}
.cid-rZqamDmpQI .buttons-wrap .mbr-section-btn .btn-success-outline:hover {
  color: #000000;
}
.cid-rZqamDmpQI .buttons-wrap .or {
  text-align: center;
  display: inline;
  margin-left: 25px;
  margin-right: 25px;
  color: #ffffff;
  margin-bottom: 0;
  vertical-align: sub;
}
@media (max-width: 992px) {
  .cid-rZqamDmpQI .buttons-wrap .or {
    display: none;
  }
}
.cid-rZqamDmpQI .mbr-section-title,
.cid-rZqamDmpQI .col {
  color: #ffffff;
}
.cid-rZqalT6jOx {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/06-1920x1281.jpg");
}
.cid-rZqalT6jOx .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-rZqalT6jOx .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-rZqalT6jOx .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-rZqalT6jOx .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rZqalT6jOx .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-rZqalT6jOx .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-rZqalT6jOx .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 7px 39px;
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-rZqalT6jOx .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline {
  color: #ffffff;
}
.cid-rZqalT6jOx .card .wrapper .buttons-wrap .mbr-section-btn .btn.btn-success-outline:hover {
  color: #000000;
}
.cid-t1exNoYDTv {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #06182d;
}
.cid-t1exNoYDTv .mbr-section-title {
  color: #ffffff;
  margin-bottom: 1rem;
  transition: all 0.15s linear 0s;
}
.cid-t1exNoYDTv .mbr-section-title.display-5 {
  letter-spacing: 1px;
}
.cid-t1exNoYDTv .mbr-section-title:hover {
  opacity: 0.8;
}
.cid-t1exNoYDTv .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.cid-t1exNoYDTv .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-t1exNoYDTv .btn {
  margin: 0px !important;
}
.cid-t1exNoYDTv .btn.btn-success-outline {
  color: #000000;
}
.cid-t1exNoYDTv .btn.btn-sm {
  padding: 7px 39px;
}
.cid-t1exNoYDTv .second-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1exNoYDTv .carousel-item {
  justify-content: center;
}
.cid-t1exNoYDTv .carousel-item .media-container-row {
  flex-grow: 1;
}
.cid-t1exNoYDTv .carousel-item .media-container-row .col-md-12 {
  padding: 0;
}
.cid-t1exNoYDTv .carousel-item .wrap-img {
  text-align: center;
  max-height: 400px;
}
.cid-t1exNoYDTv .carousel-item .wrap-img img {
  width: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-t1exNoYDTv .carousel {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  position: relative;
  z-index: 1;
}
.cid-t1exNoYDTv .carousel-indicators {
  display: none;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t1exNoYDTv .second-col {
    padding-top: 2rem;
  }
  .cid-t1exNoYDTv .share_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .cid-t1exNoYDTv .share_buttons .icon-wrapper {
    margin: 10px !important;
  }
}
.cid-t1exNoYDTv .carousel-controls {
  display: flex;
  justify-content: center;
  position: static;
  bottom: 0;
  left: 0;
  right: 0;
  top: 50%;
}
.cid-t1exNoYDTv .carousel-controls .carousel-control {
  background: #000000;
}
.cid-t1exNoYDTv .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-t1exNoYDTv .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-t1exNoYDTv .carousel-controls .carousel-control .span {
  font-size: 1rem;
  opacity: 1 !important;
}
.cid-t1exNoYDTv .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-t1exNoYDTv .share_buttons .icon-wrapper:hover .link-icon {
  color: #007bff;
}
.cid-t1exNoYDTv .share_buttons .icon-wrapper .link-icon {
  display: inline-block;
  color: #61728a;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-t1exNoYDTv .sticky-tag {
  position: absolute;
  top: 0;
  left: 4px;
  z-index: 10;
  display: block;
}
.cid-t1exNoYDTv .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-t1exNoYDTv .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-2u {
  /* Type valid CSS here */
}
#custom-html-2u div {
  padding: 5px 0;
  color: #777;
  text-align: center;
}
#custom-html-2u p {
  font-size: 30px;
  color: #777;
}
.cid-rZqapN0JPL {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f4f6f9;
}
.cid-rZqapN0JPL .mbr-section-title {
  color: #06182d;
}
.cid-rZqapN0JPL .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-rZqapN0JPL .mbr-section-subtitle {
  color: #06182d;
}
.cid-rZqapN0JPL .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-rZqapN0JPL .mbr-section-text {
  color: #999999;
}
.cid-rZqapN0JPL .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-rZqapN0JPL .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 0.7em 1.07em 0em 0.8em;
  background-color: #f4f6f9;
  border: 0px solid #dfe3e8;
  border-bottom: 1px solid #dfe3e8;
  color: #61728a;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-rZqapN0JPL .form-control:focus,
.cid-rZqapN0JPL .form-control:hover {
  border: 0px solid #f4f6f9;
  background-color: #b8b8b8;
}
.cid-rZqapN0JPL .form-control.textarea {
  padding-top: 40px;
}
.cid-rZqapN0JPL .form-group {
  margin-bottom: 1rem;
}
.cid-rZqapN0JPL .form-group .wrap {
  display: flex;
}
.cid-rZqapN0JPL .form-group .wrap span {
  padding: 0em 0em;
  margin-bottom: 0px;
  align-self: center;
  color: #61728a;
}
.cid-rZqapN0JPL input::-webkit-input-placeholder,
.cid-rZqapN0JPL textarea::-webkit-input-placeholder {
  color: #61728a;
}
.cid-rZqapN0JPL input:-moz-placeholder,
.cid-rZqapN0JPL textarea:-moz-placeholder {
  color: #61728a;
}
.cid-rZqapN0JPL .jq-selectbox li,
.cid-rZqapN0JPL .jq-selectbox li {
  background-color: #f4f6f9;
  color: #000000;
}
.cid-rZqapN0JPL .jq-selectbox li:hover,
.cid-rZqapN0JPL .jq-selectbox li.selected {
  background-color: #b8b8b8;
  color: #000000;
}
.cid-rZqapN0JPL .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f4f6f9;
}
.cid-rZqapN0JPL .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #b8b8b8;
}
.cid-rZqapN0JPL .map {
  width: 100%;
  height: 30rem;
}
.cid-rZqapN0JPL .map iframe {
  width: inherit;
  height: 100%;
}
.cid-rZqapN0JPL .icon-block {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.cid-rZqapN0JPL .icon-block .icon-block__icon {
  display: inline-block;
  flex-shrink: 0;
}
.cid-rZqapN0JPL .icon-block .icon-block__title {
  display: inline-block;
  align-self: center;
  margin-bottom: 0;
  line-height: 1;
  font-style: italic;
}
.cid-rZqapN0JPL .mbr-text {
  color: #767676;
}
.cid-rZqapN0JPL a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-rZqapN0JPL .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rZqapN0JPL .input-group-btn {
  display: block;
  text-align: left;
}
.cid-rZqapN0JPL .input-group-btn .btn-sm {
  padding: 7px 39px;
}
.cid-rZqapN0JPL textarea.form-control {
  resize: none;
}
.cid-rZqapN0JPL .google-map {
  height: 25rem;
  position: relative;
}
.cid-rZqapN0JPL .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-rZqapN0JPL .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-rZqapN0JPL .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rZqapN0JPL .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-rZqapN0JPL h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-rZqapN0JPL .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-rZqapN0JPL .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-rZqapN0JPL .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-rZqapN0JPL * {
    text-align: center !important;
  }
}
.cid-t3kChFVw7F {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-t3kChFVw7F .mbr-overlay {
  background-color: #06182d;
  opacity: 0.7;
}
.cid-t3kChFVw7F .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-t3kChFVw7F .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.5rem;
}
.cid-t3kChFVw7F .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-t3kChFVw7F li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
.cid-t3kChFVw7F .align-wrap {
  display: flex;
  flex-direction: column;
}
.cid-t3kChFVw7F .align-wrap .item-wrap {
  display: flex;
  justify-content: flex-start;
}
.cid-t3kChFVw7F .align-wrap .item-wrap .card-img {
  margin-right: 15px;
}
.cid-t3kChFVw7F .align-wrap .item-wrap .card-img .mbr-iconfont {
  color: #ff4e3c !important;
  font-size: 1.3rem;
}
.cid-t3kChFVw7F .align-wrap .item-wrap .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-t3kChFVw7F .align-wrap .item-wrap .icons-wrap .icon-title {
  margin: 0;
  padding-bottom: 0px;
  color: #ffffff;
  font-weight: 300;
}
.cid-t3kChFVw7F .align-wrap .item-wrap .icons-wrap:hover .icon-title {
  color: #ffffff;
}
.cid-t3kChFVw7F .align-wrap .item-wrap span,
.cid-t3kChFVw7F .align-wrap .item-wrap p {
  transition: all 0.3s;
}
.cid-t3kChFVw7F .opening-hours .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  font-weight: 300;
  text-align: left;
}
.cid-t3kChFVw7F .opening-hours .box-list li {
  padding: 10px 0 10px;
  color: #ffffff;
}
.cid-t3kChFVw7F .opening-hours .box-list li:first-child {
  padding-top: 0;
}
.cid-t3kChFVw7F .opening-hours .box-list li:last-child {
  border-bottom: none;
}
.cid-t3kChFVw7F .opening-hours .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
  color: #ffffff;
}
.cid-t3kChFVw7F .opening-hours .box-list.display-4 {
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .cid-t3kChFVw7F .col-lg-3 {
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .cid-t3kChFVw7F .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t3kChFVw7F .socicon-wrap {
    margin: auto;
  }
}
.cid-t3kChFVw7F .items .list-item .text2,
.cid-t3kChFVw7F .items .list-item {
  text-align: left;
}
.cid-tdLuo1GxUw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #06182d;
}
.cid-tdLuo1GxUw .copyright {
  display: flex;
}
@media (max-width: 992px) {
  .cid-tdLuo1GxUw .copyright {
    margin-bottom: 1rem;
  }
}
.cid-tdLuo1GxUw .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-tdLuo1GxUw .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-tdLuo1GxUw .text-wrap .icons-wrap .icon-wrapper:hover {
  background: #ff4e3c;
  border-color: #ff4e3c;
}
.cid-tdLuo1GxUw .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffde;
}
.cid-tdLuo1GxUw .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffde;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-tdLuo1GxUw .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-tdLuo1GxUw .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-tdLuo1GxUw .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-tdLuo1GxUw .text-wrap .icons-wrap::after {
    display: none;
  }
}
