body {
  font-family: Nunito;
}
.display-1 {
  font-family: 'Nunito', sans-serif;
  font-size: 4.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 7.68rem;
}
.display-2 {
  font-family: 'Nunito', sans-serif;
  font-size: 2.2rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-4 {
  font-family: 'Kanit', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.84rem;
  }
}
/* ---- 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: 3.84rem;
    font-size: calc( 2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 1.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #fcdd04 !important;
}
.bg-success {
  background-color: #7dff00 !important;
}
.bg-info {
  background-color: #01319a !important;
}
.bg-warning {
  background-color: #01319a !important;
}
.bg-danger {
  background-color: #ff0808 !important;
}
.btn-primary {
  box-shadow: 0 0 0 100px #fcdd04 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fcdd04 !important;
  border-color: #fcdd04 !important;
  color: #010100 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #010100 !important;
  background-color: #b19b02 !important;
  border-color: #b19b02 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #010100 !important;
  background-color: #b19b02 !important;
  border-color: #b19b02 !important;
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 0 0 2px #fcdd04 inset !important;
  background: transparent !important;
  border: none !important;
  color: #fcdd04 !important;
}
.btn-primary span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-primary {
    width: -webkit-fill-available;
  }
}
.btn-secondary {
  box-shadow: 0 0 0 100px #001b57 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #001b57 !important;
  border-color: #001b57 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #00030b !important;
  border-color: #00030b !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #00030b !important;
  border-color: #00030b !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 0 0 2px #001b57 inset !important;
  background: transparent !important;
  border: none !important;
  color: #001b57 !important;
}
.btn-secondary span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-secondary {
    width: -webkit-fill-available;
  }
}
.btn-info {
  box-shadow: 0 0 0 100px #01319a inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-info,
.btn-info:active {
  background-color: #01319a !important;
  border-color: #01319a !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #01194e !important;
  border-color: #01194e !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #01194e !important;
  border-color: #01194e !important;
}
.btn-info:hover,
.btn-info:focus {
  box-shadow: 0 0 0 2px #01319a inset !important;
  background: transparent !important;
  border: none !important;
  color: #01319a !important;
}
.btn-info span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-info {
    width: -webkit-fill-available;
  }
}
.btn-success {
  box-shadow: 0 0 0 100px #7dff00 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-success,
.btn-success:active {
  background-color: #7dff00 !important;
  border-color: #7dff00 !important;
  color: #000000 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
  background-color: #58b300 !important;
  border-color: #58b300 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #58b300 !important;
  border-color: #58b300 !important;
}
.btn-success:hover,
.btn-success:focus {
  box-shadow: 0 0 0 2px #7dff00 inset !important;
  background: transparent !important;
  border: none !important;
  color: #7dff00 !important;
}
.btn-success span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-success {
    width: -webkit-fill-available;
  }
}
.btn-warning {
  box-shadow: 0 0 0 100px #01319a inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #01319a !important;
  border-color: #01319a !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #01194e !important;
  border-color: #01194e !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #01194e !important;
  border-color: #01194e !important;
}
.btn-warning:hover,
.btn-warning:focus {
  box-shadow: 0 0 0 2px #01319a inset !important;
  background: transparent !important;
  border: none !important;
  color: #01319a !important;
}
.btn-warning span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-warning {
    width: -webkit-fill-available;
  }
}
.btn-danger {
  box-shadow: 0 0 0 100px #ff0808 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff0808 !important;
  border-color: #ff0808 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ba0000 !important;
  border-color: #ba0000 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ba0000 !important;
  border-color: #ba0000 !important;
}
.btn-danger:hover,
.btn-danger:focus {
  box-shadow: 0 0 0 2px #ff0808 inset !important;
  background: transparent !important;
  border: none !important;
  color: #ff0808 !important;
}
.btn-danger span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-danger {
    width: -webkit-fill-available;
  }
}
.btn-white {
  box-shadow: 0 0 0 100px #ffffff inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover,
.btn-white:focus {
  box-shadow: 0 0 0 2px #ffffff inset !important;
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
}
.btn-white span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-white {
    width: -webkit-fill-available;
  }
}
.btn-black {
  box-shadow: 0 0 0 100px #333333 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover,
.btn-black:focus {
  box-shadow: 0 0 0 2px #333333 inset !important;
  background: transparent !important;
  border: none !important;
  color: #333333 !important;
}
.btn-black span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-black {
    width: -webkit-fill-available;
  }
}
.btn-primary-outline {
  box-shadow: 0 0 0 2px #fcdd04 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #988502;
  color: #988502;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #010100;
  background-color: #fcdd04;
  border-color: #fcdd04;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #010100 !important;
  background-color: #fcdd04 !important;
  border-color: #fcdd04 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus {
  box-shadow: 0 0 0 100px #fcdd04 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-primary-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-primary-outline span:after {
  content: '';
  position: absolute;
  background: #fcdd04;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-primary-outline {
    width: -webkit-fill-available;
  }
}
.btn-secondary-outline {
  box-shadow: 0 0 0 2px #001b57 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #001b57;
  border-color: #001b57;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #001b57 !important;
  border-color: #001b57 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  box-shadow: 0 0 0 100px #001b57 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-secondary-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-secondary-outline span:after {
  content: '';
  position: absolute;
  background: #001b57;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-secondary-outline {
    width: -webkit-fill-available;
  }
}
.btn-info-outline {
  box-shadow: 0 0 0 2px #01319a inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #001135;
  color: #001135;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #01319a;
  border-color: #01319a;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #01319a !important;
  border-color: #01319a !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus {
  box-shadow: 0 0 0 100px #01319a inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-info-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-info-outline span:after {
  content: '';
  position: absolute;
  background: #01319a;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-info-outline {
    width: -webkit-fill-available;
  }
}
.btn-success-outline {
  box-shadow: 0 0 0 2px #7dff00 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #4b9900;
  color: #4b9900;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000;
  background-color: #7dff00;
  border-color: #7dff00;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #7dff00 !important;
  border-color: #7dff00 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus {
  box-shadow: 0 0 0 100px #7dff00 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-success-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-success-outline span:after {
  content: '';
  position: absolute;
  background: #7dff00;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-success-outline {
    width: -webkit-fill-available;
  }
}
.btn-warning-outline {
  box-shadow: 0 0 0 2px #01319a inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #001135;
  color: #001135;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #01319a;
  border-color: #01319a;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #01319a !important;
  border-color: #01319a !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus {
  box-shadow: 0 0 0 100px #01319a inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-warning-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-warning-outline span:after {
  content: '';
  position: absolute;
  background: #01319a;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-warning-outline {
    width: -webkit-fill-available;
  }
}
.btn-danger-outline {
  box-shadow: 0 0 0 2px #ff0808 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #a10000;
  color: #a10000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #ff0808;
  border-color: #ff0808;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0808 !important;
  border-color: #ff0808 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus {
  box-shadow: 0 0 0 100px #ff0808 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-danger-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-danger-outline span:after {
  content: '';
  position: absolute;
  background: #ff0808;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-danger-outline {
    width: -webkit-fill-available;
  }
}
.btn-black-outline {
  box-shadow: 0 0 0 2px #333333 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus {
  box-shadow: 0 0 0 100px #333333 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-black-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-black-outline span:after {
  content: '';
  position: absolute;
  background: #333333;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-black-outline {
    width: -webkit-fill-available;
  }
}
.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: #fcdd04 !important;
}
.text-secondary {
  color: #001b57 !important;
}
.text-success {
  color: #7dff00 !important;
}
.text-info {
  color: #01319a !important;
}
.text-warning {
  color: #01319a !important;
}
.text-danger {
  color: #ff0808 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #181818 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #fcdd04 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #001b57 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #4b9900 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #001135 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #001135 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #a10000 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #01319a;
}
.alert-warning {
  background-color: #01319a;
}
.alert-danger {
  background-color: #ff0808;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fcdd04;
  border-color: #fcdd04;
  color: #1a1700;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #fcdd04;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fef8ce;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e5ffcc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #1d63fe;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #1d63fe;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffd4d4;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #fcdd04;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fcdd04;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #fcdd04;
  border-bottom-color: #fcdd04;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #fcdd04 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #001b57 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section) {
  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%;
  -webkit-transform: translateX(-50%) translateY(-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='%23fcdd04' %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-uJGkVUJrSv .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-uJGkVUJrSv .navbar-fixed-top {
  padding-top: 0;
}
.cid-uJGkVUJrSv .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-uJGkVUJrSv .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-uJGkVUJrSv .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-uJGkVUJrSv .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uJGkVUJrSv .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uJGkVUJrSv .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uJGkVUJrSv .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-uJGkVUJrSv .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uJGkVUJrSv .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uJGkVUJrSv .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uJGkVUJrSv .menu-content-top {
  background: #fcdd04;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uJGkVUJrSv .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uJGkVUJrSv .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-uJGkVUJrSv .dropdown-item,
.cid-uJGkVUJrSv .nav-link,
.cid-uJGkVUJrSv .brand-name {
  font-style: normal;
}
.cid-uJGkVUJrSv .dropdown-item:hover,
.cid-uJGkVUJrSv .nav-link:hover,
.cid-uJGkVUJrSv .brand-name:hover {
  color: #fcdd04 !important;
}
.cid-uJGkVUJrSv .dropdown-menu {
  background-color: #ffffff;
}
.cid-uJGkVUJrSv .dropdown-item:active {
  background-color: #ffffff;
}
.cid-uJGkVUJrSv .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uJGkVUJrSv .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uJGkVUJrSv .nav-item {
  position: relative;
}
.cid-uJGkVUJrSv .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uJGkVUJrSv .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-uJGkVUJrSv .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-uJGkVUJrSv .nav-link {
    line-height: 6.13;
  }
  .cid-uJGkVUJrSv .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #a85105;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-uJGkVUJrSv .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-uJGkVUJrSv .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJGkVUJrSv .content-text {
  margin-bottom: 0;
}
.cid-uJGkVUJrSv .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uJGkVUJrSv .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #fcdd04;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uJGkVUJrSv .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uJGkVUJrSv .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uJGkVUJrSv .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-uJGkVUJrSv .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJGkVUJrSv .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uJGkVUJrSv .content-right-side {
  text-align: center;
}
.cid-uJGkVUJrSv .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uJGkVUJrSv .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uJGkVUJrSv .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #001b57;
}
.cid-uJGkVUJrSv .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-uJGkVUJrSv .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uJGkVUJrSv .info-widget:first-child {
  margin-left: 0;
}
.cid-uJGkVUJrSv .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uJGkVUJrSv .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-uJGkVUJrSv .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uJGkVUJrSv .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #fcdd04;
}
@media (min-width: 992px) {
  .cid-uJGkVUJrSv .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-uJGkVUJrSv .navbar {
    display: block;
    padding: 0;
  }
  .cid-uJGkVUJrSv .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-uJGkVUJrSv .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uJGkVUJrSv .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uJGkVUJrSv .navbar-toggler {
    display: none;
  }
  .cid-uJGkVUJrSv .navbar-collapse {
    justify-content: flex-start;
  }
}
.cid-uJGkVUJrSv .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uJGkVUJrSv .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-uJGkVUJrSv .btn-sm {
  padding: 13px 29px;
}
.cid-uJGkVUJrSv .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uJGkVUJrSv .btn::after {
  background-color: #01319a;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-uJGkVUJrSv .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-uJGkVUJrSv .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uJGkVUJrSv .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uJGkVUJrSv .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-uJGkVUJrSv .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uJGkVUJrSv .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uJGkVUJrSv .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uJGkVUJrSv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJGkVUJrSv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJGkVUJrSv .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uJGkVUJrSv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uJGkVUJrSv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJGkVUJrSv .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uJGkVUJrSv .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJGkVUJrSv .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uJGkVUJrSv .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-uJGkVUJrSv .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uJGkVUJrSv .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uJGkVUJrSv .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uJGkVUJrSv button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-uJGkVUJrSv button.navbar-toggler:focus {
  outline: none;
}
.cid-uJGkVUJrSv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #723704;
}
.cid-uJGkVUJrSv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJGkVUJrSv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJGkVUJrSv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJGkVUJrSv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJGkVUJrSv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJGkVUJrSv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJGkVUJrSv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJGkVUJrSv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJGkVUJrSv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJGkVUJrSv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJGkVUJrSv .collapsed .btn {
  display: flex;
}
.cid-uJGkVUJrSv .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uJGkVUJrSv .collapsed .navbar-collapse.collapsing,
.cid-uJGkVUJrSv .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uJGkVUJrSv .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uJGkVUJrSv .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uJGkVUJrSv .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uJGkVUJrSv .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uJGkVUJrSv .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uJGkVUJrSv .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-uJGkVUJrSv .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uJGkVUJrSv .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uJGkVUJrSv .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uJGkVUJrSv .collapsed button.navbar-toggler {
  display: block;
}
.cid-uJGkVUJrSv .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uJGkVUJrSv .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-uJGkVUJrSv .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uJGkVUJrSv .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uJGkVUJrSv .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uJGkVUJrSv .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uJGkVUJrSv .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uJGkVUJrSv .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-uJGkVUJrSv .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-uJGkVUJrSv .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uJGkVUJrSv .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-uJGkVUJrSv .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-uJGkVUJrSv .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-uJGkVUJrSv .navbar-collapse.collapsing,
  .cid-uJGkVUJrSv .navbar-collapse.show {
    display: block !important;
  }
  .cid-uJGkVUJrSv .navbar-collapse.collapsing .navbar-nav,
  .cid-uJGkVUJrSv .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uJGkVUJrSv .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uJGkVUJrSv .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uJGkVUJrSv .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-uJGkVUJrSv .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-uJGkVUJrSv .navbar-collapse.collapsing .navbar-buttons,
  .cid-uJGkVUJrSv .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uJGkVUJrSv .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uJGkVUJrSv .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uJGkVUJrSv img {
    height: 3.8rem !important;
  }
  .cid-uJGkVUJrSv .btn {
    display: flex;
  }
  .cid-uJGkVUJrSv button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uJGkVUJrSv .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uJGkVUJrSv .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-uJGkVUJrSv .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uJGkVUJrSv .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uJGkVUJrSv .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uJGkVUJrSv .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uJGkVUJrSv .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uJGkVUJrSv .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uJGkVUJrSv .navbar-toggler {
  position: relative;
}
.cid-uJGkVUJrSv .dropdown-item.active,
.cid-uJGkVUJrSv .dropdown-item:active {
  color: initial;
}
.cid-uJGkVUJrSv .widget-title {
  color: #01319a;
}
.cid-uJGkVUJrSv .widget-text {
  color: #01319a;
}
.cid-uJGkVUJrSv .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-uJGkVUJrSv .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #fcdd04;
  display: inline-flex;
  background-color: #ffffff;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-uJGkVUJrSv .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-uJGkVUJrSv .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #a85105;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-uJGkVUJrSv .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-uJGkVUJrSv .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-uJGkVUJrSv .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-uJGkVUJrSv .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-uJGkVUJrSv .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-uJGkVUJrSv .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-uJGkVUJrSv .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-uJGkVUJrSv .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-uJGkVUJrSv .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-uJGkVUJrSv .menu-content-top,
  .cid-uJGkVUJrSv .menu-bottom {
    padding: 0 15px;
  }
  .cid-uJGkVUJrSv button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-uJGkVUJrSv .widget-title,
.cid-uJGkVUJrSv .widget-icon {
  color: #512d0e;
}
.cid-sNaBLdvHWi {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNaBLdvHWi h2 {
  color: #000000;
}
.cid-sNaBLdvHWi h1 {
  color: #000000;
}
.cid-sNaBLdvHWi .mbr-text,
.cid-sNaBLdvHWi .mbr-section-btn {
  color: #001348;
  text-align: left;
}
.cid-sNaBLdvHWi H1 {
  color: #fff902;
}
.cid-uKILqq7c5I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcdd04;
}
.cid-uKILqq7c5I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKILqq7c5I .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uKILqq7c5I .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKILqq7c5I .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uKILqq7c5I .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uKILqq7c5I h5 {
  margin: 0;
}
.cid-uKILqq7c5I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKILqq7c5I .iconfont-wrapper {
  position: relative;
}
.cid-uKILqq7c5I .iconfont-wrapper:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fcdd04;
  transition: all 0.3s;
  opacity: 0.3;
}
.cid-uKILqq7c5I .mbr-iconfont {
  display: flex;
  font-size: 3rem;
  color: #ffffff;
  width: 100px;
  justify-content: center;
  align-items: center;
  height: 100px;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uKILqq7c5I .card-title,
.cid-uKILqq7c5I .iconfont-wrapper {
  color: #512d0e;
}
.cid-uKILqq7c5I .card-text {
  color: #723704;
}
.cid-uKILqq7c5I .mbr-section-title {
  color: #000000;
}
.cid-uJH904Zvlw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJH904Zvlw .item-img,
.cid-uJH904Zvlw .img-wrap,
.cid-uJH904Zvlw img {
  border-radius: 50% !important;
  display: flex;
  justify-content: center;
}
.cid-uJH904Zvlw img,
.cid-uJH904Zvlw .item-img {
  width: 230px;
  overflow: hidden;
  transition: transform 3s;
  cursor: pointer;
  object-fit: cover;
  min-height: 230px;
  height: 230px;
}
@media (max-width: 1600px) {
  .cid-uJH904Zvlw img,
  .cid-uJH904Zvlw .item-img {
    width: 180px;
    min-height: 180px;
    height: 180px;
  }
}
.cid-uJH904Zvlw .item-img {
  border: 1px solid transparent;
  transition: all 0.3s;
}
.cid-uJH904Zvlw .item:focus,
.cid-uJH904Zvlw span:focus {
  outline: none;
}
.cid-uJH904Zvlw .img-wrap {
  transition: all 0.3s;
  overflow: hidden;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
}
.cid-uJH904Zvlw .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uJH904Zvlw .item {
    margin-bottom: 1rem;
  }
}
.cid-uJH904Zvlw h5 {
  margin: 0;
}
.cid-uJH904Zvlw .item-content {
  margin-top: 1rem;
  padding: 0rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-uJH904Zvlw .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
  transition: all 0.3s;
}
.cid-uJH904Zvlw .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uJH904Zvlw .item-wrapper:hover .item-img {
  border: 1px solid lightgray;
}
.cid-uJH904Zvlw .item-wrapper:hover .img-wrap {
  margin: 10px;
}
@media (max-width: 992px) {
  .cid-uJH904Zvlw .item-wrapper {
    height: auto;
  }
}
.cid-uJH904Zvlw .mbr-section-title {
  color: #723704;
  text-align: center;
}
.cid-uJH904Zvlw .item-title {
  text-align: center;
  color: #723704;
}
.cid-uJH904Zvlw .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-uJH904Zvlw .mbr-text,
.cid-uJH904Zvlw .item .mbr-section-btn {
  text-align: center;
}
.cid-uJH904Zvlw .mbr-section-subtitle,
.cid-uJH904Zvlw .mbr-section-head .mbr-section-btn {
  text-align: left;
}
.cid-uSWHPR3O41 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uSWHPR3O41 .item-subtitle a {
  font-weight: 600;
}
.cid-uSWHPR3O41 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uSWHPR3O41 .item:hover img {
  transform: scale(1.05);
}
.cid-uSWHPR3O41 .item-img {
  overflow: hidden;
}
.cid-uSWHPR3O41 img,
.cid-uSWHPR3O41 .item-img {
  width: 100%;
  transition: all 1s;
  height: 100%;
  object-fit: cover;
}
.cid-uSWHPR3O41 h5 {
  margin: 0;
}
.cid-uSWHPR3O41 .item:focus,
.cid-uSWHPR3O41 span:focus {
  outline: none;
}
.cid-uSWHPR3O41 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffe200;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uSWHPR3O41 .item-content {
  padding-top: 2rem;
}
.cid-uSWHPR3O41 .mbr-section-title {
  color: #6e5604;
  text-align: center;
}
.cid-uSWHPR3O41 .item-title {
  color: #01319a;
  text-align: center;
}
.cid-uKmueOPXgl {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-5-1920x1280.jpg");
}
.cid-uKmueOPXgl .mbr-overlay {
  background: #01319a;
  opacity: 0.5;
}
.cid-uKmueOPXgl img,
.cid-uKmueOPXgl .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uKmueOPXgl .item:focus,
.cid-uKmueOPXgl span:focus {
  outline: none;
}
.cid-uKmueOPXgl .item-wrapper {
  position: relative;
}
.cid-uKmueOPXgl .slide-content {
  position: relative;
  border-radius: 4px;
  background: #01319a;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uKmueOPXgl .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uKmueOPXgl .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-uKmueOPXgl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uKmueOPXgl .mbr-section-title {
  color: #ffffff;
}
.cid-uKmueOPXgl .mbr-text,
.cid-uKmueOPXgl .mbr-section-btn {
  text-align: left;
}
.cid-uKmueOPXgl .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-uKmueOPXgl .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uKmueOPXgl .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-uKmueOPXgl .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uKmueOPXgl .embla__button--next,
.cid-uKmueOPXgl .embla__button--prev {
  display: flex;
}
.cid-uKmueOPXgl .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uKmueOPXgl .embla__button {
    display: none;
  }
}
.cid-uKmueOPXgl .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uKmueOPXgl .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uKmueOPXgl .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKmueOPXgl .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uKmueOPXgl .embla__button {
    top: auto;
  }
}
.cid-uKmueOPXgl .embla {
  position: relative;
  width: 100%;
}
.cid-uKmueOPXgl .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uKmueOPXgl .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uKmueOPXgl .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uKmueOPXgl .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-uKmueOPXgl .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-uKmueOPXgl .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-uKmueOPXgl .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uSs0MOQTqD {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uSs0MOQTqD .item-subtitle a {
  font-weight: 600;
}
.cid-uSs0MOQTqD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uSs0MOQTqD .item:hover img {
  transform: scale(1.05);
}
.cid-uSs0MOQTqD .item-img {
  overflow: hidden;
}
.cid-uSs0MOQTqD img,
.cid-uSs0MOQTqD .item-img {
  width: 100%;
  transition: all 1s;
  height: 100%;
  object-fit: cover;
}
.cid-uSs0MOQTqD h5 {
  margin: 0;
}
.cid-uSs0MOQTqD .item:focus,
.cid-uSs0MOQTqD span:focus {
  outline: none;
}
.cid-uSs0MOQTqD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uSs0MOQTqD .item-content {
  padding-top: 2rem;
}
.cid-uSs0MOQTqD .mbr-section-title {
  color: #01319a;
  text-align: center;
}
.cid-uSs0MOQTqD .item-title {
  color: #01319a;
  text-align: center;
}
.cid-uSW75GIdsn {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uSW75GIdsn .mbr-overlay {
  background: #ffe200;
  opacity: 0.4;
}
.cid-uSW75GIdsn img,
.cid-uSW75GIdsn .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uSW75GIdsn .item:focus,
.cid-uSW75GIdsn span:focus {
  outline: none;
}
.cid-uSW75GIdsn .item-wrapper {
  position: relative;
}
.cid-uSW75GIdsn .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffe200;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSW75GIdsn .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSW75GIdsn .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-uSW75GIdsn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSW75GIdsn .mbr-section-title {
  color: #ffffff;
}
.cid-uSW75GIdsn .mbr-text,
.cid-uSW75GIdsn .mbr-section-btn {
  text-align: left;
}
.cid-uSW75GIdsn .item-title {
  text-align: center;
  color: #6e5604;
}
.cid-uSW75GIdsn .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uSW75GIdsn .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-uSW75GIdsn .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uSW75GIdsn .embla__button--next,
.cid-uSW75GIdsn .embla__button--prev {
  display: flex;
}
.cid-uSW75GIdsn .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uSW75GIdsn .embla__button {
    display: none;
  }
}
.cid-uSW75GIdsn .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uSW75GIdsn .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uSW75GIdsn .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uSW75GIdsn .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uSW75GIdsn .embla__button {
    top: auto;
  }
}
.cid-uSW75GIdsn .embla {
  position: relative;
  width: 100%;
}
.cid-uSW75GIdsn .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uSW75GIdsn .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uSW75GIdsn .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uSW75GIdsn .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-uSW75GIdsn .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-uSW75GIdsn .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-uSW75GIdsn .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uSW6WD7sEZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSW6WD7sEZ .item-subtitle a {
  font-weight: 600;
}
.cid-uSW6WD7sEZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uSW6WD7sEZ .item:hover img {
  transform: scale(1.05);
}
.cid-uSW6WD7sEZ .item-img {
  overflow: hidden;
}
.cid-uSW6WD7sEZ img,
.cid-uSW6WD7sEZ .item-img {
  width: 100%;
  transition: all 1s;
  height: 100%;
  object-fit: cover;
}
.cid-uSW6WD7sEZ h5 {
  margin: 0;
}
.cid-uSW6WD7sEZ .item:focus,
.cid-uSW6WD7sEZ span:focus {
  outline: none;
}
.cid-uSW6WD7sEZ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uSW6WD7sEZ .item-content {
  padding-top: 2rem;
}
.cid-uSW6WD7sEZ .mbr-section-title {
  color: #6e5604;
  text-align: center;
}
.cid-uSW6WD7sEZ .item-title {
  color: #01319a;
  text-align: center;
}
.cid-uSWHFygv8d {
  overflow: hidden;
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #01319a;
}
.cid-uSWHFygv8d .link {
  opacity: 0;
  -webkit-transform: translate(-10px, 40px);
  transform: translate(-10px, 40px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 600;
  margin: 0;
}
.cid-uSWHFygv8d h4 {
  -webkit-transform: translate(0px, 20px);
  transform: translate(0px, 20px);
  -webkit-animation: animationFramesOut linear 0.6s;
  animation: animationFramesOut linear 0.6s;
}
.cid-uSWHFygv8d .svg11 path {
  fill: #ffe200;
}
.cid-uSWHFygv8d .svg21 path {
  fill: #01319a;
}
.cid-uSWHFygv8d .svg31 path {
  fill: #01319a;
}
.cid-uSWHFygv8d .svg4 path {
  fill: #ffe200 !important;
}
.cid-uSWHFygv8d .svg12 path,
.cid-uSWHFygv8d .svg22 path,
.cid-uSWHFygv8d .svg32 path {
  fill: #ffffff;
  stroke: #451b00;
}
.cid-uSWHFygv8d .card {
  position: relative;
  height: 300px;
}
.cid-uSWHFygv8d .card:hover .link {
  opacity: 1;
  -webkit-transform: translate(-10px, 10px);
  transform: translate(-10px, 10px);
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.cid-uSWHFygv8d .card:hover h4 {
  -webkit-animation: animationFrames linear 0.6s;
  animation: animationFrames linear 0.6s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: translate(0px, 20px);
  transform: translate(0px, 20px);
}
.cid-uSWHFygv8d .card:hover .svg11 {
  -webkit-transform: skew(0deg, 10deg) scaleX(0.8) scaleY(0.7) rotate(-10deg);
  transform: skew(0deg, 10deg) scaleX(0.8) scaleY(0.7) rotate(-10deg);
}
.cid-uSWHFygv8d .card:hover .svg12 {
  -webkit-transform: skew(0deg, 10deg) scaleX(0.8) scaleY(0.7) rotate(30deg);
  transform: skew(0deg, 10deg) scaleX(0.8) scaleY(0.7) rotate(30deg);
}
.cid-uSWHFygv8d .card:hover .svg21 {
  -webkit-transform: skew(-20deg, 10deg) scaleX(0.8) scaleY(0.7) rotate(-10deg);
  transform: skew(-20deg, 10deg) scaleX(0.8) scaleY(0.7) rotate(-10deg);
}
.cid-uSWHFygv8d .card:hover .svg22 {
  -webkit-transform: skew(-20deg, 10deg) scaleX(0.8) scaleY(0.7) rotate(20deg);
  transform: skew(-20deg, 10deg) scaleX(0.8) scaleY(0.7) rotate(20deg);
}
.cid-uSWHFygv8d .card:hover .svg31 {
  -webkit-transform: skew(0deg, 10deg) scaleX(0.8) scaleY(0.7) rotate(-10deg);
  transform: skew(0deg, 10deg) scaleX(0.8) scaleY(0.7) rotate(-10deg);
}
.cid-uSWHFygv8d .card:hover .svg32 {
  -webkit-transform: skew(0deg, 10deg) scaleX(0.8) scaleY(0.7) rotate(70deg);
  transform: skew(0deg, 10deg) scaleX(0.8) scaleY(0.7) rotate(70deg);
}
.cid-uSWHFygv8d .card svg {
  position: absolute;
  top: 0px;
  left: -20px;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transition: -webkit-transform 800ms cubic-bezier(0.7, -0.5, 0.25, 1.5);
  transition: transform 800ms cubic-bezier(0.7, -0.5, 0.25, 1.5), -webkit-transform 800ms cubic-bezier(0.7, -0.5, 0.25, 1.5);
}
.cid-uSWHFygv8d .card .svg22,
.cid-uSWHFygv8d .card .svg32,
.cid-uSWHFygv8d .card .svg12 {
  z-index: 1;
  -webkit-transform: scale(0.8) rotate(60deg);
  transform: scale(0.8) rotate(60deg);
}
.cid-uSWHFygv8d .card .svg21,
.cid-uSWHFygv8d .card .svg31,
.cid-uSWHFygv8d .card .svg11 {
  z-index: 2;
}
.cid-uSWHFygv8d .card div {
  z-index: 3;
}
.cid-uSWHFygv8d .card .card-img {
  position: absolute;
  right: 30px;
  top: 30px;
}
@-webkit-keyframes animationFrames {
  0% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
  }
  33% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    opacity: 1;
  }
  66% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
    opacity: 0;
  }
  67% {
    -webkit-transform: translate(0px, 60px);
    transform: translate(0px, 60px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    opacity: 1;
  }
}
@keyframes animationFrames {
  0% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
  }
  33% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    opacity: 1;
  }
  66% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
    opacity: 0;
  }
  67% {
    -webkit-transform: translate(0px, 60px);
    transform: translate(0px, 60px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    opacity: 1;
  }
}
@-webkit-keyframes animationFramesOut {
  0% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    opacity: 1;
  }
  33% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    opacity: 1;
  }
  66% {
    -webkit-transform: translate(0px, 60px);
    transform: translate(0px, 60px);
    opacity: 0;
  }
  67% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    opacity: 1;
  }
}
@keyframes animationFramesOut {
  0% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    opacity: 1;
  }
  33% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    opacity: 1;
  }
  66% {
    -webkit-transform: translate(0px, 60px);
    transform: translate(0px, 60px);
    opacity: 0;
  }
  67% {
    -webkit-transform: translate(0px, -30px);
    transform: translate(0px, -30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    opacity: 1;
  }
}
.cid-uSWHFygv8d .card-img {
  background: white;
  height: 80px;
  width: 80px;
  border-radius: 100%;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-uSWHFygv8d .mbr-iconfont {
  color: #01319a !important;
  font-size: 2.5rem !important;
}
.cid-uSWHFygv8d .link a {
  position: relative;
  margin: 0;
  font-weight: 600;
}
.cid-uSWHFygv8d .link a:after {
  position: absolute;
  content: '\e967';
  font-family: 'mobirise-icons-bold' !important;
  right: -30px;
  top: -1px;
  color: currentColor;
}
.cid-uSWHFygv8d .row {
  -webkit-box-pack: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uSWHFygv8d .card {
    margin-bottom: 2rem;
  }
  .cid-uSWHFygv8d .card svg {
    left: 30px;
  }
  .cid-uSWHFygv8d .card:hover h4 {
    -webkit-animation: none;
    animation: none;
  }
  .cid-uSWHFygv8d .link {
    opacity: 1;
    -webkit-transform: translate(-10px, 10px);
    transform: translate(-10px, 10px);
  }
  .cid-uSWHFygv8d h4 {
    -webkit-animation: none;
    animation: none;
  }
}
@media (max-width: 767px) {
  .cid-uSWHFygv8d .card {
    max-width: 330px;
  }
  .cid-uSWHFygv8d .card svg {
    left: 0px;
  }
}
.cid-uSWHFygv8d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSWHFygv8d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSWHFygv8d .card-title,
.cid-uSWHFygv8d .card-img {
  color: #ffffff;
}
.cid-uSXmwjvf8U {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uSXmwjvf8U .carousel-control {
  background: #000;
}
.cid-uSXmwjvf8U .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uSXmwjvf8U .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-uSXmwjvf8U .carousel-item .wrap-img {
  text-align: center;
}
.cid-uSXmwjvf8U .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-uSXmwjvf8U .carousel-controls {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uSXmwjvf8U .carousel-controls .carousel-control {
  background: #000;
  border-radius: 50%;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-uSXmwjvf8U .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-uSXmwjvf8U .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-uSXmwjvf8U .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-uSXmwjvf8U .cloneditem-1,
.cid-uSXmwjvf8U .cloneditem-2,
.cid-uSXmwjvf8U .cloneditem-3,
.cid-uSXmwjvf8U .cloneditem-4,
.cid-uSXmwjvf8U .cloneditem-5 {
  display: none;
}
.cid-uSXmwjvf8U .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSXmwjvf8U .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-uSXmwjvf8U .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-uSXmwjvf8U .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-uSXmwjvf8U .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-uSXmwjvf8U .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-uSXmwjvf8U .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-uSXmwjvf8U .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uSXmwjvf8U .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-uSXmwjvf8U .carousel-inner.slides2 .cloneditem-1,
  .cid-uSXmwjvf8U .carousel-inner.slides2 .cloneditem-2,
  .cid-uSXmwjvf8U .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-uSXmwjvf8U .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-uSXmwjvf8U .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-uSXmwjvf8U .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-uSXmwjvf8U .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-uSXmwjvf8U .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-uSXmwjvf8U .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uSXmwjvf8U .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-uSXmwjvf8U .carousel-inner.slides3 .cloneditem-1,
  .cid-uSXmwjvf8U .carousel-inner.slides3 .cloneditem-2,
  .cid-uSXmwjvf8U .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-uSXmwjvf8U .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-uSXmwjvf8U .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-uSXmwjvf8U .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-uSXmwjvf8U .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-uSXmwjvf8U .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-uSXmwjvf8U .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uSXmwjvf8U .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-uSXmwjvf8U .carousel-inner.slides4 .cloneditem-1,
  .cid-uSXmwjvf8U .carousel-inner.slides4 .cloneditem-2,
  .cid-uSXmwjvf8U .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-uSXmwjvf8U .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-uSXmwjvf8U .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-uSXmwjvf8U .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-uSXmwjvf8U .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-uSXmwjvf8U .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-uSXmwjvf8U .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uSXmwjvf8U .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-uSXmwjvf8U .carousel-inner.slides5 .cloneditem-1,
  .cid-uSXmwjvf8U .carousel-inner.slides5 .cloneditem-2,
  .cid-uSXmwjvf8U .carousel-inner.slides5 .cloneditem-3,
  .cid-uSXmwjvf8U .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-uSXmwjvf8U .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-uSXmwjvf8U .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-uSXmwjvf8U .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-uSXmwjvf8U .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-uSXmwjvf8U .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-uSXmwjvf8U .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uSXmwjvf8U .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-uSXmwjvf8U .carousel-inner.slides6 .cloneditem-1,
  .cid-uSXmwjvf8U .carousel-inner.slides6 .cloneditem-2,
  .cid-uSXmwjvf8U .carousel-inner.slides6 .cloneditem-3,
  .cid-uSXmwjvf8U .carousel-inner.slides6 .cloneditem-4,
  .cid-uSXmwjvf8U .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-uSXmwjvf8U H2 {
  color: #01319a;
}
.cid-uKILuFhQ5p {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-2-1920x1314.png");
}
.cid-uKILuFhQ5p H2 {
  color: #e7272d;
}
.cid-uKILuFhQ5p .mbr-text,
.cid-uKILuFhQ5p .mbr-section-btn {
  color: #808080;
}
.cid-uKILuFhQ5p img {
  max-width: 500px;
  margin: auto;
}
.cid-uKILuFhQ5p .btn span {
  font-size: 2.4rem !important;
  margin-top: 0.6rem !important;
  margin-bottom: 0rem !important;
}
.cid-uKILuFhQ5p .btn {
  padding: 0.4rem 2.2rem;
  text-align: left;
  line-height: 1.3;
}
.cid-uKILuFhQ5p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKILuFhQ5p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKILuFhQ5p H1 {
  color: #ffffff;
}
.cid-sNVvklMRxu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sNVvklMRxu .google-map {
  height: 30rem;
  position: relative;
}
.cid-sNVvklMRxu .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sNVvklMRxu .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sNVvklMRxu .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sNVvklMRxu .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sNVvklMRxu .mbr-section-title {
  color: #723704;
}
.cid-uKITLilkFT {
  background-color: #ffffff;
}
.cid-uKITLilkFT .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uKITLilkFT .row {
  border-bottom: 1px solid #fcdd04;
}
.cid-uKITLilkFT H2 {
  color: #e7272d;
}
.cid-uKITLilkFT .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uKITLilkFT .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uKITLilkFT .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #fcdd04;
}
.cid-uKITLilkFT .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #fcdd04;
}
.cid-uKITLilkFT .col-lg-12 {
  overflow: hidden;
}
.cid-uKITLilkFT H4 {
  color: #fbbe36;
}
.cid-uKITLilkFT .mbr-text,
.cid-uKITLilkFT .mbr-section-btn {
  color: #723704;
}
@media (max-width: 767px) {
  .cid-uKITLilkFT .logo-wrap:before {
    content: none;
  }
  .cid-uKITLilkFT .logo-wrap:after {
    content: none;
  }
}
.cid-uKITLilkFT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKITLilkFT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKITLilkFT H3 {
  color: #fcdd04;
}
.cid-uKIZVrwqdm {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #fcdd04;
}
.cid-uKIZVrwqdm img {
  width: 50px;
  object-fit: contain;
}
.cid-uKIZVrwqdm .image-block {
  width: 50px;
  margin: auto;
}
.cid-uKIZVrwqdm .text {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uKIZVrwqdm .text {
    padding-bottom: 2rem;
  }
}
.cid-uKIZVrwqdm .mbr-section-title {
  color: #723704;
}
.cid-uKIWBaMRPp {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fc7b04;
}
.cid-uKIWBaMRPp .row-links {
  width: 100%;
}
.cid-uKIWBaMRPp .social-row {
  width: 100%;
  justify-content: flex-end;
  margin: 0;
}
.cid-uKIWBaMRPp .col-lg-6 {
  height: fit-content;
}
.cid-uKIWBaMRPp .soc-item {
  background: #fc7b04;
  width: 45px;
  cursor: pointer;
  margin: auto;
  height: 45px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-uKIWBaMRPp .soc-item:hover {
  transform: scale(1.1);
}
.cid-uKIWBaMRPp .row {
  align-items: center;
}
.cid-uKIWBaMRPp .row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-uKIWBaMRPp .row .foot-menu li {
  padding-right: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}
.cid-uKIWBaMRPp .row .foot-menu li:hover {
  color: #fcdd04;
}
.cid-uKIWBaMRPp .row .foot-menu li p {
  margin: 0;
}
.cid-uKIWBaMRPp .row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uKIWBaMRPp .row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-uKIWBaMRPp .row .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uKIWBaMRPp .row .social-list a {
  margin: 0;
  opacity: 1;
  height: 26px;
  padding-right: 2px;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uKIWBaMRPp .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uKIWBaMRPp .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uKIWBaMRPp .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uKIWBaMRPp .row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uKIWBaMRPp .row-links {
    justify-content: center;
  }
  .cid-uKIWBaMRPp .foot-menu {
    justify-content: center;
  }
  .cid-uKIWBaMRPp .row-copirayt {
    justify-content: center;
    margin: 0;
    margin-bottom: 2rem;
  }
  .cid-uKIWBaMRPp .social-row {
    justify-content: center;
  }
  .cid-uKIWBaMRPp .mbr-text {
    text-align: center;
  }
  .cid-uKIWBaMRPp li {
    padding-right: 1rem !important;
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uKIWBaMRPp .foot-menu {
    flex-direction: column;
  }
}
.cid-uKIWBaMRPp .foot-menu-item {
  color: #29361a;
}
.cid-uKIWBaMRPp .mbr-text {
  color: #ffffff;
}
.cid-uKJkDMNuPA .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-uKJkDMNuPA .navbar-fixed-top {
  padding-top: 0;
}
.cid-uKJkDMNuPA .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-uKJkDMNuPA .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-uKJkDMNuPA .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-uKJkDMNuPA .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uKJkDMNuPA .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uKJkDMNuPA .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uKJkDMNuPA .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-uKJkDMNuPA .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uKJkDMNuPA .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uKJkDMNuPA .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uKJkDMNuPA .menu-content-top {
  background: #fcdd04;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uKJkDMNuPA .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uKJkDMNuPA .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-uKJkDMNuPA .dropdown-item,
.cid-uKJkDMNuPA .nav-link,
.cid-uKJkDMNuPA .brand-name {
  font-style: normal;
}
.cid-uKJkDMNuPA .dropdown-item:hover,
.cid-uKJkDMNuPA .nav-link:hover,
.cid-uKJkDMNuPA .brand-name:hover {
  color: #fcdd04 !important;
}
.cid-uKJkDMNuPA .dropdown-menu {
  background-color: #ffffff;
}
.cid-uKJkDMNuPA .dropdown-item:active {
  background-color: #ffffff;
}
.cid-uKJkDMNuPA .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uKJkDMNuPA .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uKJkDMNuPA .nav-item {
  position: relative;
}
.cid-uKJkDMNuPA .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uKJkDMNuPA .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-uKJkDMNuPA .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-uKJkDMNuPA .nav-link {
    line-height: 6.13;
  }
  .cid-uKJkDMNuPA .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #a85105;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-uKJkDMNuPA .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-uKJkDMNuPA .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKJkDMNuPA .content-text {
  margin-bottom: 0;
}
.cid-uKJkDMNuPA .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uKJkDMNuPA .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #fcdd04;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uKJkDMNuPA .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uKJkDMNuPA .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uKJkDMNuPA .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-uKJkDMNuPA .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKJkDMNuPA .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uKJkDMNuPA .content-right-side {
  text-align: center;
}
.cid-uKJkDMNuPA .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uKJkDMNuPA .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uKJkDMNuPA .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #001b57;
}
.cid-uKJkDMNuPA .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-uKJkDMNuPA .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uKJkDMNuPA .info-widget:first-child {
  margin-left: 0;
}
.cid-uKJkDMNuPA .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uKJkDMNuPA .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-uKJkDMNuPA .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uKJkDMNuPA .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #fcdd04;
}
@media (min-width: 992px) {
  .cid-uKJkDMNuPA .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-uKJkDMNuPA .navbar {
    display: block;
    padding: 0;
  }
  .cid-uKJkDMNuPA .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-uKJkDMNuPA .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uKJkDMNuPA .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uKJkDMNuPA .navbar-toggler {
    display: none;
  }
  .cid-uKJkDMNuPA .navbar-collapse {
    justify-content: flex-start;
  }
}
.cid-uKJkDMNuPA .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uKJkDMNuPA .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-uKJkDMNuPA .btn-sm {
  padding: 13px 29px;
}
.cid-uKJkDMNuPA .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uKJkDMNuPA .btn::after {
  background-color: #01319a;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-uKJkDMNuPA .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-uKJkDMNuPA .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uKJkDMNuPA .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uKJkDMNuPA .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-uKJkDMNuPA .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uKJkDMNuPA .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uKJkDMNuPA .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKJkDMNuPA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKJkDMNuPA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKJkDMNuPA .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uKJkDMNuPA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKJkDMNuPA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKJkDMNuPA .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uKJkDMNuPA .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKJkDMNuPA .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uKJkDMNuPA .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-uKJkDMNuPA .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uKJkDMNuPA .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uKJkDMNuPA .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uKJkDMNuPA button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-uKJkDMNuPA button.navbar-toggler:focus {
  outline: none;
}
.cid-uKJkDMNuPA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #723704;
}
.cid-uKJkDMNuPA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKJkDMNuPA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKJkDMNuPA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKJkDMNuPA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKJkDMNuPA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKJkDMNuPA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKJkDMNuPA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKJkDMNuPA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKJkDMNuPA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKJkDMNuPA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKJkDMNuPA .collapsed .btn {
  display: flex;
}
.cid-uKJkDMNuPA .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uKJkDMNuPA .collapsed .navbar-collapse.collapsing,
.cid-uKJkDMNuPA .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uKJkDMNuPA .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uKJkDMNuPA .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uKJkDMNuPA .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uKJkDMNuPA .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uKJkDMNuPA .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uKJkDMNuPA .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-uKJkDMNuPA .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uKJkDMNuPA .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uKJkDMNuPA .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKJkDMNuPA .collapsed button.navbar-toggler {
  display: block;
}
.cid-uKJkDMNuPA .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uKJkDMNuPA .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-uKJkDMNuPA .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uKJkDMNuPA .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uKJkDMNuPA .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uKJkDMNuPA .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uKJkDMNuPA .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uKJkDMNuPA .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-uKJkDMNuPA .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-uKJkDMNuPA .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uKJkDMNuPA .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-uKJkDMNuPA .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-uKJkDMNuPA .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-uKJkDMNuPA .navbar-collapse.collapsing,
  .cid-uKJkDMNuPA .navbar-collapse.show {
    display: block !important;
  }
  .cid-uKJkDMNuPA .navbar-collapse.collapsing .navbar-nav,
  .cid-uKJkDMNuPA .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uKJkDMNuPA .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uKJkDMNuPA .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uKJkDMNuPA .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-uKJkDMNuPA .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-uKJkDMNuPA .navbar-collapse.collapsing .navbar-buttons,
  .cid-uKJkDMNuPA .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uKJkDMNuPA .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uKJkDMNuPA .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uKJkDMNuPA img {
    height: 3.8rem !important;
  }
  .cid-uKJkDMNuPA .btn {
    display: flex;
  }
  .cid-uKJkDMNuPA button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uKJkDMNuPA .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uKJkDMNuPA .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-uKJkDMNuPA .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uKJkDMNuPA .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uKJkDMNuPA .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uKJkDMNuPA .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uKJkDMNuPA .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uKJkDMNuPA .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uKJkDMNuPA .navbar-toggler {
  position: relative;
}
.cid-uKJkDMNuPA .dropdown-item.active,
.cid-uKJkDMNuPA .dropdown-item:active {
  color: initial;
}
.cid-uKJkDMNuPA .widget-title {
  color: #01319a;
}
.cid-uKJkDMNuPA .widget-text {
  color: #01319a;
}
.cid-uKJkDMNuPA .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-uKJkDMNuPA .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #fcdd04;
  display: inline-flex;
  background-color: #ffffff;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-uKJkDMNuPA .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-uKJkDMNuPA .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #a85105;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-uKJkDMNuPA .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-uKJkDMNuPA .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-uKJkDMNuPA .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-uKJkDMNuPA .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-uKJkDMNuPA .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-uKJkDMNuPA .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-uKJkDMNuPA .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-uKJkDMNuPA .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-uKJkDMNuPA .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-uKJkDMNuPA .menu-content-top,
  .cid-uKJkDMNuPA .menu-bottom {
    padding: 0 15px;
  }
  .cid-uKJkDMNuPA button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-uKJkDMNuPA .widget-title,
.cid-uKJkDMNuPA .widget-icon {
  color: #512d0e;
}
.cid-uKJkDRmBDP {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uKJkDRmBDP h2 {
  color: #000000;
}
.cid-uKJkDRmBDP h1 {
  color: #000000;
}
.cid-uKJkDRmBDP .mbr-text,
.cid-uKJkDRmBDP .mbr-section-btn {
  color: #001348;
  text-align: left;
}
.cid-uKJkDRmBDP H1 {
  color: #fff902;
}
.cid-uKJkDSLpJn {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKJkDSLpJn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJkDSLpJn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uKJkDSLpJn .container {
    padding: 0 24px;
  }
}
.cid-uKJkDSLpJn .content-wrapper .mbr-section-title {
  margin-bottom: 28px;
}
.cid-uKJkDSLpJn .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 18px;
}
@media (max-width: 1200px) {
  .cid-uKJkDSLpJn .content-wrapper .text-wrap .mbr-text {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .cid-uKJkDSLpJn .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uKJkDSLpJn .mbr-section-title {
  color: #202020;
}
.cid-uKJkDSLpJn .mbr-text,
.cid-uKJkDSLpJn .text-wrap {
  color: #202020;
  text-align: center;
}
.cid-uKJkDSLpJn .mbr-section-title,
.cid-uKJkDSLpJn .mbr-section-btn {
  text-align: center;
}
.cid-uKJkDToLV4 {
  padding-top: 20px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/banho-33-1490x480.png");
}
.cid-uKJkDToLV4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJkDToLV4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPNMfENfBX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcdd04;
}
.cid-uPNMfENfBX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPNMfENfBX .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uPNMfENfBX .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPNMfENfBX .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uPNMfENfBX .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uPNMfENfBX h5 {
  margin: 0;
}
.cid-uPNMfENfBX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPNMfENfBX .iconfont-wrapper {
  position: relative;
}
.cid-uPNMfENfBX .iconfont-wrapper:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fcdd04;
  transition: all 0.3s;
  opacity: 0.3;
}
.cid-uPNMfENfBX .mbr-iconfont {
  display: flex;
  font-size: 3rem;
  color: #ffffff;
  width: 100px;
  justify-content: center;
  align-items: center;
  height: 100px;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uPNMfENfBX .card-title,
.cid-uPNMfENfBX .iconfont-wrapper {
  color: #512d0e;
}
.cid-uPNMfENfBX .card-text {
  color: #723704;
}
.cid-uPNMfENfBX .mbr-section-title {
  color: #000000;
}
.cid-uKJkDV849o {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKJkDV849o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJkDV849o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKJkDV849o .mbr-section-title {
  color: #723704;
}
.cid-uPNOtl0blc {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uPNOtl0blc .mbr-shop {
  display: table;
  width: 100%;
  margin: 0;
}
.cid-uPNOtl0blc .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-uPNOtl0blc .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-uPNOtl0blc .btn {
  padding: 0.6rem 2rem;
}
.cid-uPNOtl0blc .mbr-section-btn {
  text-align: left;
}
.cid-uPNOtl0blc .img_wraper img {
  border-radius: 8px !important;
}
.cid-uPNOtl0blc .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-uPNOtl0blc .mbr-shop .shopItemsModal_wraper {
  left: 0rem;
  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-uPNOtl0blc .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-uPNOtl0blc .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  position: relative;
}
.cid-uPNOtl0blc .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-uPNOtl0blc .mbr-shop .hide-modal {
  display: none;
}
.cid-uPNOtl0blc .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-uPNOtl0blc .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-uPNOtl0blc .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-uPNOtl0blc .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-uPNOtl0blc .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-uPNOtl0blc .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-uPNOtl0blc .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-uPNOtl0blc .mbr-shop .filter-by-pu,
.cid-uPNOtl0blc .mbr-shop .filter-by-pd,
.cid-uPNOtl0blc .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-uPNOtl0blc .mbr-shop .sort-buttons {
  padding-bottom: 0.2rem;
  margin-right: 13px;
  text-align: right;
}
.cid-uPNOtl0blc .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-uPNOtl0blc .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-uPNOtl0blc .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-uPNOtl0blc .mbr-shop .galleryItem h4,
.cid-uPNOtl0blc .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-uPNOtl0blc .mbr-shop .galleryItem h5,
.cid-uPNOtl0blc .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-uPNOtl0blc .mbr-shop .galleryItem p,
.cid-uPNOtl0blc .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-uPNOtl0blc .mbr-shop .item-button {
  text-align: center;
}
.cid-uPNOtl0blc .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-uPNOtl0blc .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-uPNOtl0blc .mbr-shop .sidebar {
  margin-top: 15px;
  position: relative;
}
.cid-uPNOtl0blc .mbr-shop .sidebar-block {
  position: relative;
}
.cid-uPNOtl0blc .sidebar-background {
  padding-top: 2rem;
}
.cid-uPNOtl0blc .mbr-shop .sidebar-background:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0);
  top: -20px;
  right: 3px;
}
.cid-uPNOtl0blc .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-uPNOtl0blc .mbr-shop .bestsellers .onsale {
  top: -15px;
  font-weight: 700 !important;
}
.cid-uPNOtl0blc a {
  font-weight: 700 !important;
}
.cid-uPNOtl0blc li {
  font-weight: 700 !important;
}
.cid-uPNOtl0blc .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-uPNOtl0blc .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-uPNOtl0blc .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-uPNOtl0blc .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uPNOtl0blc .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-uPNOtl0blc .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-uPNOtl0blc .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-uPNOtl0blc .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-uPNOtl0blc .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-uPNOtl0blc .mbr-shop .onsale {
  position: absolute;
  top: 8px;
  left: 8px;
  display: block;
  transition: color 0.3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  color: #354463;
  padding: 3px 14px 5px 14px;
  background: #a85105;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-uPNOtl0blc .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-uPNOtl0blc .mbr-shop .mbr-gallery-item__hided h4,
.cid-uPNOtl0blc .mbr-shop .mbr-gallery-item__hided h5,
.cid-uPNOtl0blc .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-uPNOtl0blc .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-uPNOtl0blc .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-uPNOtl0blc .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-uPNOtl0blc .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-uPNOtl0blc .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-uPNOtl0blc .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-uPNOtl0blc .mbr-shop .mbr-gallery-filter ul li:hover {
  color: #354463;
}
.cid-uPNOtl0blc .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-uPNOtl0blc .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-uPNOtl0blc .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #fcdd04;
  font-weight: bold;
}
.cid-uPNOtl0blc .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border-radius: 2px;
  font-size: 0;
}
.cid-uPNOtl0blc .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #fcdd04;
  font-weight: normal;
  cursor: pointer;
}
.cid-uPNOtl0blc .mbr-shop .price-controls input {
  width: 100%;
  background-color: #f0edeb;
  border-radius: 25px;
  color: #87817d;
  font-size: 14px;
  font-weight: 700;
  border: none;
  line-height: 31px;
  height: 50px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-uPNOtl0blc .mbr-shop .range-controls {
  position: relative;
  margin-top: 3.2rem;
}
.cid-uPNOtl0blc .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-uPNOtl0blc .mbr-shop .range-controls .bar {
  margin-left: 0;
  height: 4px;
  background-color: #e2e3e7;
  border-radius: 4px;
}
.cid-uPNOtl0blc .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  height: 14px;
  width: 14px;
  border: 2px solid #e2e3e7;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ffffff;
  cursor: pointer;
}
.cid-uPNOtl0blc .mbr-shop .toggle::after {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #354463;
  border-radius: 50%;
}
.cid-uPNOtl0blc .mbr-shop .toggle:hover,
.cid-uPNOtl0blc .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-uPNOtl0blc .mbr-shop .min-toggle {
  left: 0;
}
.cid-uPNOtl0blc .mbr-shop .max-toggle {
  right: 0;
}
.cid-uPNOtl0blc .mbr-shop .hided-by-price {
  display: none;
}
.cid-uPNOtl0blc .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-uPNOtl0blc .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-uPNOtl0blc .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uPNOtl0blc .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-uPNOtl0blc .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-uPNOtl0blc .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-uPNOtl0blc .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-uPNOtl0blc .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-uPNOtl0blc .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-uPNOtl0blc .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uPNOtl0blc .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-uPNOtl0blc .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-uPNOtl0blc .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uPNOtl0blc .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-uPNOtl0blc .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-uPNOtl0blc .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-uPNOtl0blc .mbr-shop .shop-items .onsale,
.cid-uPNOtl0blc .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-uPNOtl0blc .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-uPNOtl0blc .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uPNOtl0blc .mbr-shop .price-range {
  display: inline-block;
}
.cid-uPNOtl0blc .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-uPNOtl0blc .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-uPNOtl0blc .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-uPNOtl0blc .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-uPNOtl0blc .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-uPNOtl0blc .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-uPNOtl0blc .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-uPNOtl0blc .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-uPNOtl0blc .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-uPNOtl0blc .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-uPNOtl0blc .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-uPNOtl0blc .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-uPNOtl0blc .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-uPNOtl0blc .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-uPNOtl0blc .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uPNOtl0blc .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-uPNOtl0blc .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-uPNOtl0blc .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-uPNOtl0blc .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uPNOtl0blc .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uPNOtl0blc .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-uPNOtl0blc .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-uPNOtl0blc .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-uPNOtl0blc .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-uPNOtl0blc .mbr-shop .sidebar-background:after {
    top: -1%;
  }
  .cid-uPNOtl0blc .row {
    padding: 0;
  }
}
@media (max-width: 1100px) {
  .cid-uPNOtl0blc .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-uPNOtl0blc .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-uPNOtl0blc .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-uPNOtl0blc .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-uPNOtl0blc .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-uPNOtl0blc .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-uPNOtl0blc .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-uPNOtl0blc .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-uPNOtl0blc .oldprice {
  color: #767676;
  padding-left: 0.8rem !important;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPNOtl0blc .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-uPNOtl0blc LI {
  color: #354463;
  text-align: center;
}
.cid-uPNOtl0blc .sidebar-title {
  color: #a85105;
}
.cid-uPNOtl0blc .item-title {
  text-align: left;
  color: #723704;
}
.cid-uPNOtl0blc .display-7 {
  font-weight: 700 !important;
}
.cid-uPNOtl0blc .shop-item-price,
.cid-uPNOtl0blc .price-block {
  text-align: left;
  color: #354463;
  font-weight: 700 !important;
}
@media (max-width: 576px) {
  .cid-uPNOtl0blc .mbr-shop .mbr-gallery-item,
  .cid-uPNOtl0blc .wrapper-shop-items,
  .cid-uPNOtl0blc .sidebar-block,
  .cid-uPNOtl0blc .sidebar-title,
  .cid-uPNOtl0blc .categories {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-uPNOtl0blc .filter-cost {
    max-width: 100% !important;
  }
  .cid-uPNOtl0blc .range-slider,
  .cid-uPNOtl0blc .categories,
  .cid-uPNOtl0blc .bestseller-block {
    text-align: center;
  }
}
.cid-uPNOtl0blc .wrapper-shop-items {
  order: 1;
}
.cid-uPNOtl0blc .btn-sm {
  border: 2px solid #01319a;
  border-radius: 50px;
  padding: 0.8rem 2rem;
}
.cid-uPNOtl0blc .galleryItem {
  box-shadow: 0 3px 15px 2px rgba(0, 0, 0, 0.04);
  padding: 1rem 1rem;
  transition: 0.3s;
}
.cid-uPNOtl0blc .mbr-gallery-item:hover .galleryItem {
  box-shadow: 0 3px 15px 2px rgba(0, 0, 0, 0.2);
}
.cid-uPNOtl0blc .bestsellers .mbr-gallery-item {
  padding: 0rem !important;
  width: 100% !important;
}
.cid-uPNOtl0blc .min-price {
  padding-right: 1rem;
}
.cid-uPNOtl0blc .max-price {
  padding-left: 1rem;
}
.cid-uPNOtl0blc .btn-secondary {
  color: #333 !important;
  background-color: transparent !important;
}
.cid-uPNOtl0blc .btn-secondary:hover {
  background-color: transparent !important;
  opacity: 0.5;
  transform: translate(0);
}
.cid-uPNOtl0blc a,
.cid-uPNOtl0blc a:hover {
  color: #354463 !important;
}
.cid-uPNOtl0blc .sidebar {
  background-color: #ffffff;
  margin-bottom: 1rem;
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uPNOtl0blc .wrapper-shop-items {
    padding: 0;
  }
  .cid-uPNOtl0blc .row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uPNOtl0blc .mbr-gallery-item {
    padding: 1rem !important;
    width: 33.333% !important;
  }
  .cid-uPNOtl0blc .row {
    padding: 0;
  }
}
.cid-uPNOtl0blc .row {
  margin: 0rem;
}
.cid-uKJkE1zRZJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1329.jpg");
}
.cid-uKJkE1zRZJ H2 {
  color: #e7272d;
}
.cid-uKJkE1zRZJ .mbr-text,
.cid-uKJkE1zRZJ .mbr-section-btn {
  color: #808080;
}
.cid-uKJkE1zRZJ img {
  max-width: 500px;
  margin: auto;
}
.cid-uKJkE1zRZJ .btn span {
  font-size: 2.4rem !important;
  margin-top: 0.6rem !important;
  margin-bottom: 0rem !important;
}
.cid-uKJkE1zRZJ .btn {
  padding: 0.4rem 2.2rem;
  text-align: left;
  line-height: 1.3;
}
.cid-uKJkE1zRZJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJkE1zRZJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKJkE1zRZJ H1 {
  color: #ffffff;
}
.cid-uKJkE2Uh5W {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uKJkE2Uh5W .google-map {
  height: 30rem;
  position: relative;
}
.cid-uKJkE2Uh5W .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uKJkE2Uh5W .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uKJkE2Uh5W .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uKJkE2Uh5W .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uKJkE2Uh5W .mbr-section-title {
  color: #723704;
}
.cid-uKJkE4C0ZD {
  background-color: #ffffff;
}
.cid-uKJkE4C0ZD .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uKJkE4C0ZD .row {
  border-bottom: 1px solid #fcdd04;
}
.cid-uKJkE4C0ZD H2 {
  color: #e7272d;
}
.cid-uKJkE4C0ZD .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uKJkE4C0ZD .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uKJkE4C0ZD .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #fcdd04;
}
.cid-uKJkE4C0ZD .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #fcdd04;
}
.cid-uKJkE4C0ZD .col-lg-12 {
  overflow: hidden;
}
.cid-uKJkE4C0ZD H4 {
  color: #fbbe36;
}
.cid-uKJkE4C0ZD .mbr-text,
.cid-uKJkE4C0ZD .mbr-section-btn {
  color: #723704;
}
@media (max-width: 767px) {
  .cid-uKJkE4C0ZD .logo-wrap:before {
    content: none;
  }
  .cid-uKJkE4C0ZD .logo-wrap:after {
    content: none;
  }
}
.cid-uKJkE4C0ZD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJkE4C0ZD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKJkE4C0ZD H3 {
  color: #fcdd04;
}
.cid-uKJkE91XSJ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #fcdd04;
}
.cid-uKJkE91XSJ img {
  width: 50px;
  object-fit: contain;
}
.cid-uKJkE91XSJ .image-block {
  width: 50px;
  margin: auto;
}
.cid-uKJkE91XSJ .text {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uKJkE91XSJ .text {
    padding-bottom: 2rem;
  }
}
.cid-uKJkE91XSJ .mbr-section-title {
  color: #723704;
}
.cid-uKsxBHq3rc .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-uKsxBHq3rc .navbar-fixed-top {
  padding-top: 0;
}
.cid-uKsxBHq3rc .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-uKsxBHq3rc .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-uKsxBHq3rc .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-uKsxBHq3rc .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uKsxBHq3rc .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uKsxBHq3rc .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uKsxBHq3rc .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-uKsxBHq3rc .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uKsxBHq3rc .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uKsxBHq3rc .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uKsxBHq3rc .menu-content-top {
  background: #fcdd04;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uKsxBHq3rc .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uKsxBHq3rc .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-uKsxBHq3rc .dropdown-item,
.cid-uKsxBHq3rc .nav-link,
.cid-uKsxBHq3rc .brand-name {
  font-style: normal;
}
.cid-uKsxBHq3rc .dropdown-item:hover,
.cid-uKsxBHq3rc .nav-link:hover,
.cid-uKsxBHq3rc .brand-name:hover {
  color: #fcdd04 !important;
}
.cid-uKsxBHq3rc .dropdown-menu {
  background-color: #ffffff;
}
.cid-uKsxBHq3rc .dropdown-item:active {
  background-color: #ffffff;
}
.cid-uKsxBHq3rc .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uKsxBHq3rc .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uKsxBHq3rc .nav-item {
  position: relative;
}
.cid-uKsxBHq3rc .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uKsxBHq3rc .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-uKsxBHq3rc .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-uKsxBHq3rc .nav-link {
    line-height: 6.13;
  }
  .cid-uKsxBHq3rc .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #a85105;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-uKsxBHq3rc .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-uKsxBHq3rc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKsxBHq3rc .content-text {
  margin-bottom: 0;
}
.cid-uKsxBHq3rc .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uKsxBHq3rc .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #fcdd04;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uKsxBHq3rc .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uKsxBHq3rc .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uKsxBHq3rc .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-uKsxBHq3rc .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKsxBHq3rc .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uKsxBHq3rc .content-right-side {
  text-align: center;
}
.cid-uKsxBHq3rc .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uKsxBHq3rc .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uKsxBHq3rc .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #001b57;
}
.cid-uKsxBHq3rc .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-uKsxBHq3rc .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uKsxBHq3rc .info-widget:first-child {
  margin-left: 0;
}
.cid-uKsxBHq3rc .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uKsxBHq3rc .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-uKsxBHq3rc .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uKsxBHq3rc .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #fcdd04;
}
@media (min-width: 992px) {
  .cid-uKsxBHq3rc .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-uKsxBHq3rc .navbar {
    display: block;
    padding: 0;
  }
  .cid-uKsxBHq3rc .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-uKsxBHq3rc .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uKsxBHq3rc .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uKsxBHq3rc .navbar-toggler {
    display: none;
  }
  .cid-uKsxBHq3rc .navbar-collapse {
    justify-content: flex-start;
  }
}
.cid-uKsxBHq3rc .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uKsxBHq3rc .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-uKsxBHq3rc .btn-sm {
  padding: 13px 29px;
}
.cid-uKsxBHq3rc .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uKsxBHq3rc .btn::after {
  background-color: #01319a;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-uKsxBHq3rc .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-uKsxBHq3rc .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uKsxBHq3rc .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uKsxBHq3rc .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-uKsxBHq3rc .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uKsxBHq3rc .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uKsxBHq3rc .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKsxBHq3rc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKsxBHq3rc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKsxBHq3rc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uKsxBHq3rc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKsxBHq3rc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKsxBHq3rc .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uKsxBHq3rc .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKsxBHq3rc .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uKsxBHq3rc .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-uKsxBHq3rc .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uKsxBHq3rc .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uKsxBHq3rc .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uKsxBHq3rc button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-uKsxBHq3rc button.navbar-toggler:focus {
  outline: none;
}
.cid-uKsxBHq3rc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #723704;
}
.cid-uKsxBHq3rc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKsxBHq3rc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKsxBHq3rc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKsxBHq3rc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKsxBHq3rc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKsxBHq3rc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKsxBHq3rc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKsxBHq3rc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKsxBHq3rc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKsxBHq3rc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKsxBHq3rc .collapsed .btn {
  display: flex;
}
.cid-uKsxBHq3rc .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uKsxBHq3rc .collapsed .navbar-collapse.collapsing,
.cid-uKsxBHq3rc .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uKsxBHq3rc .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uKsxBHq3rc .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uKsxBHq3rc .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uKsxBHq3rc .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uKsxBHq3rc .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uKsxBHq3rc .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-uKsxBHq3rc .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uKsxBHq3rc .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uKsxBHq3rc .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKsxBHq3rc .collapsed button.navbar-toggler {
  display: block;
}
.cid-uKsxBHq3rc .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uKsxBHq3rc .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-uKsxBHq3rc .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uKsxBHq3rc .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uKsxBHq3rc .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uKsxBHq3rc .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uKsxBHq3rc .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uKsxBHq3rc .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-uKsxBHq3rc .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-uKsxBHq3rc .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uKsxBHq3rc .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-uKsxBHq3rc .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-uKsxBHq3rc .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-uKsxBHq3rc .navbar-collapse.collapsing,
  .cid-uKsxBHq3rc .navbar-collapse.show {
    display: block !important;
  }
  .cid-uKsxBHq3rc .navbar-collapse.collapsing .navbar-nav,
  .cid-uKsxBHq3rc .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uKsxBHq3rc .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uKsxBHq3rc .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uKsxBHq3rc .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-uKsxBHq3rc .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-uKsxBHq3rc .navbar-collapse.collapsing .navbar-buttons,
  .cid-uKsxBHq3rc .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uKsxBHq3rc .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uKsxBHq3rc .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uKsxBHq3rc img {
    height: 3.8rem !important;
  }
  .cid-uKsxBHq3rc .btn {
    display: flex;
  }
  .cid-uKsxBHq3rc button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uKsxBHq3rc .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uKsxBHq3rc .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-uKsxBHq3rc .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uKsxBHq3rc .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uKsxBHq3rc .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uKsxBHq3rc .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uKsxBHq3rc .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uKsxBHq3rc .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uKsxBHq3rc .navbar-toggler {
  position: relative;
}
.cid-uKsxBHq3rc .dropdown-item.active,
.cid-uKsxBHq3rc .dropdown-item:active {
  color: initial;
}
.cid-uKsxBHq3rc .widget-title {
  color: #01319a;
}
.cid-uKsxBHq3rc .widget-text {
  color: #01319a;
}
.cid-uKsxBHq3rc .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-uKsxBHq3rc .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #fcdd04;
  display: inline-flex;
  background-color: #ffffff;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-uKsxBHq3rc .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-uKsxBHq3rc .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #a85105;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-uKsxBHq3rc .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-uKsxBHq3rc .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-uKsxBHq3rc .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-uKsxBHq3rc .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-uKsxBHq3rc .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-uKsxBHq3rc .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-uKsxBHq3rc .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-uKsxBHq3rc .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-uKsxBHq3rc .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-uKsxBHq3rc .menu-content-top,
  .cid-uKsxBHq3rc .menu-bottom {
    padding: 0 15px;
  }
  .cid-uKsxBHq3rc button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-uKsxBHq3rc .widget-title,
.cid-uKsxBHq3rc .widget-icon {
  color: #512d0e;
}
.cid-uKsxBJhIyd {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uKsxBJhIyd h2 {
  color: #000000;
}
.cid-uKsxBJhIyd h1 {
  color: #000000;
}
.cid-uKsxBJhIyd .mbr-text,
.cid-uKsxBJhIyd .mbr-section-btn {
  color: #001348;
  text-align: left;
}
.cid-uKsxBJhIyd H1 {
  color: #fff902;
}
.cid-uKI1EDq2zs {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKI1EDq2zs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKI1EDq2zs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uKI1EDq2zs .container {
    padding: 0 24px;
  }
}
.cid-uKI1EDq2zs .content-wrapper .mbr-section-title {
  margin-bottom: 28px;
}
.cid-uKI1EDq2zs .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 18px;
}
@media (max-width: 1200px) {
  .cid-uKI1EDq2zs .content-wrapper .text-wrap .mbr-text {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .cid-uKI1EDq2zs .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uKI1EDq2zs .mbr-section-title {
  color: #202020;
}
.cid-uKI1EDq2zs .mbr-text,
.cid-uKI1EDq2zs .text-wrap {
  color: #202020;
  text-align: center;
}
.cid-uKI1EDq2zs .mbr-section-title,
.cid-uKI1EDq2zs .mbr-section-btn {
  text-align: center;
}
.cid-uKIe6VkKSw {
  padding-top: 60px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/banho-32-1490x480.png");
}
.cid-uKIe6VkKSw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKIe6VkKSw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPNLIoe83X {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcdd04;
}
.cid-uPNLIoe83X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPNLIoe83X .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uPNLIoe83X .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPNLIoe83X .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uPNLIoe83X .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uPNLIoe83X h5 {
  margin: 0;
}
.cid-uPNLIoe83X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPNLIoe83X .iconfont-wrapper {
  position: relative;
}
.cid-uPNLIoe83X .iconfont-wrapper:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fcdd04;
  transition: all 0.3s;
  opacity: 0.3;
}
.cid-uPNLIoe83X .mbr-iconfont {
  display: flex;
  font-size: 3rem;
  color: #ffffff;
  width: 100px;
  justify-content: center;
  align-items: center;
  height: 100px;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uPNLIoe83X .card-title,
.cid-uPNLIoe83X .iconfont-wrapper {
  color: #512d0e;
}
.cid-uPNLIoe83X .card-text {
  color: #723704;
}
.cid-uPNLIoe83X .mbr-section-title {
  color: #000000;
}
.cid-uKIeNO8j1Y {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKIeNO8j1Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKIeNO8j1Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKIeNO8j1Y .mbr-section-title {
  color: #a85105;
}
.cid-uMlz8ZZ9LL {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uMlz8ZZ9LL .mbr-shop {
  display: table;
  width: 100%;
  margin: 0;
}
.cid-uMlz8ZZ9LL .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-uMlz8ZZ9LL .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-uMlz8ZZ9LL .btn {
  padding: 0.6rem 2rem;
}
.cid-uMlz8ZZ9LL .mbr-section-btn {
  text-align: left;
}
.cid-uMlz8ZZ9LL .img_wraper img {
  border-radius: 8px !important;
}
.cid-uMlz8ZZ9LL .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-uMlz8ZZ9LL .mbr-shop .shopItemsModal_wraper {
  left: 0rem;
  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-uMlz8ZZ9LL .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-uMlz8ZZ9LL .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  position: relative;
}
.cid-uMlz8ZZ9LL .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-uMlz8ZZ9LL .mbr-shop .hide-modal {
  display: none;
}
.cid-uMlz8ZZ9LL .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-uMlz8ZZ9LL .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-uMlz8ZZ9LL .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-uMlz8ZZ9LL .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-uMlz8ZZ9LL .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-uMlz8ZZ9LL .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-uMlz8ZZ9LL .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-uMlz8ZZ9LL .mbr-shop .filter-by-pu,
.cid-uMlz8ZZ9LL .mbr-shop .filter-by-pd,
.cid-uMlz8ZZ9LL .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-uMlz8ZZ9LL .mbr-shop .sort-buttons {
  padding-bottom: 0.2rem;
  margin-right: 13px;
  text-align: right;
}
.cid-uMlz8ZZ9LL .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-uMlz8ZZ9LL .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-uMlz8ZZ9LL .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-uMlz8ZZ9LL .mbr-shop .galleryItem h4,
.cid-uMlz8ZZ9LL .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-uMlz8ZZ9LL .mbr-shop .galleryItem h5,
.cid-uMlz8ZZ9LL .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-uMlz8ZZ9LL .mbr-shop .galleryItem p,
.cid-uMlz8ZZ9LL .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-uMlz8ZZ9LL .mbr-shop .item-button {
  text-align: center;
}
.cid-uMlz8ZZ9LL .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-uMlz8ZZ9LL .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-uMlz8ZZ9LL .mbr-shop .sidebar {
  margin-top: 15px;
  position: relative;
}
.cid-uMlz8ZZ9LL .mbr-shop .sidebar-block {
  position: relative;
}
.cid-uMlz8ZZ9LL .sidebar-background {
  padding-top: 2rem;
}
.cid-uMlz8ZZ9LL .mbr-shop .sidebar-background:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0);
  top: -20px;
  right: 3px;
}
.cid-uMlz8ZZ9LL .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-uMlz8ZZ9LL .mbr-shop .bestsellers .onsale {
  top: -15px;
  font-weight: 700 !important;
}
.cid-uMlz8ZZ9LL a {
  font-weight: 700 !important;
}
.cid-uMlz8ZZ9LL li {
  font-weight: 700 !important;
}
.cid-uMlz8ZZ9LL .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-uMlz8ZZ9LL .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-uMlz8ZZ9LL .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-uMlz8ZZ9LL .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uMlz8ZZ9LL .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-uMlz8ZZ9LL .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-uMlz8ZZ9LL .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-uMlz8ZZ9LL .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-uMlz8ZZ9LL .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-uMlz8ZZ9LL .mbr-shop .onsale {
  position: absolute;
  top: 8px;
  left: 8px;
  display: block;
  transition: color 0.3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  color: #354463;
  padding: 3px 14px 5px 14px;
  background: #a85105;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-uMlz8ZZ9LL .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-uMlz8ZZ9LL .mbr-shop .mbr-gallery-item__hided h4,
.cid-uMlz8ZZ9LL .mbr-shop .mbr-gallery-item__hided h5,
.cid-uMlz8ZZ9LL .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-uMlz8ZZ9LL .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-uMlz8ZZ9LL .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-uMlz8ZZ9LL .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-uMlz8ZZ9LL .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-uMlz8ZZ9LL .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-uMlz8ZZ9LL .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-uMlz8ZZ9LL .mbr-shop .mbr-gallery-filter ul li:hover {
  color: #354463;
}
.cid-uMlz8ZZ9LL .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-uMlz8ZZ9LL .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-uMlz8ZZ9LL .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #fcdd04;
  font-weight: bold;
}
.cid-uMlz8ZZ9LL .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border-radius: 2px;
  font-size: 0;
}
.cid-uMlz8ZZ9LL .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #fcdd04;
  font-weight: normal;
  cursor: pointer;
}
.cid-uMlz8ZZ9LL .mbr-shop .price-controls input {
  width: 100%;
  background-color: #f0edeb;
  border-radius: 25px;
  color: #87817d;
  font-size: 14px;
  font-weight: 700;
  border: none;
  line-height: 31px;
  height: 50px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-uMlz8ZZ9LL .mbr-shop .range-controls {
  position: relative;
  margin-top: 3.2rem;
}
.cid-uMlz8ZZ9LL .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-uMlz8ZZ9LL .mbr-shop .range-controls .bar {
  margin-left: 0;
  height: 4px;
  background-color: #e2e3e7;
  border-radius: 4px;
}
.cid-uMlz8ZZ9LL .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  height: 14px;
  width: 14px;
  border: 2px solid #e2e3e7;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ffffff;
  cursor: pointer;
}
.cid-uMlz8ZZ9LL .mbr-shop .toggle::after {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #354463;
  border-radius: 50%;
}
.cid-uMlz8ZZ9LL .mbr-shop .toggle:hover,
.cid-uMlz8ZZ9LL .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-uMlz8ZZ9LL .mbr-shop .min-toggle {
  left: 0;
}
.cid-uMlz8ZZ9LL .mbr-shop .max-toggle {
  right: 0;
}
.cid-uMlz8ZZ9LL .mbr-shop .hided-by-price {
  display: none;
}
.cid-uMlz8ZZ9LL .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-uMlz8ZZ9LL .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-uMlz8ZZ9LL .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uMlz8ZZ9LL .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-uMlz8ZZ9LL .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-uMlz8ZZ9LL .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-uMlz8ZZ9LL .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-uMlz8ZZ9LL .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-uMlz8ZZ9LL .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-uMlz8ZZ9LL .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uMlz8ZZ9LL .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-uMlz8ZZ9LL .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-uMlz8ZZ9LL .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uMlz8ZZ9LL .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-uMlz8ZZ9LL .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-uMlz8ZZ9LL .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-uMlz8ZZ9LL .mbr-shop .shop-items .onsale,
.cid-uMlz8ZZ9LL .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-uMlz8ZZ9LL .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-uMlz8ZZ9LL .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uMlz8ZZ9LL .mbr-shop .price-range {
  display: inline-block;
}
.cid-uMlz8ZZ9LL .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-uMlz8ZZ9LL .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-uMlz8ZZ9LL .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-uMlz8ZZ9LL .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-uMlz8ZZ9LL .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-uMlz8ZZ9LL .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-uMlz8ZZ9LL .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-uMlz8ZZ9LL .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-uMlz8ZZ9LL .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-uMlz8ZZ9LL .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-uMlz8ZZ9LL .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-uMlz8ZZ9LL .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-uMlz8ZZ9LL .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-uMlz8ZZ9LL .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-uMlz8ZZ9LL .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uMlz8ZZ9LL .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-uMlz8ZZ9LL .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-uMlz8ZZ9LL .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-uMlz8ZZ9LL .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uMlz8ZZ9LL .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uMlz8ZZ9LL .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-uMlz8ZZ9LL .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-uMlz8ZZ9LL .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-uMlz8ZZ9LL .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-uMlz8ZZ9LL .mbr-shop .sidebar-background:after {
    top: -1%;
  }
  .cid-uMlz8ZZ9LL .row {
    padding: 0;
  }
}
@media (max-width: 1100px) {
  .cid-uMlz8ZZ9LL .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-uMlz8ZZ9LL .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-uMlz8ZZ9LL .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-uMlz8ZZ9LL .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-uMlz8ZZ9LL .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-uMlz8ZZ9LL .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-uMlz8ZZ9LL .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-uMlz8ZZ9LL .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-uMlz8ZZ9LL .oldprice {
  color: #767676;
  padding-left: 0.8rem !important;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMlz8ZZ9LL .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-uMlz8ZZ9LL LI {
  color: #354463;
  text-align: center;
}
.cid-uMlz8ZZ9LL .sidebar-title {
  color: #a85105;
}
.cid-uMlz8ZZ9LL .item-title {
  text-align: left;
  color: #723704;
}
.cid-uMlz8ZZ9LL .display-7 {
  font-weight: 700 !important;
}
.cid-uMlz8ZZ9LL .shop-item-price,
.cid-uMlz8ZZ9LL .price-block {
  text-align: left;
  color: #354463;
  font-weight: 700 !important;
}
@media (max-width: 576px) {
  .cid-uMlz8ZZ9LL .mbr-shop .mbr-gallery-item,
  .cid-uMlz8ZZ9LL .wrapper-shop-items,
  .cid-uMlz8ZZ9LL .sidebar-block,
  .cid-uMlz8ZZ9LL .sidebar-title,
  .cid-uMlz8ZZ9LL .categories {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-uMlz8ZZ9LL .filter-cost {
    max-width: 100% !important;
  }
  .cid-uMlz8ZZ9LL .range-slider,
  .cid-uMlz8ZZ9LL .categories,
  .cid-uMlz8ZZ9LL .bestseller-block {
    text-align: center;
  }
}
.cid-uMlz8ZZ9LL .wrapper-shop-items {
  order: 1;
}
.cid-uMlz8ZZ9LL .btn-sm {
  border: 2px solid #01319a;
  border-radius: 50px;
  padding: 0.8rem 2rem;
}
.cid-uMlz8ZZ9LL .galleryItem {
  box-shadow: 0 3px 15px 2px rgba(0, 0, 0, 0.04);
  padding: 1rem 1rem;
  transition: 0.3s;
}
.cid-uMlz8ZZ9LL .mbr-gallery-item:hover .galleryItem {
  box-shadow: 0 3px 15px 2px rgba(0, 0, 0, 0.2);
}
.cid-uMlz8ZZ9LL .bestsellers .mbr-gallery-item {
  padding: 0rem !important;
  width: 100% !important;
}
.cid-uMlz8ZZ9LL .min-price {
  padding-right: 1rem;
}
.cid-uMlz8ZZ9LL .max-price {
  padding-left: 1rem;
}
.cid-uMlz8ZZ9LL .btn-secondary {
  color: #333 !important;
  background-color: transparent !important;
}
.cid-uMlz8ZZ9LL .btn-secondary:hover {
  background-color: transparent !important;
  opacity: 0.5;
  transform: translate(0);
}
.cid-uMlz8ZZ9LL a,
.cid-uMlz8ZZ9LL a:hover {
  color: #354463 !important;
}
.cid-uMlz8ZZ9LL .sidebar {
  background-color: #ffffff;
  margin-bottom: 1rem;
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uMlz8ZZ9LL .wrapper-shop-items {
    padding: 0;
  }
  .cid-uMlz8ZZ9LL .row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uMlz8ZZ9LL .mbr-gallery-item {
    padding: 1rem !important;
    width: 33.333% !important;
  }
  .cid-uMlz8ZZ9LL .row {
    padding: 0;
  }
}
.cid-uMlz8ZZ9LL .row {
  margin: 0rem;
}
.cid-uPNM4VbwYL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-2-1920x1314.png");
}
.cid-uPNM4VbwYL H2 {
  color: #e7272d;
}
.cid-uPNM4VbwYL .mbr-text,
.cid-uPNM4VbwYL .mbr-section-btn {
  color: #808080;
}
.cid-uPNM4VbwYL img {
  max-width: 500px;
  margin: auto;
}
.cid-uPNM4VbwYL .btn span {
  font-size: 2.4rem !important;
  margin-top: 0.6rem !important;
  margin-bottom: 0rem !important;
}
.cid-uPNM4VbwYL .btn {
  padding: 0.4rem 2.2rem;
  text-align: left;
  line-height: 1.3;
}
.cid-uPNM4VbwYL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPNM4VbwYL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPNM4VbwYL H1 {
  color: #ffffff;
}
.cid-uKsxBZZga3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uKsxBZZga3 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uKsxBZZga3 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uKsxBZZga3 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uKsxBZZga3 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uKsxBZZga3 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uKsxBZZga3 .mbr-section-title {
  color: #a85105;
}
.cid-uKITLilkFT {
  background-color: #ffffff;
}
.cid-uKITLilkFT .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uKITLilkFT .row {
  border-bottom: 1px solid #fcdd04;
}
.cid-uKITLilkFT H2 {
  color: #e7272d;
}
.cid-uKITLilkFT .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uKITLilkFT .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uKITLilkFT .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #fcdd04;
}
.cid-uKITLilkFT .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #fcdd04;
}
.cid-uKITLilkFT .col-lg-12 {
  overflow: hidden;
}
.cid-uKITLilkFT H4 {
  color: #fbbe36;
}
.cid-uKITLilkFT .mbr-text,
.cid-uKITLilkFT .mbr-section-btn {
  color: #723704;
}
@media (max-width: 767px) {
  .cid-uKITLilkFT .logo-wrap:before {
    content: none;
  }
  .cid-uKITLilkFT .logo-wrap:after {
    content: none;
  }
}
.cid-uKITLilkFT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKITLilkFT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKITLilkFT H3 {
  color: #fcdd04;
}
.cid-uKIZVrwqdm {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #fcdd04;
}
.cid-uKIZVrwqdm img {
  width: 50px;
  object-fit: contain;
}
.cid-uKIZVrwqdm .image-block {
  width: 50px;
  margin: auto;
}
.cid-uKIZVrwqdm .text {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uKIZVrwqdm .text {
    padding-bottom: 2rem;
  }
}
.cid-uKIZVrwqdm .mbr-section-title {
  color: #723704;
}
.cid-uKJBUnK31E .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-uKJBUnK31E .navbar-fixed-top {
  padding-top: 0;
}
.cid-uKJBUnK31E .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-uKJBUnK31E .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-uKJBUnK31E .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-uKJBUnK31E .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uKJBUnK31E .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uKJBUnK31E .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uKJBUnK31E .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-uKJBUnK31E .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uKJBUnK31E .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uKJBUnK31E .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uKJBUnK31E .menu-content-top {
  background: #fcdd04;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uKJBUnK31E .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uKJBUnK31E .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-uKJBUnK31E .dropdown-item,
.cid-uKJBUnK31E .nav-link,
.cid-uKJBUnK31E .brand-name {
  font-style: normal;
}
.cid-uKJBUnK31E .dropdown-item:hover,
.cid-uKJBUnK31E .nav-link:hover,
.cid-uKJBUnK31E .brand-name:hover {
  color: #fcdd04 !important;
}
.cid-uKJBUnK31E .dropdown-menu {
  background-color: #ffffff;
}
.cid-uKJBUnK31E .dropdown-item:active {
  background-color: #ffffff;
}
.cid-uKJBUnK31E .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uKJBUnK31E .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uKJBUnK31E .nav-item {
  position: relative;
}
.cid-uKJBUnK31E .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uKJBUnK31E .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-uKJBUnK31E .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-uKJBUnK31E .nav-link {
    line-height: 6.13;
  }
  .cid-uKJBUnK31E .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #a85105;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-uKJBUnK31E .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-uKJBUnK31E .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKJBUnK31E .content-text {
  margin-bottom: 0;
}
.cid-uKJBUnK31E .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uKJBUnK31E .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #fcdd04;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uKJBUnK31E .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uKJBUnK31E .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uKJBUnK31E .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-uKJBUnK31E .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKJBUnK31E .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uKJBUnK31E .content-right-side {
  text-align: center;
}
.cid-uKJBUnK31E .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uKJBUnK31E .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uKJBUnK31E .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #001b57;
}
.cid-uKJBUnK31E .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-uKJBUnK31E .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uKJBUnK31E .info-widget:first-child {
  margin-left: 0;
}
.cid-uKJBUnK31E .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uKJBUnK31E .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-uKJBUnK31E .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uKJBUnK31E .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #fcdd04;
}
@media (min-width: 992px) {
  .cid-uKJBUnK31E .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-uKJBUnK31E .navbar {
    display: block;
    padding: 0;
  }
  .cid-uKJBUnK31E .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-uKJBUnK31E .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uKJBUnK31E .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uKJBUnK31E .navbar-toggler {
    display: none;
  }
  .cid-uKJBUnK31E .navbar-collapse {
    justify-content: flex-start;
  }
}
.cid-uKJBUnK31E .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uKJBUnK31E .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-uKJBUnK31E .btn-sm {
  padding: 13px 29px;
}
.cid-uKJBUnK31E .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uKJBUnK31E .btn::after {
  background-color: #01319a;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-uKJBUnK31E .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-uKJBUnK31E .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uKJBUnK31E .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uKJBUnK31E .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-uKJBUnK31E .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uKJBUnK31E .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uKJBUnK31E .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKJBUnK31E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKJBUnK31E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKJBUnK31E .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uKJBUnK31E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKJBUnK31E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKJBUnK31E .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uKJBUnK31E .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKJBUnK31E .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uKJBUnK31E .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-uKJBUnK31E .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uKJBUnK31E .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uKJBUnK31E .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uKJBUnK31E button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-uKJBUnK31E button.navbar-toggler:focus {
  outline: none;
}
.cid-uKJBUnK31E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #723704;
}
.cid-uKJBUnK31E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKJBUnK31E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKJBUnK31E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKJBUnK31E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKJBUnK31E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKJBUnK31E nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKJBUnK31E nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKJBUnK31E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKJBUnK31E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKJBUnK31E .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKJBUnK31E .collapsed .btn {
  display: flex;
}
.cid-uKJBUnK31E .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uKJBUnK31E .collapsed .navbar-collapse.collapsing,
.cid-uKJBUnK31E .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uKJBUnK31E .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uKJBUnK31E .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uKJBUnK31E .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uKJBUnK31E .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uKJBUnK31E .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uKJBUnK31E .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-uKJBUnK31E .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uKJBUnK31E .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uKJBUnK31E .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKJBUnK31E .collapsed button.navbar-toggler {
  display: block;
}
.cid-uKJBUnK31E .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uKJBUnK31E .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-uKJBUnK31E .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uKJBUnK31E .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uKJBUnK31E .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uKJBUnK31E .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uKJBUnK31E .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uKJBUnK31E .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-uKJBUnK31E .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-uKJBUnK31E .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uKJBUnK31E .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-uKJBUnK31E .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-uKJBUnK31E .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-uKJBUnK31E .navbar-collapse.collapsing,
  .cid-uKJBUnK31E .navbar-collapse.show {
    display: block !important;
  }
  .cid-uKJBUnK31E .navbar-collapse.collapsing .navbar-nav,
  .cid-uKJBUnK31E .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uKJBUnK31E .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uKJBUnK31E .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uKJBUnK31E .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-uKJBUnK31E .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-uKJBUnK31E .navbar-collapse.collapsing .navbar-buttons,
  .cid-uKJBUnK31E .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uKJBUnK31E .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uKJBUnK31E .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uKJBUnK31E img {
    height: 3.8rem !important;
  }
  .cid-uKJBUnK31E .btn {
    display: flex;
  }
  .cid-uKJBUnK31E button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uKJBUnK31E .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uKJBUnK31E .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-uKJBUnK31E .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uKJBUnK31E .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uKJBUnK31E .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uKJBUnK31E .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uKJBUnK31E .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uKJBUnK31E .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uKJBUnK31E .navbar-toggler {
  position: relative;
}
.cid-uKJBUnK31E .dropdown-item.active,
.cid-uKJBUnK31E .dropdown-item:active {
  color: initial;
}
.cid-uKJBUnK31E .widget-title {
  color: #01319a;
}
.cid-uKJBUnK31E .widget-text {
  color: #01319a;
}
.cid-uKJBUnK31E .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-uKJBUnK31E .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #fcdd04;
  display: inline-flex;
  background-color: #ffffff;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-uKJBUnK31E .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-uKJBUnK31E .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #a85105;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-uKJBUnK31E .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-uKJBUnK31E .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-uKJBUnK31E .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-uKJBUnK31E .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-uKJBUnK31E .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-uKJBUnK31E .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-uKJBUnK31E .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-uKJBUnK31E .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-uKJBUnK31E .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-uKJBUnK31E .menu-content-top,
  .cid-uKJBUnK31E .menu-bottom {
    padding: 0 15px;
  }
  .cid-uKJBUnK31E button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-uKJBUnK31E .widget-title,
.cid-uKJBUnK31E .widget-icon {
  color: #512d0e;
}
.cid-uKJBUyEQz6 {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uKJBUyEQz6 h2 {
  color: #000000;
}
.cid-uKJBUyEQz6 h1 {
  color: #000000;
}
.cid-uKJBUyEQz6 .mbr-text,
.cid-uKJBUyEQz6 .mbr-section-btn {
  color: #001348;
  text-align: left;
}
.cid-uKJBUyEQz6 H1 {
  color: #fff902;
}
.cid-uKJBUzwgmP {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKJBUzwgmP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJBUzwgmP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uKJBUzwgmP .container {
    padding: 0 24px;
  }
}
.cid-uKJBUzwgmP .content-wrapper .mbr-section-title {
  margin-bottom: 28px;
}
.cid-uKJBUzwgmP .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 18px;
}
@media (max-width: 1200px) {
  .cid-uKJBUzwgmP .content-wrapper .text-wrap .mbr-text {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .cid-uKJBUzwgmP .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uKJBUzwgmP .mbr-section-title {
  color: #202020;
}
.cid-uKJBUzwgmP .mbr-text,
.cid-uKJBUzwgmP .text-wrap {
  color: #202020;
  text-align: center;
}
.cid-uKJBUzwgmP .mbr-section-title,
.cid-uKJBUzwgmP .mbr-section-btn {
  text-align: center;
}
.cid-uKJBUAap2y {
  padding-top: 20px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/banho-44-1490x480.png");
}
.cid-uKJBUAap2y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJBUAap2y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPPfIN5ZPx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcdd04;
}
.cid-uPPfIN5ZPx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPPfIN5ZPx .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uPPfIN5ZPx .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPPfIN5ZPx .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uPPfIN5ZPx .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uPPfIN5ZPx h5 {
  margin: 0;
}
.cid-uPPfIN5ZPx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPPfIN5ZPx .iconfont-wrapper {
  position: relative;
}
.cid-uPPfIN5ZPx .iconfont-wrapper:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fcdd04;
  transition: all 0.3s;
  opacity: 0.3;
}
.cid-uPPfIN5ZPx .mbr-iconfont {
  display: flex;
  font-size: 3rem;
  color: #ffffff;
  width: 100px;
  justify-content: center;
  align-items: center;
  height: 100px;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uPPfIN5ZPx .card-title,
.cid-uPPfIN5ZPx .iconfont-wrapper {
  color: #512d0e;
}
.cid-uPPfIN5ZPx .card-text {
  color: #723704;
}
.cid-uPPfIN5ZPx .mbr-section-title {
  color: #000000;
}
.cid-uKJBUBvDYK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKJBUBvDYK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJBUBvDYK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKJBUBvDYK .mbr-section-title {
  color: #723704;
}
.cid-uPPfNClv6Q {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uPPfNClv6Q .mbr-shop {
  display: table;
  width: 100%;
  margin: 0;
}
.cid-uPPfNClv6Q .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-uPPfNClv6Q .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-uPPfNClv6Q .btn {
  padding: 0.6rem 2rem;
}
.cid-uPPfNClv6Q .mbr-section-btn {
  text-align: left;
}
.cid-uPPfNClv6Q .img_wraper img {
  border-radius: 8px !important;
}
.cid-uPPfNClv6Q .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-uPPfNClv6Q .mbr-shop .shopItemsModal_wraper {
  left: 0rem;
  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-uPPfNClv6Q .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-uPPfNClv6Q .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  position: relative;
}
.cid-uPPfNClv6Q .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-uPPfNClv6Q .mbr-shop .hide-modal {
  display: none;
}
.cid-uPPfNClv6Q .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-uPPfNClv6Q .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-uPPfNClv6Q .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-uPPfNClv6Q .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-uPPfNClv6Q .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-uPPfNClv6Q .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-uPPfNClv6Q .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-uPPfNClv6Q .mbr-shop .filter-by-pu,
.cid-uPPfNClv6Q .mbr-shop .filter-by-pd,
.cid-uPPfNClv6Q .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-uPPfNClv6Q .mbr-shop .sort-buttons {
  padding-bottom: 0.2rem;
  margin-right: 13px;
  text-align: right;
}
.cid-uPPfNClv6Q .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-uPPfNClv6Q .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-uPPfNClv6Q .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-uPPfNClv6Q .mbr-shop .galleryItem h4,
.cid-uPPfNClv6Q .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-uPPfNClv6Q .mbr-shop .galleryItem h5,
.cid-uPPfNClv6Q .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-uPPfNClv6Q .mbr-shop .galleryItem p,
.cid-uPPfNClv6Q .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-uPPfNClv6Q .mbr-shop .item-button {
  text-align: center;
}
.cid-uPPfNClv6Q .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-uPPfNClv6Q .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-uPPfNClv6Q .mbr-shop .sidebar {
  margin-top: 15px;
  position: relative;
}
.cid-uPPfNClv6Q .mbr-shop .sidebar-block {
  position: relative;
}
.cid-uPPfNClv6Q .sidebar-background {
  padding-top: 2rem;
}
.cid-uPPfNClv6Q .mbr-shop .sidebar-background:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0);
  top: -20px;
  right: 3px;
}
.cid-uPPfNClv6Q .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-uPPfNClv6Q .mbr-shop .bestsellers .onsale {
  top: -15px;
  font-weight: 700 !important;
}
.cid-uPPfNClv6Q a {
  font-weight: 700 !important;
}
.cid-uPPfNClv6Q li {
  font-weight: 700 !important;
}
.cid-uPPfNClv6Q .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-uPPfNClv6Q .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-uPPfNClv6Q .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-uPPfNClv6Q .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uPPfNClv6Q .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-uPPfNClv6Q .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-uPPfNClv6Q .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-uPPfNClv6Q .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-uPPfNClv6Q .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-uPPfNClv6Q .mbr-shop .onsale {
  position: absolute;
  top: 8px;
  left: 8px;
  display: block;
  transition: color 0.3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  color: #354463;
  padding: 3px 14px 5px 14px;
  background: #a85105;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-uPPfNClv6Q .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-uPPfNClv6Q .mbr-shop .mbr-gallery-item__hided h4,
.cid-uPPfNClv6Q .mbr-shop .mbr-gallery-item__hided h5,
.cid-uPPfNClv6Q .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-uPPfNClv6Q .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-uPPfNClv6Q .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-uPPfNClv6Q .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-uPPfNClv6Q .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-uPPfNClv6Q .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-uPPfNClv6Q .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-uPPfNClv6Q .mbr-shop .mbr-gallery-filter ul li:hover {
  color: #354463;
}
.cid-uPPfNClv6Q .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-uPPfNClv6Q .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-uPPfNClv6Q .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #fcdd04;
  font-weight: bold;
}
.cid-uPPfNClv6Q .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border-radius: 2px;
  font-size: 0;
}
.cid-uPPfNClv6Q .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #fcdd04;
  font-weight: normal;
  cursor: pointer;
}
.cid-uPPfNClv6Q .mbr-shop .price-controls input {
  width: 100%;
  background-color: #f0edeb;
  border-radius: 25px;
  color: #87817d;
  font-size: 14px;
  font-weight: 700;
  border: none;
  line-height: 31px;
  height: 50px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-uPPfNClv6Q .mbr-shop .range-controls {
  position: relative;
  margin-top: 3.2rem;
}
.cid-uPPfNClv6Q .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-uPPfNClv6Q .mbr-shop .range-controls .bar {
  margin-left: 0;
  height: 4px;
  background-color: #e2e3e7;
  border-radius: 4px;
}
.cid-uPPfNClv6Q .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  height: 14px;
  width: 14px;
  border: 2px solid #e2e3e7;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ffffff;
  cursor: pointer;
}
.cid-uPPfNClv6Q .mbr-shop .toggle::after {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #354463;
  border-radius: 50%;
}
.cid-uPPfNClv6Q .mbr-shop .toggle:hover,
.cid-uPPfNClv6Q .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-uPPfNClv6Q .mbr-shop .min-toggle {
  left: 0;
}
.cid-uPPfNClv6Q .mbr-shop .max-toggle {
  right: 0;
}
.cid-uPPfNClv6Q .mbr-shop .hided-by-price {
  display: none;
}
.cid-uPPfNClv6Q .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-uPPfNClv6Q .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-uPPfNClv6Q .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uPPfNClv6Q .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-uPPfNClv6Q .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-uPPfNClv6Q .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-uPPfNClv6Q .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-uPPfNClv6Q .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-uPPfNClv6Q .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-uPPfNClv6Q .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uPPfNClv6Q .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-uPPfNClv6Q .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-uPPfNClv6Q .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uPPfNClv6Q .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-uPPfNClv6Q .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-uPPfNClv6Q .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-uPPfNClv6Q .mbr-shop .shop-items .onsale,
.cid-uPPfNClv6Q .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-uPPfNClv6Q .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-uPPfNClv6Q .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uPPfNClv6Q .mbr-shop .price-range {
  display: inline-block;
}
.cid-uPPfNClv6Q .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-uPPfNClv6Q .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-uPPfNClv6Q .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-uPPfNClv6Q .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-uPPfNClv6Q .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-uPPfNClv6Q .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-uPPfNClv6Q .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-uPPfNClv6Q .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-uPPfNClv6Q .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-uPPfNClv6Q .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-uPPfNClv6Q .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-uPPfNClv6Q .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-uPPfNClv6Q .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-uPPfNClv6Q .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-uPPfNClv6Q .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uPPfNClv6Q .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-uPPfNClv6Q .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-uPPfNClv6Q .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-uPPfNClv6Q .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uPPfNClv6Q .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uPPfNClv6Q .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-uPPfNClv6Q .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-uPPfNClv6Q .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-uPPfNClv6Q .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-uPPfNClv6Q .mbr-shop .sidebar-background:after {
    top: -1%;
  }
  .cid-uPPfNClv6Q .row {
    padding: 0;
  }
}
@media (max-width: 1100px) {
  .cid-uPPfNClv6Q .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-uPPfNClv6Q .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-uPPfNClv6Q .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-uPPfNClv6Q .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-uPPfNClv6Q .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-uPPfNClv6Q .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-uPPfNClv6Q .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-uPPfNClv6Q .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-uPPfNClv6Q .oldprice {
  color: #767676;
  padding-left: 0.8rem !important;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPPfNClv6Q .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-uPPfNClv6Q LI {
  color: #354463;
  text-align: center;
}
.cid-uPPfNClv6Q .sidebar-title {
  color: #a85105;
}
.cid-uPPfNClv6Q .item-title {
  text-align: left;
  color: #723704;
}
.cid-uPPfNClv6Q .display-7 {
  font-weight: 700 !important;
}
.cid-uPPfNClv6Q .shop-item-price,
.cid-uPPfNClv6Q .price-block {
  text-align: left;
  color: #354463;
  font-weight: 700 !important;
}
@media (max-width: 576px) {
  .cid-uPPfNClv6Q .mbr-shop .mbr-gallery-item,
  .cid-uPPfNClv6Q .wrapper-shop-items,
  .cid-uPPfNClv6Q .sidebar-block,
  .cid-uPPfNClv6Q .sidebar-title,
  .cid-uPPfNClv6Q .categories {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-uPPfNClv6Q .filter-cost {
    max-width: 100% !important;
  }
  .cid-uPPfNClv6Q .range-slider,
  .cid-uPPfNClv6Q .categories,
  .cid-uPPfNClv6Q .bestseller-block {
    text-align: center;
  }
}
.cid-uPPfNClv6Q .wrapper-shop-items {
  order: 1;
}
.cid-uPPfNClv6Q .btn-sm {
  border: 2px solid #01319a;
  border-radius: 50px;
  padding: 0.8rem 2rem;
}
.cid-uPPfNClv6Q .galleryItem {
  box-shadow: 0 3px 15px 2px rgba(0, 0, 0, 0.04);
  padding: 1rem 1rem;
  transition: 0.3s;
}
.cid-uPPfNClv6Q .mbr-gallery-item:hover .galleryItem {
  box-shadow: 0 3px 15px 2px rgba(0, 0, 0, 0.2);
}
.cid-uPPfNClv6Q .bestsellers .mbr-gallery-item {
  padding: 0rem !important;
  width: 100% !important;
}
.cid-uPPfNClv6Q .min-price {
  padding-right: 1rem;
}
.cid-uPPfNClv6Q .max-price {
  padding-left: 1rem;
}
.cid-uPPfNClv6Q .btn-secondary {
  color: #333 !important;
  background-color: transparent !important;
}
.cid-uPPfNClv6Q .btn-secondary:hover {
  background-color: transparent !important;
  opacity: 0.5;
  transform: translate(0);
}
.cid-uPPfNClv6Q a,
.cid-uPPfNClv6Q a:hover {
  color: #354463 !important;
}
.cid-uPPfNClv6Q .sidebar {
  background-color: #ffffff;
  margin-bottom: 1rem;
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uPPfNClv6Q .wrapper-shop-items {
    padding: 0;
  }
  .cid-uPPfNClv6Q .row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uPPfNClv6Q .mbr-gallery-item {
    padding: 1rem !important;
    width: 33.333% !important;
  }
  .cid-uPPfNClv6Q .row {
    padding: 0;
  }
}
.cid-uPPfNClv6Q .row {
  margin: 0rem;
}
.cid-uKJBUF95WU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/-94836898-sickdog.jpg-1.webp");
}
.cid-uKJBUF95WU H2 {
  color: #e7272d;
}
.cid-uKJBUF95WU .mbr-text,
.cid-uKJBUF95WU .mbr-section-btn {
  color: #808080;
}
.cid-uKJBUF95WU img {
  max-width: 500px;
  margin: auto;
}
.cid-uKJBUF95WU .btn span {
  font-size: 2.4rem !important;
  margin-top: 0.6rem !important;
  margin-bottom: 0rem !important;
}
.cid-uKJBUF95WU .btn {
  padding: 0.4rem 2.2rem;
  text-align: left;
  line-height: 1.3;
}
.cid-uKJBUF95WU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJBUF95WU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKJBUF95WU H1 {
  color: #ffffff;
}
.cid-uKJBUGzWXJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uKJBUGzWXJ .google-map {
  height: 30rem;
  position: relative;
}
.cid-uKJBUGzWXJ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uKJBUGzWXJ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uKJBUGzWXJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uKJBUGzWXJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uKJBUGzWXJ .mbr-section-title {
  color: #723704;
}
.cid-uKJBUHEI3P {
  background-color: #ffffff;
}
.cid-uKJBUHEI3P .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uKJBUHEI3P .row {
  border-bottom: 1px solid #fcdd04;
}
.cid-uKJBUHEI3P H2 {
  color: #e7272d;
}
.cid-uKJBUHEI3P .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uKJBUHEI3P .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uKJBUHEI3P .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #fcdd04;
}
.cid-uKJBUHEI3P .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #fcdd04;
}
.cid-uKJBUHEI3P .col-lg-12 {
  overflow: hidden;
}
.cid-uKJBUHEI3P H4 {
  color: #fbbe36;
}
.cid-uKJBUHEI3P .mbr-text,
.cid-uKJBUHEI3P .mbr-section-btn {
  color: #723704;
}
@media (max-width: 767px) {
  .cid-uKJBUHEI3P .logo-wrap:before {
    content: none;
  }
  .cid-uKJBUHEI3P .logo-wrap:after {
    content: none;
  }
}
.cid-uKJBUHEI3P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJBUHEI3P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKJBUHEI3P H3 {
  color: #fcdd04;
}
.cid-uKJBULIehp {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #fcdd04;
}
.cid-uKJBULIehp img {
  width: 50px;
  object-fit: contain;
}
.cid-uKJBULIehp .image-block {
  width: 50px;
  margin: auto;
}
.cid-uKJBULIehp .text {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uKJBULIehp .text {
    padding-bottom: 2rem;
  }
}
.cid-uKJBULIehp .mbr-section-title {
  color: #723704;
}
.cid-uKJHAXk58n .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-uKJHAXk58n .navbar-fixed-top {
  padding-top: 0;
}
.cid-uKJHAXk58n .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-uKJHAXk58n .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-uKJHAXk58n .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-uKJHAXk58n .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uKJHAXk58n .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uKJHAXk58n .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uKJHAXk58n .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-uKJHAXk58n .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uKJHAXk58n .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uKJHAXk58n .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uKJHAXk58n .menu-content-top {
  background: #fcdd04;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uKJHAXk58n .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uKJHAXk58n .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-uKJHAXk58n .dropdown-item,
.cid-uKJHAXk58n .nav-link,
.cid-uKJHAXk58n .brand-name {
  font-style: normal;
}
.cid-uKJHAXk58n .dropdown-item:hover,
.cid-uKJHAXk58n .nav-link:hover,
.cid-uKJHAXk58n .brand-name:hover {
  color: #fcdd04 !important;
}
.cid-uKJHAXk58n .dropdown-menu {
  background-color: #ffffff;
}
.cid-uKJHAXk58n .dropdown-item:active {
  background-color: #ffffff;
}
.cid-uKJHAXk58n .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uKJHAXk58n .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uKJHAXk58n .nav-item {
  position: relative;
}
.cid-uKJHAXk58n .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uKJHAXk58n .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-uKJHAXk58n .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-uKJHAXk58n .nav-link {
    line-height: 6.13;
  }
  .cid-uKJHAXk58n .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #a85105;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-uKJHAXk58n .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-uKJHAXk58n .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKJHAXk58n .content-text {
  margin-bottom: 0;
}
.cid-uKJHAXk58n .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uKJHAXk58n .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #fcdd04;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uKJHAXk58n .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uKJHAXk58n .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uKJHAXk58n .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-uKJHAXk58n .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKJHAXk58n .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uKJHAXk58n .content-right-side {
  text-align: center;
}
.cid-uKJHAXk58n .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uKJHAXk58n .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uKJHAXk58n .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #001b57;
}
.cid-uKJHAXk58n .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-uKJHAXk58n .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uKJHAXk58n .info-widget:first-child {
  margin-left: 0;
}
.cid-uKJHAXk58n .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uKJHAXk58n .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-uKJHAXk58n .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uKJHAXk58n .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #fcdd04;
}
@media (min-width: 992px) {
  .cid-uKJHAXk58n .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-uKJHAXk58n .navbar {
    display: block;
    padding: 0;
  }
  .cid-uKJHAXk58n .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-uKJHAXk58n .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uKJHAXk58n .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uKJHAXk58n .navbar-toggler {
    display: none;
  }
  .cid-uKJHAXk58n .navbar-collapse {
    justify-content: flex-start;
  }
}
.cid-uKJHAXk58n .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uKJHAXk58n .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-uKJHAXk58n .btn-sm {
  padding: 13px 29px;
}
.cid-uKJHAXk58n .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uKJHAXk58n .btn::after {
  background-color: #01319a;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-uKJHAXk58n .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-uKJHAXk58n .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uKJHAXk58n .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uKJHAXk58n .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-uKJHAXk58n .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uKJHAXk58n .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uKJHAXk58n .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKJHAXk58n .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKJHAXk58n .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKJHAXk58n .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uKJHAXk58n .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKJHAXk58n .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKJHAXk58n .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uKJHAXk58n .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKJHAXk58n .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uKJHAXk58n .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-uKJHAXk58n .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uKJHAXk58n .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uKJHAXk58n .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uKJHAXk58n button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-uKJHAXk58n button.navbar-toggler:focus {
  outline: none;
}
.cid-uKJHAXk58n button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #723704;
}
.cid-uKJHAXk58n button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKJHAXk58n button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKJHAXk58n button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKJHAXk58n button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKJHAXk58n nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKJHAXk58n nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKJHAXk58n nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKJHAXk58n nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKJHAXk58n .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKJHAXk58n .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKJHAXk58n .collapsed .btn {
  display: flex;
}
.cid-uKJHAXk58n .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uKJHAXk58n .collapsed .navbar-collapse.collapsing,
.cid-uKJHAXk58n .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uKJHAXk58n .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uKJHAXk58n .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uKJHAXk58n .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uKJHAXk58n .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uKJHAXk58n .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uKJHAXk58n .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-uKJHAXk58n .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uKJHAXk58n .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uKJHAXk58n .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKJHAXk58n .collapsed button.navbar-toggler {
  display: block;
}
.cid-uKJHAXk58n .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uKJHAXk58n .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-uKJHAXk58n .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uKJHAXk58n .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uKJHAXk58n .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uKJHAXk58n .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uKJHAXk58n .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uKJHAXk58n .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-uKJHAXk58n .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-uKJHAXk58n .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uKJHAXk58n .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-uKJHAXk58n .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-uKJHAXk58n .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-uKJHAXk58n .navbar-collapse.collapsing,
  .cid-uKJHAXk58n .navbar-collapse.show {
    display: block !important;
  }
  .cid-uKJHAXk58n .navbar-collapse.collapsing .navbar-nav,
  .cid-uKJHAXk58n .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uKJHAXk58n .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uKJHAXk58n .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uKJHAXk58n .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-uKJHAXk58n .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-uKJHAXk58n .navbar-collapse.collapsing .navbar-buttons,
  .cid-uKJHAXk58n .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uKJHAXk58n .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uKJHAXk58n .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uKJHAXk58n img {
    height: 3.8rem !important;
  }
  .cid-uKJHAXk58n .btn {
    display: flex;
  }
  .cid-uKJHAXk58n button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uKJHAXk58n .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uKJHAXk58n .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-uKJHAXk58n .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uKJHAXk58n .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uKJHAXk58n .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uKJHAXk58n .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uKJHAXk58n .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uKJHAXk58n .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uKJHAXk58n .navbar-toggler {
  position: relative;
}
.cid-uKJHAXk58n .dropdown-item.active,
.cid-uKJHAXk58n .dropdown-item:active {
  color: initial;
}
.cid-uKJHAXk58n .widget-title {
  color: #01319a;
}
.cid-uKJHAXk58n .widget-text {
  color: #01319a;
}
.cid-uKJHAXk58n .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-uKJHAXk58n .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #fcdd04;
  display: inline-flex;
  background-color: #ffffff;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-uKJHAXk58n .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-uKJHAXk58n .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #a85105;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-uKJHAXk58n .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-uKJHAXk58n .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-uKJHAXk58n .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-uKJHAXk58n .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-uKJHAXk58n .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-uKJHAXk58n .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-uKJHAXk58n .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-uKJHAXk58n .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-uKJHAXk58n .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-uKJHAXk58n .menu-content-top,
  .cid-uKJHAXk58n .menu-bottom {
    padding: 0 15px;
  }
  .cid-uKJHAXk58n button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-uKJHAXk58n .widget-title,
.cid-uKJHAXk58n .widget-icon {
  color: #512d0e;
}
.cid-uKJHB0PwX1 {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uKJHB0PwX1 h2 {
  color: #000000;
}
.cid-uKJHB0PwX1 h1 {
  color: #000000;
}
.cid-uKJHB0PwX1 .mbr-text,
.cid-uKJHB0PwX1 .mbr-section-btn {
  color: #001348;
  text-align: left;
}
.cid-uKJHB0PwX1 H1 {
  color: #fff902;
}
.cid-uKJHB1FJ3p {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKJHB1FJ3p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJHB1FJ3p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uKJHB1FJ3p .container {
    padding: 0 24px;
  }
}
.cid-uKJHB1FJ3p .content-wrapper .mbr-section-title {
  margin-bottom: 28px;
}
.cid-uKJHB1FJ3p .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 18px;
}
@media (max-width: 1200px) {
  .cid-uKJHB1FJ3p .content-wrapper .text-wrap .mbr-text {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .cid-uKJHB1FJ3p .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uKJHB1FJ3p .mbr-section-title {
  color: #202020;
}
.cid-uKJHB1FJ3p .mbr-text,
.cid-uKJHB1FJ3p .text-wrap {
  color: #202020;
  text-align: center;
}
.cid-uKJHB1FJ3p .mbr-section-title,
.cid-uKJHB1FJ3p .mbr-section-btn {
  text-align: center;
}
.cid-uKJHB2ySyB {
  padding-top: 20px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/banho-37-1490x480.png");
}
.cid-uKJHB2ySyB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJHB2ySyB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPPjK1Tb27 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcdd04;
}
.cid-uPPjK1Tb27 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPPjK1Tb27 .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uPPjK1Tb27 .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPPjK1Tb27 .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uPPjK1Tb27 .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uPPjK1Tb27 h5 {
  margin: 0;
}
.cid-uPPjK1Tb27 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPPjK1Tb27 .iconfont-wrapper {
  position: relative;
}
.cid-uPPjK1Tb27 .iconfont-wrapper:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fcdd04;
  transition: all 0.3s;
  opacity: 0.3;
}
.cid-uPPjK1Tb27 .mbr-iconfont {
  display: flex;
  font-size: 3rem;
  color: #ffffff;
  width: 100px;
  justify-content: center;
  align-items: center;
  height: 100px;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uPPjK1Tb27 .card-title,
.cid-uPPjK1Tb27 .iconfont-wrapper {
  color: #512d0e;
}
.cid-uPPjK1Tb27 .card-text {
  color: #723704;
}
.cid-uPPjK1Tb27 .mbr-section-title {
  color: #000000;
}
.cid-uKJHB3Z7uh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKJHB3Z7uh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJHB3Z7uh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKJHB3Z7uh .mbr-section-title {
  color: #723704;
}
.cid-uPPghLSt5D {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uPPghLSt5D .mbr-shop {
  display: table;
  width: 100%;
  margin: 0;
}
.cid-uPPghLSt5D .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-uPPghLSt5D .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-uPPghLSt5D .btn {
  padding: 0.6rem 2rem;
}
.cid-uPPghLSt5D .mbr-section-btn {
  text-align: left;
}
.cid-uPPghLSt5D .img_wraper img {
  border-radius: 8px !important;
}
.cid-uPPghLSt5D .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-uPPghLSt5D .mbr-shop .shopItemsModal_wraper {
  left: 0rem;
  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-uPPghLSt5D .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-uPPghLSt5D .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  position: relative;
}
.cid-uPPghLSt5D .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-uPPghLSt5D .mbr-shop .hide-modal {
  display: none;
}
.cid-uPPghLSt5D .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-uPPghLSt5D .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-uPPghLSt5D .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-uPPghLSt5D .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-uPPghLSt5D .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-uPPghLSt5D .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-uPPghLSt5D .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-uPPghLSt5D .mbr-shop .filter-by-pu,
.cid-uPPghLSt5D .mbr-shop .filter-by-pd,
.cid-uPPghLSt5D .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-uPPghLSt5D .mbr-shop .sort-buttons {
  padding-bottom: 0.2rem;
  margin-right: 13px;
  text-align: right;
}
.cid-uPPghLSt5D .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-uPPghLSt5D .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-uPPghLSt5D .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-uPPghLSt5D .mbr-shop .galleryItem h4,
.cid-uPPghLSt5D .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-uPPghLSt5D .mbr-shop .galleryItem h5,
.cid-uPPghLSt5D .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-uPPghLSt5D .mbr-shop .galleryItem p,
.cid-uPPghLSt5D .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-uPPghLSt5D .mbr-shop .item-button {
  text-align: center;
}
.cid-uPPghLSt5D .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-uPPghLSt5D .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-uPPghLSt5D .mbr-shop .sidebar {
  margin-top: 15px;
  position: relative;
}
.cid-uPPghLSt5D .mbr-shop .sidebar-block {
  position: relative;
}
.cid-uPPghLSt5D .sidebar-background {
  padding-top: 2rem;
}
.cid-uPPghLSt5D .mbr-shop .sidebar-background:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0);
  top: -20px;
  right: 3px;
}
.cid-uPPghLSt5D .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-uPPghLSt5D .mbr-shop .bestsellers .onsale {
  top: -15px;
  font-weight: 700 !important;
}
.cid-uPPghLSt5D a {
  font-weight: 700 !important;
}
.cid-uPPghLSt5D li {
  font-weight: 700 !important;
}
.cid-uPPghLSt5D .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-uPPghLSt5D .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-uPPghLSt5D .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-uPPghLSt5D .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uPPghLSt5D .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-uPPghLSt5D .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-uPPghLSt5D .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-uPPghLSt5D .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-uPPghLSt5D .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-uPPghLSt5D .mbr-shop .onsale {
  position: absolute;
  top: 8px;
  left: 8px;
  display: block;
  transition: color 0.3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  color: #354463;
  padding: 3px 14px 5px 14px;
  background: #a85105;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-uPPghLSt5D .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-uPPghLSt5D .mbr-shop .mbr-gallery-item__hided h4,
.cid-uPPghLSt5D .mbr-shop .mbr-gallery-item__hided h5,
.cid-uPPghLSt5D .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-uPPghLSt5D .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-uPPghLSt5D .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-uPPghLSt5D .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-uPPghLSt5D .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-uPPghLSt5D .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-uPPghLSt5D .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-uPPghLSt5D .mbr-shop .mbr-gallery-filter ul li:hover {
  color: #354463;
}
.cid-uPPghLSt5D .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-uPPghLSt5D .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-uPPghLSt5D .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #fcdd04;
  font-weight: bold;
}
.cid-uPPghLSt5D .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border-radius: 2px;
  font-size: 0;
}
.cid-uPPghLSt5D .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #fcdd04;
  font-weight: normal;
  cursor: pointer;
}
.cid-uPPghLSt5D .mbr-shop .price-controls input {
  width: 100%;
  background-color: #f0edeb;
  border-radius: 25px;
  color: #87817d;
  font-size: 14px;
  font-weight: 700;
  border: none;
  line-height: 31px;
  height: 50px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-uPPghLSt5D .mbr-shop .range-controls {
  position: relative;
  margin-top: 3.2rem;
}
.cid-uPPghLSt5D .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-uPPghLSt5D .mbr-shop .range-controls .bar {
  margin-left: 0;
  height: 4px;
  background-color: #e2e3e7;
  border-radius: 4px;
}
.cid-uPPghLSt5D .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  height: 14px;
  width: 14px;
  border: 2px solid #e2e3e7;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ffffff;
  cursor: pointer;
}
.cid-uPPghLSt5D .mbr-shop .toggle::after {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #354463;
  border-radius: 50%;
}
.cid-uPPghLSt5D .mbr-shop .toggle:hover,
.cid-uPPghLSt5D .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-uPPghLSt5D .mbr-shop .min-toggle {
  left: 0;
}
.cid-uPPghLSt5D .mbr-shop .max-toggle {
  right: 0;
}
.cid-uPPghLSt5D .mbr-shop .hided-by-price {
  display: none;
}
.cid-uPPghLSt5D .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-uPPghLSt5D .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-uPPghLSt5D .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uPPghLSt5D .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-uPPghLSt5D .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-uPPghLSt5D .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-uPPghLSt5D .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-uPPghLSt5D .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-uPPghLSt5D .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-uPPghLSt5D .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uPPghLSt5D .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-uPPghLSt5D .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-uPPghLSt5D .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uPPghLSt5D .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-uPPghLSt5D .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-uPPghLSt5D .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-uPPghLSt5D .mbr-shop .shop-items .onsale,
.cid-uPPghLSt5D .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-uPPghLSt5D .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-uPPghLSt5D .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uPPghLSt5D .mbr-shop .price-range {
  display: inline-block;
}
.cid-uPPghLSt5D .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-uPPghLSt5D .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-uPPghLSt5D .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-uPPghLSt5D .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-uPPghLSt5D .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-uPPghLSt5D .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-uPPghLSt5D .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-uPPghLSt5D .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-uPPghLSt5D .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-uPPghLSt5D .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-uPPghLSt5D .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-uPPghLSt5D .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-uPPghLSt5D .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-uPPghLSt5D .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-uPPghLSt5D .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uPPghLSt5D .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-uPPghLSt5D .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-uPPghLSt5D .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-uPPghLSt5D .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uPPghLSt5D .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uPPghLSt5D .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-uPPghLSt5D .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-uPPghLSt5D .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-uPPghLSt5D .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-uPPghLSt5D .mbr-shop .sidebar-background:after {
    top: -1%;
  }
  .cid-uPPghLSt5D .row {
    padding: 0;
  }
}
@media (max-width: 1100px) {
  .cid-uPPghLSt5D .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-uPPghLSt5D .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-uPPghLSt5D .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-uPPghLSt5D .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-uPPghLSt5D .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-uPPghLSt5D .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-uPPghLSt5D .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-uPPghLSt5D .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-uPPghLSt5D .oldprice {
  color: #767676;
  padding-left: 0.8rem !important;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPPghLSt5D .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-uPPghLSt5D LI {
  color: #354463;
  text-align: center;
}
.cid-uPPghLSt5D .sidebar-title {
  color: #a85105;
}
.cid-uPPghLSt5D .item-title {
  text-align: left;
  color: #723704;
}
.cid-uPPghLSt5D .display-7 {
  font-weight: 700 !important;
}
.cid-uPPghLSt5D .shop-item-price,
.cid-uPPghLSt5D .price-block {
  text-align: left;
  color: #354463;
  font-weight: 700 !important;
}
@media (max-width: 576px) {
  .cid-uPPghLSt5D .mbr-shop .mbr-gallery-item,
  .cid-uPPghLSt5D .wrapper-shop-items,
  .cid-uPPghLSt5D .sidebar-block,
  .cid-uPPghLSt5D .sidebar-title,
  .cid-uPPghLSt5D .categories {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-uPPghLSt5D .filter-cost {
    max-width: 100% !important;
  }
  .cid-uPPghLSt5D .range-slider,
  .cid-uPPghLSt5D .categories,
  .cid-uPPghLSt5D .bestseller-block {
    text-align: center;
  }
}
.cid-uPPghLSt5D .wrapper-shop-items {
  order: 1;
}
.cid-uPPghLSt5D .btn-sm {
  border: 2px solid #01319a;
  border-radius: 50px;
  padding: 0.8rem 2rem;
}
.cid-uPPghLSt5D .galleryItem {
  box-shadow: 0 3px 15px 2px rgba(0, 0, 0, 0.04);
  padding: 1rem 1rem;
  transition: 0.3s;
}
.cid-uPPghLSt5D .mbr-gallery-item:hover .galleryItem {
  box-shadow: 0 3px 15px 2px rgba(0, 0, 0, 0.2);
}
.cid-uPPghLSt5D .bestsellers .mbr-gallery-item {
  padding: 0rem !important;
  width: 100% !important;
}
.cid-uPPghLSt5D .min-price {
  padding-right: 1rem;
}
.cid-uPPghLSt5D .max-price {
  padding-left: 1rem;
}
.cid-uPPghLSt5D .btn-secondary {
  color: #333 !important;
  background-color: transparent !important;
}
.cid-uPPghLSt5D .btn-secondary:hover {
  background-color: transparent !important;
  opacity: 0.5;
  transform: translate(0);
}
.cid-uPPghLSt5D a,
.cid-uPPghLSt5D a:hover {
  color: #354463 !important;
}
.cid-uPPghLSt5D .sidebar {
  background-color: #ffffff;
  margin-bottom: 1rem;
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uPPghLSt5D .wrapper-shop-items {
    padding: 0;
  }
  .cid-uPPghLSt5D .row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uPPghLSt5D .mbr-gallery-item {
    padding: 1rem !important;
    width: 33.333% !important;
  }
  .cid-uPPghLSt5D .row {
    padding: 0;
  }
}
.cid-uPPghLSt5D .row {
  margin: 0rem;
}
.cid-uPPgeH7cKg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/banho-38-1490x480.png");
}
.cid-uPPgeH7cKg H2 {
  color: #e7272d;
}
.cid-uPPgeH7cKg .mbr-text,
.cid-uPPgeH7cKg .mbr-section-btn {
  color: #808080;
}
.cid-uPPgeH7cKg img {
  max-width: 500px;
  margin: auto;
}
.cid-uPPgeH7cKg .btn span {
  font-size: 2.4rem !important;
  margin-top: 0.6rem !important;
  margin-bottom: 0rem !important;
}
.cid-uPPgeH7cKg .btn {
  padding: 0.4rem 2.2rem;
  text-align: left;
  line-height: 1.3;
}
.cid-uPPgeH7cKg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPPgeH7cKg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPPgeH7cKg H1 {
  color: #ffffff;
}
.cid-uKJHB7h25a {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uKJHB7h25a .google-map {
  height: 30rem;
  position: relative;
}
.cid-uKJHB7h25a .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uKJHB7h25a .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uKJHB7h25a .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uKJHB7h25a .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uKJHB7h25a .mbr-section-title {
  color: #723704;
}
.cid-uKJHB9Ka4s {
  background-color: #ffffff;
}
.cid-uKJHB9Ka4s .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uKJHB9Ka4s .row {
  border-bottom: 1px solid #fcdd04;
}
.cid-uKJHB9Ka4s H2 {
  color: #e7272d;
}
.cid-uKJHB9Ka4s .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uKJHB9Ka4s .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uKJHB9Ka4s .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #fcdd04;
}
.cid-uKJHB9Ka4s .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #fcdd04;
}
.cid-uKJHB9Ka4s .col-lg-12 {
  overflow: hidden;
}
.cid-uKJHB9Ka4s H4 {
  color: #fbbe36;
}
.cid-uKJHB9Ka4s .mbr-text,
.cid-uKJHB9Ka4s .mbr-section-btn {
  color: #723704;
}
@media (max-width: 767px) {
  .cid-uKJHB9Ka4s .logo-wrap:before {
    content: none;
  }
  .cid-uKJHB9Ka4s .logo-wrap:after {
    content: none;
  }
}
.cid-uKJHB9Ka4s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJHB9Ka4s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKJHB9Ka4s H3 {
  color: #fcdd04;
}
.cid-uKJHBdkw6a {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #fcdd04;
}
.cid-uKJHBdkw6a img {
  width: 50px;
  object-fit: contain;
}
.cid-uKJHBdkw6a .image-block {
  width: 50px;
  margin: auto;
}
.cid-uKJHBdkw6a .text {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uKJHBdkw6a .text {
    padding-bottom: 2rem;
  }
}
.cid-uKJHBdkw6a .mbr-section-title {
  color: #723704;
}
.cid-uKJLnYkn2w .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-uKJLnYkn2w .navbar-fixed-top {
  padding-top: 0;
}
.cid-uKJLnYkn2w .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-uKJLnYkn2w .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-uKJLnYkn2w .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-uKJLnYkn2w .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uKJLnYkn2w .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uKJLnYkn2w .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uKJLnYkn2w .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-uKJLnYkn2w .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uKJLnYkn2w .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uKJLnYkn2w .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uKJLnYkn2w .menu-content-top {
  background: #fcdd04;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uKJLnYkn2w .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uKJLnYkn2w .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-uKJLnYkn2w .dropdown-item,
.cid-uKJLnYkn2w .nav-link,
.cid-uKJLnYkn2w .brand-name {
  font-style: normal;
}
.cid-uKJLnYkn2w .dropdown-item:hover,
.cid-uKJLnYkn2w .nav-link:hover,
.cid-uKJLnYkn2w .brand-name:hover {
  color: #fcdd04 !important;
}
.cid-uKJLnYkn2w .dropdown-menu {
  background-color: #ffffff;
}
.cid-uKJLnYkn2w .dropdown-item:active {
  background-color: #ffffff;
}
.cid-uKJLnYkn2w .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uKJLnYkn2w .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uKJLnYkn2w .nav-item {
  position: relative;
}
.cid-uKJLnYkn2w .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uKJLnYkn2w .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-uKJLnYkn2w .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-uKJLnYkn2w .nav-link {
    line-height: 6.13;
  }
  .cid-uKJLnYkn2w .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #a85105;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-uKJLnYkn2w .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-uKJLnYkn2w .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKJLnYkn2w .content-text {
  margin-bottom: 0;
}
.cid-uKJLnYkn2w .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uKJLnYkn2w .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #fcdd04;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uKJLnYkn2w .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uKJLnYkn2w .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uKJLnYkn2w .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-uKJLnYkn2w .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKJLnYkn2w .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uKJLnYkn2w .content-right-side {
  text-align: center;
}
.cid-uKJLnYkn2w .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uKJLnYkn2w .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uKJLnYkn2w .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #001b57;
}
.cid-uKJLnYkn2w .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-uKJLnYkn2w .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uKJLnYkn2w .info-widget:first-child {
  margin-left: 0;
}
.cid-uKJLnYkn2w .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uKJLnYkn2w .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-uKJLnYkn2w .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uKJLnYkn2w .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #fcdd04;
}
@media (min-width: 992px) {
  .cid-uKJLnYkn2w .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-uKJLnYkn2w .navbar {
    display: block;
    padding: 0;
  }
  .cid-uKJLnYkn2w .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-uKJLnYkn2w .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uKJLnYkn2w .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uKJLnYkn2w .navbar-toggler {
    display: none;
  }
  .cid-uKJLnYkn2w .navbar-collapse {
    justify-content: flex-start;
  }
}
.cid-uKJLnYkn2w .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uKJLnYkn2w .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-uKJLnYkn2w .btn-sm {
  padding: 13px 29px;
}
.cid-uKJLnYkn2w .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uKJLnYkn2w .btn::after {
  background-color: #01319a;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-uKJLnYkn2w .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-uKJLnYkn2w .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uKJLnYkn2w .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uKJLnYkn2w .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-uKJLnYkn2w .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uKJLnYkn2w .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uKJLnYkn2w .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKJLnYkn2w .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKJLnYkn2w .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKJLnYkn2w .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uKJLnYkn2w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKJLnYkn2w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKJLnYkn2w .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uKJLnYkn2w .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKJLnYkn2w .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uKJLnYkn2w .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-uKJLnYkn2w .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uKJLnYkn2w .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uKJLnYkn2w .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uKJLnYkn2w button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-uKJLnYkn2w button.navbar-toggler:focus {
  outline: none;
}
.cid-uKJLnYkn2w button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #723704;
}
.cid-uKJLnYkn2w button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKJLnYkn2w button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKJLnYkn2w button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKJLnYkn2w button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKJLnYkn2w nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKJLnYkn2w nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKJLnYkn2w nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKJLnYkn2w nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKJLnYkn2w .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKJLnYkn2w .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKJLnYkn2w .collapsed .btn {
  display: flex;
}
.cid-uKJLnYkn2w .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uKJLnYkn2w .collapsed .navbar-collapse.collapsing,
.cid-uKJLnYkn2w .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uKJLnYkn2w .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uKJLnYkn2w .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uKJLnYkn2w .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uKJLnYkn2w .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uKJLnYkn2w .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uKJLnYkn2w .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-uKJLnYkn2w .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uKJLnYkn2w .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uKJLnYkn2w .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKJLnYkn2w .collapsed button.navbar-toggler {
  display: block;
}
.cid-uKJLnYkn2w .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uKJLnYkn2w .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-uKJLnYkn2w .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uKJLnYkn2w .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uKJLnYkn2w .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uKJLnYkn2w .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uKJLnYkn2w .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uKJLnYkn2w .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-uKJLnYkn2w .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-uKJLnYkn2w .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uKJLnYkn2w .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-uKJLnYkn2w .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-uKJLnYkn2w .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-uKJLnYkn2w .navbar-collapse.collapsing,
  .cid-uKJLnYkn2w .navbar-collapse.show {
    display: block !important;
  }
  .cid-uKJLnYkn2w .navbar-collapse.collapsing .navbar-nav,
  .cid-uKJLnYkn2w .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uKJLnYkn2w .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uKJLnYkn2w .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uKJLnYkn2w .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-uKJLnYkn2w .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-uKJLnYkn2w .navbar-collapse.collapsing .navbar-buttons,
  .cid-uKJLnYkn2w .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uKJLnYkn2w .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uKJLnYkn2w .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uKJLnYkn2w img {
    height: 3.8rem !important;
  }
  .cid-uKJLnYkn2w .btn {
    display: flex;
  }
  .cid-uKJLnYkn2w button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uKJLnYkn2w .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uKJLnYkn2w .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-uKJLnYkn2w .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uKJLnYkn2w .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uKJLnYkn2w .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uKJLnYkn2w .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uKJLnYkn2w .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uKJLnYkn2w .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uKJLnYkn2w .navbar-toggler {
  position: relative;
}
.cid-uKJLnYkn2w .dropdown-item.active,
.cid-uKJLnYkn2w .dropdown-item:active {
  color: initial;
}
.cid-uKJLnYkn2w .widget-title {
  color: #01319a;
}
.cid-uKJLnYkn2w .widget-text {
  color: #01319a;
}
.cid-uKJLnYkn2w .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-uKJLnYkn2w .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #fcdd04;
  display: inline-flex;
  background-color: #ffffff;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-uKJLnYkn2w .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-uKJLnYkn2w .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #a85105;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-uKJLnYkn2w .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-uKJLnYkn2w .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-uKJLnYkn2w .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-uKJLnYkn2w .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-uKJLnYkn2w .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-uKJLnYkn2w .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-uKJLnYkn2w .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-uKJLnYkn2w .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-uKJLnYkn2w .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-uKJLnYkn2w .menu-content-top,
  .cid-uKJLnYkn2w .menu-bottom {
    padding: 0 15px;
  }
  .cid-uKJLnYkn2w button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-uKJLnYkn2w .widget-title,
.cid-uKJLnYkn2w .widget-icon {
  color: #512d0e;
}
.cid-uKJLo1xI1J {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uKJLo1xI1J h2 {
  color: #000000;
}
.cid-uKJLo1xI1J h1 {
  color: #000000;
}
.cid-uKJLo1xI1J .mbr-text,
.cid-uKJLo1xI1J .mbr-section-btn {
  color: #001348;
  text-align: left;
}
.cid-uKJLo1xI1J H1 {
  color: #fff902;
}
.cid-uKJLo2fksU {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKJLo2fksU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJLo2fksU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uKJLo2fksU .container {
    padding: 0 24px;
  }
}
.cid-uKJLo2fksU .content-wrapper .mbr-section-title {
  margin-bottom: 28px;
}
.cid-uKJLo2fksU .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 18px;
}
@media (max-width: 1200px) {
  .cid-uKJLo2fksU .content-wrapper .text-wrap .mbr-text {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .cid-uKJLo2fksU .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uKJLo2fksU .mbr-section-title {
  color: #202020;
}
.cid-uKJLo2fksU .mbr-text,
.cid-uKJLo2fksU .text-wrap {
  color: #202020;
  text-align: center;
}
.cid-uKJLo2fksU .mbr-section-title,
.cid-uKJLo2fksU .mbr-section-btn {
  text-align: center;
}
.cid-uKJLo2VSYO {
  padding-top: 20px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/banho-39-1490x480.png");
}
.cid-uKJLo2VSYO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJLo2VSYO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPPoeGFARf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcdd04;
}
.cid-uPPoeGFARf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPPoeGFARf .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uPPoeGFARf .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPPoeGFARf .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uPPoeGFARf .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uPPoeGFARf h5 {
  margin: 0;
}
.cid-uPPoeGFARf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPPoeGFARf .iconfont-wrapper {
  position: relative;
}
.cid-uPPoeGFARf .iconfont-wrapper:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fcdd04;
  transition: all 0.3s;
  opacity: 0.3;
}
.cid-uPPoeGFARf .mbr-iconfont {
  display: flex;
  font-size: 3rem;
  color: #ffffff;
  width: 100px;
  justify-content: center;
  align-items: center;
  height: 100px;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uPPoeGFARf .card-title,
.cid-uPPoeGFARf .iconfont-wrapper {
  color: #512d0e;
}
.cid-uPPoeGFARf .card-text {
  color: #723704;
}
.cid-uPPoeGFARf .mbr-section-title {
  color: #000000;
}
.cid-uKJLo4NOgD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKJLo4NOgD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJLo4NOgD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKJLo4NOgD .mbr-section-title {
  color: #723704;
}
.cid-uPPoit6cVl {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uPPoit6cVl .mbr-shop {
  display: table;
  width: 100%;
  margin: 0;
}
.cid-uPPoit6cVl .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-uPPoit6cVl .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-uPPoit6cVl .btn {
  padding: 0.6rem 2rem;
}
.cid-uPPoit6cVl .mbr-section-btn {
  text-align: left;
}
.cid-uPPoit6cVl .img_wraper img {
  border-radius: 8px !important;
}
.cid-uPPoit6cVl .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-uPPoit6cVl .mbr-shop .shopItemsModal_wraper {
  left: 0rem;
  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-uPPoit6cVl .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-uPPoit6cVl .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  position: relative;
}
.cid-uPPoit6cVl .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-uPPoit6cVl .mbr-shop .hide-modal {
  display: none;
}
.cid-uPPoit6cVl .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-uPPoit6cVl .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-uPPoit6cVl .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-uPPoit6cVl .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-uPPoit6cVl .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-uPPoit6cVl .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-uPPoit6cVl .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-uPPoit6cVl .mbr-shop .filter-by-pu,
.cid-uPPoit6cVl .mbr-shop .filter-by-pd,
.cid-uPPoit6cVl .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-uPPoit6cVl .mbr-shop .sort-buttons {
  padding-bottom: 0.2rem;
  margin-right: 13px;
  text-align: right;
}
.cid-uPPoit6cVl .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-uPPoit6cVl .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-uPPoit6cVl .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-uPPoit6cVl .mbr-shop .galleryItem h4,
.cid-uPPoit6cVl .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-uPPoit6cVl .mbr-shop .galleryItem h5,
.cid-uPPoit6cVl .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-uPPoit6cVl .mbr-shop .galleryItem p,
.cid-uPPoit6cVl .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-uPPoit6cVl .mbr-shop .item-button {
  text-align: center;
}
.cid-uPPoit6cVl .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-uPPoit6cVl .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-uPPoit6cVl .mbr-shop .sidebar {
  margin-top: 15px;
  position: relative;
}
.cid-uPPoit6cVl .mbr-shop .sidebar-block {
  position: relative;
}
.cid-uPPoit6cVl .sidebar-background {
  padding-top: 2rem;
}
.cid-uPPoit6cVl .mbr-shop .sidebar-background:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0);
  top: -20px;
  right: 3px;
}
.cid-uPPoit6cVl .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-uPPoit6cVl .mbr-shop .bestsellers .onsale {
  top: -15px;
  font-weight: 700 !important;
}
.cid-uPPoit6cVl a {
  font-weight: 700 !important;
}
.cid-uPPoit6cVl li {
  font-weight: 700 !important;
}
.cid-uPPoit6cVl .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-uPPoit6cVl .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-uPPoit6cVl .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-uPPoit6cVl .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uPPoit6cVl .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-uPPoit6cVl .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-uPPoit6cVl .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-uPPoit6cVl .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-uPPoit6cVl .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-uPPoit6cVl .mbr-shop .onsale {
  position: absolute;
  top: 8px;
  left: 8px;
  display: block;
  transition: color 0.3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  color: #354463;
  padding: 3px 14px 5px 14px;
  background: #a85105;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-uPPoit6cVl .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-uPPoit6cVl .mbr-shop .mbr-gallery-item__hided h4,
.cid-uPPoit6cVl .mbr-shop .mbr-gallery-item__hided h5,
.cid-uPPoit6cVl .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-uPPoit6cVl .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-uPPoit6cVl .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-uPPoit6cVl .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-uPPoit6cVl .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-uPPoit6cVl .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-uPPoit6cVl .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-uPPoit6cVl .mbr-shop .mbr-gallery-filter ul li:hover {
  color: #354463;
}
.cid-uPPoit6cVl .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-uPPoit6cVl .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-uPPoit6cVl .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #fcdd04;
  font-weight: bold;
}
.cid-uPPoit6cVl .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border-radius: 2px;
  font-size: 0;
}
.cid-uPPoit6cVl .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #fcdd04;
  font-weight: normal;
  cursor: pointer;
}
.cid-uPPoit6cVl .mbr-shop .price-controls input {
  width: 100%;
  background-color: #f0edeb;
  border-radius: 25px;
  color: #87817d;
  font-size: 14px;
  font-weight: 700;
  border: none;
  line-height: 31px;
  height: 50px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-uPPoit6cVl .mbr-shop .range-controls {
  position: relative;
  margin-top: 3.2rem;
}
.cid-uPPoit6cVl .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-uPPoit6cVl .mbr-shop .range-controls .bar {
  margin-left: 0;
  height: 4px;
  background-color: #e2e3e7;
  border-radius: 4px;
}
.cid-uPPoit6cVl .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  height: 14px;
  width: 14px;
  border: 2px solid #e2e3e7;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ffffff;
  cursor: pointer;
}
.cid-uPPoit6cVl .mbr-shop .toggle::after {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #354463;
  border-radius: 50%;
}
.cid-uPPoit6cVl .mbr-shop .toggle:hover,
.cid-uPPoit6cVl .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-uPPoit6cVl .mbr-shop .min-toggle {
  left: 0;
}
.cid-uPPoit6cVl .mbr-shop .max-toggle {
  right: 0;
}
.cid-uPPoit6cVl .mbr-shop .hided-by-price {
  display: none;
}
.cid-uPPoit6cVl .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-uPPoit6cVl .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-uPPoit6cVl .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uPPoit6cVl .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-uPPoit6cVl .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-uPPoit6cVl .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-uPPoit6cVl .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-uPPoit6cVl .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-uPPoit6cVl .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-uPPoit6cVl .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uPPoit6cVl .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-uPPoit6cVl .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-uPPoit6cVl .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uPPoit6cVl .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-uPPoit6cVl .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-uPPoit6cVl .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-uPPoit6cVl .mbr-shop .shop-items .onsale,
.cid-uPPoit6cVl .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-uPPoit6cVl .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-uPPoit6cVl .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uPPoit6cVl .mbr-shop .price-range {
  display: inline-block;
}
.cid-uPPoit6cVl .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-uPPoit6cVl .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-uPPoit6cVl .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-uPPoit6cVl .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-uPPoit6cVl .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-uPPoit6cVl .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-uPPoit6cVl .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-uPPoit6cVl .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-uPPoit6cVl .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-uPPoit6cVl .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-uPPoit6cVl .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-uPPoit6cVl .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-uPPoit6cVl .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-uPPoit6cVl .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-uPPoit6cVl .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uPPoit6cVl .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-uPPoit6cVl .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-uPPoit6cVl .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-uPPoit6cVl .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uPPoit6cVl .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uPPoit6cVl .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-uPPoit6cVl .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-uPPoit6cVl .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-uPPoit6cVl .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-uPPoit6cVl .mbr-shop .sidebar-background:after {
    top: -1%;
  }
  .cid-uPPoit6cVl .row {
    padding: 0;
  }
}
@media (max-width: 1100px) {
  .cid-uPPoit6cVl .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-uPPoit6cVl .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-uPPoit6cVl .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-uPPoit6cVl .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-uPPoit6cVl .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-uPPoit6cVl .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-uPPoit6cVl .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-uPPoit6cVl .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-uPPoit6cVl .oldprice {
  color: #767676;
  padding-left: 0.8rem !important;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPPoit6cVl .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-uPPoit6cVl LI {
  color: #354463;
  text-align: center;
}
.cid-uPPoit6cVl .sidebar-title {
  color: #a85105;
}
.cid-uPPoit6cVl .item-title {
  text-align: left;
  color: #723704;
}
.cid-uPPoit6cVl .display-7 {
  font-weight: 700 !important;
}
.cid-uPPoit6cVl .shop-item-price,
.cid-uPPoit6cVl .price-block {
  text-align: left;
  color: #354463;
  font-weight: 700 !important;
}
@media (max-width: 576px) {
  .cid-uPPoit6cVl .mbr-shop .mbr-gallery-item,
  .cid-uPPoit6cVl .wrapper-shop-items,
  .cid-uPPoit6cVl .sidebar-block,
  .cid-uPPoit6cVl .sidebar-title,
  .cid-uPPoit6cVl .categories {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-uPPoit6cVl .filter-cost {
    max-width: 100% !important;
  }
  .cid-uPPoit6cVl .range-slider,
  .cid-uPPoit6cVl .categories,
  .cid-uPPoit6cVl .bestseller-block {
    text-align: center;
  }
}
.cid-uPPoit6cVl .wrapper-shop-items {
  order: 1;
}
.cid-uPPoit6cVl .btn-sm {
  border: 2px solid #01319a;
  border-radius: 50px;
  padding: 0.8rem 2rem;
}
.cid-uPPoit6cVl .galleryItem {
  box-shadow: 0 3px 15px 2px rgba(0, 0, 0, 0.04);
  padding: 1rem 1rem;
  transition: 0.3s;
}
.cid-uPPoit6cVl .mbr-gallery-item:hover .galleryItem {
  box-shadow: 0 3px 15px 2px rgba(0, 0, 0, 0.2);
}
.cid-uPPoit6cVl .bestsellers .mbr-gallery-item {
  padding: 0rem !important;
  width: 100% !important;
}
.cid-uPPoit6cVl .min-price {
  padding-right: 1rem;
}
.cid-uPPoit6cVl .max-price {
  padding-left: 1rem;
}
.cid-uPPoit6cVl .btn-secondary {
  color: #333 !important;
  background-color: transparent !important;
}
.cid-uPPoit6cVl .btn-secondary:hover {
  background-color: transparent !important;
  opacity: 0.5;
  transform: translate(0);
}
.cid-uPPoit6cVl a,
.cid-uPPoit6cVl a:hover {
  color: #354463 !important;
}
.cid-uPPoit6cVl .sidebar {
  background-color: #ffffff;
  margin-bottom: 1rem;
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uPPoit6cVl .wrapper-shop-items {
    padding: 0;
  }
  .cid-uPPoit6cVl .row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uPPoit6cVl .mbr-gallery-item {
    padding: 1rem !important;
    width: 33.333% !important;
  }
  .cid-uPPoit6cVl .row {
    padding: 0;
  }
}
.cid-uPPoit6cVl .row {
  margin: 0rem;
}
.cid-uPPoygu0No {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/banho-40-1490x480.png");
}
.cid-uPPoygu0No H2 {
  color: #e7272d;
}
.cid-uPPoygu0No .mbr-text,
.cid-uPPoygu0No .mbr-section-btn {
  color: #808080;
}
.cid-uPPoygu0No img {
  max-width: 500px;
  margin: auto;
}
.cid-uPPoygu0No .btn span {
  font-size: 2.4rem !important;
  margin-top: 0.6rem !important;
  margin-bottom: 0rem !important;
}
.cid-uPPoygu0No .btn {
  padding: 0.4rem 2.2rem;
  text-align: left;
  line-height: 1.3;
}
.cid-uPPoygu0No .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPPoygu0No .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPPoygu0No H1 {
  color: #ffffff;
}
.cid-uKJLo83PmW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uKJLo83PmW .google-map {
  height: 30rem;
  position: relative;
}
.cid-uKJLo83PmW .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uKJLo83PmW .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uKJLo83PmW .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uKJLo83PmW .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uKJLo83PmW .mbr-section-title {
  color: #723704;
}
.cid-uKJLoakVZV {
  background-color: #ffffff;
}
.cid-uKJLoakVZV .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uKJLoakVZV .row {
  border-bottom: 1px solid #fcdd04;
}
.cid-uKJLoakVZV H2 {
  color: #e7272d;
}
.cid-uKJLoakVZV .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uKJLoakVZV .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uKJLoakVZV .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #fcdd04;
}
.cid-uKJLoakVZV .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #fcdd04;
}
.cid-uKJLoakVZV .col-lg-12 {
  overflow: hidden;
}
.cid-uKJLoakVZV H4 {
  color: #fbbe36;
}
.cid-uKJLoakVZV .mbr-text,
.cid-uKJLoakVZV .mbr-section-btn {
  color: #723704;
}
@media (max-width: 767px) {
  .cid-uKJLoakVZV .logo-wrap:before {
    content: none;
  }
  .cid-uKJLoakVZV .logo-wrap:after {
    content: none;
  }
}
.cid-uKJLoakVZV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJLoakVZV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKJLoakVZV H3 {
  color: #fcdd04;
}
.cid-uKJLodgryo {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #fcdd04;
}
.cid-uKJLodgryo img {
  width: 50px;
  object-fit: contain;
}
.cid-uKJLodgryo .image-block {
  width: 50px;
  margin: auto;
}
.cid-uKJLodgryo .text {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uKJLodgryo .text {
    padding-bottom: 2rem;
  }
}
.cid-uKJLodgryo .mbr-section-title {
  color: #723704;
}
.cid-uKJOXj5iu3 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-uKJOXj5iu3 .navbar-fixed-top {
  padding-top: 0;
}
.cid-uKJOXj5iu3 .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-uKJOXj5iu3 .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-uKJOXj5iu3 .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-uKJOXj5iu3 .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uKJOXj5iu3 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uKJOXj5iu3 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uKJOXj5iu3 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-uKJOXj5iu3 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uKJOXj5iu3 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uKJOXj5iu3 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uKJOXj5iu3 .menu-content-top {
  background: #fcdd04;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uKJOXj5iu3 .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uKJOXj5iu3 .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-uKJOXj5iu3 .dropdown-item,
.cid-uKJOXj5iu3 .nav-link,
.cid-uKJOXj5iu3 .brand-name {
  font-style: normal;
}
.cid-uKJOXj5iu3 .dropdown-item:hover,
.cid-uKJOXj5iu3 .nav-link:hover,
.cid-uKJOXj5iu3 .brand-name:hover {
  color: #fcdd04 !important;
}
.cid-uKJOXj5iu3 .dropdown-menu {
  background-color: #ffffff;
}
.cid-uKJOXj5iu3 .dropdown-item:active {
  background-color: #ffffff;
}
.cid-uKJOXj5iu3 .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uKJOXj5iu3 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uKJOXj5iu3 .nav-item {
  position: relative;
}
.cid-uKJOXj5iu3 .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uKJOXj5iu3 .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-uKJOXj5iu3 .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-uKJOXj5iu3 .nav-link {
    line-height: 6.13;
  }
  .cid-uKJOXj5iu3 .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #a85105;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-uKJOXj5iu3 .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-uKJOXj5iu3 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKJOXj5iu3 .content-text {
  margin-bottom: 0;
}
.cid-uKJOXj5iu3 .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uKJOXj5iu3 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #fcdd04;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uKJOXj5iu3 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uKJOXj5iu3 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uKJOXj5iu3 .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-uKJOXj5iu3 .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKJOXj5iu3 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uKJOXj5iu3 .content-right-side {
  text-align: center;
}
.cid-uKJOXj5iu3 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uKJOXj5iu3 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uKJOXj5iu3 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #001b57;
}
.cid-uKJOXj5iu3 .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-uKJOXj5iu3 .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uKJOXj5iu3 .info-widget:first-child {
  margin-left: 0;
}
.cid-uKJOXj5iu3 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uKJOXj5iu3 .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-uKJOXj5iu3 .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uKJOXj5iu3 .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #fcdd04;
}
@media (min-width: 992px) {
  .cid-uKJOXj5iu3 .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-uKJOXj5iu3 .navbar {
    display: block;
    padding: 0;
  }
  .cid-uKJOXj5iu3 .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-uKJOXj5iu3 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uKJOXj5iu3 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uKJOXj5iu3 .navbar-toggler {
    display: none;
  }
  .cid-uKJOXj5iu3 .navbar-collapse {
    justify-content: flex-start;
  }
}
.cid-uKJOXj5iu3 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uKJOXj5iu3 .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-uKJOXj5iu3 .btn-sm {
  padding: 13px 29px;
}
.cid-uKJOXj5iu3 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uKJOXj5iu3 .btn::after {
  background-color: #01319a;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-uKJOXj5iu3 .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-uKJOXj5iu3 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uKJOXj5iu3 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uKJOXj5iu3 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-uKJOXj5iu3 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uKJOXj5iu3 .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uKJOXj5iu3 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKJOXj5iu3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKJOXj5iu3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKJOXj5iu3 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uKJOXj5iu3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKJOXj5iu3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKJOXj5iu3 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uKJOXj5iu3 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKJOXj5iu3 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uKJOXj5iu3 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-uKJOXj5iu3 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uKJOXj5iu3 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uKJOXj5iu3 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uKJOXj5iu3 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-uKJOXj5iu3 button.navbar-toggler:focus {
  outline: none;
}
.cid-uKJOXj5iu3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #723704;
}
.cid-uKJOXj5iu3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKJOXj5iu3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKJOXj5iu3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKJOXj5iu3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKJOXj5iu3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKJOXj5iu3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKJOXj5iu3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKJOXj5iu3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKJOXj5iu3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKJOXj5iu3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKJOXj5iu3 .collapsed .btn {
  display: flex;
}
.cid-uKJOXj5iu3 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uKJOXj5iu3 .collapsed .navbar-collapse.collapsing,
.cid-uKJOXj5iu3 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uKJOXj5iu3 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uKJOXj5iu3 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uKJOXj5iu3 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uKJOXj5iu3 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uKJOXj5iu3 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uKJOXj5iu3 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-uKJOXj5iu3 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uKJOXj5iu3 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uKJOXj5iu3 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKJOXj5iu3 .collapsed button.navbar-toggler {
  display: block;
}
.cid-uKJOXj5iu3 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uKJOXj5iu3 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-uKJOXj5iu3 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uKJOXj5iu3 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uKJOXj5iu3 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uKJOXj5iu3 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uKJOXj5iu3 .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uKJOXj5iu3 .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-uKJOXj5iu3 .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-uKJOXj5iu3 .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uKJOXj5iu3 .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-uKJOXj5iu3 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-uKJOXj5iu3 .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-uKJOXj5iu3 .navbar-collapse.collapsing,
  .cid-uKJOXj5iu3 .navbar-collapse.show {
    display: block !important;
  }
  .cid-uKJOXj5iu3 .navbar-collapse.collapsing .navbar-nav,
  .cid-uKJOXj5iu3 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uKJOXj5iu3 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uKJOXj5iu3 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uKJOXj5iu3 .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-uKJOXj5iu3 .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-uKJOXj5iu3 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uKJOXj5iu3 .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uKJOXj5iu3 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uKJOXj5iu3 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uKJOXj5iu3 img {
    height: 3.8rem !important;
  }
  .cid-uKJOXj5iu3 .btn {
    display: flex;
  }
  .cid-uKJOXj5iu3 button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uKJOXj5iu3 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uKJOXj5iu3 .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-uKJOXj5iu3 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uKJOXj5iu3 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uKJOXj5iu3 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uKJOXj5iu3 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uKJOXj5iu3 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uKJOXj5iu3 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uKJOXj5iu3 .navbar-toggler {
  position: relative;
}
.cid-uKJOXj5iu3 .dropdown-item.active,
.cid-uKJOXj5iu3 .dropdown-item:active {
  color: initial;
}
.cid-uKJOXj5iu3 .widget-title {
  color: #01319a;
}
.cid-uKJOXj5iu3 .widget-text {
  color: #01319a;
}
.cid-uKJOXj5iu3 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-uKJOXj5iu3 .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #fcdd04;
  display: inline-flex;
  background-color: #ffffff;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-uKJOXj5iu3 .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-uKJOXj5iu3 .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #a85105;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-uKJOXj5iu3 .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-uKJOXj5iu3 .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-uKJOXj5iu3 .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-uKJOXj5iu3 .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-uKJOXj5iu3 .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-uKJOXj5iu3 .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-uKJOXj5iu3 .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-uKJOXj5iu3 .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-uKJOXj5iu3 .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-uKJOXj5iu3 .menu-content-top,
  .cid-uKJOXj5iu3 .menu-bottom {
    padding: 0 15px;
  }
  .cid-uKJOXj5iu3 button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-uKJOXj5iu3 .widget-title,
.cid-uKJOXj5iu3 .widget-icon {
  color: #512d0e;
}
.cid-uKJOXpF0aM {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uKJOXpF0aM h2 {
  color: #000000;
}
.cid-uKJOXpF0aM h1 {
  color: #000000;
}
.cid-uKJOXpF0aM .mbr-text,
.cid-uKJOXpF0aM .mbr-section-btn {
  color: #001348;
  text-align: left;
}
.cid-uKJOXpF0aM H1 {
  color: #fff902;
}
.cid-uKJOXrXXHm {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKJOXrXXHm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJOXrXXHm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uKJOXrXXHm .container {
    padding: 0 24px;
  }
}
.cid-uKJOXrXXHm .content-wrapper .mbr-section-title {
  margin-bottom: 28px;
}
.cid-uKJOXrXXHm .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 18px;
}
@media (max-width: 1200px) {
  .cid-uKJOXrXXHm .content-wrapper .text-wrap .mbr-text {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .cid-uKJOXrXXHm .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uKJOXrXXHm .mbr-section-title {
  color: #202020;
}
.cid-uKJOXrXXHm .mbr-text,
.cid-uKJOXrXXHm .text-wrap {
  color: #202020;
  text-align: center;
}
.cid-uKJOXrXXHm .mbr-section-title,
.cid-uKJOXrXXHm .mbr-section-btn {
  text-align: center;
}
.cid-uKJOXsQi1p {
  padding-top: 20px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/banho-41-1490x480.png");
}
.cid-uKJOXsQi1p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJOXsQi1p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPPputpArr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcdd04;
}
.cid-uPPputpArr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPPputpArr .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uPPputpArr .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPPputpArr .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uPPputpArr .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uPPputpArr h5 {
  margin: 0;
}
.cid-uPPputpArr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPPputpArr .iconfont-wrapper {
  position: relative;
}
.cid-uPPputpArr .iconfont-wrapper:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fcdd04;
  transition: all 0.3s;
  opacity: 0.3;
}
.cid-uPPputpArr .mbr-iconfont {
  display: flex;
  font-size: 3rem;
  color: #ffffff;
  width: 100px;
  justify-content: center;
  align-items: center;
  height: 100px;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uPPputpArr .card-title,
.cid-uPPputpArr .iconfont-wrapper {
  color: #512d0e;
}
.cid-uPPputpArr .card-text {
  color: #723704;
}
.cid-uPPputpArr .mbr-section-title {
  color: #000000;
}
.cid-uKJOXusOp3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKJOXusOp3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJOXusOp3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKJOXusOp3 .mbr-section-title {
  color: #723704;
}
.cid-uPPpyApQxN {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uPPpyApQxN .mbr-shop {
  display: table;
  width: 100%;
  margin: 0;
}
.cid-uPPpyApQxN .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-uPPpyApQxN .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-uPPpyApQxN .btn {
  padding: 0.6rem 2rem;
}
.cid-uPPpyApQxN .mbr-section-btn {
  text-align: left;
}
.cid-uPPpyApQxN .img_wraper img {
  border-radius: 8px !important;
}
.cid-uPPpyApQxN .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-uPPpyApQxN .mbr-shop .shopItemsModal_wraper {
  left: 0rem;
  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-uPPpyApQxN .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-uPPpyApQxN .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  position: relative;
}
.cid-uPPpyApQxN .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-uPPpyApQxN .mbr-shop .hide-modal {
  display: none;
}
.cid-uPPpyApQxN .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-uPPpyApQxN .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-uPPpyApQxN .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-uPPpyApQxN .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-uPPpyApQxN .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-uPPpyApQxN .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-uPPpyApQxN .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-uPPpyApQxN .mbr-shop .filter-by-pu,
.cid-uPPpyApQxN .mbr-shop .filter-by-pd,
.cid-uPPpyApQxN .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-uPPpyApQxN .mbr-shop .sort-buttons {
  padding-bottom: 0.2rem;
  margin-right: 13px;
  text-align: right;
}
.cid-uPPpyApQxN .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-uPPpyApQxN .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-uPPpyApQxN .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-uPPpyApQxN .mbr-shop .galleryItem h4,
.cid-uPPpyApQxN .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-uPPpyApQxN .mbr-shop .galleryItem h5,
.cid-uPPpyApQxN .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-uPPpyApQxN .mbr-shop .galleryItem p,
.cid-uPPpyApQxN .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-uPPpyApQxN .mbr-shop .item-button {
  text-align: center;
}
.cid-uPPpyApQxN .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-uPPpyApQxN .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-uPPpyApQxN .mbr-shop .sidebar {
  margin-top: 15px;
  position: relative;
}
.cid-uPPpyApQxN .mbr-shop .sidebar-block {
  position: relative;
}
.cid-uPPpyApQxN .sidebar-background {
  padding-top: 2rem;
}
.cid-uPPpyApQxN .mbr-shop .sidebar-background:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0);
  top: -20px;
  right: 3px;
}
.cid-uPPpyApQxN .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-uPPpyApQxN .mbr-shop .bestsellers .onsale {
  top: -15px;
  font-weight: 700 !important;
}
.cid-uPPpyApQxN a {
  font-weight: 700 !important;
}
.cid-uPPpyApQxN li {
  font-weight: 700 !important;
}
.cid-uPPpyApQxN .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-uPPpyApQxN .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-uPPpyApQxN .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-uPPpyApQxN .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uPPpyApQxN .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-uPPpyApQxN .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-uPPpyApQxN .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-uPPpyApQxN .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-uPPpyApQxN .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-uPPpyApQxN .mbr-shop .onsale {
  position: absolute;
  top: 8px;
  left: 8px;
  display: block;
  transition: color 0.3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  color: #354463;
  padding: 3px 14px 5px 14px;
  background: #a85105;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-uPPpyApQxN .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-uPPpyApQxN .mbr-shop .mbr-gallery-item__hided h4,
.cid-uPPpyApQxN .mbr-shop .mbr-gallery-item__hided h5,
.cid-uPPpyApQxN .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-uPPpyApQxN .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-uPPpyApQxN .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-uPPpyApQxN .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-uPPpyApQxN .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-uPPpyApQxN .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-uPPpyApQxN .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-uPPpyApQxN .mbr-shop .mbr-gallery-filter ul li:hover {
  color: #354463;
}
.cid-uPPpyApQxN .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-uPPpyApQxN .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-uPPpyApQxN .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #fcdd04;
  font-weight: bold;
}
.cid-uPPpyApQxN .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border-radius: 2px;
  font-size: 0;
}
.cid-uPPpyApQxN .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #fcdd04;
  font-weight: normal;
  cursor: pointer;
}
.cid-uPPpyApQxN .mbr-shop .price-controls input {
  width: 100%;
  background-color: #f0edeb;
  border-radius: 25px;
  color: #87817d;
  font-size: 14px;
  font-weight: 700;
  border: none;
  line-height: 31px;
  height: 50px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-uPPpyApQxN .mbr-shop .range-controls {
  position: relative;
  margin-top: 3.2rem;
}
.cid-uPPpyApQxN .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-uPPpyApQxN .mbr-shop .range-controls .bar {
  margin-left: 0;
  height: 4px;
  background-color: #e2e3e7;
  border-radius: 4px;
}
.cid-uPPpyApQxN .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  height: 14px;
  width: 14px;
  border: 2px solid #e2e3e7;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ffffff;
  cursor: pointer;
}
.cid-uPPpyApQxN .mbr-shop .toggle::after {
  content: "";
  display: block;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #354463;
  border-radius: 50%;
}
.cid-uPPpyApQxN .mbr-shop .toggle:hover,
.cid-uPPpyApQxN .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-uPPpyApQxN .mbr-shop .min-toggle {
  left: 0;
}
.cid-uPPpyApQxN .mbr-shop .max-toggle {
  right: 0;
}
.cid-uPPpyApQxN .mbr-shop .hided-by-price {
  display: none;
}
.cid-uPPpyApQxN .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-uPPpyApQxN .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-uPPpyApQxN .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uPPpyApQxN .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-uPPpyApQxN .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-uPPpyApQxN .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-uPPpyApQxN .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-uPPpyApQxN .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-uPPpyApQxN .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-uPPpyApQxN .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uPPpyApQxN .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-uPPpyApQxN .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-uPPpyApQxN .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uPPpyApQxN .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-uPPpyApQxN .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-uPPpyApQxN .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-uPPpyApQxN .mbr-shop .shop-items .onsale,
.cid-uPPpyApQxN .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-uPPpyApQxN .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-uPPpyApQxN .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uPPpyApQxN .mbr-shop .price-range {
  display: inline-block;
}
.cid-uPPpyApQxN .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-uPPpyApQxN .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-uPPpyApQxN .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-uPPpyApQxN .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-uPPpyApQxN .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-uPPpyApQxN .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-uPPpyApQxN .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-uPPpyApQxN .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-uPPpyApQxN .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-uPPpyApQxN .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-uPPpyApQxN .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-uPPpyApQxN .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-uPPpyApQxN .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-uPPpyApQxN .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-uPPpyApQxN .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uPPpyApQxN .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-uPPpyApQxN .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-uPPpyApQxN .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-uPPpyApQxN .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uPPpyApQxN .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uPPpyApQxN .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-uPPpyApQxN .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-uPPpyApQxN .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-uPPpyApQxN .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-uPPpyApQxN .mbr-shop .sidebar-background:after {
    top: -1%;
  }
  .cid-uPPpyApQxN .row {
    padding: 0;
  }
}
@media (max-width: 1100px) {
  .cid-uPPpyApQxN .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-uPPpyApQxN .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-uPPpyApQxN .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-uPPpyApQxN .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-uPPpyApQxN .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-uPPpyApQxN .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-uPPpyApQxN .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-uPPpyApQxN .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-uPPpyApQxN .oldprice {
  color: #767676;
  padding-left: 0.8rem !important;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPPpyApQxN .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-uPPpyApQxN LI {
  color: #354463;
  text-align: center;
}
.cid-uPPpyApQxN .sidebar-title {
  color: #a85105;
}
.cid-uPPpyApQxN .item-title {
  text-align: left;
  color: #723704;
}
.cid-uPPpyApQxN .display-7 {
  font-weight: 700 !important;
}
.cid-uPPpyApQxN .shop-item-price,
.cid-uPPpyApQxN .price-block {
  text-align: left;
  color: #354463;
  font-weight: 700 !important;
}
@media (max-width: 576px) {
  .cid-uPPpyApQxN .mbr-shop .mbr-gallery-item,
  .cid-uPPpyApQxN .wrapper-shop-items,
  .cid-uPPpyApQxN .sidebar-block,
  .cid-uPPpyApQxN .sidebar-title,
  .cid-uPPpyApQxN .categories {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-uPPpyApQxN .filter-cost {
    max-width: 100% !important;
  }
  .cid-uPPpyApQxN .range-slider,
  .cid-uPPpyApQxN .categories,
  .cid-uPPpyApQxN .bestseller-block {
    text-align: center;
  }
}
.cid-uPPpyApQxN .wrapper-shop-items {
  order: 1;
}
.cid-uPPpyApQxN .btn-sm {
  border: 2px solid #01319a;
  border-radius: 50px;
  padding: 0.8rem 2rem;
}
.cid-uPPpyApQxN .galleryItem {
  box-shadow: 0 3px 15px 2px rgba(0, 0, 0, 0.04);
  padding: 1rem 1rem;
  transition: 0.3s;
}
.cid-uPPpyApQxN .mbr-gallery-item:hover .galleryItem {
  box-shadow: 0 3px 15px 2px rgba(0, 0, 0, 0.2);
}
.cid-uPPpyApQxN .bestsellers .mbr-gallery-item {
  padding: 0rem !important;
  width: 100% !important;
}
.cid-uPPpyApQxN .min-price {
  padding-right: 1rem;
}
.cid-uPPpyApQxN .max-price {
  padding-left: 1rem;
}
.cid-uPPpyApQxN .btn-secondary {
  color: #333 !important;
  background-color: transparent !important;
}
.cid-uPPpyApQxN .btn-secondary:hover {
  background-color: transparent !important;
  opacity: 0.5;
  transform: translate(0);
}
.cid-uPPpyApQxN a,
.cid-uPPpyApQxN a:hover {
  color: #354463 !important;
}
.cid-uPPpyApQxN .sidebar {
  background-color: #ffffff;
  margin-bottom: 1rem;
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uPPpyApQxN .wrapper-shop-items {
    padding: 0;
  }
  .cid-uPPpyApQxN .row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uPPpyApQxN .mbr-gallery-item {
    padding: 1rem !important;
    width: 33.333% !important;
  }
  .cid-uPPpyApQxN .row {
    padding: 0;
  }
}
.cid-uPPpyApQxN .row {
  margin: 0rem;
}
.cid-uPPpwgGs81 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/banho-43-1490x480.png");
}
.cid-uPPpwgGs81 H2 {
  color: #e7272d;
}
.cid-uPPpwgGs81 .mbr-text,
.cid-uPPpwgGs81 .mbr-section-btn {
  color: #808080;
}
.cid-uPPpwgGs81 img {
  max-width: 500px;
  margin: auto;
}
.cid-uPPpwgGs81 .btn span {
  font-size: 2.4rem !important;
  margin-top: 0.6rem !important;
  margin-bottom: 0rem !important;
}
.cid-uPPpwgGs81 .btn {
  padding: 0.4rem 2.2rem;
  text-align: left;
  line-height: 1.3;
}
.cid-uPPpwgGs81 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPPpwgGs81 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPPpwgGs81 H1 {
  color: #ffffff;
}
.cid-uKJOXB41iK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uKJOXB41iK .google-map {
  height: 30rem;
  position: relative;
}
.cid-uKJOXB41iK .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uKJOXB41iK .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uKJOXB41iK .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uKJOXB41iK .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uKJOXB41iK .mbr-section-title {
  color: #723704;
}
.cid-uKJOXElfLM {
  background-color: #ffffff;
}
.cid-uKJOXElfLM .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uKJOXElfLM .row {
  border-bottom: 1px solid #fcdd04;
}
.cid-uKJOXElfLM H2 {
  color: #e7272d;
}
.cid-uKJOXElfLM .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uKJOXElfLM .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uKJOXElfLM .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #fcdd04;
}
.cid-uKJOXElfLM .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #fcdd04;
}
.cid-uKJOXElfLM .col-lg-12 {
  overflow: hidden;
}
.cid-uKJOXElfLM H4 {
  color: #fbbe36;
}
.cid-uKJOXElfLM .mbr-text,
.cid-uKJOXElfLM .mbr-section-btn {
  color: #723704;
}
@media (max-width: 767px) {
  .cid-uKJOXElfLM .logo-wrap:before {
    content: none;
  }
  .cid-uKJOXElfLM .logo-wrap:after {
    content: none;
  }
}
.cid-uKJOXElfLM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJOXElfLM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKJOXElfLM H3 {
  color: #fcdd04;
}
.cid-uKJOXGvjwR {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #fcdd04;
}
.cid-uKJOXGvjwR img {
  width: 50px;
  object-fit: contain;
}
.cid-uKJOXGvjwR .image-block {
  width: 50px;
  margin: auto;
}
.cid-uKJOXGvjwR .text {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uKJOXGvjwR .text {
    padding-bottom: 2rem;
  }
}
.cid-uKJOXGvjwR .mbr-section-title {
  color: #723704;
}
.cid-uKJQ1MeTL8 .navbar {
  padding: 0.5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-uKJQ1MeTL8 .navbar-fixed-top {
  padding-top: 0;
}
.cid-uKJQ1MeTL8 .navbar-collapse {
  flex-basis: auto;
  transition: all 0.3s ease-in;
}
.cid-uKJQ1MeTL8 .navbar-collapse.show {
  position: absolute;
  opacity: 1;
  visibility: visible;
  top: 100%;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  bottom: auto;
  left: 0px;
  right: 0px;
}
.cid-uKJQ1MeTL8 .navbar-collapse.show .navbar-nav .nav-item {
  text-align: left;
  padding: 10px 0;
}
.cid-uKJQ1MeTL8 .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uKJQ1MeTL8 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uKJQ1MeTL8 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uKJQ1MeTL8 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  padding-right: 2rem;
}
.cid-uKJQ1MeTL8 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uKJQ1MeTL8 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uKJQ1MeTL8 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uKJQ1MeTL8 .menu-content-top {
  background: #fcdd04;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-uKJQ1MeTL8 .menu-content-top .right-wrap .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-uKJQ1MeTL8 .dropdown-item {
  font-weight: 400;
  margin: 0 !important;
  padding: 0 40px !important;
  line-height: 2.6;
}
.cid-uKJQ1MeTL8 .dropdown-item,
.cid-uKJQ1MeTL8 .nav-link,
.cid-uKJQ1MeTL8 .brand-name {
  font-style: normal;
}
.cid-uKJQ1MeTL8 .dropdown-item:hover,
.cid-uKJQ1MeTL8 .nav-link:hover,
.cid-uKJQ1MeTL8 .brand-name:hover {
  color: #fcdd04 !important;
}
.cid-uKJQ1MeTL8 .dropdown-menu {
  background-color: #ffffff;
}
.cid-uKJQ1MeTL8 .dropdown-item:active {
  background-color: #ffffff;
}
.cid-uKJQ1MeTL8 .menu-bottom {
  margin: auto;
  width: 100%;
  display: flex;
  padding: 0rem 2rem;
  position: relative;
  align-items: center;
}
.cid-uKJQ1MeTL8 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uKJQ1MeTL8 .nav-item {
  position: relative;
}
.cid-uKJQ1MeTL8 .nav-item span {
  padding-right: 0.4em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-uKJQ1MeTL8 .nav-item .nav-link {
  transition: all 0.3s ease-in-out 0ms;
}
.cid-uKJQ1MeTL8 .nav-item .nav-link:focus {
  outline: none;
}
@media (min-width: 991px) {
  .cid-uKJQ1MeTL8 .nav-link {
    line-height: 6.13;
  }
  .cid-uKJQ1MeTL8 .navbar-nav > li > a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    margin: auto;
    opacity: 0;
    border-top: 2px solid #a85105;
    transition: all 0.3s ease-in-out 0ms;
  }
  .cid-uKJQ1MeTL8 .navbar-nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
}
.cid-uKJQ1MeTL8 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKJQ1MeTL8 .content-text {
  margin-bottom: 0;
}
.cid-uKJQ1MeTL8 .navbar-nav {
  position: relative;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-uKJQ1MeTL8 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #fcdd04;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-uKJQ1MeTL8 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-uKJQ1MeTL8 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-uKJQ1MeTL8 .navbar-nav .nav-item .link {
  margin: 0 20px !important;
}
.cid-uKJQ1MeTL8 .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKJQ1MeTL8 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-uKJQ1MeTL8 .content-right-side {
  text-align: center;
}
.cid-uKJQ1MeTL8 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-uKJQ1MeTL8 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-uKJQ1MeTL8 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
  color: #001b57;
}
.cid-uKJQ1MeTL8 .widget-icon.mobi-mbri-phone {
  -webkit-animation: phone-icon-animate 1s ease-in-out infinite;
  animation: phone-icon-animate 1s ease-in-out infinite;
}
.cid-uKJQ1MeTL8 .info-widget {
  margin-left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uKJQ1MeTL8 .info-widget:first-child {
  margin-left: 0;
}
.cid-uKJQ1MeTL8 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-uKJQ1MeTL8 .widget-content .widget-title {
  margin-bottom: 3px;
  line-height: 1.7;
}
.cid-uKJQ1MeTL8 .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-uKJQ1MeTL8 .navbar .menu-content-top {
  display: flex;
  height: 90px;
  border-bottom: 1px solid #fcdd04;
}
@media (min-width: 992px) {
  .cid-uKJQ1MeTL8 .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-uKJQ1MeTL8 .navbar {
    display: block;
    padding: 0;
  }
  .cid-uKJQ1MeTL8 .navbar .menu-logo {
    margin: auto;
    display: flex;
    align-items: center;
  }
  .cid-uKJQ1MeTL8 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-uKJQ1MeTL8 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-uKJQ1MeTL8 .navbar-toggler {
    display: none;
  }
  .cid-uKJQ1MeTL8 .navbar-collapse {
    justify-content: flex-start;
  }
}
.cid-uKJQ1MeTL8 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-uKJQ1MeTL8 .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
  margin-right: 0;
}
.cid-uKJQ1MeTL8 .btn-sm {
  padding: 13px 29px;
}
.cid-uKJQ1MeTL8 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-uKJQ1MeTL8 .btn::after {
  background-color: #01319a;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-uKJQ1MeTL8 .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-uKJQ1MeTL8 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-uKJQ1MeTL8 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-uKJQ1MeTL8 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  align-self: center;
}
.cid-uKJQ1MeTL8 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uKJQ1MeTL8 .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding: 25px 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uKJQ1MeTL8 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKJQ1MeTL8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKJQ1MeTL8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKJQ1MeTL8 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uKJQ1MeTL8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uKJQ1MeTL8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKJQ1MeTL8 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uKJQ1MeTL8 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKJQ1MeTL8 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-uKJQ1MeTL8 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  transition: font-size 0.25s;
}
.cid-uKJQ1MeTL8 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uKJQ1MeTL8 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uKJQ1MeTL8 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uKJQ1MeTL8 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  margin-right: 0;
}
.cid-uKJQ1MeTL8 button.navbar-toggler:focus {
  outline: none;
}
.cid-uKJQ1MeTL8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #723704;
}
.cid-uKJQ1MeTL8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKJQ1MeTL8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKJQ1MeTL8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKJQ1MeTL8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKJQ1MeTL8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKJQ1MeTL8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKJQ1MeTL8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKJQ1MeTL8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKJQ1MeTL8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKJQ1MeTL8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKJQ1MeTL8 .collapsed .btn {
  display: flex;
}
.cid-uKJQ1MeTL8 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uKJQ1MeTL8 .collapsed .navbar-collapse.collapsing,
.cid-uKJQ1MeTL8 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uKJQ1MeTL8 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uKJQ1MeTL8 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uKJQ1MeTL8 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uKJQ1MeTL8 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uKJQ1MeTL8 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uKJQ1MeTL8 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-uKJQ1MeTL8 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uKJQ1MeTL8 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uKJQ1MeTL8 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-uKJQ1MeTL8 .collapsed button.navbar-toggler {
  display: block;
}
.cid-uKJQ1MeTL8 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-uKJQ1MeTL8 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
}
.cid-uKJQ1MeTL8 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uKJQ1MeTL8 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uKJQ1MeTL8 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uKJQ1MeTL8 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-uKJQ1MeTL8 .collapsed .menu-bottom {
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uKJQ1MeTL8 .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
    padding-left: 20px !important;
  }
  .cid-uKJQ1MeTL8 .dropdown-menu .dropdown-item {
    text-align: left;
    font-weight: 700;
  }
  .cid-uKJQ1MeTL8 .menu-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .cid-uKJQ1MeTL8 .menu-bottom .menu-content-right {
    display: none;
  }
  .cid-uKJQ1MeTL8 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
    opacity: 0;
    transition: all 0.3s ease-in;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0px;
    right: 0px;
    z-index: 999;
  }
  .cid-uKJQ1MeTL8 .navbar-collapse .navbar-nav .nav-item {
    clear: both;
    text-align: left;
    padding: 10px 0;
  }
  .cid-uKJQ1MeTL8 .navbar-collapse.collapsing,
  .cid-uKJQ1MeTL8 .navbar-collapse.show {
    display: block !important;
  }
  .cid-uKJQ1MeTL8 .navbar-collapse.collapsing .navbar-nav,
  .cid-uKJQ1MeTL8 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uKJQ1MeTL8 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uKJQ1MeTL8 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uKJQ1MeTL8 .navbar-collapse.collapsing .navbar-nav .nav-item .nav-link,
  .cid-uKJQ1MeTL8 .navbar-collapse.show .navbar-nav .nav-item .nav-link {
    font-weight: 700;
  }
  .cid-uKJQ1MeTL8 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uKJQ1MeTL8 .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-uKJQ1MeTL8 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uKJQ1MeTL8 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uKJQ1MeTL8 img {
    height: 3.8rem !important;
  }
  .cid-uKJQ1MeTL8 .btn {
    display: flex;
  }
  .cid-uKJQ1MeTL8 button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-uKJQ1MeTL8 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-uKJQ1MeTL8 .navbar-toggleable-sm {
    flex-direction: column;
  }
  .cid-uKJQ1MeTL8 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uKJQ1MeTL8 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uKJQ1MeTL8 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uKJQ1MeTL8 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-uKJQ1MeTL8 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-uKJQ1MeTL8 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-uKJQ1MeTL8 .navbar-toggler {
  position: relative;
}
.cid-uKJQ1MeTL8 .dropdown-item.active,
.cid-uKJQ1MeTL8 .dropdown-item:active {
  color: initial;
}
.cid-uKJQ1MeTL8 .widget-title {
  color: #01319a;
}
.cid-uKJQ1MeTL8 .widget-text {
  color: #01319a;
}
.cid-uKJQ1MeTL8 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  align-items: center;
}
.cid-uKJQ1MeTL8 .icons-menu .mbr-iconfont {
  font-size: 1rem;
  color: #fcdd04;
  display: inline-flex;
  background-color: #ffffff;
  border-radius: 100%;
  transition: all 0.3s ease-in;
}
.cid-uKJQ1MeTL8 .icons-menu .mbr-iconfont:before {
  padding: .75rem;
}
.cid-uKJQ1MeTL8 .icons-menu .mbr-iconfont:hover {
  color: #ffffff;
  background-color: #a85105;
  -webkit-animation-name: animation-pulse;
  animation-name: animation-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: .9;
}
.cid-uKJQ1MeTL8 .soc-item {
  margin: .5rem .3rem;
}
@media (max-width: 768px) {
  .cid-uKJQ1MeTL8 .menu-content-top .icons-menu {
    padding-left: 0;
  }
  .cid-uKJQ1MeTL8 .menu-content-top .icons-menu .soc-item .mbr-iconfont {
    font-size: 14px;
  }
  .cid-uKJQ1MeTL8 .menu-content-top .icons-menu .soc-item .mbr-iconfont::before {
    padding: 0.44rem;
  }
  .cid-uKJQ1MeTL8 .menu-content-top .right-wrap .info-widget {
    margin-left: 20px;
  }
  .cid-uKJQ1MeTL8 .menu-content-top .right-wrap .info-widget:first-child {
    margin-left: 0;
  }
  .cid-uKJQ1MeTL8 .menu-content-top .right-wrap .info-widget .widget-content {
    display: none;
  }
  .cid-uKJQ1MeTL8 .menu-content-top .right-wrap .info-widget .widget-icon {
    font-size: 25px;
    padding-right: 0;
  }
  .cid-uKJQ1MeTL8 .navbar-brand {
    margin-left: 0 !important;
  }
}
@media (max-width: 576px) {
  .cid-uKJQ1MeTL8 .menu-content-top,
  .cid-uKJQ1MeTL8 .menu-bottom {
    padding: 0 15px;
  }
  .cid-uKJQ1MeTL8 button.navbar-toggler {
    align-self: center;
  }
}
@-webkit-keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes phone-icon-animate {
  0%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    transform: rotate(20deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-20deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
@keyframes animation-pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.cid-uKJQ1MeTL8 .widget-title,
.cid-uKJQ1MeTL8 .widget-icon {
  color: #512d0e;
}
.cid-uKJQ1P0hes {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uKJQ1P0hes h2 {
  color: #000000;
}
.cid-uKJQ1P0hes h1 {
  color: #000000;
}
.cid-uKJQ1P0hes .mbr-text,
.cid-uKJQ1P0hes .mbr-section-btn {
  color: #001348;
  text-align: left;
}
.cid-uKJQ1P0hes H1 {
  color: #fff902;
}
.cid-uKJQ1PQ7ym {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uKJQ1PQ7ym .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJQ1PQ7ym .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uKJQ1PQ7ym .container {
    padding: 0 24px;
  }
}
.cid-uKJQ1PQ7ym .content-wrapper .mbr-section-title {
  margin-bottom: 28px;
}
.cid-uKJQ1PQ7ym .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 18px;
}
@media (max-width: 1200px) {
  .cid-uKJQ1PQ7ym .content-wrapper .text-wrap .mbr-text {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .cid-uKJQ1PQ7ym .content-wrapper .text-wrap .mbr-text {
    width: 100%;
  }
}
.cid-uKJQ1PQ7ym .mbr-section-title {
  color: #202020;
}
.cid-uKJQ1PQ7ym .mbr-text,
.cid-uKJQ1PQ7ym .text-wrap {
  color: #202020;
  text-align: center;
}
.cid-uKJQ1PQ7ym .mbr-section-title,
.cid-uKJQ1PQ7ym .mbr-section-btn {
  text-align: center;
}
.cid-uKJQ1Qqli0 {
  padding-top: 20px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/banho-45-1490x480.png");
}
.cid-uKJQ1Qqli0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJQ1Qqli0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPPrlyzgq9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fcdd04;
}
.cid-uPPrlyzgq9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPPrlyzgq9 .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uPPrlyzgq9 .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPPrlyzgq9 .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uPPrlyzgq9 .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uPPrlyzgq9 h5 {
  margin: 0;
}
.cid-uPPrlyzgq9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPPrlyzgq9 .iconfont-wrapper {
  position: relative;
}
.cid-uPPrlyzgq9 .iconfont-wrapper:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fcdd04;
  transition: all 0.3s;
  opacity: 0.3;
}
.cid-uPPrlyzgq9 .mbr-iconfont {
  display: flex;
  font-size: 3rem;
  color: #ffffff;
  width: 100px;
  justify-content: center;
  align-items: center;
  height: 100px;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uPPrlyzgq9 .card-title,
.cid-uPPrlyzgq9 .iconfont-wrapper {
  color: #512d0e;
}
.cid-uPPrlyzgq9 .card-text {
  color: #723704;
}
.cid-uPPrlyzgq9 .mbr-section-title {
  color: #000000;
}
.cid-uKZKKanX8U {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uKZKKanX8U .card {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  margin-bottom: 3rem;
}
.cid-uKZKKanX8U .card:hover .mbr-iconfont {
  color: #0b1b3f !important;
}
.cid-uKZKKanX8U .text,
.cid-uKZKKanX8U .icon {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKZKKanX8U .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-uKZKKanX8U h3 {
  line-height: 1.3;
  margin: 0;
}
.cid-uKZKKanX8U .mbr-iconfont {
  font-size: 3rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  color: #001b57 !important;
  padding-right: 1.5rem;
  display: block;
}
@media (max-width: 992px) {
  .cid-uKZKKanX8U .content {
    margin: auto;
  }
}
.cid-uKZKKanX8U H3 {
  text-align: left;
  color: #0b1b3f;
}
.cid-uKZKKanX8U H1 {
  color: #01319a;
}
.cid-uKZKKanX8U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKZKKanX8U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKZKEYXrRh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #02319c;
}
.cid-uKZKEYXrRh .btn-col {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.cid-uKZKEYXrRh .card-wrapper {
  position: relative;
  height: 350px;
}
.cid-uKZKEYXrRh .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
  height: 100%;
  background: #181818;
  border-radius: 30px;
  opacity: 0.3;
  pointer-events: none;
}
.cid-uKZKEYXrRh .card-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  border-radius: 30px;
}
.cid-uKZKEYXrRh .wrapper {
  position: absolute;
  padding: 1rem;
  left: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
  height: fit-content;
  top: 50%;
  bottom: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 992px) {
  .cid-uKZKEYXrRh .col-md-6 {
    margin-bottom: 2rem;
  }
  .cid-uKZKEYXrRh .wrapper {
    top: auto;
    bottom: 0rem;
    -webkit-transform: none;
    transform: none;
  }
  .cid-uKZKEYXrRh .mbr-text {
    padding-bottom: 0;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uKZKEYXrRh .col-md-4 {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 992px) {
  .cid-uKZKEYXrRh .card-wrapper {
    position: relative;
  }
  .cid-uKZKEYXrRh .card-wrapper:before {
    opacity: 0;
  }
  .cid-uKZKEYXrRh .card-wrapper:hover:before {
    opacity: 0.3;
  }
  .cid-uKZKEYXrRh .card-wrapper:hover .wrapper {
    opacity: 1;
  }
  .cid-uKZKEYXrRh .wrapper {
    opacity: 0;
  }
  .cid-uKZKEYXrRh .btn-col {
    -webkit-box-pack: end;
    justify-content: flex-end;
  }
}
.cid-uKZKEYXrRh H4 {
  color: #ffffff;
}
.cid-uKZKEYXrRh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKZKEYXrRh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKZKEYXrRh .mbr-section-title,
.cid-uKZKEYXrRh .underline {
  color: #ffffff;
}
.cid-uKZKSdhQkE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uKZKSdhQkE .card-img {
  position: relative;
  height: 100%;
}
.cid-uKZKSdhQkE .card-img img {
  width: 120%;
  position: absolute;
  bottom: 0;
  left: -10%;
}
.cid-uKZKSdhQkE .bone-col {
  padding: 2rem 0;
}
.cid-uKZKSdhQkE .card-wrapper {
  padding: 1.5rem 1rem;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  display: flex;
}
.cid-uKZKSdhQkE .row {
  background: #02319c;
  border-radius: 80px;
  margin-top: 6rem;
  border-top-left-radius: 0px;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 0rem;
}
.cid-uKZKSdhQkE p {
  font-weight: 400;
}
@media (max-width: 992px) {
  .cid-uKZKSdhQkE .card-img img {
    width: 70%;
    position: relative;
    left: auto;
    right: auto;
    -webkit-transform: none;
    transform: none;
  }
}
@media (max-width: 767px) {
  .cid-uKZKSdhQkE .row {
    margin: 0rem;
    border-radius: 50px;
  }
}
.cid-uKZKSdhQkE .link-wrap {
  position: relative;
  height: 130px;
  width: 250px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transition: -webkit-transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 800ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cid-uKZKSdhQkE .link-wrap .bone {
  position: absolute;
  left: calc(50% - 125px);
  top: 0;
}
.cid-uKZKSdhQkE .link-wrap h3 {
  z-index: 10;
  margin: 0;
  -webkit-transform: rotate(-6deg);
  transform: rotate(-6deg);
}
.cid-uKZKSdhQkE .link-wrap:hover {
  -webkit-transform: rotate(12deg);
  transform: rotate(12deg);
}
.cid-uKZKSdhQkE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKZKSdhQkE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKZKSdhQkE H5 {
  color: #fff10c;
}
.cid-uKZKSdhQkE H3 {
  color: #001b57;
}
.cid-uKJQ1TXUUA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uKJQ1TXUUA .google-map {
  height: 30rem;
  position: relative;
}
.cid-uKJQ1TXUUA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uKJQ1TXUUA .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uKJQ1TXUUA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uKJQ1TXUUA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uKJQ1TXUUA .mbr-section-title {
  color: #723704;
}
.cid-uKJQ1V24El {
  background-color: #ffffff;
}
.cid-uKJQ1V24El .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-uKJQ1V24El .row {
  border-bottom: 1px solid #fcdd04;
}
.cid-uKJQ1V24El H2 {
  color: #e7272d;
}
.cid-uKJQ1V24El .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-uKJQ1V24El .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-uKJQ1V24El .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #fcdd04;
}
.cid-uKJQ1V24El .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #fcdd04;
}
.cid-uKJQ1V24El .col-lg-12 {
  overflow: hidden;
}
.cid-uKJQ1V24El H4 {
  color: #fbbe36;
}
.cid-uKJQ1V24El .mbr-text,
.cid-uKJQ1V24El .mbr-section-btn {
  color: #723704;
}
@media (max-width: 767px) {
  .cid-uKJQ1V24El .logo-wrap:before {
    content: none;
  }
  .cid-uKJQ1V24El .logo-wrap:after {
    content: none;
  }
}
.cid-uKJQ1V24El .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKJQ1V24El .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKJQ1V24El H3 {
  color: #fcdd04;
}
.cid-uKJQ1WTw9q {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #fcdd04;
}
.cid-uKJQ1WTw9q img {
  width: 50px;
  object-fit: contain;
}
.cid-uKJQ1WTw9q .image-block {
  width: 50px;
  margin: auto;
}
.cid-uKJQ1WTw9q .text {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-uKJQ1WTw9q .text {
    padding-bottom: 2rem;
  }
}
.cid-uKJQ1WTw9q .mbr-section-title {
  color: #723704;
}
