body {
  font-family: Open Sans;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.8rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.48rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Open Sans', 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: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-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.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 0px;
}
.btn-md {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-lg {
  padding: 20px 20px;
  border-radius: 0px;
}
.bg-primary {
  background-color: #ff4a52 !important;
}
.bg-success {
  background-color: #7242d6 !important;
}
.bg-info {
  background-color: #48d678 !important;
}
.bg-warning {
  background-color: #d63d3d !important;
}
.bg-danger {
  background-color: #ececec !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ff4a52 !important;
  border-color: #ff4a52 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #fd000b !important;
  border-color: #fd000b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #fd000b !important;
  border-color: #fd000b !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #1ec6b6 !important;
  border-color: #1ec6b6 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #148479 !important;
  border-color: #148479 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #148479 !important;
  border-color: #148479 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #48d678 !important;
  border-color: #48d678 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #26ab53 !important;
  border-color: #26ab53 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #26ab53 !important;
  border-color: #26ab53 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #7242d6 !important;
  border-color: #7242d6 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #4f24a7 !important;
  border-color: #4f24a7 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #4f24a7 !important;
  border-color: #4f24a7 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #d63d3d !important;
  border-color: #d63d3d !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #a42323 !important;
  border-color: #a42323 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a42323 !important;
  border-color: #a42323 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ececec !important;
  border-color: #ececec !important;
  color: #6d6d6d !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #6d6d6d !important;
  background-color: #c6c6c6 !important;
  border-color: #c6c6c6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #6d6d6d !important;
  background-color: #c6c6c6 !important;
  border-color: #c6c6c6 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  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,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  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,
.btn-primary-outline.active {
  background: none;
  border-color: #e3000a;
  color: #e3000a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #ff4a52;
  border-color: #ff4a52;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4a52 !important;
  border-color: #ff4a52 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #116d65;
  color: #116d65;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #1ec6b6;
  border-color: #1ec6b6;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #1ec6b6 !important;
  border-color: #1ec6b6 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #229649;
  color: #229649;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #48d678;
  border-color: #48d678;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #48d678 !important;
  border-color: #48d678 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #452092;
  color: #452092;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  background-color: #7242d6;
  border-color: #7242d6;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #7242d6 !important;
  border-color: #7242d6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #8f1e1e;
  color: #8f1e1e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  background-color: #d63d3d;
  border-color: #d63d3d;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #d63d3d !important;
  border-color: #d63d3d !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #b9b9b9;
  color: #b9b9b9;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #6d6d6d;
  background-color: #ececec;
  border-color: #ececec;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #6d6d6d !important;
  background-color: #ececec !important;
  border-color: #ececec !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.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: #ff4a52 !important;
}
.text-secondary {
  color: #1ec6b6 !important;
}
.text-success {
  color: #7242d6 !important;
}
.text-info {
  color: #48d678 !important;
}
.text-warning {
  color: #d63d3d !important;
}
.text-danger {
  color: #ececec !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #e3000a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #116d65 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #452092 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #229649 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8f1e1e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #b9b9b9 !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: #48d678;
}
.alert-warning {
  background-color: #d63d3d;
}
.alert-danger {
  background-color: #ececec;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff4a52;
  border-color: #ff4a52;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff4a52;
}
.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: #efeafa;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #effbf3;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fae5e5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #ff4a52;
}
.btn-md {
  transition: none;
  padding: 0.5rem 2rem;
}
.btn-md:hover {
  background-color: #1ec6b6 !important;
  border-color: #1ec6b6 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff4a52;
  color: #ffffff;
}
.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-number__spin {
  background: #ffffff;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff4a52;
  border-bottom-color: #ff4a52;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #ff4a52 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #1ec6b6 !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='%23ff4a52' %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-tWg90g8yQj .navbar {
  padding: .5rem 0;
  background: #9e9e9e;
  transition: none;
  min-height: 50px;
}
.cid-tWg90g8yQj .navbar-fixed-top {
  padding-top: 0;
}
.cid-tWg90g8yQj .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-tWg90g8yQj .dropdown-item {
  padding: 0;
  color: black !important;
}
.cid-tWg90g8yQj .dropdown-item,
.cid-tWg90g8yQj .nav-link,
.cid-tWg90g8yQj .brand-link {
  font-style: normal;
}
.cid-tWg90g8yQj .dropdown-item:hover,
.cid-tWg90g8yQj .nav-link:hover,
.cid-tWg90g8yQj .brand-link:hover {
  color: #ff4a52 !important;
}
.cid-tWg90g8yQj .dropdown-menu {
  border: 0px solid lightgray;
  border-radius: 5px;
  background-color: #ffffff !important;
  margin-top: px !important;
}
.cid-tWg90g8yQj .dropdown-item:active {
  background-color: #ffffff !important;
}
.cid-tWg90g8yQj .menu-content-top {
  max-width: 1200px;
  display: none;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-tWg90g8yQj .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tWg90g8yQj .navbar-dropdown.bg-color.transparent.opened {
  background: #9e9e9e;
}
.cid-tWg90g8yQj .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tWg90g8yQj .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 .5rem !important;
}
.cid-tWg90g8yQj .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tWg90g8yQj .content-text {
  margin-bottom: 0;
}
.cid-tWg90g8yQj .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-tWg90g8yQj .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff4a52;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-tWg90g8yQj .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-tWg90g8yQj .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-tWg90g8yQj .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-tWg90g8yQj .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tWg90g8yQj .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-tWg90g8yQj .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-tWg90g8yQj .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tWg90g8yQj .nav-dropdown .link {
  font-weight: 400;
}
.cid-tWg90g8yQj .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-tWg90g8yQj .content-right-side {
  text-align: center;
}
.cid-tWg90g8yQj .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-tWg90g8yQj .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-tWg90g8yQj .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-tWg90g8yQj .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-tWg90g8yQj .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tWg90g8yQj .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-tWg90g8yQj .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-tWg90g8yQj .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-tWg90g8yQj .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-tWg90g8yQj .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-tWg90g8yQj .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-tWg90g8yQj .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tWg90g8yQj .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-tWg90g8yQj .navbar {
    display: block;
    padding: 0;
  }
  .cid-tWg90g8yQj .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tWg90g8yQj .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.4rem - 4.5rem);
  }
  .cid-tWg90g8yQj .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-tWg90g8yQj .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-tWg90g8yQj .navbar-toggler {
    display: none;
  }
  .cid-tWg90g8yQj .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tWg90g8yQj .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-tWg90g8yQj .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tWg90g8yQj .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-tWg90g8yQj .menu-logo {
  margin-right: auto;
}
.cid-tWg90g8yQj .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tWg90g8yQj .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tWg90g8yQj .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tWg90g8yQj .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tWg90g8yQj .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tWg90g8yQj .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tWg90g8yQj .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-tWg90g8yQj .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-tWg90g8yQj .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tWg90g8yQj .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tWg90g8yQj .dropdown .dropdown-menu {
  background: #9e9e9e;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tWg90g8yQj .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tWg90g8yQj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tWg90g8yQj .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-tWg90g8yQj .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tWg90g8yQj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tWg90g8yQj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tWg90g8yQj .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tWg90g8yQj .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWg90g8yQj .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-tWg90g8yQj .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-tWg90g8yQj .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tWg90g8yQj .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tWg90g8yQj .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tWg90g8yQj .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tWg90g8yQj button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tWg90g8yQj button.navbar-toggler:focus {
  outline: none;
}
.cid-tWg90g8yQj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tWg90g8yQj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tWg90g8yQj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tWg90g8yQj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tWg90g8yQj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tWg90g8yQj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tWg90g8yQj nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tWg90g8yQj nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tWg90g8yQj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tWg90g8yQj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWg90g8yQj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWg90g8yQj .collapsed .btn {
  display: -webkit-flex;
}
.cid-tWg90g8yQj .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tWg90g8yQj .collapsed .navbar-collapse.collapsing,
.cid-tWg90g8yQj .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tWg90g8yQj .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tWg90g8yQj .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tWg90g8yQj .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tWg90g8yQj .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tWg90g8yQj .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tWg90g8yQj .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tWg90g8yQj .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tWg90g8yQj .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-tWg90g8yQj .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tWg90g8yQj .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tWg90g8yQj .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-tWg90g8yQj .collapsed button.navbar-toggler {
  display: block;
}
.cid-tWg90g8yQj .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-tWg90g8yQj .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tWg90g8yQj .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-tWg90g8yQj .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tWg90g8yQj .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tWg90g8yQj .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tWg90g8yQj .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tWg90g8yQj .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tWg90g8yQj .navbar-collapse.collapsing,
  .cid-tWg90g8yQj .navbar-collapse.show {
    display: block !important;
  }
  .cid-tWg90g8yQj .navbar-collapse.collapsing .navbar-nav,
  .cid-tWg90g8yQj .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tWg90g8yQj .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tWg90g8yQj .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tWg90g8yQj .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tWg90g8yQj .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tWg90g8yQj .navbar-collapse.collapsing .navbar-buttons,
  .cid-tWg90g8yQj .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-tWg90g8yQj .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tWg90g8yQj .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tWg90g8yQj .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tWg90g8yQj img {
    height: 3.8rem !important;
  }
  .cid-tWg90g8yQj .btn {
    display: -webkit-flex;
  }
  .cid-tWg90g8yQj button.navbar-toggler {
    display: block;
  }
  .cid-tWg90g8yQj .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-tWg90g8yQj .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tWg90g8yQj .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-tWg90g8yQj .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tWg90g8yQj .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tWg90g8yQj .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-tWg90g8yQj .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-tWg90g8yQj .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-tWg90g8yQj .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tWg90g8yQj .nav-link:focus {
  outline: none;
}
.cid-tWg90g8yQj .navbar-toggler {
  position: relative;
}
.cid-tWg90g8yQj .dropdown-item.active,
.cid-tWg90g8yQj .dropdown-item:active {
  color: initial;
}
.cid-tWg90g8yQj .widget-title,
.cid-tWg90g8yQj .widget-icon {
  color: #ececec;
}
.cid-tWg90g8yQj .widget-text {
  color: #ececec;
}
.cid-uEoY0fAHUs {
  padding-top: 375px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/termalesdetabio21-1120x630.webp");
}
.cid-uEoY0fAHUs .mbr-section-title DIV {
  text-align: center;
}
.cid-uEoY0fAHUs .mbr-text,
.cid-uEoY0fAHUs .mbr-section-btn {
  text-align: center;
}
.cid-uEoY0fAHUs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEoY0fAHUs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEoY0fAHUs .mbr-section-title {
  text-align: center;
}
.cid-uSsZvkVxXJ {
  background-color: #060606;
}
.cid-uSsZvkVxXJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSsZvkVxXJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSsZvkVxXJ .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uSsZvkVxXJ .items-wrapper .card {
  padding: 0 32px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uSsZvkVxXJ .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uSsZvkVxXJ .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uSsZvkVxXJ .title-wrapper .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uSsZvkVxXJ .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uSsZvkVxXJ .image-wrapper img {
  height: 480px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSsZvkVxXJ .image-wrapper img {
    height: 350px;
  }
}
.cid-uSsZvkVxXJ .mbr-section-title {
  color: #ffffff;
}
.cid-uSsZvkVxXJ .mbr-text,
.cid-uSsZvkVxXJ .text-wrapper {
  color: #ffffff;
}
.cid-uGGwQGWf87 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ececec;
}
.cid-uGGwQGWf87 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-uGGwQGWf87 p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-uGGwQGWf87 .mbr-section-btn {
  padding-top: 2.5rem;
}
.cid-uGGwQGWf87 .mbr-section-btn a {
  margin: 0;
}
.cid-uGGwQGWf87 .mbr-text {
  color: #767676;
}
.cid-uGGwQGWf87 .card-wrapper {
  height: 100%;
  background: #c2c2c2;
}
.cid-uGGwQGWf87 .card-wrapper .card-box {
  padding: 0 2rem 2rem;
}
@media (max-width: 767px) {
  .cid-uGGwQGWf87 .card:not(.last-child) {
    padding-bottom: 2rem;
  }
}
.cid-uGGwQGWf87 .card-title {
  text-align: center;
  color: #232323;
}
.cid-uGGwQGWf87 .mbr-text,
.cid-uGGwQGWf87 .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uGGwQGWf87 H2 {
  text-align: center;
  color: #000000;
}
.cid-uGGwQGWf87 .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-tWg9kjWtoK {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ececec;
}
.cid-tWg9kjWtoK .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tWg9kjWtoK .card {
  background-color: white;
  padding: 2rem;
}
.cid-tWg9kjWtoK .input-group-btn {
  display: block;
}
.cid-tWg9kjWtoK .form-control {
  background: none;
  border-radius: 6px !important;
}
.cid-tWg9kjWtoK .form-control-label {
  font-weight: 700;
}
.cid-tWg9kjWtoK .mbr-section-subtitle {
  color: #656565;
}
.cid-tWg9kjWtoK .title2 {
  color: #656565;
}
.cid-tWg9kjWtoK .form-title {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-tWg9kjWtoK .col-sm-12 {
    margin: 1rem;
  }
  .cid-tWg9kjWtoK .card {
    padding: 1rem;
  }
}
.cid-tWg9kjWtoK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWg9kjWtoK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWhf05c3ve {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tWhf05c3ve .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWhf05c3ve .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tWhf05c3ve .container {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tWhf05c3ve .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-tWhf05c3ve .title-wrapper .title-wrap {
  display: block;
}
.cid-tWhf05c3ve .title-wrapper .title-wrap .mbr-section-title {
  display: inline-flex;
  margin-bottom: 10px;
}
.cid-tWhf05c3ve .title-wrapper .phone-wrap {
  display: block;
}
.cid-tWhf05c3ve .title-wrapper .phone-wrap:hover .mbr-phone,
.cid-tWhf05c3ve .title-wrapper .phone-wrap:focus .mbr-phone {
  background-color: #a1e5cf;
  color: #292929;
  text-decoration: underline;
}
.cid-tWhf05c3ve .title-wrapper .phone-wrap .mbr-phone {
  display: inline-flex;
  margin-bottom: 0;
}
.cid-tWhf05c3ve .list,
.cid-tWhf05c3ve .list-social {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tWhf05c3ve .list,
  .cid-tWhf05c3ve .list-social {
    margin-bottom: 30px;
    padding-left: 0;
  }
}
.cid-tWhf05c3ve .list .item-wrap,
.cid-tWhf05c3ve .list-social .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-tWhf05c3ve .list .item-wrap span,
.cid-tWhf05c3ve .list-social .item-wrap span {
  position: relative;
  z-index: 1;
}
.cid-tWhf05c3ve .list .item-wrap:hover,
.cid-tWhf05c3ve .list-social .item-wrap:hover,
.cid-tWhf05c3ve .list .item-wrap:focus,
.cid-tWhf05c3ve .list-social .item-wrap:focus {
  color: #292929;
  text-decoration: underline;
}
.cid-tWhf05c3ve .list .item-wrap:hover::before,
.cid-tWhf05c3ve .list-social .item-wrap:hover::before,
.cid-tWhf05c3ve .list .item-wrap:focus::before,
.cid-tWhf05c3ve .list-social .item-wrap:focus::before {
  width: 100%;
}
.cid-tWhf05c3ve .list .item-wrap::before,
.cid-tWhf05c3ve .list-social .item-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #a1e5cf;
  transition: all 0.3s ease-in-out;
}
.cid-tWhf05c3ve .list-social {
  padding-left: 120px;
  color: #f1f4e9;
}
@media (max-width: 992px) {
  .cid-tWhf05c3ve .list-social {
    padding-left: 0;
  }
}
.cid-tWhf05c3ve .copyright {
  margin: 50px 0 0 0;
  color: #f1f4e9;
  text-align: center;
}
.cid-tWhf05c3ve .mbr-section-title {
  color: #f1f4e9;
  text-align: center;
}
.cid-tWhf05c3ve .mbr-phone {
  color: #f1f4e9;
}
.cid-tWhf05c3ve .list {
  color: #f1f4e9;
}
.cid-tWhf05c3ve .mbr-section-title,
.cid-tWhf05c3ve .title-wrap {
  text-align: left;
}
.cid-uHdJEeRWQI .navbar {
  padding: .5rem 0;
  background: #9e9e9e;
  transition: none;
  min-height: 50px;
}
.cid-uHdJEeRWQI .navbar-fixed-top {
  padding-top: 0;
}
.cid-uHdJEeRWQI .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uHdJEeRWQI .dropdown-item {
  padding: 0;
  color: black !important;
}
.cid-uHdJEeRWQI .dropdown-item,
.cid-uHdJEeRWQI .nav-link,
.cid-uHdJEeRWQI .brand-link {
  font-style: normal;
}
.cid-uHdJEeRWQI .dropdown-item:hover,
.cid-uHdJEeRWQI .nav-link:hover,
.cid-uHdJEeRWQI .brand-link:hover {
  color: #ff4a52 !important;
}
.cid-uHdJEeRWQI .dropdown-menu {
  border: 0px solid lightgray;
  border-radius: 5px;
  background-color: #ffffff !important;
  margin-top: px !important;
}
.cid-uHdJEeRWQI .dropdown-item:active {
  background-color: #ffffff !important;
}
.cid-uHdJEeRWQI .menu-content-top {
  max-width: 1200px;
  display: none;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uHdJEeRWQI .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHdJEeRWQI .navbar-dropdown.bg-color.transparent.opened {
  background: #9e9e9e;
}
.cid-uHdJEeRWQI .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uHdJEeRWQI .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 .5rem !important;
}
.cid-uHdJEeRWQI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHdJEeRWQI .content-text {
  margin-bottom: 0;
}
.cid-uHdJEeRWQI .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uHdJEeRWQI .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff4a52;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uHdJEeRWQI .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uHdJEeRWQI .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uHdJEeRWQI .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-uHdJEeRWQI .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uHdJEeRWQI .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uHdJEeRWQI .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uHdJEeRWQI .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHdJEeRWQI .nav-dropdown .link {
  font-weight: 400;
}
.cid-uHdJEeRWQI .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uHdJEeRWQI .content-right-side {
  text-align: center;
}
.cid-uHdJEeRWQI .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uHdJEeRWQI .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uHdJEeRWQI .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-uHdJEeRWQI .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-uHdJEeRWQI .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uHdJEeRWQI .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uHdJEeRWQI .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uHdJEeRWQI .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uHdJEeRWQI .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-uHdJEeRWQI .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-uHdJEeRWQI .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-uHdJEeRWQI .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uHdJEeRWQI .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-uHdJEeRWQI .navbar {
    display: block;
    padding: 0;
  }
  .cid-uHdJEeRWQI .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uHdJEeRWQI .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.4rem - 4.5rem);
  }
  .cid-uHdJEeRWQI .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uHdJEeRWQI .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uHdJEeRWQI .navbar-toggler {
    display: none;
  }
  .cid-uHdJEeRWQI .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uHdJEeRWQI .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uHdJEeRWQI .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uHdJEeRWQI .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uHdJEeRWQI .menu-logo {
  margin-right: auto;
}
.cid-uHdJEeRWQI .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uHdJEeRWQI .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uHdJEeRWQI .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uHdJEeRWQI .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uHdJEeRWQI .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uHdJEeRWQI .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uHdJEeRWQI .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uHdJEeRWQI .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uHdJEeRWQI .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHdJEeRWQI .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uHdJEeRWQI .dropdown .dropdown-menu {
  background: #9e9e9e;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uHdJEeRWQI .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uHdJEeRWQI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHdJEeRWQI .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-uHdJEeRWQI .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uHdJEeRWQI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHdJEeRWQI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHdJEeRWQI .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uHdJEeRWQI .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHdJEeRWQI .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uHdJEeRWQI .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-uHdJEeRWQI .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uHdJEeRWQI .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uHdJEeRWQI .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uHdJEeRWQI .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uHdJEeRWQI button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHdJEeRWQI button.navbar-toggler:focus {
  outline: none;
}
.cid-uHdJEeRWQI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uHdJEeRWQI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHdJEeRWQI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHdJEeRWQI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHdJEeRWQI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHdJEeRWQI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHdJEeRWQI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHdJEeRWQI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHdJEeRWQI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHdJEeRWQI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHdJEeRWQI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHdJEeRWQI .collapsed .btn {
  display: -webkit-flex;
}
.cid-uHdJEeRWQI .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uHdJEeRWQI .collapsed .navbar-collapse.collapsing,
.cid-uHdJEeRWQI .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uHdJEeRWQI .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uHdJEeRWQI .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uHdJEeRWQI .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uHdJEeRWQI .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uHdJEeRWQI .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uHdJEeRWQI .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-uHdJEeRWQI .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uHdJEeRWQI .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uHdJEeRWQI .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uHdJEeRWQI .collapsed button.navbar-toggler {
  display: block;
}
.cid-uHdJEeRWQI .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-uHdJEeRWQI .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uHdJEeRWQI .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-uHdJEeRWQI .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uHdJEeRWQI .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uHdJEeRWQI .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHdJEeRWQI .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uHdJEeRWQI .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uHdJEeRWQI .navbar-collapse.collapsing,
  .cid-uHdJEeRWQI .navbar-collapse.show {
    display: block !important;
  }
  .cid-uHdJEeRWQI .navbar-collapse.collapsing .navbar-nav,
  .cid-uHdJEeRWQI .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uHdJEeRWQI .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uHdJEeRWQI .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uHdJEeRWQI .navbar-collapse.collapsing .navbar-buttons,
  .cid-uHdJEeRWQI .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uHdJEeRWQI .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uHdJEeRWQI .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uHdJEeRWQI .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uHdJEeRWQI img {
    height: 3.8rem !important;
  }
  .cid-uHdJEeRWQI .btn {
    display: -webkit-flex;
  }
  .cid-uHdJEeRWQI button.navbar-toggler {
    display: block;
  }
  .cid-uHdJEeRWQI .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-uHdJEeRWQI .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uHdJEeRWQI .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-uHdJEeRWQI .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uHdJEeRWQI .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uHdJEeRWQI .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHdJEeRWQI .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uHdJEeRWQI .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uHdJEeRWQI .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uHdJEeRWQI .nav-link:focus {
  outline: none;
}
.cid-uHdJEeRWQI .navbar-toggler {
  position: relative;
}
.cid-uHdJEeRWQI .dropdown-item.active,
.cid-uHdJEeRWQI .dropdown-item:active {
  color: initial;
}
.cid-uHdJEeRWQI .widget-title,
.cid-uHdJEeRWQI .widget-icon {
  color: #ececec;
}
.cid-uHdJEeRWQI .widget-text {
  color: #ececec;
}
.cid-uHdJEgtTlG {
  padding-top: 375px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/tabio-plan2-380x252.jpg");
}
.cid-uHdJEgtTlG .mbr-section-title DIV {
  text-align: center;
}
.cid-uHdJEgtTlG .mbr-text,
.cid-uHdJEgtTlG .mbr-section-btn {
  text-align: center;
}
.cid-uHdJEgtTlG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHdJEgtTlG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHdJEgtTlG .mbr-section-title {
  text-align: center;
}
.cid-uHdPhZjXcd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ececec;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uHdPhZjXcd .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uHdPhZjXcd .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uHdPhZjXcd .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uHdPhZjXcd .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uHdPhZjXcd .container {
  padding: 0;
}
.cid-uHdPhZjXcd .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uHdPhZjXcd .icon-focus {
  display: none;
}
.cid-uHdPhZjXcd .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-uHdPhZjXcd .btn-primary-outline:hover {
  background: transparent !important;
  color: #ff4a52 !important;
}
.cid-uHdPhZjXcd li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-uHdPhZjXcd li {
  position: relative;
}
.cid-uHdPhZjXcd .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-uHdPhZjXcd .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uHdPhZjXcd .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uHdPhZjXcd .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-uHdPhZjXcd .btn {
  font-family: Open Sans !important;
}
.cid-uHdPhZjXcd .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-uHdPhZjXcd .mbr-gallery-title:hover {
  opacity: 1;
}
.cid-uHdPhZjXcd .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
@media (max-width: 767px) {
  .cid-uHdPhZjXcd li:not(:last-child):after {
    top: 9px;
  }
  .cid-uHdPhZjXcd .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
}
.cid-uHdJEjjiM1 {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ececec;
}
.cid-uHdJEjjiM1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uHdJEjjiM1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uHdJEjjiM1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uHdJEjjiM1 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uHdJEjjiM1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uHdJEjjiM1 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uHdJEjjiM1 .mbr-gallery-item > div:hover:before {
  opacity: 0.5 !important;
}
.cid-uHdJEjjiM1 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uHdJEjjiM1 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.5;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uHdJElhxgF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uHdJElhxgF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHdJElhxgF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHdJElhxgF .container {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uHdJElhxgF .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uHdJElhxgF .title-wrapper .title-wrap {
  display: block;
}
.cid-uHdJElhxgF .title-wrapper .title-wrap .mbr-section-title {
  display: inline-flex;
  margin-bottom: 10px;
}
.cid-uHdJElhxgF .title-wrapper .phone-wrap {
  display: block;
}
.cid-uHdJElhxgF .title-wrapper .phone-wrap:hover .mbr-phone,
.cid-uHdJElhxgF .title-wrapper .phone-wrap:focus .mbr-phone {
  background-color: #a1e5cf;
  color: #292929;
  text-decoration: underline;
}
.cid-uHdJElhxgF .title-wrapper .phone-wrap .mbr-phone {
  display: inline-flex;
  margin-bottom: 0;
}
.cid-uHdJElhxgF .list,
.cid-uHdJElhxgF .list-social {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-uHdJElhxgF .list,
  .cid-uHdJElhxgF .list-social {
    margin-bottom: 30px;
    padding-left: 0;
  }
}
.cid-uHdJElhxgF .list .item-wrap,
.cid-uHdJElhxgF .list-social .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-uHdJElhxgF .list .item-wrap span,
.cid-uHdJElhxgF .list-social .item-wrap span {
  position: relative;
  z-index: 1;
}
.cid-uHdJElhxgF .list .item-wrap:hover,
.cid-uHdJElhxgF .list-social .item-wrap:hover,
.cid-uHdJElhxgF .list .item-wrap:focus,
.cid-uHdJElhxgF .list-social .item-wrap:focus {
  color: #292929;
  text-decoration: underline;
}
.cid-uHdJElhxgF .list .item-wrap:hover::before,
.cid-uHdJElhxgF .list-social .item-wrap:hover::before,
.cid-uHdJElhxgF .list .item-wrap:focus::before,
.cid-uHdJElhxgF .list-social .item-wrap:focus::before {
  width: 100%;
}
.cid-uHdJElhxgF .list .item-wrap::before,
.cid-uHdJElhxgF .list-social .item-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #a1e5cf;
  transition: all 0.3s ease-in-out;
}
.cid-uHdJElhxgF .list-social {
  padding-left: 120px;
  color: #f1f4e9;
}
@media (max-width: 992px) {
  .cid-uHdJElhxgF .list-social {
    padding-left: 0;
  }
}
.cid-uHdJElhxgF .copyright {
  margin: 50px 0 0 0;
  color: #f1f4e9;
  text-align: center;
}
.cid-uHdJElhxgF .mbr-section-title {
  color: #f1f4e9;
  text-align: center;
}
.cid-uHdJElhxgF .mbr-phone {
  color: #f1f4e9;
}
.cid-uHdJElhxgF .list {
  color: #f1f4e9;
}
.cid-uHdJElhxgF .mbr-section-title,
.cid-uHdJElhxgF .title-wrap {
  text-align: left;
}
.cid-uHdJEm9XXb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (min-width: 992px) {
  .cid-uHdJEm9XXb .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-uHdJEm9XXb .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-uHdJEm9XXb .mbr-text {
  color: #767676;
}
.cid-uSsVLE6kgs .navbar {
  padding: .5rem 0;
  background: #9e9e9e;
  transition: none;
  min-height: 50px;
}
.cid-uSsVLE6kgs .navbar-fixed-top {
  padding-top: 0;
}
.cid-uSsVLE6kgs .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-uSsVLE6kgs .dropdown-item {
  padding: 0;
  color: black !important;
}
.cid-uSsVLE6kgs .dropdown-item,
.cid-uSsVLE6kgs .nav-link,
.cid-uSsVLE6kgs .brand-link {
  font-style: normal;
}
.cid-uSsVLE6kgs .dropdown-item:hover,
.cid-uSsVLE6kgs .nav-link:hover,
.cid-uSsVLE6kgs .brand-link:hover {
  color: #ff4a52 !important;
}
.cid-uSsVLE6kgs .dropdown-menu {
  border: 0px solid lightgray;
  border-radius: 5px;
  background-color: #ffffff !important;
  margin-top: px !important;
}
.cid-uSsVLE6kgs .dropdown-item:active {
  background-color: #ffffff !important;
}
.cid-uSsVLE6kgs .menu-content-top {
  max-width: 1200px;
  display: none;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uSsVLE6kgs .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uSsVLE6kgs .navbar-dropdown.bg-color.transparent.opened {
  background: #9e9e9e;
}
.cid-uSsVLE6kgs .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uSsVLE6kgs .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 .5rem !important;
}
.cid-uSsVLE6kgs .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uSsVLE6kgs .content-text {
  margin-bottom: 0;
}
.cid-uSsVLE6kgs .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uSsVLE6kgs .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ff4a52;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uSsVLE6kgs .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uSsVLE6kgs .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uSsVLE6kgs .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-uSsVLE6kgs .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uSsVLE6kgs .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-uSsVLE6kgs .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-uSsVLE6kgs .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uSsVLE6kgs .nav-dropdown .link {
  font-weight: 400;
}
.cid-uSsVLE6kgs .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uSsVLE6kgs .content-right-side {
  text-align: center;
}
.cid-uSsVLE6kgs .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uSsVLE6kgs .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uSsVLE6kgs .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-uSsVLE6kgs .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-uSsVLE6kgs .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uSsVLE6kgs .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-uSsVLE6kgs .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uSsVLE6kgs .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uSsVLE6kgs .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-uSsVLE6kgs .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-uSsVLE6kgs .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-uSsVLE6kgs .content-right-side {
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uSsVLE6kgs .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-uSsVLE6kgs .navbar {
    display: block;
    padding: 0;
  }
  .cid-uSsVLE6kgs .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uSsVLE6kgs .navbar:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.4rem - 4.5rem);
  }
  .cid-uSsVLE6kgs .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uSsVLE6kgs .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uSsVLE6kgs .navbar-toggler {
    display: none;
  }
  .cid-uSsVLE6kgs .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uSsVLE6kgs .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uSsVLE6kgs .btn {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uSsVLE6kgs .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uSsVLE6kgs .menu-logo {
  margin-right: auto;
}
.cid-uSsVLE6kgs .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uSsVLE6kgs .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uSsVLE6kgs .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uSsVLE6kgs .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uSsVLE6kgs .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uSsVLE6kgs .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uSsVLE6kgs .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uSsVLE6kgs .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uSsVLE6kgs .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uSsVLE6kgs .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uSsVLE6kgs .dropdown .dropdown-menu {
  background: #9e9e9e;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uSsVLE6kgs .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uSsVLE6kgs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uSsVLE6kgs .dropdown .dropdown-menu .dropdown-item::after {
  right: -0.5rem;
}
.cid-uSsVLE6kgs .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uSsVLE6kgs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uSsVLE6kgs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uSsVLE6kgs .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uSsVLE6kgs .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSsVLE6kgs .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-uSsVLE6kgs .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-uSsVLE6kgs .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uSsVLE6kgs .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uSsVLE6kgs .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uSsVLE6kgs .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uSsVLE6kgs button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uSsVLE6kgs button.navbar-toggler:focus {
  outline: none;
}
.cid-uSsVLE6kgs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uSsVLE6kgs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uSsVLE6kgs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uSsVLE6kgs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uSsVLE6kgs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uSsVLE6kgs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uSsVLE6kgs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uSsVLE6kgs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uSsVLE6kgs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uSsVLE6kgs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSsVLE6kgs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSsVLE6kgs .collapsed .btn {
  display: -webkit-flex;
}
.cid-uSsVLE6kgs .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uSsVLE6kgs .collapsed .navbar-collapse.collapsing,
.cid-uSsVLE6kgs .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uSsVLE6kgs .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uSsVLE6kgs .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uSsVLE6kgs .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uSsVLE6kgs .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uSsVLE6kgs .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uSsVLE6kgs .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-uSsVLE6kgs .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uSsVLE6kgs .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uSsVLE6kgs .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uSsVLE6kgs .collapsed button.navbar-toggler {
  display: block;
}
.cid-uSsVLE6kgs .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-uSsVLE6kgs .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uSsVLE6kgs .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-uSsVLE6kgs .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uSsVLE6kgs .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uSsVLE6kgs .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uSsVLE6kgs .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uSsVLE6kgs .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uSsVLE6kgs .navbar-collapse.collapsing,
  .cid-uSsVLE6kgs .navbar-collapse.show {
    display: block !important;
  }
  .cid-uSsVLE6kgs .navbar-collapse.collapsing .navbar-nav,
  .cid-uSsVLE6kgs .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uSsVLE6kgs .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uSsVLE6kgs .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uSsVLE6kgs .navbar-collapse.collapsing .navbar-buttons,
  .cid-uSsVLE6kgs .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uSsVLE6kgs .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uSsVLE6kgs .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uSsVLE6kgs .menu-bottom {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uSsVLE6kgs img {
    height: 3.8rem !important;
  }
  .cid-uSsVLE6kgs .btn {
    display: -webkit-flex;
  }
  .cid-uSsVLE6kgs button.navbar-toggler {
    display: block;
  }
  .cid-uSsVLE6kgs .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-uSsVLE6kgs .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uSsVLE6kgs .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-uSsVLE6kgs .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uSsVLE6kgs .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uSsVLE6kgs .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uSsVLE6kgs .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uSsVLE6kgs .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uSsVLE6kgs .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uSsVLE6kgs .nav-link:focus {
  outline: none;
}
.cid-uSsVLE6kgs .navbar-toggler {
  position: relative;
}
.cid-uSsVLE6kgs .dropdown-item.active,
.cid-uSsVLE6kgs .dropdown-item:active {
  color: initial;
}
.cid-uSsVLE6kgs .widget-title,
.cid-uSsVLE6kgs .widget-icon {
  color: #ececec;
}
.cid-uSsVLE6kgs .widget-text {
  color: #ececec;
}
.cid-uSsWvOS5OY {
  padding-top: 375px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/banner2-termaleselzipa-512x288.jpg");
}
.cid-uSsWvOS5OY .mbr-section-title DIV {
  text-align: center;
}
.cid-uSsWvOS5OY .mbr-text,
.cid-uSsWvOS5OY .mbr-section-btn {
  text-align: center;
}
.cid-uSsWvOS5OY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSsWvOS5OY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSsVLHh9Hf {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #333333;
}
.cid-uSsVLHh9Hf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uSsVLHh9Hf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uSsVLHh9Hf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uSsVLHh9Hf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uSsVLHh9Hf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uSsVLHh9Hf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uSsVLHh9Hf .mbr-gallery-item > div:hover:before {
  opacity: 0.5 !important;
}
.cid-uSsVLHh9Hf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uSsVLHh9Hf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.5;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-uSsVLGoIEw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/banner2-termaleselzipa-300x168.jpg");
}
.cid-uSsVLGoIEw .card-box {
  padding: 1rem 2rem 2rem;
}
.cid-uSsVLGoIEw h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-uSsVLGoIEw p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-uSsVLGoIEw .mbr-section-btn {
  padding-top: 2.5rem;
}
.cid-uSsVLGoIEw .mbr-section-btn a {
  margin: 0;
}
.cid-uSsVLGoIEw .mbr-text {
  color: #767676;
}
.cid-uSsVLGoIEw .card-wrapper {
  height: 100%;
  background: #efefef;
}
.cid-uSsVLGoIEw .card-wrapper .card-box {
  padding: 0 2rem 2rem;
}
@media (max-width: 767px) {
  .cid-uSsVLGoIEw .card:not(.last-child) {
    padding-bottom: 2rem;
  }
}
.cid-uSsVLGoIEw .card-title {
  text-align: center;
  color: #232323;
}
.cid-uSsVLGoIEw .mbr-text,
.cid-uSsVLGoIEw .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uSsVLGoIEw H2 {
  text-align: center;
  color: #ffffff;
}
.cid-uSsVLGoIEw .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uSsVLIH7Dc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uSsVLIH7Dc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSsVLIH7Dc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uSsVLIH7Dc .container {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uSsVLIH7Dc .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uSsVLIH7Dc .title-wrapper .title-wrap {
  display: block;
}
.cid-uSsVLIH7Dc .title-wrapper .title-wrap .mbr-section-title {
  display: inline-flex;
  margin-bottom: 10px;
}
.cid-uSsVLIH7Dc .title-wrapper .phone-wrap {
  display: block;
}
.cid-uSsVLIH7Dc .title-wrapper .phone-wrap:hover .mbr-phone,
.cid-uSsVLIH7Dc .title-wrapper .phone-wrap:focus .mbr-phone {
  background-color: #a1e5cf;
  color: #292929;
  text-decoration: underline;
}
.cid-uSsVLIH7Dc .title-wrapper .phone-wrap .mbr-phone {
  display: inline-flex;
  margin-bottom: 0;
}
.cid-uSsVLIH7Dc .list,
.cid-uSsVLIH7Dc .list-social {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-uSsVLIH7Dc .list,
  .cid-uSsVLIH7Dc .list-social {
    margin-bottom: 30px;
    padding-left: 0;
  }
}
.cid-uSsVLIH7Dc .list .item-wrap,
.cid-uSsVLIH7Dc .list-social .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-uSsVLIH7Dc .list .item-wrap span,
.cid-uSsVLIH7Dc .list-social .item-wrap span {
  position: relative;
  z-index: 1;
}
.cid-uSsVLIH7Dc .list .item-wrap:hover,
.cid-uSsVLIH7Dc .list-social .item-wrap:hover,
.cid-uSsVLIH7Dc .list .item-wrap:focus,
.cid-uSsVLIH7Dc .list-social .item-wrap:focus {
  color: #292929;
  text-decoration: underline;
}
.cid-uSsVLIH7Dc .list .item-wrap:hover::before,
.cid-uSsVLIH7Dc .list-social .item-wrap:hover::before,
.cid-uSsVLIH7Dc .list .item-wrap:focus::before,
.cid-uSsVLIH7Dc .list-social .item-wrap:focus::before {
  width: 100%;
}
.cid-uSsVLIH7Dc .list .item-wrap::before,
.cid-uSsVLIH7Dc .list-social .item-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #a1e5cf;
  transition: all 0.3s ease-in-out;
}
.cid-uSsVLIH7Dc .list-social {
  padding-left: 120px;
  color: #f1f4e9;
}
@media (max-width: 992px) {
  .cid-uSsVLIH7Dc .list-social {
    padding-left: 0;
  }
}
.cid-uSsVLIH7Dc .copyright {
  margin: 50px 0 0 0;
  color: #f1f4e9;
  text-align: center;
}
.cid-uSsVLIH7Dc .mbr-section-title {
  color: #f1f4e9;
  text-align: center;
}
.cid-uSsVLIH7Dc .mbr-phone {
  color: #f1f4e9;
}
.cid-uSsVLIH7Dc .list {
  color: #f1f4e9;
}
.cid-uSsVLIH7Dc .mbr-section-title,
.cid-uSsVLIH7Dc .title-wrap {
  text-align: left;
}
.cid-uSsVLJmMf7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
@media (min-width: 992px) {
  .cid-uSsVLJmMf7 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-uSsVLJmMf7 .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-uSsVLJmMf7 .mbr-text {
  color: #767676;
}
