body {
  font-family: Muli;
}
.display-1 {
  font-family: 'Muli', sans-serif;
  font-size: 5.2rem;
}
.display-1 > .mbr-iconfont {
  font-size: 8.32rem;
}
.display-2 {
  font-family: 'Muli', sans-serif;
  font-size: 2.2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-4 {
  font-family: 'Muli', sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Muli', sans-serif;
  font-size: 1.6rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-7 {
  font-family: 'Muli', sans-serif;
  font-size: 1.2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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: 4.16rem;
    font-size: calc( 2.4699999999999998rem + (5.2 - 2.4699999999999998) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.4699999999999998rem + (5.2 - 2.4699999999999998) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #f7f4f0 !important;
}
.bg-success {
  background-color: #6cceed !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #cccccc !important;
}
.bg-danger {
  background-color: #211c1c !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f7f4f0 !important;
  border-color: #f7f4f0 !important;
  color: #977951 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #977951 !important;
  background-color: #dccfbe !important;
  border-color: #dccfbe !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #977951 !important;
  background-color: #dccfbe !important;
  border-color: #dccfbe !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #5b686b !important;
  border-color: #5b686b !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #384042 !important;
  border-color: #384042 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #384042 !important;
  border-color: #384042 !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-success,
.btn-success:active {
  background-color: #6cceed !important;
  border-color: #6cceed !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #28b7e5 !important;
  border-color: #28b7e5 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #28b7e5 !important;
  border-color: #28b7e5 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #cccccc !important;
  border-color: #cccccc !important;
  color: #4d4d4d !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #4d4d4d !important;
  background-color: #a6a6a6 !important;
  border-color: #a6a6a6 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #4d4d4d !important;
  background-color: #a6a6a6 !important;
  border-color: #a6a6a6 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #211c1c !important;
  border-color: #211c1c !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #d4c3ad;
  color: #d4c3ad;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #f7f4f0;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before,
.btn-primary-outline.active:before {
  transform: scaleX(1);
}
.btn-primary-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f7f4f0;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #977951 !important;
  background-color: #f7f4f0 !important;
  border-color: #f7f4f0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #2c3234;
  color: #2c3234;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #5b686b;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before,
.btn-secondary-outline.active:before {
  transform: scaleX(1);
}
.btn-secondary-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5b686b;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #5b686b !important;
  border-color: #5b686b !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #ffffff;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before,
.btn-info-outline.active:before {
  transform: scaleX(1);
}
.btn-info-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.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: #1babd8;
  color: #1babd8;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #6cceed;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before,
.btn-success-outline.active:before {
  transform: scaleX(1);
}
.btn-success-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #6cceed;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #6cceed !important;
  border-color: #6cceed !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #999999;
  color: #999999;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #cccccc;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before,
.btn-warning-outline.active:before {
  transform: scaleX(1);
}
.btn-warning-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #cccccc;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #4d4d4d !important;
  background-color: #cccccc !important;
  border-color: #cccccc !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #211c1c;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before,
.btn-danger-outline.active:before {
  transform: scaleX(1);
}
.btn-danger-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #211c1c;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #211c1c !important;
  border-color: #211c1c !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before,
.btn-black-outline.active:before {
  transform: scaleX(1);
}
.btn-black-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333333;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.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,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #f7f4f0 !important;
}
.text-secondary {
  color: #5b686b !important;
}
.text-success {
  color: #6cceed !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #cccccc !important;
}
.text-danger {
  color: #211c1c !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #d4c3ad !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #2c3234 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1babd8 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #999999 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !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: #cccccc;
}
.alert-danger {
  background-color: #211c1c;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f7f4f0;
  border-color: #f7f4f0;
  color: #a7865a;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f7f4f0;
}
.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: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #d5cdcd;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Muli', sans-serif;
  font-size: 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #f7f4f0;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f7f4f0;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f7f4f0;
  border-bottom-color: #f7f4f0;
}
.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: #f7f4f0 !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: #5b686b !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%;
}
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='%23f7f4f0' %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;
}
.cid-rArXDGngPj .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 100px;
}
.cid-rArXDGngPj .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rArXDGngPj a {
  font-style: normal;
}
.cid-rArXDGngPj a .link:hover {
  color: inherit!important;
}
.cid-rArXDGngPj .dropdown-item:active {
  background: #ffffff;
}
.cid-rArXDGngPj .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rArXDGngPj .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0 !important;
  margin: 0.5rem 1.4rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rArXDGngPj .nav-item:focus,
