@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap);





body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.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.2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-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: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #ff695c !important;
}
.bg-info {
  background-color: #188ef4 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #ff695c !important;
  border-color: #ff695c !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #ff2310 !important;
  border-color: #ff2310 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #ff2310 !important;
  border-color: #ff2310 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  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;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  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 !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #178a61 !important;
  color: #178a61 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #08589e !important;
  color: #08589e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #f51400 !important;
  color: #f51400 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #ff695c !important;
  border-color: #ff695c !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ff695c !important;
  border-color: #ff695c !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #8e8e8e !important;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #111111 !important;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.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: #000000 !important;
}
.text-secondary {
  color: #2bdc9d !important;
}
.text-success {
  color: #ff695c !important;
}
.text-info {
  color: #188ef4 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #178a61 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #f51400 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #08589e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !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: #ff695c;
}
.alert-info {
  background-color: #188ef4;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.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: #dbedfd;
}
.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: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  opacity: 0 !important;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #188ef4;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #188ef4;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #000000;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #000000;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  background-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-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !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: #2bdc9d !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='%23000000' %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-rYkMJrSt3y .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rYkMJrSt3y .nav-item,
.cid-rYkMJrSt3y .nav-link,
.cid-rYkMJrSt3y .navbar-caption {
  font-weight: normal;
}
.cid-rYkMJrSt3y .nav-item:focus,
.cid-rYkMJrSt3y .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rYkMJrSt3y .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rYkMJrSt3y .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-rYkMJrSt3y .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rYkMJrSt3y .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rYkMJrSt3y .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rYkMJrSt3y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rYkMJrSt3y .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-rYkMJrSt3y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rYkMJrSt3y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rYkMJrSt3y .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #494949;
  background: none;
}
.cid-rYkMJrSt3y .navbar.opened {
  transition: all .3s;
  background: #494949 !important;
}
.cid-rYkMJrSt3y .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rYkMJrSt3y .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rYkMJrSt3y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rYkMJrSt3y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rYkMJrSt3y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-rYkMJrSt3y .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rYkMJrSt3y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rYkMJrSt3y .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rYkMJrSt3y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rYkMJrSt3y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rYkMJrSt3y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rYkMJrSt3y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rYkMJrSt3y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rYkMJrSt3y .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rYkMJrSt3y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rYkMJrSt3y .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rYkMJrSt3y .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rYkMJrSt3y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rYkMJrSt3y .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rYkMJrSt3y .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rYkMJrSt3y .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rYkMJrSt3y .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rYkMJrSt3y .navbar.navbar-short {
  background: #494949 !important;
  min-height: 60px;
}
.cid-rYkMJrSt3y .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rYkMJrSt3y .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rYkMJrSt3y .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rYkMJrSt3y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rYkMJrSt3y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rYkMJrSt3y .dropdown-item.active,
.cid-rYkMJrSt3y .dropdown-item:active {
  background-color: transparent;
}
.cid-rYkMJrSt3y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rYkMJrSt3y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rYkMJrSt3y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #494949;
}
.cid-rYkMJrSt3y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rYkMJrSt3y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rYkMJrSt3y ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rYkMJrSt3y .navbar-buttons {
  text-align: center;
}
.cid-rYkMJrSt3y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rYkMJrSt3y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rYkMJrSt3y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rYkMJrSt3y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rYkMJrSt3y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rYkMJrSt3y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rYkMJrSt3y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rYkMJrSt3y nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rYkMJrSt3y nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rYkMJrSt3y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rYkMJrSt3y .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rYkMJrSt3y a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rYkMJrSt3y .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rYkMJrSt3y .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rYkMJrSt3y .soc-item {
  margin: .5rem .3rem;
}
.cid-rYkMJrSt3y .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rYkMJrSt3y .navbar {
    height: 77px;
  }
  .cid-rYkMJrSt3y .navbar.opened {
    height: auto;
  }
  .cid-rYkMJrSt3y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rYkMR5rOKc {
  background-image: url("../../../assets/images/man-using-stationary-bike-897064-2000x1333.jpg");
}
.cid-rYkMR5rOKc .mbr-overlay {
  background: #000000;
}
.cid-rYkMR5rOKc .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-rYnL09PSND {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #efefef;
}
.cid-rYnL09PSND .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background-color: #333333;
}
.cid-rYnL09PSND img {
  width: 100%;
}
.cid-rYnL09PSND p {
  margin-top: 6rem;
}
.cid-rYnL09PSND .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-rYnL09PSND .content-wrapper {
  padding-top: 6rem;
}
.cid-rYnL09PSND h4 {
  position: absolute;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-rYnL09PSND .content-wrapper {
    padding-top: 0rem;
  }
  .cid-rYnL09PSND p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rYnL09PSND .back {
    width: 100%;
    height: 75%;
  }
  .cid-rYnL09PSND .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-rYnL09PSND p {
    margin-top: 4rem;
  }
}
.cid-rYnL09PSND .content-wrapper {
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .cid-rYnL09PSND .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-rYnL09PSND .content-wrapper {
    padding-right: 3rem;
  }
  .cid-rYnL09PSND h4 {
    right: 2rem;
  }
}
.cid-rYnL09PSND .mbr-text,
.cid-rYnL09PSND .mbr-section-btn {
  color: #ffffff;
}
.cid-rYnL09PSND H1 {
  color: #ffffff;
}
.cid-rYnL09PSND H3 {
  color: #ffffff;
}
.cid-rYnL09PSND H4 {
  color: #ffffff;
}
.cid-rYnT4bTCx5 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYnT4bTCx5 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rYnT4bTCx5 .mbr-section-title {
  text-align: center;
}
.cid-rYnSvtTKtG {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rYnSvtTKtG .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rYnSvtTKtG .mbr-shop .row {
  margin: 0;
}
.cid-rYnSvtTKtG .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rYnSvtTKtG .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rYnSvtTKtG .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rYnSvtTKtG .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rYnSvtTKtG .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-rYnSvtTKtG .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rYnSvtTKtG .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rYnSvtTKtG .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rYnSvtTKtG .mbr-shop .hide-modal {
  display: none;
}
.cid-rYnSvtTKtG .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rYnSvtTKtG .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rYnSvtTKtG .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rYnSvtTKtG .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rYnSvtTKtG .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-rYnSvtTKtG .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-rYnSvtTKtG .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rYnSvtTKtG .mbr-shop .filter-by-pu,
.cid-rYnSvtTKtG .mbr-shop .filter-by-pd,
.cid-rYnSvtTKtG .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rYnSvtTKtG .mbr-shop .sort-buttons {
  padding-bottom: 0.2rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rYnSvtTKtG .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rYnSvtTKtG .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rYnSvtTKtG .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-rYnSvtTKtG .mbr-shop .galleryItem h4,
.cid-rYnSvtTKtG .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: 10px;
  transition: color 0.5s;
}
.cid-rYnSvtTKtG .mbr-shop .galleryItem h5,
.cid-rYnSvtTKtG .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-rYnSvtTKtG .mbr-shop .galleryItem p,
.cid-rYnSvtTKtG .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-rYnSvtTKtG .mbr-shop .item-button {
  text-align: center;
}
.cid-rYnSvtTKtG .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rYnSvtTKtG .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rYnSvtTKtG .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rYnSvtTKtG .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rYnSvtTKtG .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0);
  top: -20px;
  right: 3px;
}
.cid-rYnSvtTKtG .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rYnSvtTKtG .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rYnSvtTKtG .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rYnSvtTKtG .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rYnSvtTKtG .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rYnSvtTKtG .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rYnSvtTKtG .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rYnSvtTKtG .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rYnSvtTKtG .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rYnSvtTKtG .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rYnSvtTKtG .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rYnSvtTKtG .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #149dcc;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rYnSvtTKtG .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rYnSvtTKtG .mbr-shop .mbr-gallery-item__hided h4,
.cid-rYnSvtTKtG .mbr-shop .mbr-gallery-item__hided h5,
.cid-rYnSvtTKtG .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rYnSvtTKtG .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rYnSvtTKtG .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rYnSvtTKtG .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rYnSvtTKtG .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rYnSvtTKtG .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 0px;
  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-rYnSvtTKtG .mbr-shop .mbr-gallery-filter ul li .btn {
  border: none;
  margin: 0 !important;
  padding: 0;
  background-color: transparent !important;
  color: inherit !important;
  font-weight: 400;
}
.cid-rYnSvtTKtG .mbr-shop .mbr-gallery-filter ul li.active .btn {
  font-weight: bold;
}
.cid-rYnSvtTKtG .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rYnSvtTKtG .mbr-shop .mbr-gallery-filter ul li:hover {
  color: #000000;
}
.cid-rYnSvtTKtG .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rYnSvtTKtG .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rYnSvtTKtG .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #000000;
  font-weight: bold;
}
.cid-rYnSvtTKtG .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #000000;
  border-radius: 2px;
  font-size: 0;
}
.cid-rYnSvtTKtG .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #000000;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-rYnSvtTKtG .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #000000;
}
.cid-rYnSvtTKtG .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-rYnSvtTKtG .mbr-shop .range-controls {
  position: relative;
}
.cid-rYnSvtTKtG .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rYnSvtTKtG .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
}
.cid-rYnSvtTKtG .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #000000;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #000000;
  cursor: pointer;
}
.cid-rYnSvtTKtG .mbr-shop .toggle:hover,
.cid-rYnSvtTKtG .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rYnSvtTKtG .mbr-shop .min-toggle {
  left: 0;
}
.cid-rYnSvtTKtG .mbr-shop .max-toggle {
  right: 0;
}
.cid-rYnSvtTKtG .mbr-shop .hided-by-price {
  display: none;
}
.cid-rYnSvtTKtG .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rYnSvtTKtG .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rYnSvtTKtG .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rYnSvtTKtG .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rYnSvtTKtG .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 400;
  padding: 10px 0 20px 0;
}
.cid-rYnSvtTKtG .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rYnSvtTKtG .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rYnSvtTKtG .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rYnSvtTKtG .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rYnSvtTKtG .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rYnSvtTKtG .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-rYnSvtTKtG .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-rYnSvtTKtG .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rYnSvtTKtG .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rYnSvtTKtG .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rYnSvtTKtG .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rYnSvtTKtG .mbr-shop .shop-items .onsale,
.cid-rYnSvtTKtG .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rYnSvtTKtG .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rYnSvtTKtG .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rYnSvtTKtG .mbr-shop .price-range {
  display: inline-block;
}
.cid-rYnSvtTKtG .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rYnSvtTKtG .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rYnSvtTKtG .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rYnSvtTKtG .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rYnSvtTKtG .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rYnSvtTKtG .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rYnSvtTKtG .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rYnSvtTKtG .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rYnSvtTKtG .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rYnSvtTKtG .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rYnSvtTKtG .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rYnSvtTKtG .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rYnSvtTKtG .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rYnSvtTKtG .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rYnSvtTKtG .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rYnSvtTKtG .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-rYnSvtTKtG .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rYnSvtTKtG .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rYnSvtTKtG .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rYnSvtTKtG .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rYnSvtTKtG .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rYnSvtTKtG .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rYnSvtTKtG .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rYnSvtTKtG .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rYnSvtTKtG .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rYnSvtTKtG .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rYnSvtTKtG .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rYnSvtTKtG .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rYnSvtTKtG .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rYnSvtTKtG .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rYnSvtTKtG .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rYnSvtTKtG .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rYnSvtTKtG .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rYnSvtTKtG .oldprice {
  padding-left: .8rem !important;
  text-decoration: line-through;
}
.cid-rYnSvtTKtG .item-title {
  color: #000000;
}
.cid-rYnSvtTKtG .mbr-gallery-item .galleryItem {
  border-radius: 8px;
  overflow: hidden;
}
.cid-rYnSvtTKtG .mbr-gallery-item .sidebar_wraper {
  background-color: rgba(255, 255, 255, 0.8);
  padding: .5rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #188ef4;
}
.cid-rYnSvtTKtG .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  text-align: right;
}
.cid-rYnSvtTKtG .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: right;
}
.cid-rYnSvtTKtG .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: right;
}
.cid-rYnSvtTKtG .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: right;
}
.cid-rYnSvtTKtG .mbr-gallery-item:hover .style_overlay {
  background: #55b4d4;
  opacity: 0.5;
  transition: all .5s;
}
.cid-rYnSvtTKtG .mbr-gallery-item:hover .img_wraper img {
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: none;
}
.cid-rYnSvtTKtG .range-controls {
  display: block !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rYnSvtTKtG .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-rYnSvtTKtG LI {
  color: #000000;
}
.cid-rYnSvtTKtG .sidebar-title {
  color: #000000;
}
@media (max-width: 576px) {
  .cid-rYnSvtTKtG .mbr-shop .mbr-gallery-item,
  .cid-rYnSvtTKtG .wrapper-shop-items,
  .cid-rYnSvtTKtG .sidebar-block,
  .cid-rYnSvtTKtG .sidebar-title,
  .cid-rYnSvtTKtG .sidebar,
  .cid-rYnSvtTKtG .categories {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-rYnSvtTKtG .filter-cost {
    max-width: 100%!important;
  }
  .cid-rYnSvtTKtG .range-slider,
  .cid-rYnSvtTKtG .categories,
  .cid-rYnSvtTKtG .bestseller-block {
    text-align: center;
  }
}
.cid-rYnYBLVKtu {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #efefef;
}
.cid-rYnYBLVKtu .mbr-overlay {
  background: #232323;
}
.cid-rYnYBLVKtu .mbr-section-subtitle {
  color: #cccccc;
}
.cid-rYnYBLVKtu .mbr-section-subtitle,
.cid-rYnYBLVKtu .mbr-section-btn {
  color: #000000;
}
.cid-rYnSrpXAnH {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rYnSrpXAnH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rYnSrpXAnH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rYnSrpXAnH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rYnSrpXAnH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rYnSrpXAnH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rYnSrpXAnH .icon-focus {
  display: none;
}
.cid-rYnSrpXAnH .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-rYnSrpXAnH ul {
  font-size: 0;
}
.cid-rYnSrpXAnH .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-rYnSrpXAnH .mbr-gallery-filter ul li .btn.active,
.cid-rYnSrpXAnH .mbr-gallery-filter ul li.active .btn:not(.active) {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-rYnSrpXAnH .mbr-gallery-filter ul li .btn.active:after,
.cid-rYnSrpXAnH .mbr-gallery-filter ul li.active .btn:not(.active):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #000000, #2bdc9d);
}
.cid-rYnSrpXAnH .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-rYnSrpXAnH .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rYnSrpXAnH .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-rYnSrpXAnH .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-rYnSrpXAnH .btn:hover {
  background: transparent !important;
}
.cid-rYnSrpXAnH .btn:hover:before {
  background: transparent !important;
}
.cid-rYnSrpXAnH .btn:before {
  background-color: transparent !important;
}
.cid-rYnSrpXAnH .btn:focus {
  box-shadow: none;
}
.cid-rYnSrpXAnH .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-rYnS8smQdj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rYnS8smQdj .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rYnS8smQdj .carousel-control-prev {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-rYnS8smQdj .carousel-control-next {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-rYnS8smQdj .carousel-item.active,
.cid-rYnS8smQdj .carousel-item-next,
.cid-rYnS8smQdj .carousel-item-prev {
  display: flex;
}
.cid-rYnS8smQdj .carousel-controls a {
  transition: opacity .5s;
}
.cid-rYnS8smQdj .carousel-controls a:hover span,
.cid-rYnS8smQdj .carousel-controls a:focus span {
  opacity: 1;
}
.cid-rYnS8smQdj .carousel-controls a:hover svg,
.cid-rYnS8smQdj .carousel-controls a:focus svg {
  transition: all .25s;
  stroke-width: 3;
}
.cid-rYnS8smQdj .carousel-controls a:active svg {
  transition: all .1s;
  stroke-width: 5;
}
.cid-rYnS8smQdj .user_image {
  overflow: hidden;
  display: flex;
}
.cid-rYnS8smQdj .user_image .user_image_inner {
  max-width: 200px;
  max-height: 200px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  margin: 0 auto 3rem auto;
}
.cid-rYnS8smQdj .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-rYnS8smQdj .user_text {
  color: #767676;
}
.cid-rYnS8smQdj .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rYnS8smQdj .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #2bdc9d);
  display: inline-block;
}
.cid-rYnS8smQdj .testimonials-quote svg {
  height: 30px;
  width: 30px;
}
.cid-rYnS8smQdj svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-rYnS8smQdj .user_name {
  color: #000000;
}
.cid-rYnS8smQdj .carousel-controls svg {
  height: 60px;
}
@media (max-width: 230px) {
  .cid-rYnS8smQdj .user_image_inner {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 991px) {
  .cid-rYnS8smQdj .testimonials-quote,
  .cid-rYnS8smQdj .user_text,
  .cid-rYnS8smQdj .user_name,
  .cid-rYnS8smQdj .user_desk {
    text-align: center !important;
  }
  .cid-rYnS8smQdj .carousel-controls a span {
    top: auto;
    bottom: 0;
  }
}
@media (min-width: 768px) {
  .cid-rYnS8smQdj .mbr-section-title,
  .cid-rYnS8smQdj .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1200px) {
  .cid-rYnS8smQdj .carousel-control-prev span {
    right: -1rem;
  }
  .cid-rYnS8smQdj .carousel-control-next span {
    left: -1rem;
  }
  .cid-rYnS8smQdj .user-text {
    padding-right: 2rem;
  }
  .cid-rYnS8smQdj .carousel-control-prev,
  .cid-rYnS8smQdj .carousel-control-next {
    -webkit-align-items: center;
    align-items: center;
  }
}
.cid-rYnSe48rpO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rYnSe48rpO .google-map {
  height: 25rem;
  position: relative;
}
.cid-rYnSe48rpO .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-rYnSe48rpO .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-rYnSe48rpO .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rYnSe48rpO .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-rYnSe48rpO .wrapper {
  margin-top: -10rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-rYnSe48rpO .form-container {
  padding: 3rem;
}
.cid-rYnSe48rpO .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-rYnSe48rpO .content-panel {
  padding: 2rem;
  background: linear-gradient(45deg, #232323, #232323);
  height: 100%;
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
  overflow: hidden;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rYnSe48rpO .mbr-text {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-rYnSe48rpO .form-group,
  .cid-rYnSe48rpO .input-group-btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-rYnSe48rpO .form-control {
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
  padding: .5rem 1rem;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: .25rem;
  font-size: 1rem;
  line-height: 1.43;
}
.cid-rYnSe48rpO .form-control:focus,
.cid-rYnSe48rpO .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #ffffff;
}
.cid-rYnSe48rpO textarea.form-control {
  min-height: 170px;
}
.cid-rYnSe48rpO .form-group {
  margin-bottom: 1rem;
}
.cid-rYnSe48rpO input::-webkit-input-placeholder,
.cid-rYnSe48rpO textarea::-webkit-input-placeholder {
  color: #565656;
}
.cid-rYnSe48rpO input:-moz-placeholder,
.cid-rYnSe48rpO textarea:-moz-placeholder {
  color: #565656;
}
.cid-rYnSe48rpO .jq-selectbox li,
.cid-rYnSe48rpO .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-rYnSe48rpO .jq-selectbox li:hover,
.cid-rYnSe48rpO .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-rYnSe48rpO .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-rYnSe48rpO .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rYnSe48rpO .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-rYnSe48rpO .text-block {
    margin-bottom: 2rem;
  }
  .cid-rYnSe48rpO .wrapper {
    margin-top: 0;
  }
}
.cid-rYnSe48rpO .social-list {
  margin-top: auto;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-rYnSe48rpO .social-list .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #fff;
}
.cid-rYnSe48rpO .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rYnSe48rpO .social-list .soc-item {
  margin: 15px 3px 0px 3px;
}
.cid-rYnSe48rpO .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rYnSe48rpO .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rYnSe48rpO .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rYomgv64Jd {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rYomgv64Jd .mbr-text {
  color: #444;
}
.cid-rYomgv64Jd .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rYomgv64Jd .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-rYomgv64Jd .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rYomgv64Jd .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rYomgv64Jd .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-rYomgv64Jd .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rYomgv64Jd .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-rYomgv64Jd .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-rYolThFJsX .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rYolThFJsX .nav-item,
.cid-rYolThFJsX .nav-link,
.cid-rYolThFJsX .navbar-caption {
  font-weight: normal;
}
.cid-rYolThFJsX .nav-item:focus,
.cid-rYolThFJsX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rYolThFJsX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rYolThFJsX .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-rYolThFJsX .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rYolThFJsX .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rYolThFJsX .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rYolThFJsX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rYolThFJsX .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-rYolThFJsX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rYolThFJsX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rYolThFJsX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #494949;
  background: none;
}
.cid-rYolThFJsX .navbar.opened {
  transition: all .3s;
  background: #494949 !important;
}
.cid-rYolThFJsX .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rYolThFJsX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rYolThFJsX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rYolThFJsX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rYolThFJsX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-rYolThFJsX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rYolThFJsX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rYolThFJsX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rYolThFJsX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rYolThFJsX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rYolThFJsX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rYolThFJsX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rYolThFJsX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rYolThFJsX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rYolThFJsX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rYolThFJsX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rYolThFJsX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rYolThFJsX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rYolThFJsX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rYolThFJsX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rYolThFJsX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rYolThFJsX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rYolThFJsX .navbar.navbar-short {
  background: #494949 !important;
  min-height: 60px;
}
.cid-rYolThFJsX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rYolThFJsX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rYolThFJsX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rYolThFJsX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rYolThFJsX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rYolThFJsX .dropdown-item.active,
.cid-rYolThFJsX .dropdown-item:active {
  background-color: transparent;
}
.cid-rYolThFJsX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rYolThFJsX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rYolThFJsX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #494949;
}
.cid-rYolThFJsX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rYolThFJsX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rYolThFJsX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rYolThFJsX .navbar-buttons {
  text-align: center;
}
.cid-rYolThFJsX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rYolThFJsX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rYolThFJsX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rYolThFJsX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rYolThFJsX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rYolThFJsX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rYolThFJsX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rYolThFJsX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rYolThFJsX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rYolThFJsX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rYolThFJsX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rYolThFJsX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rYolThFJsX .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rYolThFJsX .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rYolThFJsX .soc-item {
  margin: .5rem .3rem;
}
.cid-rYolThFJsX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rYolThFJsX .navbar {
    height: 77px;
  }
  .cid-rYolThFJsX .navbar.opened {
    height: auto;
  }
  .cid-rYolThFJsX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rYolTijO4B {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/man-using-stationary-bike-897064-2000x1333.jpg");
}
.cid-rYolTijO4B .mbr-overlay {
  background: #000000;
}
.cid-rYolTijO4B .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-rYolTiStiV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rYolTiStiV .mbr-text {
  color: #767676;
}
.cid-rYolTiStiV .card-subtitle {
  margin: 0;
}
.cid-rYolTiStiV .link {
  margin: 0;
}
.cid-rYolTiStiV .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-rYolTiStiV .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-rYolTiStiV .icon-box {
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.173);
}
.cid-rYolTiStiV .item {
  display: inline-flex;
  align-items: center;
  padding: 0 0.6rem;
}
.cid-rYolTiStiV .mbr-iconfont {
  color: #000000 !important;
  font-size: 1rem!important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-rYolTiStiV .date {
  margin: 0;
}
.cid-rYolTiStiV img {
  transition: all 0.3s;
  object-fit: cover;
  height: 100%;
}
.cid-rYolTiStiV .card-img {
  overflow: hidden;
  position: relative;
  height: 300px;
}
.cid-rYolTiStiV .card-img:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-rYolTiStiV .card-img:hover:before {
  opacity: 0.4;
}
.cid-rYolTiStiV .card-img:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .cid-rYolTiStiV .icon-box {
    flex-direction: column;
  }
  .cid-rYolTiStiV .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
}
.cid-rYolTiStiV .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-rYolTiStiV .card {
    margin-bottom: 3rem;
  }
}
.cid-rYolTjCw8C {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rYolToVixC {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rYolToVixC .mbr-text {
  color: #444;
}
.cid-rYolToVixC .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rYolToVixC .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-rYolToVixC .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rYolToVixC .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rYolToVixC .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-rYolToVixC .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rYolToVixC .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-rYolToVixC .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
.cid-rYolThFJsX .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rYolThFJsX .nav-item,
.cid-rYolThFJsX .nav-link,
.cid-rYolThFJsX .navbar-caption {
  font-weight: normal;
}
.cid-rYolThFJsX .nav-item:focus,
.cid-rYolThFJsX .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rYolThFJsX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rYolThFJsX .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-rYolThFJsX .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rYolThFJsX .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rYolThFJsX .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rYolThFJsX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rYolThFJsX .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-rYolThFJsX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rYolThFJsX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rYolThFJsX .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #494949;
  background: none;
}
.cid-rYolThFJsX .navbar.opened {
  transition: all .3s;
  background: #494949 !important;
}
.cid-rYolThFJsX .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rYolThFJsX .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rYolThFJsX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rYolThFJsX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rYolThFJsX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-rYolThFJsX .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rYolThFJsX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rYolThFJsX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rYolThFJsX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rYolThFJsX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rYolThFJsX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rYolThFJsX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rYolThFJsX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rYolThFJsX .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rYolThFJsX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rYolThFJsX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rYolThFJsX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rYolThFJsX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rYolThFJsX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rYolThFJsX .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rYolThFJsX .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rYolThFJsX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rYolThFJsX .navbar.navbar-short {
  background: #494949 !important;
  min-height: 60px;
}
.cid-rYolThFJsX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rYolThFJsX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rYolThFJsX .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rYolThFJsX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rYolThFJsX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rYolThFJsX .dropdown-item.active,
.cid-rYolThFJsX .dropdown-item:active {
  background-color: transparent;
}
.cid-rYolThFJsX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rYolThFJsX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rYolThFJsX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #494949;
}
.cid-rYolThFJsX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rYolThFJsX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rYolThFJsX ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rYolThFJsX .navbar-buttons {
  text-align: center;
}
.cid-rYolThFJsX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rYolThFJsX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rYolThFJsX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rYolThFJsX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rYolThFJsX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rYolThFJsX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rYolThFJsX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rYolThFJsX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rYolThFJsX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rYolThFJsX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rYolThFJsX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rYolThFJsX a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rYolThFJsX .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rYolThFJsX .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rYolThFJsX .soc-item {
  margin: .5rem .3rem;
}
.cid-rYolThFJsX .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rYolThFJsX .navbar {
    height: 77px;
  }
  .cid-rYolThFJsX .navbar.opened {
    height: auto;
  }
  .cid-rYolThFJsX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s1jyJI7JGh {
  padding-top: 135px;
  padding-bottom: 135px;
  background-position: top;
  background-image: url("../../../assets/images/anastase-maragos-x2qjanzvws8-unsplash-2000x1333.jpg");
}
.cid-s1jyJI7JGh .mbr-overlay {
  background: #232323;
}
.cid-s1jyJI7JGh .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-s1jzf58Knl {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s1jzf58Knl .mbr-overlay {
  background: #efefef;
}
.cid-s1jzf58Knl .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-s1jzf58Knl .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-s1jzf58Knl .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s1jzf58Knl .mbr-text {
  color: #8d97ad;
}
.cid-s1jzf58Knl .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s1jzf58Knl .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-s1jzf58Knl .card-title {
    text-align: center;
  }
  .cid-s1jzf58Knl p.mbr-text,
  .cid-s1jzf58Knl p.date {
    text-align: center;
  }
}
.cid-s1jAjMlVSR {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s1jAjMlVSR h4 {
  margin-bottom: 0;
}
.cid-s1jAjMlVSR p {
  color: #767676;
}
.cid-s1jAjMlVSR .cardcenter {
  background-color: #55b4d4;
  transition: all 0.3s;
  border-radius: 10px;
  padding: 1.5rem;
  height: fit-content;
  position: relative;
}
.cid-s1jAjMlVSR .cardcenter:hover {
  background-color: #149dcc;
}
.cid-s1jAjMlVSR .ico2 {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 8rem;
  opacity: 0.3;
}
.cid-s1jAjMlVSR .cards {
  height: fit-content;
  margin-top: -1.5rem;
}
.cid-s1jAjMlVSR .btn[class*="-outline"] {
  border: none;
  padding: 0;
  margin: 0 0.25rem!important;
  box-shadow: none!important;
}
.cid-s1jAjMlVSR .btn[class*="-outline"] span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-s1jAjMlVSR .btn[class*="-outline"]:hover span {
  padding-left: 10px;
}
.cid-s1jAjMlVSR .btn[class*="-outline"]:hover {
  background-color: transparent!important;
  color: #000000 !important;
  box-shadow: none!important;
}
.cid-s1jAjMlVSR .btn[class*="-outline"]:active,
.cid-s1jAjMlVSR .btn[class*="-outline"]:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-s1jAjMlVSR .card-box {
  padding-top: 2rem;
}
.cid-s1jAjMlVSR .card-wrapper {
  height: 100%;
}
.cid-s1jAjMlVSR .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-s1jAjMlVSR img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-s1jAjMlVSR .card-title {
  color: #149dcc;
}
.cid-s1jAjMlVSR .main-title {
  color: #232323;
}
.cid-s1jAjMlVSR .text {
  color: #ffffff;
}
.cid-s1jAjMlVSR .card-subtitle {
  color: #767676;
}
@media (max-width: 992px) {
  .cid-s1jAjMlVSR .cards {
    margin-top: 0rem;
  }
}
@media (max-width: 576px) {
  .cid-s1jAjMlVSR .link {
    margin: auto;
  }
}
.cid-s1jAmG8CZn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s1jAmG8CZn .card-title {
  line-height: 1.6;
  padding: 15px 25px;
  background: linear-gradient(to top, #333333, transparent);
  margin: 0;
  text-align: left;
  color: #ffffff;
}
.cid-s1jAmG8CZn .card-wrapper {
  position: relative;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.08);
}
.cid-s1jAmG8CZn .card-img {
  position: relative;
}
.cid-s1jAmG8CZn .card-img:hover .card-title {
  background: linear-gradient(to top, #149dcc, transparent);
}
.cid-s1jAmG8CZn .card-img img {
  height: 100%;
  object-fit: cover;
}
.cid-s1jAmG8CZn .card {
  margin-bottom: 2rem;
  owerflow: hidden;
}
.cid-s1jAmG8CZn .text-box {
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  padding: 20px;
}
.cid-s1jAmG8CZn .text-box p {
  margin: 0;
}
.cid-s1jAmG8CZn .ico2 {
  color: #232323;
  font-size: 1.1rem;
}
.cid-s1jAmG8CZn .icobig {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  color: #ffffff;
  font-size: 1.9rem;
}
.cid-s1jAmG8CZn .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-s1jAmG8CZn .ico-box p {
  margin: 0;
}
.cid-s1jAmG8CZn .ico-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.5rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.cid-s1jAmG8CZn .p-box {
  background-color: #efefef;
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  display: block;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-s1jAmG8CZn .p-box p {
  padding: 10px;
  margin: 0;
  line-height: 1.5;
}
.cid-s1jAmG8CZn .card-box {
  position: absolute;
  width: 100%;
  bottom: 0px;
  left: 0;
  padding: 0px;
  transition: all 0.3s;
}
.cid-s1jAmG8CZn .mbr-section-title {
  color: #232323;
}
@media (min-width: 576px) {
  .cid-s1jAmG8CZn .card-wrapper {
    display: flex;
  }
  .cid-s1jAmG8CZn .card-img {
    width: 30%;
  }
  .cid-s1jAmG8CZn .content-wrapper {
    width: 70%;
  }
  .cid-s1jAmG8CZn .p-box {
    display: flex;
  }
}
@media (max-width: 576px) {
  .cid-s1jAmG8CZn .text-box {
    display: block;
  }
  .cid-s1jAmG8CZn .mbr-section-btn {
    margin-top: 1rem;
  }
  .cid-s1jAmG8CZn .ico-box {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .cid-s1jAmG8CZn .card-box {
    bottom: 0px;
  }
  .cid-s1jAmG8CZn .p-box {
    padding: 8px;
  }
  .cid-s1jAmG8CZn .card-title {
    padding: 10px 15px;
  }
}
.cid-s1jAmG8CZn .card-text {
  color: #767676;
  text-align: center;
}
.cid-s1jAmG8CZn .phone {
  color: #767676;
}
.cid-s1jAmG8CZn .card-title2 {
  color: #232323;
}
.cid-s1jAne8lqu {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-s1jAne8lqu .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #232323;
  padding: 0;
  transition: all 0.3s;
}
.cid-s1jAne8lqu .mbr-iconfont {
  font-size: 1rem;
  padding-bottom: 3px;
}
.cid-s1jAne8lqu .ico-line {
  display: -webkit-flex;
}
.cid-s1jAne8lqu .col-md-4 {
  padding: 0;
}
.cid-s1jAne8lqu p {
  line-height: 1.6;
}
.cid-s1jAne8lqu .btn-danger-outline {
  border: none;
  background: transparent;
  font-weight: 400!important;
}
.cid-s1jAne8lqu .card-title {
  color: #232323;
  margin: 0;
  line-height: 1.3;
  text-align: left;
}
.cid-s1jAne8lqu .card-img {
  overflow: hidden;
  max-height: 280px;
  position: relative;
  border-radius: 0;
}
.cid-s1jAne8lqu .price-box {
  position: absolute;
  background: #ff3366;
  padding: 0.5rem 1rem;
  left: 0px;
  bottom: 2rem;
  transition: all 0.3s;
}
.cid-s1jAne8lqu img {
  transition: all 0.3s;
}
.cid-s1jAne8lqu h5 {
  margin: 0;
}
.cid-s1jAne8lqu .card-box {
  padding: 1.5rem;
  background: #ffffff;
}
.cid-s1jAne8lqu .mbr-section-title {
  margin: 0 auto;
  color: #232323;
  text-align: left;
}
.cid-s1jAne8lqu .card-box > p,
.cid-s1jAne8lqu .mbr-section-btn {
  color: #767676;
  text-align: left;
}
.cid-s1jAne8lqu .price {
  color: #ffffff;
  text-align: left;
}
.cid-s1jAne8lqu .rev {
  color: #232323;
  line-height: 1.1;
  text-align: left;
}
@media (max-width: 576px) {
  .cid-s1jAne8lqu .line-box {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: left;
    align-items: left;
  }
  .cid-s1jAne8lqu .px-4 {
    padding-right: 4px!important;
    padding-left: 4px!important;
  }
  .cid-s1jAne8lqu .col-md-4 {
    padding: 0 15px;
  }
  .cid-s1jAne8lqu .col-md-8 {
    margin: 0 15px;
  }
  .cid-s1jAne8lqu .price-box {
    left: 15px;
  }
  .cid-s1jAne8lqu .card-box {
    padding: 1rem;
  }
}
.cid-s1jH5JqqcO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/man-using-stationary-bike-897064-2000x1333.jpg");
}
.cid-s1jH5JqqcO .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s1jH5JqqcO .plan-body .btn-bgr {
  z-index: 0;
}
.cid-s1jH5JqqcO .list-group-item {
  padding: .5rem 3.25rem;
  background: transparent;
}
.cid-s1jH5JqqcO .price-term {
  margin-left: -5px;
}
.cid-s1jH5JqqcO .pt2 {
  padding-top: 2rem;
}
.cid-s1jH5JqqcO .plan-favorite {
  background-color: #333333;
  width: 40%;
  border-radius: .25rem;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: -26px;
  margin-left: -20%;
}
.cid-s1jH5JqqcO .plan-descr {
  color: #444444;
}
.cid-s1jH5JqqcO .plan-price {
  margin-top: 2rem;
}
.cid-s1jH5JqqcO .plan-header {
  border-radius: .25rem .25rem 0 0;
  overflow: hidden;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s1jH5JqqcO .plan-body {
  border-radius: 0 0 .25rem .25rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s1jH5JqqcO .plan-card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s1jH5JqqcO .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #8d97ad;
}
.cid-s1jH5JqqcO .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-s1jH5JqqcO .plan .list-group-item:last-child {
  border-radius: 8px;
}
.cid-s1jH5JqqcO .plan-header,
.cid-s1jH5JqqcO .plan-body {
  background-color: #ffffff;
}
.cid-s1jH5JqqcO .price-figure {
  font-weight: 300;
  color: #232323;
}
.cid-s1jH5JqqcO .price-value {
  font-weight: 300;
  vertical-align: top;
  line-height: 1;
  margin-right: -5px;
}
@media (max-width: 992px) {
  .cid-s1jH5JqqcO .plan {
    margin-bottom: 3rem !important;
  }
}
@media (max-width: 550px) {
  .cid-s1jH5JqqcO .price-figure {
    font-size: 4.25rem;
  }
}
.cid-s1jH6QwLyy {
  padding-top: 45px;
  padding-bottom: 45px;
  background: linear-gradient(45deg, #f4f8fa, #f4f8fa);
}
.cid-s1jH6QwLyy .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s1jH6QwLyy .plan-body .btn-bgr {
  z-index: 0;
}
.cid-s1jH6QwLyy .list-group-item {
  padding: .5rem 3.25rem;
  background: transparent;
}
.cid-s1jH6QwLyy .price-term {
  margin-left: -5px;
}
.cid-s1jH6QwLyy .pt2 {
  padding-top: 2rem;
}
.cid-s1jH6QwLyy .plan-favorite {
  background-color: #188ef4;
  width: 40%;
  border-radius: .25rem;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: -26px;
  margin-left: -20%;
}
.cid-s1jH6QwLyy .plan-descr {
  color: #444444;
}
.cid-s1jH6QwLyy .plan-price {
  margin-top: 2rem;
}
.cid-s1jH6QwLyy .plan-header {
  border-radius: .25rem .25rem 0 0;
  overflow: hidden;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s1jH6QwLyy .plan-body {
  border-radius: 0 0 .25rem .25rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s1jH6QwLyy .plan-card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s1jH6QwLyy .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #8d97ad;
}
.cid-s1jH6QwLyy .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-s1jH6QwLyy .plan .list-group-item:last-child {
  border-radius: 8px;
}
.cid-s1jH6QwLyy .plan .plan-favorite {
  display: none;
}
.cid-s1jH6QwLyy .plan:nth-child(2) .plan-favorite {
  background-color: #000000;
  display: block !important;
}
.cid-s1jH6QwLyy .plan-header,
.cid-s1jH6QwLyy .plan-body {
  background-color: #ffffff;
}
.cid-s1jH6QwLyy .price-figure {
  font-weight: 300;
  color: #232323;
}
.cid-s1jH6QwLyy .price-value {
  font-weight: 300;
  vertical-align: top;
  line-height: 1;
  margin-right: -5px;
}
@media (max-width: 992px) {
  .cid-s1jH6QwLyy .plan {
    margin-bottom: 3rem !important;
  }
}
@media (max-width: 550px) {
  .cid-s1jH6QwLyy .price-figure {
    font-size: 4.25rem;
  }
}
.cid-s1jA76FWby {
  padding-top: 60px;
  padding-bottom: 60px;
  z-index: 1;
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-s1jA76FWby .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-s1jA76FWby .mbr-text {
  margin: 0;
}
.cid-s1jA76FWby .check-in-input,
.cid-s1jA76FWby .check-out-input,
.cid-s1jA76FWby .guests .date-col span {
  cursor: pointer;
}
.cid-s1jA76FWby .content-wrap {
  display: -webkit-flex;
  justify-content: center;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -webkit-flex-wrap: wrap;
}
.cid-s1jA76FWby .content-wrap .first-item,
.cid-s1jA76FWby .content-wrap .second-item {
  padding: 1.5rem;
}
.cid-s1jA76FWby .content-wrap .first-item {
  background: #c19b76;
}
.cid-s1jA76FWby .content-wrap .first-item .item-text {
  text-align: center;
}
.cid-s1jA76FWby .content-wrap .first-item .item-btn .btn {
  margin-left: 4px !important;
}
.cid-s1jA76FWby .content-wrap .second-item {
  background: #709faf;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-s1jA76FWby .content-wrap .second-item .check-text {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 1rem 0;
}
.cid-s1jA76FWby .content-wrap .second-item .check-out {
  border-top: 2px solid #ffffff;
}
.cid-s1jA76FWby .input-wrap {
  background: #fcfcfc;
}
.cid-s1jA76FWby .booking-datepicker {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s1jA76FWby .booking-datepicker .mbr-form .input-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.cid-s1jA76FWby .booking-datepicker .mbr-form .input-wrap input {
  border: none;
  border-radius: 0;
  position: absolute;
  background: transparent;
  z-index: 2;
  left: -90px;
  top: 25%;
  height: 50%;
  width: calc(100% + 90px);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.cid-s1jA76FWby .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-s1jA76FWby .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-s1jA76FWby .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-s1jA76FWby .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-s1jA76FWby .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-s1jA76FWby .booking-datepicker .mbr-form .input-wrap input:focus {
  box-shadow: none;
}
.cid-s1jA76FWby .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #709faf;
}
.cid-s1jA76FWby .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #709faf;
  z-index: 1;
}
.cid-s1jA76FWby .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-s1jA76FWby .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-s1jA76FWby .booking-datepicker .mbr-form .input-wrap .date-row .date-col {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s1jA76FWby .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-s1jA76FWby .booking-datepicker .mbr-form .mbr-section-btn {
  display: flex;
  margin: 0;
}
.cid-s1jA76FWby .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
  width: 100%;
}
.cid-s1jA76FWby .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  width: 100%;
  margin: 0;
  padding: 10px 15px;
  white-space: pre-wrap;
  line-height: 18px;
  font-weight: 300;
  border-radius: 0 !important;
}
.cid-s1jA76FWby .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-s1jA76FWby .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-s1jA76FWby .datepicker {
  background-color: #fcfcfc;
  color: #709faf;
}
.cid-s1jA76FWby .datepicker .active.day {
  background-color: #ff9a8a !important;
  color: #ffffff !important;
}
.cid-s1jA76FWby .datepicker:after {
  border-top-color: #fcfcfc;
  border-bottom-color: #fcfcfc;
}
@media (max-width: 767px) {
  .cid-s1jA76FWby .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-s1jA76FWby .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-s1jA76FWby .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-s1jA76FWby .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-s1jA76FWby .email input {
    border-radius: 0;
  }
}
@media (min-width: 768px) {
  .cid-s1jA76FWby .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #709faf !important;
  }
}
@media (max-width: 991px) {
  .cid-s1jA76FWby .booking-datepicker {
    padding-top: 2rem;
  }
}
@media (max-width: 575px) {
  .cid-s1jA76FWby .datepicker {
    left: 10% !important;
  }
}
.cid-s1jzX8DJ7n {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f4f8fa;
}
.cid-s1jzX8DJ7n .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-s1jzX8DJ7n .panel-group {
  width: 100%;
}
.cid-s1jzX8DJ7n .panel-text,
.cid-s1jzX8DJ7n .header-text,
.cid-s1jzX8DJ7n .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s1jzX8DJ7n .card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  margin-bottom: .5rem;
  border: none;
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cid-s1jzX8DJ7n .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-s1jzX8DJ7n .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  line-height: normal;
}
.cid-s1jzX8DJ7n .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s1jzX8DJ7n .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-s1jzX8DJ7n .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-s1jzX8DJ7n .card .card-header a.panel-title[aria-expanded="true"] {
  background-color: #188ef4;
}
.cid-s1jzX8DJ7n .card .card-header a.panel-title[aria-expanded="true"] .header-text {
  color: #ffffff !important;
}
.cid-s1jzX8DJ7n .card .panel-body {
  background: #ffffff;
}
.cid-s1jzX8DJ7n .sign {
  color: #232323;
}
.cid-rYolToVixC {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rYolToVixC .mbr-text {
  color: #444;
}
.cid-rYolToVixC .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rYolToVixC .social-list .mbr-iconfont-social {
  font-size: 1.1rem;
  color: black;
}
.cid-rYolToVixC .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rYolToVixC .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rYolToVixC .social-list a:hover {
  opacity: .4;
}
@media (max-width: 991px) {
  .cid-rYolToVixC .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rYolToVixC .media-container-row > div {
  padding: 0px;
}
@media (max-width: 991px) {
  .cid-rYolToVixC .mbr-text {
    text-align: center !important;
    padding-bottom: 1.5rem;
  }
}