.cid-rArXDGngPj .nav-link:focus {
  outline: none;
}
.cid-rArXDGngPj .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rArXDGngPj .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rArXDGngPj .menu-logo {
  margin-right: auto;
}
.cid-rArXDGngPj .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rArXDGngPj .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rArXDGngPj .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rArXDGngPj .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rArXDGngPj .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rArXDGngPj .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rArXDGngPj .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rArXDGngPj .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rArXDGngPj .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rArXDGngPj .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rArXDGngPj .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rArXDGngPj .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rArXDGngPj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rArXDGngPj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rArXDGngPj .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rArXDGngPj .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rArXDGngPj .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%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rArXDGngPj .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rArXDGngPj .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rArXDGngPj .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rArXDGngPj .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rArXDGngPj .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rArXDGngPj .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rArXDGngPj button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.8rem;
  right: 1rem;
}
.cid-rArXDGngPj button.navbar-toggler:focus {
  outline: none;
}
.cid-rArXDGngPj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f9f295;
}
.cid-rArXDGngPj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rArXDGngPj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rArXDGngPj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rArXDGngPj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rArXDGngPj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rArXDGngPj nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rArXDGngPj nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rArXDGngPj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rArXDGngPj .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rArXDGngPj .collapsed .btn {
  display: -webkit-flex;
}
.cid-rArXDGngPj .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rArXDGngPj .collapsed .navbar-collapse.collapsing,
.cid-rArXDGngPj .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rArXDGngPj .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rArXDGngPj .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rArXDGngPj .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rArXDGngPj .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rArXDGngPj .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rArXDGngPj .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rArXDGngPj .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rArXDGngPj .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rArXDGngPj .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rArXDGngPj .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-rArXDGngPj .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-rArXDGngPj .collapsed button.navbar-toggler {
  display: block;
}
.cid-rArXDGngPj .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rArXDGngPj .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rArXDGngPj .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rArXDGngPj .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rArXDGngPj .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rArXDGngPj .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;
}
@media (max-width: 1023px) {
  .cid-rArXDGngPj .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rArXDGngPj img {
    height: 3.8rem !important;
  }
  .cid-rArXDGngPj .btn {
    display: -webkit-flex;
  }
  .cid-rArXDGngPj button.navbar-toggler {
    display: block;
  }
  .cid-rArXDGngPj .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rArXDGngPj .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rArXDGngPj .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rArXDGngPj .navbar-collapse.collapsing,
  .cid-rArXDGngPj .navbar-collapse.show {
    display: block !important;
  }
  .cid-rArXDGngPj .navbar-collapse.collapsing .navbar-nav,
  .cid-rArXDGngPj .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rArXDGngPj .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rArXDGngPj .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rArXDGngPj .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rArXDGngPj .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rArXDGngPj .navbar-collapse.collapsing .navbar-buttons,
  .cid-rArXDGngPj .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rArXDGngPj .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rArXDGngPj .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rArXDGngPj .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rArXDGngPj .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rArXDGngPj .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rArXDGngPj .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;
  }
}
@media (min-width: 767px) {
  .cid-rArXDGngPj .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rArXDGngPj .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rArXDGngPj .nav-link,
.cid-rArXDGngPj .dropdown-item {
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
.cid-rArXDGngPj .nav-link:hover,
.cid-rArXDGngPj .dropdown-item:hover {
  color: #149dcc !important;
  border-color: #f7f4f0;
}
.cid-rArXEdIV84 {
  padding-top: 135px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-rArXEdIV84 .mbr-text,
.cid-rArXEdIV84 .mbr-section-btn {
  color: #f7f4f0;
}
.cid-rArXEdIV84 H1 {
  color: #f7f4f0;
}
.cid-rArXEqnXGf {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-rArXEqnXGf .row {
  padding: 0 1rem;
  justify-content: center;
}
.cid-rArXEqnXGf .title {
  max-width: 800px;
  margin: auto;
}
.cid-rArXEqnXGf .text-wrap {
  padding: 0 1rem;
}
.cid-rArXEqnXGf .link {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 2rem;
  cursor: pointer;
}
.cid-rArXEqnXGf .link:before {
  content: "\e966";
  font-family: MobiriseIcons !important;
  position: absolute;
  right: 0rem;
  transition: all 0.3s;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: currentColor;
}
.cid-rArXEqnXGf .link:hover:before {
  margin-right: -0.4rem;
}
.cid-rArXEqnXGf .card-block:hover img {
  transform: scale(1.1);
}
.cid-rArXEqnXGf .card {
  padding: 0;
}
.cid-rArXEqnXGf .card .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-rArXEqnXGf .card .card-block .photo {
  display: inline-block;
  margin-bottom: 1.4rem;
  overflow: hidden;
}
.cid-rArXEqnXGf .card .card-block .photo img {
  width: 100%;
  min-width: 100%;
  height: 320px;
  object-fit: cover;
  min-height: 100%;
  transition: all 0.3s;
}
.cid-rArXEqnXGf H4 {
  color: #149dcc;
}
@media (max-width: 992px) {
  .cid-rArXEqnXGf .md-pb {
    margin-bottom: 2rem!important;
  }
}
.cid-rArXEDZgZT {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #c1c1c1;
}
.cid-rArXEDZgZT img {
  width: 90%;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-rArXEDZgZT img {
    width: 100%;
  }
  .cid-rArXEDZgZT .pb-5 {
    padding-bottom: 1rem!important;
  }
}
.cid-rArXEDZgZT ol {
  padding: 0;
  margin: 0;
}
.cid-rArXEDZgZT li {
  padding-bottom: 1rem;
  line-height: 1.4;
}
.cid-rArXEDZgZT .counter-container2 ol {
  counter-reset: start 4;
}
.cid-rArXEDZgZT .counter-container2 li {
  display: block;
}
.cid-rArXEDZgZT .counter-container2 li:before {
  content: counter(start) ". ";
  counter-increment: start;
}
.cid-rArXEDZgZT .counter-container1 ol {
  counter-reset: start 0;
}
.cid-rArXEDZgZT .counter-container1 li {
  display: block;
}
.cid-rArXEDZgZT .counter-container1 li:before {
  content: counter(start) ". ";
  counter-increment: start;
}
.cid-rArXEDZgZT li:before {
  color: #f7f4f0;
}
.cid-rArXFAByJ1 {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #343434;
}
.cid-rArXFAByJ1 .mbr-iconfont {
  font-family: 'Moririse2' !important;
  display: inline-flex;
  transform-origin: ;
  transform: rotate(45deg);
  transition: all 0.3s;
  padding: 0!important;
  font-size: 1.4rem!important;
  color: #b69b74;
}
.cid-rArXFAByJ1 .p-4 {
  padding: 1rem 0!important;
}
.cid-rArXFAByJ1 .content {
  max-width: 650px;
}
.cid-rArXFAByJ1 img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
  margin-bottom: 3rem;
  box-shadow: 2.5px 4.3px 29px 0 rgba(0, 0, 0, 0.18);
}
.cid-rArXFAByJ1 .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-rArXFAByJ1 .mbri-arrow-down:before {
  content: "\e960";
}
.cid-rArXFAByJ1 .mbri-arrow-up:before {
  content: "\e960";
}
.cid-rArXFAByJ1 .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-rArXFAByJ1 h4 {
  justify-content: space-between;
  display: flex;
  width: 100%;
}
.cid-rArXFAByJ1 .card {
  border-radius: 0px;
}
.cid-rArXFAByJ1 .card .card-header {
  border-radius: 0px;
  border: 0px;
  background-color: transparent;
  padding: 0;
  border-bottom: 2px solid #b69b74;
}
.cid-rArXFAByJ1 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  width: 100%;
  justify-content: space-between;
  text-decoration: none !important;
  line-height: normal;
}
.cid-rArXFAByJ1 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rArXFAByJ1 .card .card-header a.panel-title h4 {
  padding: 1.2rem 0rem;
  margin-bottom: 0;
}
.cid-rArXFAByJ1 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
@media (max-width: 992px) {
  .cid-rArXFAByJ1 img {
    width: 100%;
  }
  .cid-rArXFAByJ1 .content {
    max-width: 100%;
  }
}
.cid-rArXFAByJ1 H4 {
  color: #149dcc;
}
.cid-rArXFAByJ1 .panel-text {
  color: #ffffff;
}
.cid-rArXFNF7KR {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-rArXFNF7KR img {
  width: 90%;
}
@media (max-width: 992px) {
  .cid-rArXFNF7KR img {
    width: 100%;
  }
  .cid-rArXFNF7KR .pb-5 {
    padding-bottom: 1rem!important;
  }
}
.cid-rArXFNF7KR ul {
  padding-left: 2rem;
  margin-bottom: 0;
}
.cid-rArXFNF7KR ul li {
  margin-bottom: 0.4rem;
  list-style: none;
  position: relative;
}
.cid-rArXFNF7KR ul li:before {
  position: absolute;
  left: -2.6rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 10px 14px;
  line-height: 20px;
  transition: all .2s;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b69b74;
}
.cid-rArXFNF7KR .counter-container {
  color: #149dcc;
}
.cid-rArXFY2Iib {
  padding-top: 600px;
  background-image: url("../../../assets/images/mbr-1920x1270.jpg");
}
.cid-rArXGv16AW {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-rArXGv16AW .content {
    text-align: center;
  }
  .cid-rArXGv16AW .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rArXGv16AW .google-map {
  height: 25rem;
  width: 90%;
  position: relative;
  box-shadow: 2.5px 4.3px 29px 0 rgba(0, 0, 0, 0.18);
}
.cid-rArXGv16AW .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-rArXGv16AW .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-rArXGv16AW .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rArXGv16AW .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 992px) {
  .cid-rArXGv16AW .google-map {
    width: 100%;
  }
}
.cid-tpCCEhxqsP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-tpCCEhxqsP .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tpCCEhxqsP h4 {
  max-width: 600px;
  margin: auto;
  line-height: 1.4;
}
@media (min-width: 767px) {
  .cid-tpCCEhxqsP .form-check-inline {
    margin-right: 2rem;
  }
  .cid-tpCCEhxqsP .form-control-label {
    display: inline-flex;
    padding-right: 3rem;
    margin-bottom: 0;
    padding-left: 0.4rem;
  }
  .cid-tpCCEhxqsP .check {
    display: flex;
    align-items: flex-end;
  }
}
@media (min-width: 992px) {
  .cid-tpCCEhxqsP .col,
  .cid-tpCCEhxqsP .col-lg-6 {
    max-width: 48%;
  }
  .cid-tpCCEhxqsP .form-group {
    margin-bottom: 0, 5rem;
  }
}
@media (max-width: 992px) {
  .cid-tpCCEhxqsP .check {
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
  }
  .cid-tpCCEhxqsP .form-group {
    margin-bottom: 0rem;
  }
}
.cid-tpCCEhxqsP label {
  margin-bottom: 0;
}
.cid-tpCCEhxqsP .form-row {
  justify-content: space-between;
}
.cid-tpCCEhxqsP .form-control,
.cid-tpCCEhxqsP .field-input {
  padding: 0.5rem;
  background-color: #cccccc;
  border: none !important;
  border-bottom: 2px solid #343434 !important;
  border-radius: 0;
  color: #343434;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tpCCEhxqsP .form-control:focus,
.cid-tpCCEhxqsP .field-input:focus {
  color: #343434 !important;
}
.cid-tpCCEhxqsP .form-control:hover,
.cid-tpCCEhxqsP .field-input:hover {
  color: #343434 !important;
}
.cid-tpCCEhxqsP .form-control input::-webkit-input-placeholder,
.cid-tpCCEhxqsP .field-input input::-webkit-input-placeholder,
.cid-tpCCEhxqsP .form-control textarea::-webkit-input-placeholder,
.cid-tpCCEhxqsP .field-input textarea::-webkit-input-placeholder {
  color: #343434;
}
.cid-tpCCEhxqsP .form-control input:-moz-placeholder,
.cid-tpCCEhxqsP .field-input input:-moz-placeholder,
.cid-tpCCEhxqsP .form-control textarea:-moz-placeholder,
.cid-tpCCEhxqsP .field-input textarea:-moz-placeholder {
  color: #343434;
}
.cid-tpCCEhxqsP .form-control:hover,
.cid-tpCCEhxqsP .field-input:hover,
.cid-tpCCEhxqsP .form-control:focus,
.cid-tpCCEhxqsP .field-input:focus {
  background-color: #f9f295;
  border-color: #343434 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tpCCEhxqsP .form-control:hover input::-webkit-input-placeholder,
.cid-tpCCEhxqsP .field-input:hover input::-webkit-input-placeholder,
.cid-tpCCEhxqsP .form-control:focus input::-webkit-input-placeholder,
.cid-tpCCEhxqsP .field-input:focus input::-webkit-input-placeholder,
.cid-tpCCEhxqsP .form-control:hover textarea::-webkit-input-placeholder,
.cid-tpCCEhxqsP .field-input:hover textarea::-webkit-input-placeholder,
.cid-tpCCEhxqsP .form-control:focus textarea::-webkit-input-placeholder,
.cid-tpCCEhxqsP .field-input:focus textarea::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-tpCCEhxqsP .form-control:hover input:-moz-placeholder,
.cid-tpCCEhxqsP .field-input:hover input:-moz-placeholder,
.cid-tpCCEhxqsP .form-control:focus input:-moz-placeholder,
.cid-tpCCEhxqsP .field-input:focus input:-moz-placeholder,
.cid-tpCCEhxqsP .form-control:hover textarea:-moz-placeholder,
.cid-tpCCEhxqsP .field-input:hover textarea:-moz-placeholder,
.cid-tpCCEhxqsP .form-control:focus textarea:-moz-placeholder,
.cid-tpCCEhxqsP .field-input:focus textarea:-moz-placeholder {
  color: #ffffff;
}
.cid-tpCCEhxqsP .jq-number__spin:hover,
.cid-tpCCEhxqsP .jq-number__spin:focus {
  background-color: #f9f295;
  border-color: #343434;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tpCCEhxqsP .jq-number__spin {
  background-color: #cccccc;
  border-color: #343434;
  color: #343434;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tpCCEhxqsP .jq-selectbox li,
.cid-tpCCEhxqsP .jq-selectbox li {
  background-color: #cccccc;
  color: #000000;
}
.cid-tpCCEhxqsP .jq-selectbox li:hover,
.cid-tpCCEhxqsP .jq-selectbox li.selected {
  background-color: #f9f295;
  color: #000000;
}
.cid-tpCCEhxqsP .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tpCCEhxqsP .jq-number__spin.minus:hover:after,
.cid-tpCCEhxqsP .jq-number__spin.plus:hover:after {
  border-top-color: #cccccc;
  border-bottom-color: #cccccc;
}
.cid-tpCCEhxqsP .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tpCCEhxqsP .jq-number__spin.minus:after,
.cid-tpCCEhxqsP .jq-number__spin.plus:after {
  border-top-color: #f9f295;
  border-bottom-color: #f9f295;
}
.cid-tpCCEhxqsP input::-webkit-clear-button {
  display: none;
}
.cid-tpCCEhxqsP input::-webkit-inner-spin-button {
  display: none;
}
.cid-tpCCEhxqsP input::-webkit-outer-spin-button {
  display: none;
}
.cid-tpCCEhxqsP input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tpCCEhxqsP H5 {
  text-align: center;
}
.cid-tpCCEhxqsP P {
  text-align: center;
}
.cid-tpCCEhxqsP LABEL {
  color: #767676;
}
.cid-tpCCEhxqsP H4 {
  color: #767676;
}
.cid-ttSIfEOwtF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-ttSIfEOwtF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttSIfEOwtF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttSIfEOwtF .title-col {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-ttSIfEOwtF .mbr-section-title {
  color: #000000;
  width: 100%;
}
.cid-ttSIfEOwtF .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-ttSIfEOwtF .lists-col {
  width: 100%;
}
.cid-ttSIfEOwtF .col-list {
  width: 100%;
}
.cid-ttSIfEOwtF .list-title {
  color: #000000;
  width: 100%;
  margin-bottom: 10px;
}
.cid-ttSIfEOwtF .list {
  list-style: none;
  margin: 0 0 10px 0;
  padding-left: 24px;
}
.cid-ttSIfEOwtF li {
  position: relative;
  padding: 0 0 0 1rem;
  margin-bottom: 0;
}
.cid-ttSIfEOwtF ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: flex-start;
  content: "\2022";
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 1.2rem;
}
.cid-ttSF0emXnA {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
.cid-ttSF0emXnA .row {
  padding: 0 1rem;
  justify-content: center;
}
.cid-ttSF0emXnA .title {
  max-width: 800px;
  margin: auto;
}
.cid-ttSF0emXnA .text-wrap {
  padding: 0 1rem;
  padding-top: 0.6rem;
}
.cid-ttSF0emXnA .link {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 2rem;
  cursor: pointer;
}
.cid-ttSF0emXnA .link:before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  right: 0rem;
  transition: all 0.3s;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: currentColor;
}
.cid-ttSF0emXnA .link:hover:before {
  margin-right: -0.4rem;
}
.cid-ttSF0emXnA .card-block:hover img {
  transform: scale(1.1);
}
.cid-ttSF0emXnA .card {
  padding: 0;
}
.cid-ttSF0emXnA .card .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-ttSF0emXnA .card .card-block .photo {
  display: inline-block;
  margin-bottom: 1.4rem;
  overflow: hidden;
}
.cid-ttSF0emXnA .card .card-block .photo img {
  width: 100%;
  min-width: 100%;
  height: 320px;
  object-fit: cover;
  min-height: 100%;
  transition: all 0.3s;
}
.cid-ttSF0emXnA H4 {
  color: #149dcc;
}
@media (max-width: 992px) {
  .cid-ttSF0emXnA .md-pb {
    margin-bottom: 2rem !important;
  }
}
.cid-ttSF0emXnA H1 {
  color: #212121;
}
.cid-twBXbRup44 {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #efefef;
}
.cid-twBXbRup44 .price-term {
  vertical-align: top;
}
.cid-twBXbRup44 h4 {
  margin: 0;
}
.cid-twBXbRup44 .card1 {
  background: #cccccc;
}
.cid-twBXbRup44 .card2 {
  background: #767676;
}
.cid-twBXbRup44 .icon {
  font-size: 4rem;
  color: #181818;
  display: inline-block;
}
@media (min-width: 767px) {
  .cid-twBXbRup44 .center-card {
    transform: scale(1.1);
    padding: 0;
    z-index: 10;
    background: #767676;
    border-radius: 30px;
  }
}
.cid-twBXbRup44 .plan-item {
  flex-direction: row-reverse;
  padding: 0 2rem;
}
.cid-twBXbRup44 .plan-item .mbr-iconfont {
  margin-left: 2rem;
  font-size: 18px;
  position: relative;
  top: 8px;
}
.cid-twBXbRup44 .plan-item p {
  margin: 0;
  padding: 6px 0;
  font-weight: 500;
  width: 100%;
}
.cid-twBXbRup44 .plan-body .mbr-section-btn {
  padding: 44px 0 0;
}
.cid-twBXbRup44 .plan-body .mbr-section-btn .btn {
  margin-bottom: 14px;
}
.cid-twBXbRup44 .plan-header {
  padding: 3rem 3rem 0rem 3rem;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.cid-twBXbRup44 .plan-body {
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 1rem 1rem;
}
.cid-twBXbRup44 .plan-price {
  padding: 2rem 2rem;
}
.cid-twBXbRup44 .month {
  letter-spacing: 2px;
}
.cid-twBXbRup44 .plan {
  word-break: break-word;
  position: relative;
  max-width: 400px;
  margin-bottom: 1rem;
}
.cid-twBXbRup44 .row {
  justify-content: center;
}
.cid-twBXbRup44 .price-value,
.cid-twBXbRup44 .price-value2 {
  vertical-align: top;
}
@media (max-width: 992px) {
  .cid-twBXbRup44 .plan {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-twBXbRup44 .plan-price {
    padding: 2rem 1rem;
  }
  .cid-twBXbRup44 .plan-body {
    padding: 0;
  }
  .cid-twBXbRup44 .plan-header {
    padding: 2rem 1rem;
  }
  .cid-twBXbRup44 .plan-item {
    padding: 0 1rem;
  }
}
.cid-twBXbRup44 .plan-title {
  color: #343434;
}
.cid-twBXbRup44 .plan-title2 {
  color: #ffffff;
}
.cid-twBXbRup44 .month2,
.cid-twBXbRup44 .plan-header {
  color: #ffffff;
}
.cid-twBXbRup44 .item2 {
  color: #ffffff;
}
.cid-twBXbRup44 .price-figure2 {
  color: #ffffff;
}
.cid-twBXbRup44 .price-value2 {
  color: #ffffff;
}
.cid-twBXbRup44 .price-value2,
.cid-twBXbRup44 .plan-price {
  color: #0f7699;
}
.cid-ttSF1PnNO2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-ttSF1PnNO2 .row {
  padding: 0 1rem;
  justify-content: center;
}
.cid-ttSF1PnNO2 .title {
  max-width: 800px;
  margin: auto;
}
.cid-ttSF1PnNO2 .text-wrap {
  padding: 0 1rem;
}
.cid-ttSF1PnNO2 .link {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 2rem;
  cursor: pointer;
}
.cid-ttSF1PnNO2 .link:before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  right: 0rem;
  transition: all 0.3s;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: currentColor;
}
.cid-ttSF1PnNO2 .link:hover:before {
  margin-right: -0.4rem;
}
.cid-ttSF1PnNO2 .card-block:hover img {
  transform: scale(1.1);
}
.cid-ttSF1PnNO2 .card {
  padding: 0;
}
.cid-ttSF1PnNO2 .card .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-ttSF1PnNO2 .card .card-block .photo {
  display: inline-block;
  margin-bottom: 1.4rem;
  overflow: hidden;
}
.cid-ttSF1PnNO2 .card .card-block .photo img {
  width: 100%;
  min-width: 100%;
  height: 320px;
  object-fit: cover;
  min-height: 100%;
  transition: all 0.3s;
}
.cid-ttSF1PnNO2 H4 {
  color: #149dcc;
}
@media (max-width: 992px) {
  .cid-ttSF1PnNO2 .md-pb {
    margin-bottom: 2rem !important;
  }
}
.cid-tCfK71SPyS {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tCfK71SPyS .card-title {
  line-height: 1.6;
  padding: 15px 25px;
  background: linear-gradient(to top, #333333, transparent);
  margin: 0;
  text-align: left;
  color: #ffffff;
}
.cid-tCfK71SPyS .card-img {
  position: relative;
}
.cid-tCfK71SPyS .card-img:hover .card-title {
  background: linear-gradient(to top, #149dcc, transparent);
}
.cid-tCfK71SPyS .card {
  margin-bottom: 2rem;
  owerflow: hidden;
}
.cid-tCfK71SPyS .card-wrapper {
  position: relative;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
}
.cid-tCfK71SPyS .ico2 {
  color: #656565;
  font-size: 1.1rem;
}
.cid-tCfK71SPyS .icobig {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  color: #149dcc;
  font-size: 2.1rem;
}
.cid-tCfK71SPyS .text-box {
  padding: 20px;
}
.cid-tCfK71SPyS .text-box p {
  margin: 0;
}
.cid-tCfK71SPyS .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-tCfK71SPyS .ico-box p {
  margin: 0;
}
.cid-tCfK71SPyS .ico-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.5rem;
}
.cid-tCfK71SPyS .p-box {
  background-color: #cccccc;
  width: 100%;
  padding: 10px;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-tCfK71SPyS .p-box p {
  padding: 10px;
  margin: 0;
  line-height: 1.5;
}
.cid-tCfK71SPyS .card-box {
  position: absolute;
  width: 100%;
  bottom: 0px;
  left: 0;
  padding: 0px;
  transition: all 0.3s;
}
.cid-tCfK71SPyS .mbr-section-title {
  color: #656565;
}
@media (max-width: 991px) {
  .cid-tCfK71SPyS .card-box {
    bottom: 0px;
  }
  .cid-tCfK71SPyS .p-box {
    padding: 0px;
  }
  .cid-tCfK71SPyS .card-title {
    padding: 10px 15px;
  }
}
.cid-tCfK71SPyS .card-text {
  color: #656565;
}
.cid-tCfK71SPyS .phone {
  color: #656565;
}
.cid-tCfK71SPyS .card-title2 {
  color: #073b4c;
}
.cid-tyGW5e976B {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-tyGW5e976B .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
  padding-top: 8rem;
}
.cid-tyGW5e976B .carousel-item.active,
.cid-tyGW5e976B .carousel-item-next,
.cid-tyGW5e976B .carousel-item-prev {
  display: flex;
}
.cid-tyGW5e976B h2 {
  font-size: 15rem;
  position: absolute;
  left: 50%;
  width: fit-content;
  right: 50%;
  top: -8rem;
  transform: translateX(-50%);
  opacity: 0.1;
}
.cid-tyGW5e976B .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 2rem;
}
.cid-tyGW5e976B .carousel-controls a span {
  position: absolute;
  top: 120px;
  padding: 10px;
  border-radius: 50%;
  color: white;
  background: #f7f4f0;
  opacity: 0.3;
  transition: all 0.3s;
}
.cid-tyGW5e976B .carousel-controls a:hover span {
  opacity: 0.4;
}
.cid-tyGW5e976B H2 {
  color: #0f7699;
}
.cid-tyGW5e976B .title {
  color: #149dcc;
}
.cid-tyGW5e976B .user_text {
  color: #767676;
}
.cid-ttSFakAi1q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-ttSFakAi1q img {
  width: 90%;
}
.cid-ttSFakAi1q .mbr-text,
.cid-ttSFakAi1q .mbr-section-btn {
  color: #767676;
}
@media (max-width: 992px) {
  .cid-ttSFakAi1q img {
    width: 100%;
  }
  .cid-ttSFakAi1q .pb-5 {
    padding-bottom: 1rem !important;
  }
}
.cid-tFWAE9iYqN.popup-builder {
  background-color: #ffffff;
}
.cid-tFWAE9iYqN.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tFWAE9iYqN.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tFWAE9iYqN .modal-content,
.cid-tFWAE9iYqN .modal-dialog {
  height: auto;
}
.cid-tFWAE9iYqN .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tFWAE9iYqN .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tFWAE9iYqN .form-wrapper .mbr-form .form-group,
  .cid-tFWAE9iYqN .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tFWAE9iYqN .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tFWAE9iYqN .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tFWAE9iYqN .mbr-text {
  text-align: center;
}
.cid-tFWAE9iYqN .pt-0 {
  padding-top: 0 !important;
}
.cid-tFWAE9iYqN .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tFWAE9iYqN .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tFWAE9iYqN .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tFWAE9iYqN .modal-open {
  overflow: hidden;
}
.cid-tFWAE9iYqN .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tFWAE9iYqN .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tFWAE9iYqN .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tFWAE9iYqN .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tFWAE9iYqN .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tFWAE9iYqN .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tFWAE9iYqN .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tFWAE9iYqN .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tFWAE9iYqN .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tFWAE9iYqN .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tFWAE9iYqN .modal-backdrop.fade {
  opacity: 0;
}
.cid-tFWAE9iYqN .modal-backdrop.show {
  opacity: .5;
}
.cid-tFWAE9iYqN .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tFWAE9iYqN .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tFWAE9iYqN .modal-header {
    padding: 1rem;
  }
}
.cid-tFWAE9iYqN .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tFWAE9iYqN .modal-header .close svg {
  fill: #353535;
}
.cid-tFWAE9iYqN .modal-header .close:hover {
  opacity: 1;
}
.cid-tFWAE9iYqN .modal-header .close:focus {
  outline: none;
}
.cid-tFWAE9iYqN .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tFWAE9iYqN .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tFWAE9iYqN .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tFWAE9iYqN .modal-body {
    padding: 1rem;
  }
}
.cid-tFWAE9iYqN .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tFWAE9iYqN .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tFWAE9iYqN .modal-footer {
    padding: 1rem;
  }
}
.cid-tFWAE9iYqN .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tFWAE9iYqN .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tFWAE9iYqN .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tFWAE9iYqN .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tFWAE9iYqN .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tFWAE9iYqN .modal-lg,
  .cid-tFWAE9iYqN .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tFWAE9iYqN .modal-xl {
    max-width: 1140px;
  }
}
.cid-tFWAE9iYqN .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tFWAE9iYqN .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tFWAE9iYqN .form-group {
  margin-bottom: 1rem;
}
.cid-tFWAE9iYqN .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tFWAE9iYqN .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tFWAE9iYqN .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tFWAE9iYqN .mbr-section-btn {
  margin: 0;
}
.cid-tFWAE9iYqN .mbr-section-btn .btn {
  margin: 0;
}
.cid-tOU2N2psxK {
  padding-top: 5rem;
  padding-bottom: 7rem;
  overflow: hidden;
  background-image: url("");
}
.cid-tOU2N2psxK .mbr-overlay {
  background: #011539;
  opacity: 0.3;
}
.cid-tOU2N2psxK .item:focus,
.cid-tOU2N2psxK span:focus {
  outline: none;
}
.cid-tOU2N2psxK .item-wrapper {
  position: relative;
  padding: 50px;
  background-color: #012B3A;
}
.cid-tOU2N2psxK .slide-content {
  position: relative;
  border-radius: 4px;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tOU2N2psxK .mbr-section-btn {
  margin-top: auto !important;
  margin-left: 0;
  margin-right: 0;
  width: auto;
  display: inline-block;
}
.cid-tOU2N2psxK .mbr-section-title {
  color: #14142b;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 5.2px;
}
.cid-tOU2N2psxK .mbr-text,
.cid-tOU2N2psxK .mbr-section-btn {
  text-align: left;
}
.cid-tOU2N2psxK .item-title {
  text-align: left;
}
.cid-tOU2N2psxK .item-subtitle {
  text-align: left;
}
.cid-tOU2N2psxK .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 33%;
  max-width: 596px;
}
@media (max-width: 768px) {
  .cid-tOU2N2psxK .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 900px) {
  .cid-tOU2N2psxK .embla__slide {
    min-width: 60%;
  }
}
@media (max-width: 630px) {
  .cid-tOU2N2psxK .embla__slide {
    min-width: 375px;
  }
}
.cid-tOU2N2psxK .embla__button--next,
.cid-tOU2N2psxK .embla__button--prev {
  display: flex;
}
.cid-tOU2N2psxK .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: 2px solid #ffffff;
  width: 50px;
  height: 50px;
  font-size: 22px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: transparent;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-tOU2N2psxK .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tOU2N2psxK .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tOU2N2psxK .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tOU2N2psxK .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tOU2N2psxK .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tOU2N2psxK .embla {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-tOU2N2psxK .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-tOU2N2psxK .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tOU2N2psxK .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tOU2N2psxK .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tOU2N2psxK .mbr-section-subtitle {
  text-align: center;
  color: #efefef;
}
.cid-tOU2N2psxK .title-block {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  margin: auto;
}
.cid-tOU2N2psxK .card-title {
  color: #4c4c4c;
  text-align: left;
  font-size: 24px;
}
.cid-tOU2N2psxK .card-text {
  color: #ffffff;
  text-align: left;
}
.cid-tOU2N2psxK H3 {
  color: #1d1d1f;
  text-align: center;
}
.cid-tOU2N2psxK .button-align {
  margin-top: 25px;
  text-align: center;
}
.cid-tOU2N2psxK .btn {
  margin-top: 5px;
  padding: 15px 30px !important;
  letter-spacing: 5.2px;
  text-transform: uppercase;
  transition: all .3s !important;
}
.cid-tOU2N2psxK a.btn > span {
  margin-left: 0.5rem;
}
.cid-tOU2N2psxK .card-title,
.cid-tOU2N2psxK .iconfont-wrapper {
  color: #fcef49;
}
.cid-tOU2N2psxK .mbr-section-title,
.cid-tOU2N2psxK .button-align {
  color: #fcef49;
}
.cid-tOU2N2psxK a.btn:hover {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
@media (max-width: 576px) {
  .cid-tOU2N2psxK .embla__slide {
    min-width: 100%;
  }
}
.cid-tAFfr344vK {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #efefef;
}
.cid-tAFfr344vK .price-term {
  vertical-align: top;
}
.cid-tAFfr344vK h4 {
  margin: 0;
}
.cid-tAFfr344vK .card1 {
  background: #cccccc;
}
.cid-tAFfr344vK .card2 {
  background: #767676;
}
.cid-tAFfr344vK .icon {
  font-size: 4rem;
  color: #181818;
  display: inline-block;
}
@media (min-width: 767px) {
  .cid-tAFfr344vK .center-card {
    transform: scale(1.1);
    padding: 0;
    z-index: 10;
    background: #767676;
    border-radius: 30px;
  }
}
.cid-tAFfr344vK .plan-item {
  flex-direction: row-reverse;
  padding: 0 2rem;
}
.cid-tAFfr344vK .plan-item .mbr-iconfont {
  margin-left: 2rem;
  font-size: 18px;
  position: relative;
  top: 8px;
}
.cid-tAFfr344vK .plan-item p {
  margin: 0;
  padding: 6px 0;
  font-weight: 500;
  width: 100%;
}
.cid-tAFfr344vK .plan-body .mbr-section-btn {
  padding: 44px 0 0;
}
.cid-tAFfr344vK .plan-body .mbr-section-btn .btn {
  margin-bottom: 14px;
}
.cid-tAFfr344vK .plan-header {
  padding: 3rem 3rem 0rem 3rem;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.cid-tAFfr344vK .plan-body {
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 1rem 1rem;
}
.cid-tAFfr344vK .plan-price {
  padding: 2rem 2rem;
}
.cid-tAFfr344vK .month {
  letter-spacing: 2px;
}
.cid-tAFfr344vK .plan {
  word-break: break-word;
  position: relative;
  max-width: 400px;
  margin-bottom: 1rem;
}
.cid-tAFfr344vK .row {
  justify-content: center;
}
.cid-tAFfr344vK .price-value,
.cid-tAFfr344vK .price-value2 {
  vertical-align: top;
}
@media (max-width: 992px) {
  .cid-tAFfr344vK .plan {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tAFfr344vK .plan-price {
    padding: 2rem 1rem;
  }
  .cid-tAFfr344vK .plan-body {
    padding: 0;
  }
  .cid-tAFfr344vK .plan-header {
    padding: 2rem 1rem;
  }
  .cid-tAFfr344vK .plan-item {
    padding: 0 1rem;
  }
}
.cid-tAFfr344vK .plan-title {
  color: #343434;
}
.cid-tAFfr344vK .plan-title2 {
  color: #ffffff;
}
.cid-tAFfr344vK .month2,
.cid-tAFfr344vK .plan-header {
  color: #ffffff;
}
.cid-tAFfr344vK .item2 {
  color: #ffffff;
}
.cid-tAFfr344vK .price-figure2 {
  color: #ffffff;
}
.cid-tAFfr344vK .price-value2 {
  color: #ffffff;
}
.cid-tAFfr344vK .price-figure2,
.cid-tAFfr344vK .plan-price {
  color: #0f7699;
}
.cid-tyGUxSdAPu {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #c1c1c1;
}
.cid-tyGUxSdAPu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tyGUxSdAPu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tyGUxSdAPu .box {
  margin-bottom: 15px;
}
.cid-tyGUxSdAPu .mbr-media {
  position: relative;
  display: flex;
  max-height: 800px;
}
.cid-tyGUxSdAPu .mbr-media img {
  width: 100%;
  border: 4px solid #2a2034;
  object-fit: cover;
  border-radius: 2rem;
}
.cid-tyGUxSdAPu .mbr-media .mbr-iconfont {
  font-size: 80px;
}
@media (max-width: 767px) {
  .cid-tyGUxSdAPu .mbr-media .mbr-iconfont {
    font-size: 40px;
  }
}
.cid-tyGUxSdAPu .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tyGUxSdAPu .icon-wrap span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background-color: transparent;
  transition: .5s all !important;
  transform: scale(1);
  background-color: #343434;
}
@media (max-width: 767px) {
  .cid-tyGUxSdAPu .icon-wrap span {
    min-width: 6em;
    min-height: 6em;
    padding: 1.5em;
  }
}
.cid-tyGUxSdAPu .icon-wrap span:hover {
  transform: scale(1.1);
  background-image: none !important;
}
.cid-tyGUxSdAPu .mbr-media span {
  font-size: 3rem !important;
  transition: all 0.5s;
  color: #ffffff;
}
.cid-tyGUxSdAPu .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tyGUxSdAPu .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tyGUxSdAPu .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tyGUxSdAPu .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tyGUxSdAPu .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tyGUxSdAPu .item-img {
  overflow: hidden;
}
.cid-tyGUxSdAPu .item-img img {
  width: 100%;
}
.cid-tyGUxSdAPu .item-text-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 3rem;
}
.cid-tyGUxSdAPu .title-text {
  color: #343434;
  margin-bottom: 0;
  width: 100%;
}
.cid-tyGUxSdAPu .mbr-text {
  color: #dfcefd;
  margin-top: 2rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-ttSFj22Inj {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
@media (max-width: 992px) {
  .cid-ttSFj22Inj {
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .cid-ttSFj22Inj .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-ttSFj22Inj .link {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 2rem;
  cursor: pointer;
}
.cid-ttSFj22Inj .link:before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  right: 0rem;
  transition: all 0.3s;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: currentColor;
}
.cid-ttSFj22Inj .link:hover:before {
  margin-right: -0.4rem;
}
.cid-ttSFj22Inj .box {
  background-size: cover;
  background-position: center;
  height: 500px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cid-ttSFj22Inj .box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: #767676;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.cid-ttSFj22Inj .bg1 {
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-ttSFj22Inj .icon-wrap {
  border: 2px solid #ffffff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}
.cid-ttSFj22Inj .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-ttSFj22Inj .icon-wrap span {
  padding-left: 8px;
}
.cid-ttSFj22Inj .mbr-media span {
  font-size: 38px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-ttSFj22Inj .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-ttSFj22Inj .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-ttSFj22Inj .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-ttSFj22Inj .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-ttSFj22Inj a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-ttSFj22Inj a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-ttSFj22Inj {
    padding-top: 14px;
    padding-bottom: 21px;
  }
  .cid-ttSFj22Inj .box {
    height: 250px;
  }
}
.cid-ttSFj22Inj H4 {
  color: #0f7699;
}
.cid-rArXGEBt9s {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rArXGEBt9s .mbr-text {
  color: #343434;
}
.cid-rArXGEBt9s .container {
  max-width: 1000px;
}
.cid-rArXGEBt9s h4 {
  text-align: center;
}
.cid-rArXGEBt9s p {
  text-align: center;
}
.cid-rArXGEBt9s .row {
  justify-content: center;
}
.cid-rArXGEBt9s .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rArXGEBt9s .mbr-iconfont {
  font-size: 1.5rem;
  color: #b69b74;
  display: block;
}
.cid-rArXGEBt9s .card-title,
.cid-rArXGEBt9s .card-img {
  color: #149dcc;
}
.cid-rArXGEBt9s .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-rArXGEBt9s .icon-wrap:before {
  content: '';
  position: absolute;
  background: #b69b74;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-rArXGEBt9s img {
  margin-bottom: 5rem;
}
.cid-tB8rn8bM6m {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-tB8rn8bM6m .media-container-row .mbr-text {
  color: #6cceed;
}
.cid-tPFgnmTFGr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-tPFgnmTFGr p {
  text-align: center;
}
.cid-tPFgnmTFGr .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-tPFgnmTFGr .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tPFgnmTFGr .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #6cceed;
}
.cid-tPFgnmTFGr .logo-footer {
  line-height: normal;
}
.cid-tPFgnmTFGr .copyright .list-inline {
  margin-bottom: 0;
}
.cid-tPFgnmTFGr .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-tPFgnmTFGr .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-tPFgnmTFGr li {
  overflow: hidden;
}
.cid-tPFgnmTFGr .icon-transition span {
  display: block;
}
.cid-tPFgnmTFGr .icon-transition:hover span {
  animation: 0.3s linear top;
}
.cid-tPFgnmTFGr .list-inline-item a {
  display: block;
}
.cid-tPFgnmTFGr .list-inline-item:hover a {
  animation: 0.3s linear top;
}
@keyframes top {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-100%);
  }
  51% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tPFgnmTFGr .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPFgnmTFGr .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-tPFgnmTFGr .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-tPFgnmTFGr .social-media {
  display: flex;
  justify-content: flex-end;
}
.cid-tPFgnmTFGr .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tPFgnmTFGr .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-tPFgnmTFGr .logo-footer {
    text-align: center;
  }
  .cid-tPFgnmTFGr .social-media {
    justify-content: center;
  }
}
.cid-tAFi13qghs {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-tAFi13qghs .carousel {
  min-height: 600px;
}
.cid-tAFi13qghs .carousel img {
  max-height: 600px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-tAFi13qghs .carousel {
    min-height: 300px;
  }
  .cid-tAFi13qghs .carousel img {
    max-height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-tAFi13qghs .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tAFi13qghs .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tAFi13qghs .slide {
  height: 100%;
}
.cid-tAFi13qghs .carousel,
.cid-tAFi13qghs .carousel-inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.cid-tAFi13qghs .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tAFi13qghs .carousel-caption {
  bottom: 0px;
}
.cid-tAFi13qghs .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tAFi13qghs .mobi-mbri-arrow-next {
  margin-left: 5px;
  color: black;
  font-size: 1rem;
}
.cid-tAFi13qghs .mobi-mbri-arrow-prev {
  margin-right: 5px;
  color: black;
  font-size: 1rem;
}
.cid-tAFi13qghs .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tAFi13qghs .carousel-item {
  height: 100%;
}
.cid-tAFi13qghs .carousel-control {
  bottom: -50px;
  top: auto;
  width: 35px;
  height: 35px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 1px solid black;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1;
}
.cid-tAFi13qghs .carousel-control.carousel-control-prev {
  right: 50px;
  left: auto;
}
.cid-tAFi13qghs .carousel-control.carousel-control-next {
  right: 0;
}
.cid-tAFi13qghs .carousel-control:hover {
  background: white;
}
.cid-ttSQ907sZg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ttSQ907sZg .mbr-text {
  color: #767676;
}
.cid-ttSQ907sZg h4 {
  text-align: center;
}
.cid-ttSQ907sZg p {
  text-align: center;
}
.cid-ttSQ907sZg .card-img span {
  font-size: 96px;
  color: #f7f4f0;
}
.cid-ttSN5OJ41o {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #efefef;
}
.cid-ttSN5OJ41o .carousel {
  width: 100%;
}
.cid-ttSN5OJ41o .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-ttSN5OJ41o .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-ttSN5OJ41o .mbr-overlay {
  z-index: 1;
}
.cid-ttSN5OJ41o .carousel-caption {
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 280px;
}
@media (min-width: 768px) {
  .cid-ttSN5OJ41o .carousel-caption {
    width: 680px;
  }
}
@media (min-width: 992px) {
  .cid-ttSN5OJ41o .carousel-caption {
    width: 900px;
  }
}
.cid-ttSN5OJ41o .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-ttSN5OJ41o .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-ttSN5OJ41o .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 0;
}
.cid-ttSN5OJ41o .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ttSN5OJ41o .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ttSN5OJ41o .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ttSN5OJ41o .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ttSN5OJ41o .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 0;
}
.cid-ttSN5OJ41o .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ttSN5OJ41o .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ttSN5OJ41o .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ttSN5OJ41o .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-ttSN5OJ41o .carousel-indicators li {
  max-width: 7px;
  height: 7px;
  width: 7px;
  max-height: 7px;
  margin: 0 10px;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1 !important;
}
.cid-ttSN5OJ41o .carousel-indicators li.active {
  background-color: #ffffff;
  opacity: 1 !important;
}
.cid-ttSN5OJ41o .carousel-indicators li::after,
.cid-ttSN5OJ41o .carousel-indicators li::before {
  content: none;
}
.cid-ttSN5OJ41o .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-tpCGJ1zEIW .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 100px;
}
.cid-tpCGJ1zEIW .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tpCGJ1zEIW a {
  font-style: normal;
}
.cid-tpCGJ1zEIW a .link:hover {
  color: inherit!important;
}
.cid-tpCGJ1zEIW .dropdown-item:active {
  background: #ffffff;
}
.cid-tpCGJ1zEIW .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tpCGJ1zEIW .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0 !important;
  margin: 0.5rem 1.4rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tpCGJ1zEIW .nav-item:focus,
.cid-tpCGJ1zEIW .nav-link:focus {
  outline: none;
}
.cid-tpCGJ1zEIW .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tpCGJ1zEIW .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tpCGJ1zEIW .menu-logo {
  margin-right: auto;
}
.cid-tpCGJ1zEIW .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tpCGJ1zEIW .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tpCGJ1zEIW .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tpCGJ1zEIW .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tpCGJ1zEIW .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tpCGJ1zEIW .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tpCGJ1zEIW .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tpCGJ1zEIW .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tpCGJ1zEIW .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tpCGJ1zEIW .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tpCGJ1zEIW .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tpCGJ1zEIW .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tpCGJ1zEIW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tpCGJ1zEIW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tpCGJ1zEIW .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tpCGJ1zEIW .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tpCGJ1zEIW .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%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tpCGJ1zEIW .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tpCGJ1zEIW .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tpCGJ1zEIW .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tpCGJ1zEIW .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tpCGJ1zEIW .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tpCGJ1zEIW .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tpCGJ1zEIW button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.8rem;
  right: 1rem;
}
.cid-tpCGJ1zEIW button.navbar-toggler:focus {
  outline: none;
}
.cid-tpCGJ1zEIW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f9f295;
}
.cid-tpCGJ1zEIW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tpCGJ1zEIW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tpCGJ1zEIW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tpCGJ1zEIW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tpCGJ1zEIW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tpCGJ1zEIW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tpCGJ1zEIW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tpCGJ1zEIW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tpCGJ1zEIW .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tpCGJ1zEIW .collapsed .btn {
  display: -webkit-flex;
}
.cid-tpCGJ1zEIW .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tpCGJ1zEIW .collapsed .navbar-collapse.collapsing,
.cid-tpCGJ1zEIW .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tpCGJ1zEIW .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tpCGJ1zEIW .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tpCGJ1zEIW .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tpCGJ1zEIW .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tpCGJ1zEIW .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tpCGJ1zEIW .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tpCGJ1zEIW .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tpCGJ1zEIW .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tpCGJ1zEIW .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tpCGJ1zEIW .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-tpCGJ1zEIW .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-tpCGJ1zEIW .collapsed button.navbar-toggler {
  display: block;
}
.cid-tpCGJ1zEIW .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tpCGJ1zEIW .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tpCGJ1zEIW .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tpCGJ1zEIW .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tpCGJ1zEIW .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tpCGJ1zEIW .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;
}
@media (max-width: 1023px) {
  .cid-tpCGJ1zEIW .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tpCGJ1zEIW img {
    height: 3.8rem !important;
  }
  .cid-tpCGJ1zEIW .btn {
    display: -webkit-flex;
  }
  .cid-tpCGJ1zEIW button.navbar-toggler {
    display: block;
  }
  .cid-tpCGJ1zEIW .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tpCGJ1zEIW .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tpCGJ1zEIW .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tpCGJ1zEIW .navbar-collapse.collapsing,
  .cid-tpCGJ1zEIW .navbar-collapse.show {
    display: block !important;
  }
  .cid-tpCGJ1zEIW .navbar-collapse.collapsing .navbar-nav,
  .cid-tpCGJ1zEIW .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tpCGJ1zEIW .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tpCGJ1zEIW .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tpCGJ1zEIW .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tpCGJ1zEIW .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tpCGJ1zEIW .navbar-collapse.collapsing .navbar-buttons,
  .cid-tpCGJ1zEIW .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tpCGJ1zEIW .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tpCGJ1zEIW .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tpCGJ1zEIW .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tpCGJ1zEIW .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tpCGJ1zEIW .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tpCGJ1zEIW .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;
  }
}
@media (min-width: 767px) {
  .cid-tpCGJ1zEIW .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tpCGJ1zEIW .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tpCGJ1zEIW .nav-link,
.cid-tpCGJ1zEIW .dropdown-item {
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
.cid-tpCGJ1zEIW .nav-link:hover,
.cid-tpCGJ1zEIW .dropdown-item:hover {
  color: #149dcc !important;
  border-color: #f7f4f0;
}
.cid-tpCHkrXlNk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-tpCHkrXlNk img {
  width: 90%;
}
.cid-tpCHkrXlNk .mbr-text,
.cid-tpCHkrXlNk .mbr-section-btn {
  color: #767676;
}
@media (max-width: 992px) {
  .cid-tpCHkrXlNk img {
    width: 100%;
  }
  .cid-tpCHkrXlNk .pb-5 {
    padding-bottom: 1rem !important;
  }
}
.cid-ttSMXTyS0E {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #efefef;
}
.cid-ttSMXTyS0E .carousel {
  min-height: 600px;
}
.cid-ttSMXTyS0E .carousel img {
  max-height: 600px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-ttSMXTyS0E .carousel {
    min-height: 300px;
  }
  .cid-ttSMXTyS0E .carousel img {
    max-height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-ttSMXTyS0E .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-ttSMXTyS0E .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-ttSMXTyS0E .slide {
  height: 100%;
}
.cid-ttSMXTyS0E .carousel,
.cid-ttSMXTyS0E .carousel-inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.cid-ttSMXTyS0E .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-ttSMXTyS0E .carousel-caption {
  bottom: 0px;
}
.cid-ttSMXTyS0E .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-ttSMXTyS0E .mobi-mbri-arrow-next {
  margin-left: 5px;
  color: black;
  font-size: 1rem;
}
.cid-ttSMXTyS0E .mobi-mbri-arrow-prev {
  margin-right: 5px;
  color: black;
  font-size: 1rem;
}
.cid-ttSMXTyS0E .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ttSMXTyS0E .carousel-item {
  height: 100%;
}
.cid-ttSMXTyS0E .carousel-control {
  bottom: -50px;
  top: auto;
  width: 35px;
  height: 35px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 1px solid black;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1;
}
.cid-ttSMXTyS0E .carousel-control.carousel-control-prev {
  right: 50px;
  left: auto;
}
.cid-ttSMXTyS0E .carousel-control.carousel-control-next {
  right: 0;
}
.cid-ttSMXTyS0E .carousel-control:hover {
  background: white;
}
.cid-tpCHlBFNRa {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tpCHlBFNRa img {
  width: 90%;
}
@media (max-width: 992px) {
  .cid-tpCHlBFNRa img {
    width: 100%;
  }
  .cid-tpCHlBFNRa .pb-5 {
    padding-bottom: 1rem !important;
  }
}
.cid-tpCHlBFNRa ul {
  padding-left: 2rem;
  margin-bottom: 0;
}
.cid-tpCHlBFNRa ul li {
  margin-bottom: 0.4rem;
  list-style: none;
  position: relative;
}
.cid-tpCHlBFNRa ul li:before {
  position: absolute;
  left: -2.6rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 10px 14px;
  line-height: 20px;
  transition: all 0.2s;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b69b74;
}
.cid-tAFn5lCbFC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-tAFn5lCbFC .media-container-row .mbr-text {
  color: #6cceed;
}
.cid-tB8sWUlUnr {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-tB8sWUlUnr .card-title {
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
.cid-tB8sWUlUnr .card {
  margin-bottom: 2rem;
  owerflow: hidden;
  max-height: 250px;
}
.cid-tB8sWUlUnr .card:hover .card-img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-tB8sWUlUnr .card:hover .card-wrapper:before {
  opacity: 0.8;
  background: #343434;
}
.cid-tB8sWUlUnr .card-wrapper {
  overflow: hidden;
  position: relative;
}
.cid-tB8sWUlUnr .card-wrapper:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: #232323;
  opacity: 0.4;
  z-index: 10;
  pointer-events: none;
}
.cid-tB8sWUlUnr .big {
  margin-top: -25%;
}
.cid-tB8sWUlUnr .card-img {
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}
.cid-tB8sWUlUnr .card-box {
  position: absolute;
  overflow: hidden;
  height: fit-content;
  margin: auto;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tB8sWUlUnr .mbr-section-title {
  color: #656565;
  text-align: center;
}
.cid-tB8sWUlUnr .card-sub-title {
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tB8sWUlUnr .small {
    margin-top: -25%;
  }
}
.cid-tB8sWUlUnr .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-tB8t3u9x7H {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-tB8t3u9x7H .row {
  padding: 0 1rem;
  justify-content: center;
}
.cid-tB8t3u9x7H .title {
  max-width: 800px;
  margin: auto;
}
.cid-tB8t3u9x7H .mbr-testimonial {
  padding: 0;
}
.cid-tB8t3u9x7H .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-tB8t3u9x7H .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  margin-bottom: 1.6rem;
  overflow: hidden;
}
.cid-tB8t3u9x7H .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  height: 380px;
  object-fit: cover;
  min-height: 100%;
}
.cid-tB8t3u9x7H .mbr-testimonial p {
  padding: 0 1rem;
}
.cid-tB8t3u9x7H .mbr-testimonial .card-footer {
  margin-bottom: 2.2rem;
  border-top: 0;
  padding: 1rem 1rem 3rem 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
  position: relative;
}
.cid-tB8t3u9x7H .mbr-testimonial .card-footer:before {
  content: '';
  position: absolute;
  background: #b69b74;
  bottom: -1rem;
  left: 50%;
  width: 2px;
  height: 3rem;
}
@media (max-width: 300px) {
  .cid-tB8t3u9x7H .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-tB8t3u9x7H .mbr-author-desc {
  color: #343434;
}
.cid-tB8t3u9x7H H2 {
  color: #343434;
}
@media (max-width: 992px) {
  .cid-tB8t3u9x7H .md-pb {
    padding-bottom: 2rem !important;
  }
}
.cid-tB8t4eOS10 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #eee8df;
}
.cid-tB8t4eOS10 .mbr-shop {
  display: table;
  width: 100%;
}
.cid-tB8t4eOS10 .mbr-shop .row {
  margin: 0;
  padding: 0;
}
.cid-tB8t4eOS10 .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-tB8t4eOS10 .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-tB8t4eOS10 .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-tB8t4eOS10 .shopItemsModal_wraper {
  left: 0;
}
.cid-tB8t4eOS10 .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-tB8t4eOS10 .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-tB8t4eOS10 .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-tB8t4eOS10 .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  position: relative;
}
.cid-tB8t4eOS10 .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-tB8t4eOS10 .mbr-shop .hide-modal {
  display: none;
}
.cid-tB8t4eOS10 .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-tB8t4eOS10 .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-tB8t4eOS10 .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-tB8t4eOS10 .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-tB8t4eOS10 .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-tB8t4eOS10 .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-tB8t4eOS10 .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-tB8t4eOS10 .mbr-shop .filter-by-pu,
.cid-tB8t4eOS10 .mbr-shop .filter-by-pd,
.cid-tB8t4eOS10 .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-tB8t4eOS10 .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-tB8t4eOS10 .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-tB8t4eOS10 .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-tB8t4eOS10 .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-tB8t4eOS10 .mbr-shop .galleryItem h4,
.cid-tB8t4eOS10 .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-tB8t4eOS10 .mbr-shop .galleryItem h5,
.cid-tB8t4eOS10 .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-tB8t4eOS10 .mbr-shop .galleryItem p,
.cid-tB8t4eOS10 .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-tB8t4eOS10 .mbr-shop .item-button {
  text-align: center;
}
.cid-tB8t4eOS10 .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-tB8t4eOS10 .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-tB8t4eOS10 .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-tB8t4eOS10 .mbr-shop .sidebar-block {
  position: relative;
}
.cid-tB8t4eOS10 .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-tB8t4eOS10 .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-tB8t4eOS10 .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-tB8t4eOS10 .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-tB8t4eOS10 .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-tB8t4eOS10 .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-tB8t4eOS10 .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-tB8t4eOS10 .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-tB8t4eOS10 .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-tB8t4eOS10 .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-tB8t4eOS10 .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-tB8t4eOS10 .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-tB8t4eOS10 .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color 0.3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #cebfaf;
  color: #000000;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-tB8t4eOS10 .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-tB8t4eOS10 .mbr-shop .mbr-gallery-item__hided h4,
.cid-tB8t4eOS10 .mbr-shop .mbr-gallery-item__hided h5,
.cid-tB8t4eOS10 .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-tB8t4eOS10 .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-tB8t4eOS10 .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-tB8t4eOS10 .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-tB8t4eOS10 .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-tB8t4eOS10 .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-tB8t4eOS10 .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-tB8t4eOS10 .mbr-shop .mbr-gallery-filter ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-tB8t4eOS10 .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-tB8t4eOS10 .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-tB8t4eOS10 .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-tB8t4eOS10 .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-tB8t4eOS10 .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-tB8t4eOS10 .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-tB8t4eOS10 .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-tB8t4eOS10 .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-tB8t4eOS10 .mbr-shop .range-controls {
  position: relative;
}
.cid-tB8t4eOS10 .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-tB8t4eOS10 .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-tB8t4eOS10 .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-tB8t4eOS10 .mbr-shop .toggle:hover,
.cid-tB8t4eOS10 .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-tB8t4eOS10 .mbr-shop .min-toggle {
  left: 0;
}
.cid-tB8t4eOS10 .mbr-shop .max-toggle {
  right: 0;
}
.cid-tB8t4eOS10 .mbr-shop .hided-by-price {
  display: none;
}
.cid-tB8t4eOS10 .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-tB8t4eOS10 .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-tB8t4eOS10 .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-tB8t4eOS10 .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-tB8t4eOS10 .mbr-shop .text-modal .price-block span {
  display: inline-block;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-tB8t4eOS10 .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-tB8t4eOS10 .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-tB8t4eOS10 .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-tB8t4eOS10 .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-tB8t4eOS10 .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-tB8t4eOS10 .mbr-shop .close-modal-wrapper:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-tB8t4eOS10 .mbr-shop .close-modal-wrapper:before {
  content: '';
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-tB8t4eOS10 .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-tB8t4eOS10 .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-tB8t4eOS10 .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-tB8t4eOS10 .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-tB8t4eOS10 .mbr-shop .shop-items .onsale,
.cid-tB8t4eOS10 .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-tB8t4eOS10 .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-tB8t4eOS10 .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-tB8t4eOS10 .mbr-shop .price-range {
  display: inline-block;
}
.cid-tB8t4eOS10 .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-tB8t4eOS10 .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-tB8t4eOS10 .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-tB8t4eOS10 .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-tB8t4eOS10 .mbr-shop .categories:after {
  content: '';
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-tB8t4eOS10 .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-tB8t4eOS10 .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-tB8t4eOS10 .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-tB8t4eOS10 .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-tB8t4eOS10 .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-tB8t4eOS10 .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-tB8t4eOS10 .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-tB8t4eOS10 .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-tB8t4eOS10 .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-tB8t4eOS10 .clearfix:after {
    content: '';
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tB8t4eOS10 .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-tB8t4eOS10 .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-tB8t4eOS10 .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-tB8t4eOS10 .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-tB8t4eOS10 .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
  .cid-tB8t4eOS10 .wrapper-shop-items {
    order: 1;
  }
  .cid-tB8t4eOS10 .mbr-shop .sidebar {
    margin-bottom: 30px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .cid-tB8t4eOS10 .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-tB8t4eOS10 .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-tB8t4eOS10 .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-tB8t4eOS10 .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-tB8t4eOS10 .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-tB8t4eOS10 .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-tB8t4eOS10 .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-tB8t4eOS10 .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-tB8t4eOS10 .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-tB8t4eOS10 .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-tB8t4eOS10 .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-tB8t4eOS10 .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-tB8t4eOS10 .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-tB8t4eOS10 .oldprice {
  color: #767676;
  padding-left: 0.8rem;
  text-decoration: line-through;
}
.cid-tB8t4eOS10 .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  text-align: left;
}
.cid-tB8t4eOS10 .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  padding-bottom: 0.5rem;
}
.cid-tB8t4eOS10 .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: left;
}
.cid-tB8t4eOS10 .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: left;
}
.cid-tB8t4eOS10 .range-controls {
  display: block !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tB8t4eOS10 .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-tB8t4eOS10 .mbr-gallery-item > div {
  background: transparent !important;
}
.cid-tB8t5hJvxL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f1eeea;
}
.cid-tB8t5hJvxL img {
  width: 90%;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tB8t5hJvxL img {
    width: 100%;
  }
  .cid-tB8t5hJvxL .pb-5 {
    padding-bottom: 1rem !important;
  }
}
.cid-tB8t5hJvxL ol {
  padding: 0;
  margin: 0;
}
.cid-tB8t5hJvxL li {
  padding-bottom: 1rem;
  line-height: 1.4;
}
.cid-tB8t5hJvxL .counter-container2 ol {
  counter-reset: start 4;
}
.cid-tB8t5hJvxL .counter-container2 li {
  display: block;
}
.cid-tB8t5hJvxL .counter-container2 li:before {
  content: counter(start) '. ';
  counter-increment: start;
}
.cid-tB8t5hJvxL .counter-container1 ol {
  counter-reset: start 0;
}
.cid-tB8t5hJvxL .counter-container1 li {
  display: block;
}
.cid-tB8t5hJvxL .counter-container1 li:before {
  content: counter(start) '. ';
  counter-increment: start;
}
.cid-tB8t5hJvxL li:before {
  color: #f7f4f0;
}
.cid-tB8t5mSBUD {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f1eeea;
}
.cid-tB8t5mSBUD img {
  width: 90%;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tB8t5mSBUD img {
    width: 100%;
  }
  .cid-tB8t5mSBUD .pb-5 {
    padding-bottom: 1rem !important;
  }
}
.cid-tB8t5mSBUD ol {
  padding: 0;
  margin: 0;
}
.cid-tB8t5mSBUD li {
  padding-bottom: 1rem;
  line-height: 1.4;
}
.cid-tB8t5mSBUD .counter-container2 ol {
  counter-reset: start 4;
}
.cid-tB8t5mSBUD .counter-container2 li {
  display: block;
}
.cid-tB8t5mSBUD .counter-container2 li:before {
  content: counter(start) '. ';
  counter-increment: start;
}
.cid-tB8t5mSBUD .counter-container1 ol {
  counter-reset: start 0;
}
.cid-tB8t5mSBUD .counter-container1 li {
  display: block;
}
.cid-tB8t5mSBUD .counter-container1 li:before {
  content: counter(start) '. ';
  counter-increment: start;
}
.cid-tB8t5mSBUD li:before {
  color: #f7f4f0;
}
.cid-tB8taoH9Lk {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tB8taNXpRI {
  padding-top: 90px;
  padding-bottom: 135px;
  background-color: #f1eeea;
}
.cid-tB8taNXpRI .container-fluid {
  position: relative;
  padding-right: 10.4rem;
  padding-left: 0;
}
.cid-tB8taNXpRI .wrapper {
  position: relative;
}
.cid-tB8taNXpRI .img1 {
  width: 100%;
  padding-right: 6rem;
  object-fit: cover;
  height: 800px;
}
.cid-tB8taNXpRI .mbr-iconfont {
  font-size: 1.8rem;
  color: #232323;
}
.cid-tB8taNXpRI .mbr-iconfont:hover {
  cursor: pointer;
}
.cid-tB8taNXpRI .icon1 {
  position: absolute;
  top: 2rem;
  right: 0rem;
}
.cid-tB8taNXpRI .icon2 {
  position: absolute;
  top: 5rem;
  right: 0rem;
}
.cid-tB8taNXpRI .img2 {
  position: absolute;
  bottom: -4.6rem;
  right: 0;
  width: 400px;
  box-shadow: 2.5px 4.3px 62px 0 rgba(0, 0, 0, 0.22);
}
.cid-tB8taNXpRI .title {
  position: absolute;
  right: 0rem;
  transform: rotate(90deg);
  transform-origin: top right;
  top: 26rem;
  padding: 0;
}
.cid-tB8taNXpRI .title:before {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: -8.6rem;
  width: 100px;
  height: 2px;
}
@media (max-width: 1400px) {
  .cid-tB8taNXpRI .img2 {
    width: 400px;
  }
  .cid-tB8taNXpRI .container-fluid {
    padding-right: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tB8taNXpRI .img2 {
    width: 400px;
  }
  .cid-tB8taNXpRI .img1 {
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tB8taNXpRI .img1 {
    height: 600px;
    padding-right: 3rem;
  }
  .cid-tB8taNXpRI .img2 {
    width: 200px;
  }
  .cid-tB8taNXpRI .container-fluid {
    padding-right: 1rem;
  }
}
.cid-tB8tbzvjLk {
  padding-top: 60px;
  padding-bottom: 135px;
  background-color: #f1eeea;
}
.cid-tB8tbzvjLk .container-fluid {
  position: relative;
  padding-right: 10.4rem;
}
.cid-tB8tbzvjLk .wrapper {
  position: relative;
}
.cid-tB8tbzvjLk .content {
  padding-left: 6rem;
  padding-right: 2rem;
}
.cid-tB8tbzvjLk .img1 {
  width: 100%;
  padding-right: 6rem;
  object-fit: cover;
  height: 800px;
}
.cid-tB8tbzvjLk .mbr-iconfont {
  font-size: 1.8rem;
  color: #232323;
}
.cid-tB8tbzvjLk .mbr-iconfont:hover {
  cursor: pointer;
}
.cid-tB8tbzvjLk .icon1 {
  position: absolute;
  top: 2rem;
  right: 0rem;
}
.cid-tB8tbzvjLk .icon2 {
  position: absolute;
  top: 5rem;
  right: 0rem;
}
.cid-tB8tbzvjLk .img2 {
  position: absolute;
  bottom: -4.6rem;
  right: 0;
  width: 400px;
  box-shadow: 2.5px 4.3px 62px 0 rgba(0, 0, 0, 0.22);
}
.cid-tB8tbzvjLk .title {
  position: absolute;
  right: 0rem;
  transform: rotate(90deg);
  transform-origin: top right;
  top: 26rem;
  padding: 0;
}
.cid-tB8tbzvjLk .title:before {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: -8.6rem;
  width: 100px;
  height: 2px;
}
@media (max-width: 1400px) {
  .cid-tB8tbzvjLk .img2 {
    width: 400px;
  }
  .cid-tB8tbzvjLk .container-fluid {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-tB8tbzvjLk .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-tB8tbzvjLk .img2 {
    width: 400px;
  }
  .cid-tB8tbzvjLk .img1 {
    padding-right: 4rem;
  }
  .cid-tB8tbzvjLk .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tB8tbzvjLk .img1 {
    height: 600px;
    padding-right: 3rem;
  }
  .cid-tB8tbzvjLk .img2 {
    width: 200px;
  }
  .cid-tB8tbzvjLk .container-fluid {
    padding: 0 1rem;
  }
  .cid-tB8tbzvjLk .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-tAFlkGy2cX {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tAFlkGy2cX .mbr-text {
  color: #211c1c;
}
.cid-tAFlkGy2cX .container {
  max-width: 1000px;
}
.cid-tAFlkGy2cX h4 {
  text-align: center;
}
.cid-tAFlkGy2cX p {
  text-align: center;
}
.cid-tAFlkGy2cX .row {
  justify-content: center;
}
.cid-tAFlkGy2cX .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-tAFlkGy2cX .mbr-iconfont {
  font-size: 1.5rem;
  color: #cccccc;
  display: block;
}
.cid-tAFlkGy2cX .card-title,
.cid-tAFlkGy2cX .card-img {
  color: #343434;
}
.cid-tAFlkGy2cX .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-tAFlkGy2cX .icon-wrap:before {
  content: '';
  position: absolute;
  background: #cccccc;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-tAFlkGy2cX img {
  margin-bottom: 5rem;
}
.cid-tpCGJ7qNMR {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tpCGJ7qNMR .mbr-text {
  color: #767676;
}
.cid-tpCGJ7qNMR .container {
  max-width: 1000px;
}
.cid-tpCGJ7qNMR h4 {
  text-align: center;
}
.cid-tpCGJ7qNMR p {
  text-align: center;
}
.cid-tpCGJ7qNMR .row {
  justify-content: center;
}
.cid-tpCGJ7qNMR .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-tpCGJ7qNMR .mbr-iconfont {
  font-size: 1.5rem;
  color: #767676;
  display: block;
}
.cid-tpCGJ7qNMR .card-title,
.cid-tpCGJ7qNMR .card-img {
  color: #0f7699;
}
.cid-tpCGJ7qNMR .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-tpCGJ7qNMR .icon-wrap:before {
  content: '';
  position: absolute;
  background: #767676;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-tpCGJ7qNMR img {
  margin-bottom: 5rem;
}
.cid-tAFtQ7H1KV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-tAFtQ7H1KV .media-container-row .mbr-text {
  color: #6cceed;
}
.cid-tPFgnmTFGr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-tPFgnmTFGr p {
  text-align: center;
}
.cid-tPFgnmTFGr .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-tPFgnmTFGr .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tPFgnmTFGr .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #6cceed;
}
.cid-tPFgnmTFGr .logo-footer {
  line-height: normal;
}
.cid-tPFgnmTFGr .copyright .list-inline {
  margin-bottom: 0;
}
.cid-tPFgnmTFGr .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-tPFgnmTFGr .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-tPFgnmTFGr li {
  overflow: hidden;
}
.cid-tPFgnmTFGr .icon-transition span {
  display: block;
}
.cid-tPFgnmTFGr .icon-transition:hover span {
  animation: 0.3s linear top;
}
.cid-tPFgnmTFGr .list-inline-item a {
  display: block;
}
.cid-tPFgnmTFGr .list-inline-item:hover a {
  animation: 0.3s linear top;
}
@keyframes top {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-100%);
  }
  51% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tPFgnmTFGr .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPFgnmTFGr .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-tPFgnmTFGr .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-tPFgnmTFGr .social-media {
  display: flex;
  justify-content: flex-end;
}
.cid-tPFgnmTFGr .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tPFgnmTFGr .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-tPFgnmTFGr .logo-footer {
    text-align: center;
  }
  .cid-tPFgnmTFGr .social-media {
    justify-content: center;
  }
}
.cid-rArXDGngPj .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 100px;
}
.cid-rArXDGngPj .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rArXDGngPj a {
  font-style: normal;
}
.cid-rArXDGngPj a .link:hover {
  color: inherit!important;
}
.cid-rArXDGngPj .dropdown-item:active {
  background: #ffffff;
}
.cid-rArXDGngPj .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rArXDGngPj .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0 !important;
  margin: 0.5rem 1.4rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rArXDGngPj .nav-item:focus,
.cid-rArXDGngPj .nav-link:focus {
  outline: none;
}
.cid-rArXDGngPj .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rArXDGngPj .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rArXDGngPj .menu-logo {
  margin-right: auto;
}
.cid-rArXDGngPj .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rArXDGngPj .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rArXDGngPj .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rArXDGngPj .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rArXDGngPj .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rArXDGngPj .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rArXDGngPj .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rArXDGngPj .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rArXDGngPj .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rArXDGngPj .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rArXDGngPj .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rArXDGngPj .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rArXDGngPj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rArXDGngPj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rArXDGngPj .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rArXDGngPj .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rArXDGngPj .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%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rArXDGngPj .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rArXDGngPj .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rArXDGngPj .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rArXDGngPj .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rArXDGngPj .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rArXDGngPj .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rArXDGngPj button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.8rem;
  right: 1rem;
}
.cid-rArXDGngPj button.navbar-toggler:focus {
  outline: none;
}
.cid-rArXDGngPj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f9f295;
}
.cid-rArXDGngPj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rArXDGngPj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rArXDGngPj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rArXDGngPj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rArXDGngPj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rArXDGngPj nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rArXDGngPj nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rArXDGngPj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rArXDGngPj .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rArXDGngPj .collapsed .btn {
  display: -webkit-flex;
}
.cid-rArXDGngPj .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rArXDGngPj .collapsed .navbar-collapse.collapsing,
.cid-rArXDGngPj .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rArXDGngPj .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rArXDGngPj .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rArXDGngPj .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rArXDGngPj .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rArXDGngPj .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rArXDGngPj .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rArXDGngPj .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rArXDGngPj .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rArXDGngPj .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rArXDGngPj .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-rArXDGngPj .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-rArXDGngPj .collapsed button.navbar-toggler {
  display: block;
}
.cid-rArXDGngPj .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rArXDGngPj .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rArXDGngPj .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rArXDGngPj .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rArXDGngPj .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rArXDGngPj .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;
}
@media (max-width: 1023px) {
  .cid-rArXDGngPj .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rArXDGngPj img {
    height: 3.8rem !important;
  }
  .cid-rArXDGngPj .btn {
    display: -webkit-flex;
  }
  .cid-rArXDGngPj button.navbar-toggler {
    display: block;
  }
  .cid-rArXDGngPj .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rArXDGngPj .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rArXDGngPj .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rArXDGngPj .navbar-collapse.collapsing,
  .cid-rArXDGngPj .navbar-collapse.show {
    display: block !important;
  }
  .cid-rArXDGngPj .navbar-collapse.collapsing .navbar-nav,
  .cid-rArXDGngPj .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rArXDGngPj .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rArXDGngPj .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rArXDGngPj .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rArXDGngPj .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rArXDGngPj .navbar-collapse.collapsing .navbar-buttons,
  .cid-rArXDGngPj .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rArXDGngPj .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rArXDGngPj .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rArXDGngPj .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rArXDGngPj .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rArXDGngPj .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rArXDGngPj .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;
  }
}
@media (min-width: 767px) {
  .cid-rArXDGngPj .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rArXDGngPj .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rArXDGngPj .nav-link,
.cid-rArXDGngPj .dropdown-item {
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
.cid-rArXDGngPj .nav-link:hover,
.cid-rArXDGngPj .dropdown-item:hover {
  color: #149dcc !important;
  border-color: #f7f4f0;
}
.cid-tB8rn8bM6m {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-tB8rn8bM6m .media-container-row .mbr-text {
  color: #6cceed;
}
.cid-tBv3p8hoZN {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #cccccc;
}
.cid-tBv3p8hoZN .title-container {
  margin-bottom: -40px;
  max-width: 60%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-tBv3p8hoZN .title-container {
    max-width: 80%;
    margin-bottom: 0;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tBv3p8hoZN .title-container {
    margin-bottom: 0;
    padding-bottom: 56px;
  }
}
.cid-tBv3p8hoZN .embla {
  position: relative;
  width: 100%;
  margin-top: 128px;
}
@media (max-width: 991px) {
  .cid-tBv3p8hoZN .embla {
    margin-top: 112px;
  }
}
@media (max-width: 767px) {
  .cid-tBv3p8hoZN .embla {
    margin-top: 0;
    margin-bottom: 96px;
  }
}
@media (max-width: 575px) {
  .cid-tBv3p8hoZN .embla {
    margin-bottom: 80px;
  }
}
.cid-tBv3p8hoZN .mbr-section-title {
  color: #161616;
}
.cid-tBv3p8hoZN .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
}
.cid-tBv3p8hoZN .mbr-text {
  color: #161616;
  text-align: left;
}
.cid-tBv3p8hoZN .item:focus,
.cid-tBv3p8hoZN span:focus {
  outline: none;
}
.cid-tBv3p8hoZN .slide-content {
  position: relative;
  padding: 24px;
  background: #ffffff;
  height: 100%;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  flex-flow: column nowrap;
  border: 2px solid #161616;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tBv3p8hoZN .slide-content {
    padding: 16px;
  }
}
.cid-tBv3p8hoZN .embla__slide {
  display: flex;
  justify-content: center;
  width: 40vw;
  min-width: 40vw;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
@media (max-width: 991px) {
  .cid-tBv3p8hoZN .embla__slide {
    width: 70vw;
    min-width: 70vw;
  }
}
@media (max-width: 767px) {
  .cid-tBv3p8hoZN .embla__slide {
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 768px) {
  .cid-tBv3p8hoZN .embla__slide {
    max-width: initial;
  }
}
.cid-tBv3p8hoZN .item-content {
  margin-top: 24px;
}
.cid-tBv3p8hoZN .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-tBv3p8hoZN .item-img {
  width: 100%;
  height: 412px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-tBv3p8hoZN .item-img {
    height: 324px;
  }
}
.cid-tBv3p8hoZN .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tBv3p8hoZN .label-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .cid-tBv3p8hoZN .label-container {
    flex-wrap: wrap;
  }
}
.cid-tBv3p8hoZN .label-wrap {
  display: flex;
  border-radius: 8px;
  padding: 4px 6px;
  background-color: #d8d5d1;
  max-width: 48%;
  width: max-content;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cid-tBv3p8hoZN .label-wrap {
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-tBv3p8hoZN .label-text {
  color: #161616;
  margin-bottom: 0;
}
.cid-tBv3p8hoZN .position-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tBv3p8hoZN .position-wrap {
    width: 100%;
    margin-bottom: 8px;
  }
}
.cid-tBv3p8hoZN .position-wrap .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.cid-tBv3p8hoZN .position-wrap .mbr-iconfont {
  color: #161616;
  font-size: 1rem;
}
.cid-tBv3p8hoZN .date-text {
  color: #161616;
  margin-bottom: 0;
  max-width: 48%;
  width: max-content;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .cid-tBv3p8hoZN .date-text {
    max-width: 100%;
  }
}
.cid-tBv3p8hoZN .item-title {
  color: #161616;
  text-align: left;
  margin-bottom: 0 !important;
}
.cid-tBv3p8hoZN .mbr-section-btn {
  margin-top: 14px !important;
  display: flex;
  text-align: left;
  flex-wrap: wrap;
}
.cid-tBv3p8hoZN .mbr-section-btn .btn {
  flex-grow: 1;
  min-width: 40%;
}
@media (max-width: 767px) {
  .cid-tBv3p8hoZN .mbr-section-btn {
    width: auto !important;
  }
}
.cid-tBv3p8hoZN .item-subtitle {
  text-align: left;
}
.cid-tBv3p8hoZN .embla__button--next,
.cid-tBv3p8hoZN .embla__button--prev {
  display: flex;
}
.cid-tBv3p8hoZN .embla__button-container {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  position: absolute;
  top: -140px;
  right: 8%;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tBv3p8hoZN .embla__button-container {
    top: -112px;
    right: 50%;
    transform: translateX(50%);
  }
}
@media (max-width: 767px) {
  .cid-tBv3p8hoZN .embla__button-container {
    padding-top: 48px;
    top: 100%;
  }
}
@media (max-width: 575px) {
  .cid-tBv3p8hoZN .embla__button-container {
    padding-top: 32px;
    top: 100%;
  }
}
.cid-tBv3p8hoZN .embla__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 22px;
  background-color: #ffffff;
  color: #161616;
  border: 2px solid #161616;
  border-radius: 8px;
  transition: all 0.3s;
  margin-left: 16px;
}
.cid-tBv3p8hoZN .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tBv3p8hoZN .embla__button:hover {
  background: rgba(0, 0, 0, 0.15);
}
.cid-tBv3p8hoZN .embla__button.embla__button--prev:hover {
  transform: translate(-4px, 0);
}
@media (max-width: 991px) {
  .cid-tBv3p8hoZN .embla__button.embla__button--prev {
    margin-left: 0;
  }
}
.cid-tBv3p8hoZN .embla__button.embla__button--next:hover {
  transform: translate(4px, 0);
}
.cid-tBv3p8hoZN .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tBv3p8hoZN .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tBv3p8hoZN .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tBv3p8hoZN .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tBv3p8hoZN .item-menu-overlay {
  opacity: 0 !important;
}
.cid-tBv4eUnL2J {
  padding-top: 5rem;
  padding-bottom: 7rem;
  overflow: hidden;
  background-image: url("../../../assets/images/mbr-1-1920x1301.jpg");
}
.cid-tBv4eUnL2J .mbr-overlay {
  background: #343434;
  opacity: 0.5;
}
.cid-tBv4eUnL2J .item:focus,
.cid-tBv4eUnL2J span:focus {
  outline: none;
}
.cid-tBv4eUnL2J .item-wrapper {
  position: relative;
  padding: 50px;
  background-color: #012B3A;
}
.cid-tBv4eUnL2J .slide-content {
  position: relative;
  border-radius: 4px;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tBv4eUnL2J .mbr-section-btn {
  margin-top: auto !important;
  margin-left: 0;
  margin-right: 0;
  width: auto;
  display: inline-block;
}
.cid-tBv4eUnL2J .mbr-section-title {
  color: #14142b;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 5.2px;
}
.cid-tBv4eUnL2J .mbr-text,
.cid-tBv4eUnL2J .mbr-section-btn {
  text-align: left;
}
.cid-tBv4eUnL2J .item-title {
  text-align: left;
}
.cid-tBv4eUnL2J .item-subtitle {
  text-align: left;
}
.cid-tBv4eUnL2J .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 33%;
  max-width: 596px;
}
@media (max-width: 768px) {
  .cid-tBv4eUnL2J .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 900px) {
  .cid-tBv4eUnL2J .embla__slide {
    min-width: 60%;
  }
}
@media (max-width: 630px) {
  .cid-tBv4eUnL2J .embla__slide {
    min-width: 375px;
  }
}
.cid-tBv4eUnL2J .embla__button--next,
.cid-tBv4eUnL2J .embla__button--prev {
  display: flex;
}
.cid-tBv4eUnL2J .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: 2px solid #ffffff;
  width: 50px;
  height: 50px;
  font-size: 22px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: transparent;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-tBv4eUnL2J .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tBv4eUnL2J .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tBv4eUnL2J .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tBv4eUnL2J .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tBv4eUnL2J .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tBv4eUnL2J .embla {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-tBv4eUnL2J .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-tBv4eUnL2J .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tBv4eUnL2J .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tBv4eUnL2J .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tBv4eUnL2J .mbr-section-subtitle {
  text-align: center;
  color: #efefef;
}
.cid-tBv4eUnL2J .title-block {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  margin: auto;
}
.cid-tBv4eUnL2J .card-title {
  color: #4c4c4c;
  text-align: left;
  font-size: 24px;
}
.cid-tBv4eUnL2J .card-text {
  color: #ffffff;
  text-align: left;
}
.cid-tBv4eUnL2J H3 {
  color: #1d1d1f;
  text-align: center;
}
.cid-tBv4eUnL2J .button-align {
  margin-top: 25px;
  text-align: center;
}
.cid-tBv4eUnL2J .btn {
  margin-top: 5px;
  padding: 15px 30px !important;
  letter-spacing: 5.2px;
  text-transform: uppercase;
  transition: all .3s !important;
}
.cid-tBv4eUnL2J a.btn > span {
  margin-left: 0.5rem;
}
.cid-tBv4eUnL2J .card-title,
.cid-tBv4eUnL2J .iconfont-wrapper {
  color: #fcef49;
}
.cid-tBv4eUnL2J .mbr-section-title,
.cid-tBv4eUnL2J .button-align {
  color: #fcef49;
}
.cid-tBv4eUnL2J a.btn:hover {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
@media (max-width: 576px) {
  .cid-tBv4eUnL2J .embla__slide {
    min-width: 100%;
  }
}
.cid-tBv60hZOBt {
  background-color: #efefef;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .cid-tBv60hZOBt .carousel {
    height: 550px;
  }
}
@media (max-width: 767px) {
  .cid-tBv60hZOBt .carousel {
    height: 80vh;
  }
}
.cid-tBv60hZOBt .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tBv60hZOBt .carousel-item,
.cid-tBv60hZOBt .carousel-inner {
  height: 100%;
}
.cid-tBv60hZOBt .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
}
.cid-tBv60hZOBt .mbr-section-btn {
  margin-top: 25px;
  margin-bottom: 34px;
}
@media (max-width: 767px) {
  .cid-tBv60hZOBt .mbr-section-btn .btn {
    padding: 1rem 2rem;
  }
}
.cid-tBv60hZOBt .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tBv60hZOBt .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tBv60hZOBt .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-tBv60hZOBt .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-tBv60hZOBt .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tBv60hZOBt .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tBv60hZOBt .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tBv60hZOBt .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tBv60hZOBt .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: #cccccc;
  border: 1px solid #cccccc;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-tBv60hZOBt .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: -2.5rem;
}
.cid-tBv60hZOBt .carousel-control.carousel-control-next {
  right: 0;
  margin-right: -2.5rem;
}
.cid-tBv60hZOBt .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-tBv60hZOBt .carousel-control {
    display: none !important;
  }
}
.cid-tBv60hZOBt .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-tBv60hZOBt .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 10px;
  background-color: #cccccc;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-tBv60hZOBt .carousel-indicators li.active,
.cid-tBv60hZOBt .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-tBv60hZOBt .carousel-indicators li::after,
.cid-tBv60hZOBt .carousel-indicators li::before {
  content: none;
}
.cid-tBv60hZOBt .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tBv60hZOBt .carousel-indicators {
    display: none !important;
  }
}
.cid-tPFgnmTFGr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-tPFgnmTFGr p {
  text-align: center;
}
.cid-tPFgnmTFGr .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-tPFgnmTFGr .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tPFgnmTFGr .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #6cceed;
}
.cid-tPFgnmTFGr .logo-footer {
  line-height: normal;
}
.cid-tPFgnmTFGr .copyright .list-inline {
  margin-bottom: 0;
}
.cid-tPFgnmTFGr .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-tPFgnmTFGr .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-tPFgnmTFGr li {
  overflow: hidden;
}
.cid-tPFgnmTFGr .icon-transition span {
  display: block;
}
.cid-tPFgnmTFGr .icon-transition:hover span {
  animation: 0.3s linear top;
}
.cid-tPFgnmTFGr .list-inline-item a {
  display: block;
}
.cid-tPFgnmTFGr .list-inline-item:hover a {
  animation: 0.3s linear top;
}
@keyframes top {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-100%);
  }
  51% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tPFgnmTFGr .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPFgnmTFGr .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-tPFgnmTFGr .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-tPFgnmTFGr .social-media {
  display: flex;
  justify-content: flex-end;
}
.cid-tPFgnmTFGr .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tPFgnmTFGr .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-tPFgnmTFGr .logo-footer {
    text-align: center;
  }
  .cid-tPFgnmTFGr .social-media {
    justify-content: center;
  }
}
.cid-tDNgD5CLax {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #efefef;
}
.cid-tDNgD5CLax .carousel {
  min-height: 600px;
}
.cid-tDNgD5CLax .carousel img {
  max-height: 600px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-tDNgD5CLax .carousel {
    min-height: 300px;
  }
  .cid-tDNgD5CLax .carousel img {
    max-height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-tDNgD5CLax .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tDNgD5CLax .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tDNgD5CLax .slide {
  height: 100%;
}
.cid-tDNgD5CLax .carousel,
.cid-tDNgD5CLax .carousel-inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.cid-tDNgD5CLax .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tDNgD5CLax .carousel-caption {
  bottom: 0px;
}
.cid-tDNgD5CLax .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tDNgD5CLax .mobi-mbri-arrow-next {
  margin-left: 5px;
  color: black;
  font-size: 1rem;
}
.cid-tDNgD5CLax .mobi-mbri-arrow-prev {
  margin-right: 5px;
  color: black;
  font-size: 1rem;
}
.cid-tDNgD5CLax .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tDNgD5CLax .carousel-item {
  height: 100%;
}
.cid-tDNgD5CLax .carousel-control {
  bottom: -50px;
  top: auto;
  width: 35px;
  height: 35px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 1px solid black;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1;
}
.cid-tDNgD5CLax .carousel-control.carousel-control-prev {
  right: 50px;
  left: auto;
}
.cid-tDNgD5CLax .carousel-control.carousel-control-next {
  right: 0;
}
.cid-tDNgD5CLax .carousel-control:hover {
  background: white;
}
.cid-tDNgD6HO9d {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tDNgD6HO9d .mbr-text {
  color: #767676;
}
.cid-tDNgD6HO9d h4 {
  text-align: center;
}
.cid-tDNgD6HO9d p {
  text-align: center;
}
.cid-tDNgD6HO9d .card-img span {
  font-size: 96px;
  color: #f7f4f0;
}
.cid-tDNgD7mf7o {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #efefef;
}
.cid-tDNgD7mf7o .carousel {
  width: 100%;
}
.cid-tDNgD7mf7o .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-tDNgD7mf7o .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-tDNgD7mf7o .mbr-overlay {
  z-index: 1;
}
.cid-tDNgD7mf7o .carousel-caption {
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 280px;
}
@media (min-width: 768px) {
  .cid-tDNgD7mf7o .carousel-caption {
    width: 680px;
  }
}
@media (min-width: 992px) {
  .cid-tDNgD7mf7o .carousel-caption {
    width: 900px;
  }
}
.cid-tDNgD7mf7o .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tDNgD7mf7o .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tDNgD7mf7o .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 0;
}
.cid-tDNgD7mf7o .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tDNgD7mf7o .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tDNgD7mf7o .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tDNgD7mf7o .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tDNgD7mf7o .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tDNgD7mf7o .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDNgD7mf7o .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDNgD7mf7o .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDNgD7mf7o .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tDNgD7mf7o .carousel-indicators li {
  max-width: 7px;
  height: 7px;
  width: 7px;
  max-height: 7px;
  margin: 0 10px;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1 !important;
}
.cid-tDNgD7mf7o .carousel-indicators li.active {
  background-color: #ffffff;
  opacity: 1 !important;
}
.cid-tDNgD7mf7o .carousel-indicators li::after,
.cid-tDNgD7mf7o .carousel-indicators li::before {
  content: none;
}
.cid-tDNgD7mf7o .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-tDNgD81i3U .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 100px;
}
.cid-tDNgD81i3U .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tDNgD81i3U a {
  font-style: normal;
}
.cid-tDNgD81i3U a .link:hover {
  color: inherit!important;
}
.cid-tDNgD81i3U .dropdown-item:active {
  background: #ffffff;
}
.cid-tDNgD81i3U .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tDNgD81i3U .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0 !important;
  margin: 0.5rem 1.4rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tDNgD81i3U .nav-item:focus,
.cid-tDNgD81i3U .nav-link:focus {
  outline: none;
}
.cid-tDNgD81i3U .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tDNgD81i3U .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tDNgD81i3U .menu-logo {
  margin-right: auto;
}
.cid-tDNgD81i3U .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tDNgD81i3U .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tDNgD81i3U .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tDNgD81i3U .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tDNgD81i3U .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tDNgD81i3U .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tDNgD81i3U .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tDNgD81i3U .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tDNgD81i3U .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tDNgD81i3U .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tDNgD81i3U .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tDNgD81i3U .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tDNgD81i3U .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tDNgD81i3U .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDNgD81i3U .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tDNgD81i3U .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDNgD81i3U .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%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tDNgD81i3U .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tDNgD81i3U .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tDNgD81i3U .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tDNgD81i3U .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tDNgD81i3U .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tDNgD81i3U .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tDNgD81i3U button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.8rem;
  right: 1rem;
}
.cid-tDNgD81i3U button.navbar-toggler:focus {
  outline: none;
}
.cid-tDNgD81i3U button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f9f295;
}
.cid-tDNgD81i3U button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tDNgD81i3U button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tDNgD81i3U button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tDNgD81i3U button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tDNgD81i3U nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDNgD81i3U nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tDNgD81i3U nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tDNgD81i3U nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tDNgD81i3U .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tDNgD81i3U .collapsed .btn {
  display: -webkit-flex;
}
.cid-tDNgD81i3U .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tDNgD81i3U .collapsed .navbar-collapse.collapsing,
.cid-tDNgD81i3U .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tDNgD81i3U .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tDNgD81i3U .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tDNgD81i3U .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tDNgD81i3U .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tDNgD81i3U .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tDNgD81i3U .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tDNgD81i3U .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tDNgD81i3U .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tDNgD81i3U .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tDNgD81i3U .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-tDNgD81i3U .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-tDNgD81i3U .collapsed button.navbar-toggler {
  display: block;
}
.cid-tDNgD81i3U .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tDNgD81i3U .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tDNgD81i3U .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tDNgD81i3U .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tDNgD81i3U .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tDNgD81i3U .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;
}
@media (max-width: 1023px) {
  .cid-tDNgD81i3U .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tDNgD81i3U img {
    height: 3.8rem !important;
  }
  .cid-tDNgD81i3U .btn {
    display: -webkit-flex;
  }
  .cid-tDNgD81i3U button.navbar-toggler {
    display: block;
  }
  .cid-tDNgD81i3U .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tDNgD81i3U .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tDNgD81i3U .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tDNgD81i3U .navbar-collapse.collapsing,
  .cid-tDNgD81i3U .navbar-collapse.show {
    display: block !important;
  }
  .cid-tDNgD81i3U .navbar-collapse.collapsing .navbar-nav,
  .cid-tDNgD81i3U .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tDNgD81i3U .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tDNgD81i3U .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tDNgD81i3U .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tDNgD81i3U .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tDNgD81i3U .navbar-collapse.collapsing .navbar-buttons,
  .cid-tDNgD81i3U .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tDNgD81i3U .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tDNgD81i3U .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tDNgD81i3U .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tDNgD81i3U .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tDNgD81i3U .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tDNgD81i3U .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;
  }
}
@media (min-width: 767px) {
  .cid-tDNgD81i3U .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tDNgD81i3U .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tDNgD81i3U .nav-link,
.cid-tDNgD81i3U .dropdown-item {
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
.cid-tDNgD81i3U .nav-link:hover,
.cid-tDNgD81i3U .dropdown-item:hover {
  color: #149dcc !important;
  border-color: #f7f4f0;
}
.cid-tDNgD8zYZ2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-tDNgD8zYZ2 img {
  width: 90%;
}
.cid-tDNgD8zYZ2 .mbr-text,
.cid-tDNgD8zYZ2 .mbr-section-btn {
  color: #767676;
}
@media (max-width: 992px) {
  .cid-tDNgD8zYZ2 img {
    width: 100%;
  }
  .cid-tDNgD8zYZ2 .pb-5 {
    padding-bottom: 1rem !important;
  }
}
.cid-tDNgD8XzEf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #efefef;
}
.cid-tDNgD8XzEf .carousel {
  min-height: 600px;
}
.cid-tDNgD8XzEf .carousel img {
  max-height: 600px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-tDNgD8XzEf .carousel {
    min-height: 300px;
  }
  .cid-tDNgD8XzEf .carousel img {
    max-height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-tDNgD8XzEf .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tDNgD8XzEf .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tDNgD8XzEf .slide {
  height: 100%;
}
.cid-tDNgD8XzEf .carousel,
.cid-tDNgD8XzEf .carousel-inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.cid-tDNgD8XzEf .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tDNgD8XzEf .carousel-caption {
  bottom: 0px;
}
.cid-tDNgD8XzEf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tDNgD8XzEf .mobi-mbri-arrow-next {
  margin-left: 5px;
  color: black;
  font-size: 1rem;
}
.cid-tDNgD8XzEf .mobi-mbri-arrow-prev {
  margin-right: 5px;
  color: black;
  font-size: 1rem;
}
.cid-tDNgD8XzEf .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tDNgD8XzEf .carousel-item {
  height: 100%;
}
.cid-tDNgD8XzEf .carousel-control {
  bottom: -50px;
  top: auto;
  width: 35px;
  height: 35px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 1px solid black;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1;
}
.cid-tDNgD8XzEf .carousel-control.carousel-control-prev {
  right: 50px;
  left: auto;
}
.cid-tDNgD8XzEf .carousel-control.carousel-control-next {
  right: 0;
}
.cid-tDNgD8XzEf .carousel-control:hover {
  background: white;
}
.cid-tDNgD9qh1R {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tDNgD9qh1R img {
  width: 90%;
}
@media (max-width: 992px) {
  .cid-tDNgD9qh1R img {
    width: 100%;
  }
  .cid-tDNgD9qh1R .pb-5 {
    padding-bottom: 1rem !important;
  }
}
.cid-tDNgD9qh1R ul {
  padding-left: 2rem;
  margin-bottom: 0;
}
.cid-tDNgD9qh1R ul li {
  margin-bottom: 0.4rem;
  list-style: none;
  position: relative;
}
.cid-tDNgD9qh1R ul li:before {
  position: absolute;
  left: -2.6rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 10px 14px;
  line-height: 20px;
  transition: all 0.2s;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b69b74;
}
.cid-tDNgD9RdSX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-tDNgD9RdSX .media-container-row .mbr-text {
  color: #6cceed;
}
.cid-tDNgDaMCP3 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-tDNgDaMCP3 .row {
  padding: 0 1rem;
  justify-content: center;
}
.cid-tDNgDaMCP3 .title {
  max-width: 800px;
  margin: auto;
}
.cid-tDNgDaMCP3 .mbr-testimonial {
  padding: 0;
}
.cid-tDNgDaMCP3 .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-tDNgDaMCP3 .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  margin-bottom: 1.6rem;
  overflow: hidden;
}
.cid-tDNgDaMCP3 .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  height: 380px;
  object-fit: cover;
  min-height: 100%;
}
.cid-tDNgDaMCP3 .mbr-testimonial p {
  padding: 0 1rem;
}
.cid-tDNgDaMCP3 .mbr-testimonial .card-footer {
  margin-bottom: 2.2rem;
  border-top: 0;
  padding: 1rem 1rem 3rem 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
  position: relative;
}
.cid-tDNgDaMCP3 .mbr-testimonial .card-footer:before {
  content: '';
  position: absolute;
  background: #b69b74;
  bottom: -1rem;
  left: 50%;
  width: 2px;
  height: 3rem;
}
@media (max-width: 300px) {
  .cid-tDNgDaMCP3 .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-tDNgDaMCP3 .mbr-author-desc {
  color: #343434;
}
.cid-tDNgDaMCP3 H2 {
  color: #343434;
}
@media (max-width: 992px) {
  .cid-tDNgDaMCP3 .md-pb {
    padding-bottom: 2rem !important;
  }
}
.cid-tDNgDclbYO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f1eeea;
}
.cid-tDNgDclbYO img {
  width: 90%;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tDNgDclbYO img {
    width: 100%;
  }
  .cid-tDNgDclbYO .pb-5 {
    padding-bottom: 1rem !important;
  }
}
.cid-tDNgDclbYO ol {
  padding: 0;
  margin: 0;
}
.cid-tDNgDclbYO li {
  padding-bottom: 1rem;
  line-height: 1.4;
}
.cid-tDNgDclbYO .counter-container2 ol {
  counter-reset: start 4;
}
.cid-tDNgDclbYO .counter-container2 li {
  display: block;
}
.cid-tDNgDclbYO .counter-container2 li:before {
  content: counter(start) '. ';
  counter-increment: start;
}
.cid-tDNgDclbYO .counter-container1 ol {
  counter-reset: start 0;
}
.cid-tDNgDclbYO .counter-container1 li {
  display: block;
}
.cid-tDNgDclbYO .counter-container1 li:before {
  content: counter(start) '. ';
  counter-increment: start;
}
.cid-tDNgDclbYO li:before {
  color: #f7f4f0;
}
.cid-tDNgDcPxXj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f1eeea;
}
.cid-tDNgDcPxXj img {
  width: 90%;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tDNgDcPxXj img {
    width: 100%;
  }
  .cid-tDNgDcPxXj .pb-5 {
    padding-bottom: 1rem !important;
  }
}
.cid-tDNgDcPxXj ol {
  padding: 0;
  margin: 0;
}
.cid-tDNgDcPxXj li {
  padding-bottom: 1rem;
  line-height: 1.4;
}
.cid-tDNgDcPxXj .counter-container2 ol {
  counter-reset: start 4;
}
.cid-tDNgDcPxXj .counter-container2 li {
  display: block;
}
.cid-tDNgDcPxXj .counter-container2 li:before {
  content: counter(start) '. ';
  counter-increment: start;
}
.cid-tDNgDcPxXj .counter-container1 ol {
  counter-reset: start 0;
}
.cid-tDNgDcPxXj .counter-container1 li {
  display: block;
}
.cid-tDNgDcPxXj .counter-container1 li:before {
  content: counter(start) '. ';
  counter-increment: start;
}
.cid-tDNgDcPxXj li:before {
  color: #f7f4f0;
}
.cid-tDNgDdndQT {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tFLawuQlfK.popup-builder {
  background-color: #ffffff;
}
.cid-tFLawuQlfK.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tFLawuQlfK.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tFLawuQlfK .modal-content,
.cid-tFLawuQlfK .modal-dialog {
  height: auto;
}
.cid-tFLawuQlfK .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tFLawuQlfK .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tFLawuQlfK .form-wrapper .mbr-form .form-group,
  .cid-tFLawuQlfK .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tFLawuQlfK .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tFLawuQlfK .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tFLawuQlfK .mbr-text {
  text-align: center;
}
.cid-tFLawuQlfK .pt-0 {
  padding-top: 0 !important;
}
.cid-tFLawuQlfK .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tFLawuQlfK .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tFLawuQlfK .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tFLawuQlfK .modal-open {
  overflow: hidden;
}
.cid-tFLawuQlfK .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tFLawuQlfK .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tFLawuQlfK .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tFLawuQlfK .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tFLawuQlfK .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tFLawuQlfK .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tFLawuQlfK .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tFLawuQlfK .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tFLawuQlfK .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tFLawuQlfK .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tFLawuQlfK .modal-backdrop.fade {
  opacity: 0;
}
.cid-tFLawuQlfK .modal-backdrop.show {
  opacity: .5;
}
.cid-tFLawuQlfK .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tFLawuQlfK .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tFLawuQlfK .modal-header {
    padding: 1rem;
  }
}
.cid-tFLawuQlfK .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tFLawuQlfK .modal-header .close svg {
  fill: #353535;
}
.cid-tFLawuQlfK .modal-header .close:hover {
  opacity: 1;
}
.cid-tFLawuQlfK .modal-header .close:focus {
  outline: none;
}
.cid-tFLawuQlfK .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tFLawuQlfK .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tFLawuQlfK .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tFLawuQlfK .modal-body {
    padding: 1rem;
  }
}
.cid-tFLawuQlfK .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tFLawuQlfK .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tFLawuQlfK .modal-footer {
    padding: 1rem;
  }
}
.cid-tFLawuQlfK .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tFLawuQlfK .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tFLawuQlfK .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tFLawuQlfK .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tFLawuQlfK .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tFLawuQlfK .modal-lg,
  .cid-tFLawuQlfK .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tFLawuQlfK .modal-xl {
    max-width: 1140px;
  }
}
.cid-tFLawuQlfK .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tFLawuQlfK .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tFLawuQlfK .form-group {
  margin-bottom: 1rem;
}
.cid-tFLawuQlfK .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tFLawuQlfK .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tFLawuQlfK .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tFLawuQlfK .mbr-section-btn {
  margin: 0;
}
.cid-tFLawuQlfK .mbr-section-btn .btn {
  margin: 0;
}
.cid-tDNgDdRWuu {
  padding-top: 90px;
  padding-bottom: 135px;
  background-color: #f1eeea;
}
.cid-tDNgDdRWuu .container-fluid {
  position: relative;
  padding-right: 10.4rem;
  padding-left: 0;
}
.cid-tDNgDdRWuu .wrapper {
  position: relative;
}
.cid-tDNgDdRWuu .img1 {
  width: 100%;
  padding-right: 6rem;
  object-fit: cover;
  height: 800px;
}
.cid-tDNgDdRWuu .mbr-iconfont {
  font-size: 1.8rem;
  color: #232323;
}
.cid-tDNgDdRWuu .mbr-iconfont:hover {
  cursor: pointer;
}
.cid-tDNgDdRWuu .icon1 {
  position: absolute;
  top: 2rem;
  right: 0rem;
}
.cid-tDNgDdRWuu .icon2 {
  position: absolute;
  top: 5rem;
  right: 0rem;
}
.cid-tDNgDdRWuu .img2 {
  position: absolute;
  bottom: -4.6rem;
  right: 0;
  width: 400px;
  box-shadow: 2.5px 4.3px 62px 0 rgba(0, 0, 0, 0.22);
}
.cid-tDNgDdRWuu .title {
  position: absolute;
  right: 0rem;
  transform: rotate(90deg);
  transform-origin: top right;
  top: 26rem;
  padding: 0;
}
.cid-tDNgDdRWuu .title:before {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: -8.6rem;
  width: 100px;
  height: 2px;
}
@media (max-width: 1400px) {
  .cid-tDNgDdRWuu .img2 {
    width: 400px;
  }
  .cid-tDNgDdRWuu .container-fluid {
    padding-right: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tDNgDdRWuu .img2 {
    width: 400px;
  }
  .cid-tDNgDdRWuu .img1 {
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tDNgDdRWuu .img1 {
    height: 600px;
    padding-right: 3rem;
  }
  .cid-tDNgDdRWuu .img2 {
    width: 200px;
  }
  .cid-tDNgDdRWuu .container-fluid {
    padding-right: 1rem;
  }
}
.cid-tDNgDfu3A5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tDNgDfu3A5 .mbr-text {
  color: #767676;
}
.cid-tDNgDfu3A5 .container {
  max-width: 1000px;
}
.cid-tDNgDfu3A5 h4 {
  text-align: center;
}
.cid-tDNgDfu3A5 p {
  text-align: center;
}
.cid-tDNgDfu3A5 .row {
  justify-content: center;
}
.cid-tDNgDfu3A5 .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-tDNgDfu3A5 .mbr-iconfont {
  font-size: 1.5rem;
  color: #f7f4f0;
  display: block;
}
.cid-tDNgDfu3A5 .card-title,
.cid-tDNgDfu3A5 .card-img {
  color: #0f7699;
}
.cid-tDNgDfu3A5 .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-tDNgDfu3A5 .icon-wrap:before {
  content: '';
  position: absolute;
  background: #f7f4f0;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-tDNgDfu3A5 img {
  margin-bottom: 5rem;
}
.cid-tDNgDeqmQt {
  padding-top: 60px;
  padding-bottom: 135px;
  background-color: #f1eeea;
}
.cid-tDNgDeqmQt .container-fluid {
  position: relative;
  padding-right: 10.4rem;
}
.cid-tDNgDeqmQt .wrapper {
  position: relative;
}
.cid-tDNgDeqmQt .content {
  padding-left: 6rem;
  padding-right: 2rem;
}
.cid-tDNgDeqmQt .img1 {
  width: 100%;
  padding-right: 6rem;
  object-fit: cover;
  height: 800px;
}
.cid-tDNgDeqmQt .mbr-iconfont {
  font-size: 1.8rem;
  color: #232323;
}
.cid-tDNgDeqmQt .mbr-iconfont:hover {
  cursor: pointer;
}
.cid-tDNgDeqmQt .icon1 {
  position: absolute;
  top: 2rem;
  right: 0rem;
}
.cid-tDNgDeqmQt .icon2 {
  position: absolute;
  top: 5rem;
  right: 0rem;
}
.cid-tDNgDeqmQt .img2 {
  position: absolute;
  bottom: -4.6rem;
  right: 0;
  width: 400px;
  box-shadow: 2.5px 4.3px 62px 0 rgba(0, 0, 0, 0.22);
}
.cid-tDNgDeqmQt .title {
  position: absolute;
  right: 0rem;
  transform: rotate(90deg);
  transform-origin: top right;
  top: 26rem;
  padding: 0;
}
.cid-tDNgDeqmQt .title:before {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: -8.6rem;
  width: 100px;
  height: 2px;
}
@media (max-width: 1400px) {
  .cid-tDNgDeqmQt .img2 {
    width: 400px;
  }
  .cid-tDNgDeqmQt .container-fluid {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-tDNgDeqmQt .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-tDNgDeqmQt .img2 {
    width: 400px;
  }
  .cid-tDNgDeqmQt .img1 {
    padding-right: 4rem;
  }
  .cid-tDNgDeqmQt .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tDNgDeqmQt .img1 {
    height: 600px;
    padding-right: 3rem;
  }
  .cid-tDNgDeqmQt .img2 {
    width: 200px;
  }
  .cid-tDNgDeqmQt .container-fluid {
    padding: 0 1rem;
  }
  .cid-tDNgDeqmQt .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-tDNgDeWSey {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tDNgDeWSey .mbr-text {
  color: #211c1c;
}
.cid-tDNgDeWSey .container {
  max-width: 1000px;
}
.cid-tDNgDeWSey h4 {
  text-align: center;
}
.cid-tDNgDeWSey p {
  text-align: center;
}
.cid-tDNgDeWSey .row {
  justify-content: center;
}
.cid-tDNgDeWSey .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-tDNgDeWSey .mbr-iconfont {
  font-size: 1.5rem;
  color: #cccccc;
  display: block;
}
.cid-tDNgDeWSey .card-title,
.cid-tDNgDeWSey .card-img {
  color: #0f7699;
}
.cid-tDNgDeWSey .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-tDNgDeWSey .icon-wrap:before {
  content: '';
  position: absolute;
  background: #cccccc;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-tDNgDeWSey img {
  margin-bottom: 5rem;
}
.cid-tDNgDg1Jyo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-tDNgDg1Jyo .media-container-row .mbr-text {
  color: #6cceed;
}
.cid-tPFgnmTFGr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #073b4c;
}
.cid-tPFgnmTFGr p {
  text-align: center;
}
.cid-tPFgnmTFGr .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-tPFgnmTFGr .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tPFgnmTFGr .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #6cceed;
}
.cid-tPFgnmTFGr .logo-footer {
  line-height: normal;
}
.cid-tPFgnmTFGr .copyright .list-inline {
  margin-bottom: 0;
}
.cid-tPFgnmTFGr .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-tPFgnmTFGr .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-tPFgnmTFGr li {
  overflow: hidden;
}
.cid-tPFgnmTFGr .icon-transition span {
  display: block;
}
.cid-tPFgnmTFGr .icon-transition:hover span {
  animation: 0.3s linear top;
}
.cid-tPFgnmTFGr .list-inline-item a {
  display: block;
}
.cid-tPFgnmTFGr .list-inline-item:hover a {
  animation: 0.3s linear top;
}
@keyframes top {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-100%);
  }
  51% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tPFgnmTFGr .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPFgnmTFGr .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-tPFgnmTFGr .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-tPFgnmTFGr .social-media {
  display: flex;
  justify-content: flex-end;
}
.cid-tPFgnmTFGr .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tPFgnmTFGr .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-tPFgnmTFGr .logo-footer {
    text-align: center;
  }
  .cid-tPFgnmTFGr .social-media {
    justify-content: center;
  }
}
