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





body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 2rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 0.9rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.44rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #219a9f !important;
}
.bg-success {
  background-color: #767676 !important;
}
.bg-info {
  background-color: #cc2952 !important;
}
.bg-warning {
  background-color: #104f52 !important;
}
.bg-danger {
  background-color: #31d4da !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #219a9f !important;
  border-color: #219a9f !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #145d60 !important;
  border-color: #145d60 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #145d60 !important;
  border-color: #145d60 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-info,
.btn-info:active {
  background-color: #cc2952 !important;
  border-color: #cc2952 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #8c1c38 !important;
  border-color: #8c1c38 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #8c1c38 !important;
  border-color: #8c1c38 !important;
}
.btn-success,
.btn-success:active {
  background-color: #767676 !important;
  border-color: #767676 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #505050 !important;
  border-color: #505050 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #505050 !important;
  border-color: #505050 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #104f52 !important;
  border-color: #104f52 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #041112 !important;
  border-color: #041112 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #041112 !important;
  border-color: #041112 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #31d4da !important;
  border-color: #31d4da !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #1d9da1 !important;
  border-color: #1d9da1 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1d9da1 !important;
  border-color: #1d9da1 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0f484b;
  color: #0f484b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #219a9f;
  border-color: #219a9f;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #219a9f !important;
  border-color: #219a9f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #771830;
  color: #771830;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #cc2952;
  border-color: #cc2952;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #cc2952 !important;
  border-color: #cc2952 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #434343;
  color: #434343;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #767676;
  border-color: #767676;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #767676 !important;
  border-color: #767676 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #104f52;
  border-color: #104f52;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #104f52 !important;
  border-color: #104f52 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #19888c;
  color: #19888c;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #31d4da;
  border-color: #31d4da;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #31d4da !important;
  border-color: #31d4da !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-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: #219a9f !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #767676 !important;
}
.text-info {
  color: #cc2952 !important;
}
.text-warning {
  color: #104f52 !important;
}
.text-danger {
  color: #31d4da !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0f484b !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #434343 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #771830 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #19888c !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #cc2952;
}
.alert-warning {
  background-color: #104f52;
}
.alert-danger {
  background-color: #31d4da;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #219a9f;
  border-color: #219a9f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #219a9f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #61d9de;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #b6b6b6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #f5ccd6;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #66dce1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #def8f9;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 0.9rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.44rem;
}
blockquote {
  border-color: #219a9f;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #219a9f;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #219a9f;
}
/* Headers*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #219a9f;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #219a9f;
  border-bottom-color: #219a9f;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #219a9f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffffff !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23219a9f' %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.3;
}
.cid-rSgX0PThYF {
  overflow-x: hidden !important;
}
.cid-rSgX0PThYF H1 {
  font-weight: 500;
  color: #ffffff;
}
.cid-rSgX0PThYF .mbr-text {
  color: #ffffff;
  letter-spacing: 5px;
  font-weight: 100;
}
.cid-rSgX0PThYF .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 100% 0;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  background-image: url("../../../assets/images/slider-gimeco-2000x1143.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  transform: translateZ(0);
}
.cid-rSgX0PThYF .scroll-wrapper.second {
  left: calc(100% - 1px);
  background-position: 0 0;
}
.cid-rSgX0PThYF .mbr-overlay {
  z-index: 1;
}
.cid-rSgX0PThYF .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.cid-r4Do2JMl8Y {
  background-image: url("../../../assets/images/collage-1757x1000.jpg");
}
.cid-r4Do2JMl8Y .mbr-text,
.cid-r4Do2JMl8Y .mbr-section-btn {
  color: #232323;
}
.cid-r4Do2JMl8Y I {
  color: #104f52;
}
.cid-r4Do2JMl8Y H1 {
  font-weight: 500;
  color: #232323;
}
.cid-r4Do2JMl8Y H3 {
  color: #104f52;
}
.cid-r8EgZ8DNcR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-r8EgZ8DNcR .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-r8EgZ8DNcR .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-r8EgZ8DNcR:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-r8EgZ8DNcR .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-r8EgZ8DNcR .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-r8EgZ8DNcR .text-block {
  text-align: center !important;
}
.cid-r8EgZ8DNcR SPAN {
  color: #ffffff;
}
.cid-r4DusDv5T9 {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r4CyflNq9y {
  padding-top: 60px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/banner-prospectors-958x602.jpg");
}
.cid-r4CyflNq9y .mbr-figure {
  margin-top: -50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-r4CyflNq9y .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-r4CyflNq9y .mbr-figure img {
    width: 80% !important;
  }
}
.cid-r4CyflNq9y a:link {
  text-decoration: none;
}
.cid-r4CyflNq9y .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-r4CyflNq9y .icon-transition span:hover {
  color: #219A9F;
}
.cid-r4CyflNq9y .inner-text {
  line-height: 0em;
}
.cid-r4CyflNq9y .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-r4CyflNq9y .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-r4CyflNq9y .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-r4CyflNq9y .content-text,
.cid-r4CyflNq9y .inner-text {
  color: #c1c1c1;
}
.cid-rSeqq2csua {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r4SnMfmRTs {
  padding-top: 60px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/fondouppercut2-1-1500x1000.jpeg");
}
.cid-r4SnMfmRTs .mbr-figure {
  margin-top: -50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-r4SnMfmRTs .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-r4SnMfmRTs .mbr-figure img {
    width: 80% !important;
  }
}
.cid-r4SnMfmRTs a:link {
  text-decoration: none;
}
.cid-r4SnMfmRTs .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-r4SnMfmRTs .icon-transition span:hover {
  color: #219A9F;
}
.cid-r4SnMfmRTs .inner-text {
  line-height: 3em;
}
.cid-r4SnMfmRTs .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-r4SnMfmRTs .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-r4SnMfmRTs .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-r4SnMfmRTs .content-text,
.cid-r4SnMfmRTs .inner-text {
  color: #c1c1c1;
}
.cid-u2qpQf4djv {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u2qpTst6rr {
  padding-top: 60px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/fondo-suavecito-2000x1004.jpg");
}
.cid-u2qpTst6rr .mbr-figure {
  margin-top: -50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-u2qpTst6rr .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-u2qpTst6rr .mbr-figure img {
    width: 80% !important;
  }
}
.cid-u2qpTst6rr a:link {
  text-decoration: none;
}
.cid-u2qpTst6rr .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-u2qpTst6rr .icon-transition span:hover {
  color: #219A9F;
}
.cid-u2qpTst6rr .inner-text {
  line-height: 3em;
}
.cid-u2qpTst6rr .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-u2qpTst6rr .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-u2qpTst6rr .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-u2qpTst6rr .content-text,
.cid-u2qpTst6rr .inner-text {
  color: #c1c1c1;
}
.cid-rSeqA6GYLj {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rjSDgLzdWj {
  padding-top: 60px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/bannerfighters-2-2000x667.jpeg");
}
.cid-rjSDgLzdWj .mbr-figure {
  margin-top: -50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-rjSDgLzdWj .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-rjSDgLzdWj .mbr-figure img {
    width: 80% !important;
  }
}
.cid-rjSDgLzdWj a:link {
  text-decoration: none;
}
.cid-rjSDgLzdWj .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-rjSDgLzdWj .icon-transition span:hover {
  color: #219A9F;
}
.cid-rjSDgLzdWj .inner-text {
  line-height: 0em;
}
.cid-rjSDgLzdWj .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-rjSDgLzdWj .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rjSDgLzdWj .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-rjSDgLzdWj .content-text,
.cid-rjSDgLzdWj .inner-text {
  color: #c1c1c1;
}
.cid-rSeqABozaM {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r4SoINcrBj {
  padding-top: 60px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/fondotheshavingco-2-2000x1499.jpg");
}
.cid-r4SoINcrBj .mbr-figure {
  margin-top: -50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-r4SoINcrBj .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-r4SoINcrBj .mbr-figure img {
    width: 80% !important;
  }
}
.cid-r4SoINcrBj a:link {
  text-decoration: none;
}
.cid-r4SoINcrBj .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-r4SoINcrBj .icon-transition span:hover {
  color: #219A9F;
}
.cid-r4SoINcrBj .inner-text {
  line-height: 3em;
}
.cid-r4SoINcrBj .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-r4SoINcrBj .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-r4SoINcrBj .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-r4SoINcrBj .content-text,
.cid-r4SoINcrBj .inner-text {
  color: #c1c1c1;
}
.cid-rSeqBwxuuy {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r4Spnwq9Cg {
  padding-top: 60px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/hull-commercial-photography-3-2-1198x800.jpg");
}
.cid-r4Spnwq9Cg .mbr-figure {
  margin-top: -50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-r4Spnwq9Cg .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-r4Spnwq9Cg .mbr-figure img {
    width: 80% !important;
  }
}
.cid-r4Spnwq9Cg a:link {
  text-decoration: none;
}
.cid-r4Spnwq9Cg .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-r4Spnwq9Cg .icon-transition span:hover {
  color: #219A9F;
}
.cid-r4Spnwq9Cg .inner-text {
  line-height: 3em;
}
.cid-r4Spnwq9Cg .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-r4Spnwq9Cg .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-r4Spnwq9Cg .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-r4Spnwq9Cg .content-text,
.cid-r4Spnwq9Cg .inner-text {
  color: #c1c1c1;
}
.cid-tzK5m0S4ph {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzK5mW0pu7 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/img-razor-bros01-4-1000x666.jpeg");
}
.cid-tzK5mW0pu7 .mbr-figure {
  margin-top: -50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-tzK5mW0pu7 .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tzK5mW0pu7 .mbr-figure img {
    width: 80% !important;
  }
}
.cid-tzK5mW0pu7 a:link {
  text-decoration: none;
}
.cid-tzK5mW0pu7 .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tzK5mW0pu7 .icon-transition span:hover {
  color: #219A9F;
}
.cid-tzK5mW0pu7 .inner-text {
  line-height: 3em;
}
.cid-tzK5mW0pu7 .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-tzK5mW0pu7 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tzK5mW0pu7 .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-tzK5mW0pu7 .content-text,
.cid-tzK5mW0pu7 .inner-text {
  color: #c1c1c1;
}
.cid-r4GFmPqGWI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-r4GFmPqGWI .carousel-control {
  background: #000;
}
.cid-r4GFmPqGWI .mbr-section-subtitle {
  color: #232323;
}
.cid-r4GFmPqGWI .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-r4GFmPqGWI .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-r4GFmPqGWI .carousel-item .wrap-img {
  text-align: center;
}
.cid-r4GFmPqGWI .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-r4GFmPqGWI .carousel-controls {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-r4GFmPqGWI .carousel-controls .carousel-control {
  background: #219A9F;
  border-radius: 10%;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 3rem;
  border-width: 1px;
}
.cid-r4GFmPqGWI .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-r4GFmPqGWI .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-r4GFmPqGWI .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-r4GFmPqGWI .cloneditem-1,
.cid-r4GFmPqGWI .cloneditem-2,
.cid-r4GFmPqGWI .cloneditem-3,
.cid-r4GFmPqGWI .cloneditem-4,
.cid-r4GFmPqGWI .cloneditem-5 {
  display: none;
}
.cid-r4GFmPqGWI .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-r4GFmPqGWI .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-r4GFmPqGWI .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-r4GFmPqGWI .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-r4GFmPqGWI .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-r4GFmPqGWI .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-r4GFmPqGWI .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-r4GFmPqGWI .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-r4GFmPqGWI .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-r4GFmPqGWI .carousel-inner.slides2 .cloneditem-1,
  .cid-r4GFmPqGWI .carousel-inner.slides2 .cloneditem-2,
  .cid-r4GFmPqGWI .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-r4GFmPqGWI .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-r4GFmPqGWI .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-r4GFmPqGWI .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-r4GFmPqGWI .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-r4GFmPqGWI .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-r4GFmPqGWI .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-r4GFmPqGWI .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-r4GFmPqGWI .carousel-inner.slides3 .cloneditem-1,
  .cid-r4GFmPqGWI .carousel-inner.slides3 .cloneditem-2,
  .cid-r4GFmPqGWI .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-r4GFmPqGWI .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-r4GFmPqGWI .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-r4GFmPqGWI .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-r4GFmPqGWI .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-r4GFmPqGWI .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-r4GFmPqGWI .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-r4GFmPqGWI .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-r4GFmPqGWI .carousel-inner.slides4 .cloneditem-1,
  .cid-r4GFmPqGWI .carousel-inner.slides4 .cloneditem-2,
  .cid-r4GFmPqGWI .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-r4GFmPqGWI .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-r4GFmPqGWI .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-r4GFmPqGWI .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-r4GFmPqGWI .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-r4GFmPqGWI .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-r4GFmPqGWI .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-r4GFmPqGWI .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-r4GFmPqGWI .carousel-inner.slides5 .cloneditem-1,
  .cid-r4GFmPqGWI .carousel-inner.slides5 .cloneditem-2,
  .cid-r4GFmPqGWI .carousel-inner.slides5 .cloneditem-3,
  .cid-r4GFmPqGWI .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-r4GFmPqGWI .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-r4GFmPqGWI .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-r4GFmPqGWI .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-r4GFmPqGWI .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-r4GFmPqGWI .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-r4GFmPqGWI .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-r4GFmPqGWI .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-r4GFmPqGWI .carousel-inner.slides6 .cloneditem-1,
  .cid-r4GFmPqGWI .carousel-inner.slides6 .cloneditem-2,
  .cid-r4GFmPqGWI .carousel-inner.slides6 .cloneditem-3,
  .cid-r4GFmPqGWI .carousel-inner.slides6 .cloneditem-4,
  .cid-r4GFmPqGWI .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-r4GFmPqGWI B {
  color: #cc2952;
}
.cid-rLV0iugG2L {
  background-image: url("../../../assets/images/texturacuerologo-2000x1250.jpg");
}
.cid-rLV0iugG2L .form-container {
  border-radius: 10px;
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-rLV0iugG2L .input-group-btn {
  justify-content: center;
}
@media (min-width: 768px) {
  .cid-rLV0iugG2L .content-container {
    padding-right: 5rem;
  }
}
.cid-rLV0iugG2L H1 {
  font-weight: 500;
}
.cid-tEmIJWChjo {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #104f52;
}
.cid-tEmIJWChjo .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tEmIJWChjo .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tEmIJWChjo .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tEmIJWChjo .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tEmIJWChjo .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tEmIJWChjo .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tEmIJWChjo .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tEmIJWChjo .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tEmIJWChjo .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tEmIJWChjo .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tEmIJWChjo .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tEmIJWChjo .media-container-row .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-tEmIJWChjo .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tEmIJWChjo .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tEmIJWChjo foot-menu-item {
  text-align: right;
  color: #767676;
}
.cid-tEmIJWChjo html {
  overflow-y: hidden;
}
.cid-tEmIJWChjo html body {
  height: 100%;
  overflow: auto;
}
.cid-tEmIJWChjo img {
  height: 50px;
}
.cid-tEmIJWChjo .flotante {
  display: scroll;
  position: fixed;
  z-index: 20000;
  bottom: 20px;
  right: 20px;
}
.cid-rLV4ex6NcH .navbar {
  background: #232323;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rLV4ex6NcH .navbar-dropdown.bg-color.transparent.opened {
  background: #232323;
}
.cid-rLV4ex6NcH a {
  font-style: normal;
}
.cid-rLV4ex6NcH .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rLV4ex6NcH .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rLV4ex6NcH .nav-item:focus,
.cid-rLV4ex6NcH .nav-link:focus {
  outline: none;
}
.cid-rLV4ex6NcH .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rLV4ex6NcH .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rLV4ex6NcH .menu-logo {
  margin-right: auto;
}
.cid-rLV4ex6NcH .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rLV4ex6NcH .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rLV4ex6NcH .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rLV4ex6NcH .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rLV4ex6NcH .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rLV4ex6NcH .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rLV4ex6NcH .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rLV4ex6NcH .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rLV4ex6NcH .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rLV4ex6NcH .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rLV4ex6NcH .dropdown .dropdown-menu {
  background: #232323;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rLV4ex6NcH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rLV4ex6NcH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rLV4ex6NcH .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rLV4ex6NcH .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rLV4ex6NcH .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rLV4ex6NcH .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rLV4ex6NcH .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rLV4ex6NcH .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rLV4ex6NcH .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rLV4ex6NcH .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rLV4ex6NcH .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rLV4ex6NcH button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rLV4ex6NcH button.navbar-toggler:focus {
  outline: none;
}
.cid-rLV4ex6NcH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #219a9f;
}
.cid-rLV4ex6NcH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rLV4ex6NcH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rLV4ex6NcH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rLV4ex6NcH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rLV4ex6NcH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLV4ex6NcH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rLV4ex6NcH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rLV4ex6NcH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLV4ex6NcH .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rLV4ex6NcH .collapsed .btn {
  display: flex;
}
.cid-rLV4ex6NcH .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rLV4ex6NcH .collapsed .navbar-collapse.collapsing,
.cid-rLV4ex6NcH .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rLV4ex6NcH .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rLV4ex6NcH .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rLV4ex6NcH .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rLV4ex6NcH .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rLV4ex6NcH .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rLV4ex6NcH .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rLV4ex6NcH .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rLV4ex6NcH .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rLV4ex6NcH .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rLV4ex6NcH .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rLV4ex6NcH .collapsed button.navbar-toggler {
  display: block;
}
.cid-rLV4ex6NcH .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rLV4ex6NcH .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rLV4ex6NcH .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rLV4ex6NcH .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rLV4ex6NcH .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rLV4ex6NcH .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rLV4ex6NcH.navbar-expand {
    flex-direction: column;
  }
  .cid-rLV4ex6NcH img {
    height: 3.8rem !important;
  }
  .cid-rLV4ex6NcH .btn {
    display: flex;
  }
  .cid-rLV4ex6NcH button.navbar-toggler {
    display: block;
  }
  .cid-rLV4ex6NcH .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rLV4ex6NcH .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rLV4ex6NcH .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rLV4ex6NcH .navbar-collapse.collapsing,
  .cid-rLV4ex6NcH .navbar-collapse.show {
    display: block !important;
  }
  .cid-rLV4ex6NcH .navbar-collapse.collapsing .navbar-nav,
  .cid-rLV4ex6NcH .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rLV4ex6NcH .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rLV4ex6NcH .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rLV4ex6NcH .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rLV4ex6NcH .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rLV4ex6NcH .navbar-collapse.collapsing .navbar-buttons,
  .cid-rLV4ex6NcH .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rLV4ex6NcH .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rLV4ex6NcH .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rLV4ex6NcH .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rLV4ex6NcH .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rLV4ex6NcH .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rLV4ex6NcH .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rLV4ex6NcH .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rLV4ex6NcH .navbar-collapse {
  flex-basis: auto;
}
.cid-rLV4ex6NcH .nav-link:hover,
.cid-rLV4ex6NcH .dropdown-item:hover {
  color: #219a9f !important;
}
.cid-rLU8zAgEjS {
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/collage-1757x1000.jpg");
}
.cid-rLU8zAgEjS h1 {
  color: #616161;
}
.cid-rLU8zAgEjS h2,
.cid-rLU8zAgEjS h3,
.cid-rLU8zAgEjS p {
  color: #767676;
}
.cid-rLU8zAgEjS .mbr-section-subtitle {
  font-style: italic;
}
.cid-rLU8zAgEjS H1 {
  text-align: center;
  color: #219a9f;
}
.cid-rLU8zAgEjS H3 {
  text-align: center;
}
.cid-rLU8zAgEjS .mbr-text,
.cid-rLU8zAgEjS .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-rLU8zAgEjS .card-box {
  border-radius: 3px;
  background-color: #232323;
  padding: 2rem;
}
.cid-rLU8zAgEjS h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rLU8zAgEjS p {
  color: #767676;
  text-align: left;
}
.cid-rLU8zAgEjS .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rLU8zAgEjS .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rLU8zAgEjS .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rLU8zAgEjS P {
  text-align: center;
  color: #ffffff;
}
.cid-rLU8zAgEjS .card-title {
  text-align: center;
  color: #219a9f;
}
.cid-rLriSvYMBR {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rLriSvYMBR .mbr-section-subtitle {
  color: #232323;
}
.cid-rLriSvYMBR .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLriSvYMBR .mbr-text {
  color: #767676;
}
.cid-rLriSvYMBR .mbr-author-desc {
  display: block;
  color: #767676;
}
.cid-rLriSvYMBR .mbr-author-name {
  color: #219a9f;
}
.cid-rLriSvYMBR .mbr-testimonial .panel-item {
  background-color: #ffffff;
}
.cid-rLriSvYMBR .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 0.8rem 0.8rem 0 0.8rem;
}
.cid-rLriSvYMBR .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  width: 180px;
  height: 210px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  border-radius: 2%;
}
.cid-rLriSvYMBR .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-rLriSvYMBR .mbr-testimonial .card-footer {
  padding-bottom: 1rem;
  border-top: 1;
  padding-top: 0.5rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-rLriSvYMBR .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-rLriSvYMBR h2 {
  font-weight: 500;
}
.cid-rSqq9wMXtq {
  background-image: url("../../../assets/images/texturacuerologo-2000x1250.jpg");
}
.cid-rSqq9wMXtq .form-container {
  border-radius: 10px;
  transition: all .2s;
  border: 1px solid #ffffff;
  padding: 1rem;
}
.cid-rSqq9wMXtq .input-group-btn {
  justify-content: center;
}
@media (min-width: 768px) {
  .cid-rSqq9wMXtq .content-container {
    padding-right: 5rem;
  }
}
.cid-rSqq9wMXtq H1 {
  font-weight: 500;
}
.cid-tEmIOXRatz {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #104f52;
}
.cid-tEmIOXRatz .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tEmIOXRatz .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tEmIOXRatz .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tEmIOXRatz .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tEmIOXRatz .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tEmIOXRatz .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tEmIOXRatz .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tEmIOXRatz .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tEmIOXRatz .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tEmIOXRatz .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tEmIOXRatz .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tEmIOXRatz .media-container-row .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-tEmIOXRatz .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tEmIOXRatz .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tEmIOXRatz foot-menu-item {
  text-align: right;
  color: #767676;
}
.cid-tEmIOXRatz html {
  overflow-y: hidden;
}
.cid-tEmIOXRatz html body {
  height: 100%;
  overflow: auto;
}
.cid-tEmIOXRatz img {
  height: 50px;
}
.cid-tEmIOXRatz .flotante {
  display: scroll;
  position: fixed;
  z-index: 20000;
  bottom: 20px;
  right: 20px;
}
.cid-rLV4i0Y6RF .navbar {
  background: #232323;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rLV4i0Y6RF .navbar-dropdown.bg-color.transparent.opened {
  background: #232323;
}
.cid-rLV4i0Y6RF a {
  font-style: normal;
}
.cid-rLV4i0Y6RF .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rLV4i0Y6RF .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rLV4i0Y6RF .nav-item:focus,
.cid-rLV4i0Y6RF .nav-link:focus {
  outline: none;
}
.cid-rLV4i0Y6RF .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rLV4i0Y6RF .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rLV4i0Y6RF .menu-logo {
  margin-right: auto;
}
.cid-rLV4i0Y6RF .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rLV4i0Y6RF .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rLV4i0Y6RF .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rLV4i0Y6RF .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rLV4i0Y6RF .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rLV4i0Y6RF .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rLV4i0Y6RF .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rLV4i0Y6RF .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rLV4i0Y6RF .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rLV4i0Y6RF .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rLV4i0Y6RF .dropdown .dropdown-menu {
  background: #232323;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rLV4i0Y6RF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rLV4i0Y6RF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rLV4i0Y6RF .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rLV4i0Y6RF .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rLV4i0Y6RF .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rLV4i0Y6RF .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rLV4i0Y6RF .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rLV4i0Y6RF .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rLV4i0Y6RF .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rLV4i0Y6RF .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rLV4i0Y6RF .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rLV4i0Y6RF button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rLV4i0Y6RF button.navbar-toggler:focus {
  outline: none;
}
.cid-rLV4i0Y6RF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #219a9f;
}
.cid-rLV4i0Y6RF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rLV4i0Y6RF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rLV4i0Y6RF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rLV4i0Y6RF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rLV4i0Y6RF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLV4i0Y6RF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rLV4i0Y6RF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rLV4i0Y6RF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLV4i0Y6RF .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rLV4i0Y6RF .collapsed .btn {
  display: flex;
}
.cid-rLV4i0Y6RF .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rLV4i0Y6RF .collapsed .navbar-collapse.collapsing,
.cid-rLV4i0Y6RF .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rLV4i0Y6RF .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rLV4i0Y6RF .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rLV4i0Y6RF .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rLV4i0Y6RF .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rLV4i0Y6RF .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rLV4i0Y6RF .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rLV4i0Y6RF .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rLV4i0Y6RF .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rLV4i0Y6RF .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rLV4i0Y6RF .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rLV4i0Y6RF .collapsed button.navbar-toggler {
  display: block;
}
.cid-rLV4i0Y6RF .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rLV4i0Y6RF .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rLV4i0Y6RF .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rLV4i0Y6RF .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rLV4i0Y6RF .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rLV4i0Y6RF .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rLV4i0Y6RF.navbar-expand {
    flex-direction: column;
  }
  .cid-rLV4i0Y6RF img {
    height: 3.8rem !important;
  }
  .cid-rLV4i0Y6RF .btn {
    display: flex;
  }
  .cid-rLV4i0Y6RF button.navbar-toggler {
    display: block;
  }
  .cid-rLV4i0Y6RF .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rLV4i0Y6RF .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rLV4i0Y6RF .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rLV4i0Y6RF .navbar-collapse.collapsing,
  .cid-rLV4i0Y6RF .navbar-collapse.show {
    display: block !important;
  }
  .cid-rLV4i0Y6RF .navbar-collapse.collapsing .navbar-nav,
  .cid-rLV4i0Y6RF .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rLV4i0Y6RF .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rLV4i0Y6RF .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rLV4i0Y6RF .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rLV4i0Y6RF .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rLV4i0Y6RF .navbar-collapse.collapsing .navbar-buttons,
  .cid-rLV4i0Y6RF .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rLV4i0Y6RF .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rLV4i0Y6RF .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rLV4i0Y6RF .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rLV4i0Y6RF .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rLV4i0Y6RF .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rLV4i0Y6RF .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rLV4i0Y6RF .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rLV4i0Y6RF .navbar-collapse {
  flex-basis: auto;
}
.cid-rLV4i0Y6RF .nav-link:hover,
.cid-rLV4i0Y6RF .dropdown-item:hover {
  color: #219a9f !important;
}
.cid-rMrZQdk1zt {
  background-image: url("../../../assets/images/banneruppercutdeluxe-2000x1333.jpeg");
}
.cid-rMrZQdk1zt .mbr-figure {
  margin-top: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-rMrZQdk1zt .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-rMrZQdk1zt .mbr-figure img {
    width: 80% !important;
  }
}
.cid-rMrZQdk1zt a:link {
  text-decoration: none;
}
.cid-rMrZQdk1zt .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-rMrZQdk1zt .icon-transition span:hover {
  color: #E52326;
}
.cid-rMrZQdk1zt .inner-text {
  line-height: 0em;
}
.cid-rMrZQdk1zt .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-rMrZQdk1zt .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 80px;
}
.cid-rMrZQdk1zt .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-rMrZQdk1zt .content-text,
.cid-rMrZQdk1zt .inner-text {
  color: #c1c1c1;
}
.cid-rMrZQdk1zt .content-container .btn-bgr {
  z-index: 0;
}
.cid-rMrZQdk1zt .box-item-text {
  color: #232323;
}
.cid-rMrZQdk1zt .box-item {
  padding: 2.5rem;
  margin-bottom: -3rem;
  margin-top: 2.5rem;
}
.cid-rMrZQdk1zt .box-item:first-child {
  background-color: #ffffff;
}
.cid-rMrZQdk1zt .box-item:nth-child(2) {
  background-color: #232323;
}
.cid-rMrZQdk1zt .box-item:last-child {
  background-color: #ffffff;
}
.cid-rMrZQdk1zt .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-rMrZQdk1zt .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-rMrZQdk1zt .box-list li:last-child {
  border-bottom: none;
}
.cid-rMrZQdk1zt .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-rMrZQdk1zt .mbr-iconfont {
  color: #66458e;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-rMrZQdk1zt .media-container-row {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-rMrZQdk1zt .mbr-section-subtitle,
  .cid-rMrZQdk1zt .mbr-section-title,
  .cid-rMrZQdk1zt .mbr-text,
  .cid-rMrZQdk1zt .mbr-section-btn,
  .cid-rMrZQdk1zt .icon-block-top,
  .cid-rMrZQdk1zt .box-item-title,
  .cid-rMrZQdk1zt .box-item-text {
    text-align: center !important;
  }
}
.cid-rMrZQdk1zt .icon-block-top,
.cid-rMrZQdk1zt .box-item-title {
  color: #232323;
}
.cid-rMrZQdk1zt .box-item-text FONT {
  color: #ffffff;
}
.cid-rMrZQdk1zt .icon-block-top,
.cid-rMrZQdk1zt .box-item-title FONT {
  color: #ffffff;
}
.cid-rMrZQfKQu4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-rMrZQfKQu4 .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rMrZQfKQu4 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rMrZQfKQu4:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rMrZQfKQu4 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rMrZQfKQu4 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rMrZQfKQu4 .text-block {
  text-align: center !important;
}
.cid-rMrZQfKQu4 SPAN {
  color: #ffffff;
}
.cid-rMrZQgzJGk {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 992px) {
  .cid-rMrZQgzJGk .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rMrZQgzJGk .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rMrZQgzJGk .mbr-text {
    text-align: center;
  }
}
.cid-rMrZQhxS8Q {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rMrZQhxS8Q .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rMrZQhxS8Q .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rMrZQhxS8Q:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rMrZQhxS8Q .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rMrZQhxS8Q .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rMrZQhxS8Q .text-block {
  text-align: center !important;
}
.cid-rMrZQhxS8Q SPAN {
  color: #232323;
}
.cid-tzDRQtaT1G {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tzDRQtaT1G .mbr-shop {
  display: table;
  width: 100%;
}
.cid-tzDRQtaT1G .mbr-shop .row {
  margin: 0;
}
.cid-tzDRQtaT1G .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-tzDRQtaT1G .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-tzDRQtaT1G .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-tzDRQtaT1G .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-tzDRQtaT1G .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-tzDRQtaT1G .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-tzDRQtaT1G .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-tzDRQtaT1G .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-tzDRQtaT1G .mbr-shop .hide-modal {
  display: none;
}
.cid-tzDRQtaT1G .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-tzDRQtaT1G .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-tzDRQtaT1G .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-tzDRQtaT1G .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-tzDRQtaT1G .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-tzDRQtaT1G .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-tzDRQtaT1G .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-tzDRQtaT1G .mbr-shop .filter-by-pu,
.cid-tzDRQtaT1G .mbr-shop .filter-by-pd,
.cid-tzDRQtaT1G .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-tzDRQtaT1G .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-tzDRQtaT1G .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-tzDRQtaT1G .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-tzDRQtaT1G .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-tzDRQtaT1G .mbr-shop .galleryItem h4,
.cid-tzDRQtaT1G .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-tzDRQtaT1G .mbr-shop .galleryItem h5,
.cid-tzDRQtaT1G .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-tzDRQtaT1G .mbr-shop .galleryItem p,
.cid-tzDRQtaT1G .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-tzDRQtaT1G .mbr-shop .item-button {
  text-align: center;
}
.cid-tzDRQtaT1G .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-tzDRQtaT1G .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-tzDRQtaT1G .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-tzDRQtaT1G .mbr-shop .sidebar-block {
  position: relative;
}
.cid-tzDRQtaT1G .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-tzDRQtaT1G .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-tzDRQtaT1G .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-tzDRQtaT1G .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-tzDRQtaT1G .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-tzDRQtaT1G .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-tzDRQtaT1G .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-tzDRQtaT1G .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-tzDRQtaT1G .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-tzDRQtaT1G .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-tzDRQtaT1G .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-tzDRQtaT1G .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-tzDRQtaT1G .mbr-shop .onsale {
  position: absolute;
  top: 25px;
  right: 25px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #e52326;
  border-radius: 6px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-tzDRQtaT1G .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-tzDRQtaT1G .mbr-shop .mbr-gallery-item__hided h4,
.cid-tzDRQtaT1G .mbr-shop .mbr-gallery-item__hided h5,
.cid-tzDRQtaT1G .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-tzDRQtaT1G .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-tzDRQtaT1G .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-tzDRQtaT1G .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-tzDRQtaT1G .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-tzDRQtaT1G .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-tzDRQtaT1G .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-tzDRQtaT1G .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-tzDRQtaT1G .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-tzDRQtaT1G .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-tzDRQtaT1G .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-tzDRQtaT1G .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-tzDRQtaT1G .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-tzDRQtaT1G .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-tzDRQtaT1G .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-tzDRQtaT1G .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-tzDRQtaT1G .mbr-shop .range-controls {
  position: relative;
}
.cid-tzDRQtaT1G .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-tzDRQtaT1G .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-tzDRQtaT1G .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-tzDRQtaT1G .mbr-shop .toggle:hover,
.cid-tzDRQtaT1G .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-tzDRQtaT1G .mbr-shop .min-toggle {
  left: 0;
}
.cid-tzDRQtaT1G .mbr-shop .max-toggle {
  right: 0;
}
.cid-tzDRQtaT1G .mbr-shop .hided-by-price {
  display: none;
}
.cid-tzDRQtaT1G .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-tzDRQtaT1G .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-tzDRQtaT1G .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-tzDRQtaT1G .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-tzDRQtaT1G .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-tzDRQtaT1G .mbr-shop .text-modal .card-description {
  padding-top: 5px;
  display: block;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 20px;
}
.cid-tzDRQtaT1G .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-tzDRQtaT1G .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-tzDRQtaT1G .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-tzDRQtaT1G .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-tzDRQtaT1G .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 30%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-tzDRQtaT1G .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 20px;
  background-color: #cccccc;
  right: 55%;
  top: 25%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-tzDRQtaT1G .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-tzDRQtaT1G .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-tzDRQtaT1G .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-tzDRQtaT1G .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-tzDRQtaT1G .mbr-shop .shop-items .onsale,
.cid-tzDRQtaT1G .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-tzDRQtaT1G .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-tzDRQtaT1G .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-tzDRQtaT1G .mbr-shop .price-range {
  display: inline-block;
}
.cid-tzDRQtaT1G .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-tzDRQtaT1G .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-tzDRQtaT1G .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-tzDRQtaT1G .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-tzDRQtaT1G .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-tzDRQtaT1G .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-tzDRQtaT1G .mbr-shop .onsale {
    position: absolute;
    top: 5px;
    right: 5px;
  }
  .cid-tzDRQtaT1G .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-tzDRQtaT1G .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-tzDRQtaT1G .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-tzDRQtaT1G .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-tzDRQtaT1G .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-tzDRQtaT1G .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-tzDRQtaT1G .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-tzDRQtaT1G .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-tzDRQtaT1G .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tzDRQtaT1G .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-tzDRQtaT1G .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-tzDRQtaT1G .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-tzDRQtaT1G .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-tzDRQtaT1G .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tzDRQtaT1G .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-tzDRQtaT1G .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-tzDRQtaT1G .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-tzDRQtaT1G .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-tzDRQtaT1G .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-tzDRQtaT1G .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-tzDRQtaT1G .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-tzDRQtaT1G .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-tzDRQtaT1G .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-tzDRQtaT1G .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-tzDRQtaT1G .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-tzDRQtaT1G .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-tzDRQtaT1G .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-tzDRQtaT1G .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-tzDRQtaT1G .range-controls {
  display: block !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzDRQtaT1G .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-tzDRQtaT1G .onsale {
  color: #ffffff;
}
.cid-tzDRQtaT1G .item-title {
  font-size: 20px;
  color: #e52326;
}
.cid-tzDRQtaT1G .shop-item-price,
.cid-tzDRQtaT1G .price-block {
  margin-top: -10px;
  font-size: 25px;
  color: #232323;
}
.cid-tzDRQtaT1G .card-description {
  color: #232323;
}
.cid-rMrZQkOBgA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/collage-1-1000x1000.jpg");
}
.cid-rMrZQkOBgA h2 {
  color: #ffffff;
}
.cid-rSexbcQfXv {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rMs3s8kG5O {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/banner-prospectors-958x602.jpg");
}
.cid-rMs3s8kG5O .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rMs3s8kG5O .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rMs3s8kG5O:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rMs3s8kG5O .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rMs3s8kG5O .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rMs3s8kG5O .text-block {
  text-align: center !important;
}
.cid-rMs3s8kG5O SPAN {
  color: #ffffff;
}
.cid-rSexbPZE6h {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u2wxWCjXiR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fondo-suavecito-2000x1004.jpeg");
}
.cid-u2wxWCjXiR .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-u2wxWCjXiR .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-u2wxWCjXiR:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-u2wxWCjXiR .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-u2wxWCjXiR .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-u2wxWCjXiR .text-block {
  text-align: center !important;
}
.cid-u2wxWCjXiR SPAN {
  color: #ffffff;
}
.cid-rSexcURXXf {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rMrZQnKrad {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/bannerfighters-4-2000x667.jpg");
}
.cid-rMrZQnKrad .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rMrZQnKrad .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rMrZQnKrad:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rMrZQnKrad .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rMrZQnKrad .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rMrZQnKrad .text-block {
  text-align: center !important;
}
.cid-rMrZQnKrad SPAN {
  color: #ffffff;
}
.cid-rSexdwmr64 {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rMrZQpsm3p {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fondotheshavingco-2-2000x1499.jpg");
}
.cid-rMrZQpsm3p .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rMrZQpsm3p .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rMrZQpsm3p:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rMrZQpsm3p .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rMrZQpsm3p .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rMrZQpsm3p .text-block {
  text-align: center !important;
}
.cid-rMrZQpsm3p SPAN {
  color: #ffffff;
}
.cid-rSexeeDQIJ {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rMrZQrmSD1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hull-commercial-photography-3-2-1198x800.jpg");
}
.cid-rMrZQrmSD1 .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rMrZQrmSD1 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rMrZQrmSD1:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rMrZQrmSD1 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rMrZQrmSD1 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rMrZQrmSD1 .text-block {
  text-align: center !important;
}
.cid-rMrZQrmSD1 SPAN {
  color: #ffffff;
}
.cid-tSjM5onCHY {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rMrZQurr2S .navbar {
  background: #232323;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rMrZQurr2S .navbar-dropdown.bg-color.transparent.opened {
  background: #232323;
}
.cid-rMrZQurr2S a {
  font-style: normal;
}
.cid-rMrZQurr2S .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rMrZQurr2S .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rMrZQurr2S .nav-item:focus,
.cid-rMrZQurr2S .nav-link:focus {
  outline: none;
}
.cid-rMrZQurr2S .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rMrZQurr2S .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rMrZQurr2S .menu-logo {
  margin-right: auto;
}
.cid-rMrZQurr2S .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rMrZQurr2S .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rMrZQurr2S .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rMrZQurr2S .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rMrZQurr2S .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rMrZQurr2S .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rMrZQurr2S .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rMrZQurr2S .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rMrZQurr2S .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMrZQurr2S .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rMrZQurr2S .dropdown .dropdown-menu {
  background: #232323;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rMrZQurr2S .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rMrZQurr2S .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rMrZQurr2S .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rMrZQurr2S .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMrZQurr2S .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rMrZQurr2S .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rMrZQurr2S .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rMrZQurr2S .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rMrZQurr2S .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rMrZQurr2S .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rMrZQurr2S .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rMrZQurr2S button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rMrZQurr2S button.navbar-toggler:focus {
  outline: none;
}
.cid-rMrZQurr2S button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #219a9f;
}
.cid-rMrZQurr2S button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMrZQurr2S button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMrZQurr2S button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMrZQurr2S button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMrZQurr2S nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMrZQurr2S nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMrZQurr2S nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMrZQurr2S nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMrZQurr2S .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rMrZQurr2S .collapsed .btn {
  display: flex;
}
.cid-rMrZQurr2S .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rMrZQurr2S .collapsed .navbar-collapse.collapsing,
.cid-rMrZQurr2S .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rMrZQurr2S .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rMrZQurr2S .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rMrZQurr2S .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rMrZQurr2S .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rMrZQurr2S .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rMrZQurr2S .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rMrZQurr2S .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rMrZQurr2S .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rMrZQurr2S .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rMrZQurr2S .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rMrZQurr2S .collapsed button.navbar-toggler {
  display: block;
}
.cid-rMrZQurr2S .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rMrZQurr2S .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rMrZQurr2S .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rMrZQurr2S .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rMrZQurr2S .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rMrZQurr2S .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rMrZQurr2S.navbar-expand {
    flex-direction: column;
  }
  .cid-rMrZQurr2S img {
    height: 3.8rem !important;
  }
  .cid-rMrZQurr2S .btn {
    display: flex;
  }
  .cid-rMrZQurr2S button.navbar-toggler {
    display: block;
  }
  .cid-rMrZQurr2S .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rMrZQurr2S .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rMrZQurr2S .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rMrZQurr2S .navbar-collapse.collapsing,
  .cid-rMrZQurr2S .navbar-collapse.show {
    display: block !important;
  }
  .cid-rMrZQurr2S .navbar-collapse.collapsing .navbar-nav,
  .cid-rMrZQurr2S .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rMrZQurr2S .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rMrZQurr2S .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rMrZQurr2S .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rMrZQurr2S .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rMrZQurr2S .navbar-collapse.collapsing .navbar-buttons,
  .cid-rMrZQurr2S .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rMrZQurr2S .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rMrZQurr2S .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rMrZQurr2S .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rMrZQurr2S .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rMrZQurr2S .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rMrZQurr2S .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rMrZQurr2S .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rMrZQurr2S .navbar-collapse {
  flex-basis: auto;
}
.cid-rMrZQurr2S .nav-link:hover,
.cid-rMrZQurr2S .dropdown-item:hover {
  color: #219a9f !important;
}
.cid-tSp7AafyGu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/img-razor-bros01-1000x666.jpg");
}
.cid-tSp7AafyGu .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-tSp7AafyGu .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tSp7AafyGu:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tSp7AafyGu .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tSp7AafyGu .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tSp7AafyGu .text-block {
  text-align: center !important;
}
.cid-tSp7AafyGu SPAN {
  color: #ffffff;
}
.cid-u2wy8BxGmp {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tEmIZM3Y6W {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #104f52;
}
.cid-tEmIZM3Y6W .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tEmIZM3Y6W .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tEmIZM3Y6W .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tEmIZM3Y6W .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tEmIZM3Y6W .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tEmIZM3Y6W .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tEmIZM3Y6W .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tEmIZM3Y6W .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tEmIZM3Y6W .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tEmIZM3Y6W .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tEmIZM3Y6W .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tEmIZM3Y6W .media-container-row .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-tEmIZM3Y6W .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tEmIZM3Y6W .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tEmIZM3Y6W foot-menu-item {
  text-align: right;
  color: #767676;
}
.cid-tEmIZM3Y6W html {
  overflow-y: hidden;
}
.cid-tEmIZM3Y6W html body {
  height: 100%;
  overflow: auto;
}
.cid-tEmIZM3Y6W img {
  height: 50px;
}
.cid-tEmIZM3Y6W .flotante {
  display: scroll;
  position: fixed;
  z-index: 20000;
  bottom: 20px;
  right: 20px;
}
.cid-rMs09ubynT {
  background-image: url("../../../assets/images/montaje-profucto-1-2000x1408.jpeg");
}
.cid-rMs09ubynT .mbr-figure {
  margin-top: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-rMs09ubynT .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-rMs09ubynT .mbr-figure img {
    width: 80% !important;
  }
}
.cid-rMs09ubynT a:link {
  text-decoration: none;
}
.cid-rMs09ubynT .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-rMs09ubynT .icon-transition span:hover {
  color: #CB9931;
}
.cid-rMs09ubynT .inner-text {
  line-height: 0em;
}
.cid-rMs09ubynT .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-rMs09ubynT .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 80px;
}
.cid-rMs09ubynT .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-rMs09ubynT .content-text,
.cid-rMs09ubynT .inner-text {
  color: #c1c1c1;
}
.cid-rMs09ubynT .content-container .btn-bgr {
  z-index: 0;
}
.cid-rMs09ubynT .box-item-text {
  color: #232323;
}
.cid-rMs09ubynT .box-item {
  padding: 2.5rem;
  margin-bottom: -3rem;
  margin-top: 2.5rem;
}
.cid-rMs09ubynT .box-item:first-child {
  background-color: #ffffff;
}
.cid-rMs09ubynT .box-item:nth-child(2) {
  background-color: #232323;
}
.cid-rMs09ubynT .box-item:last-child {
  background-color: #ffffff;
}
.cid-rMs09ubynT .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-rMs09ubynT .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-rMs09ubynT .box-list li:last-child {
  border-bottom: none;
}
.cid-rMs09ubynT .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-rMs09ubynT .mbr-iconfont {
  color: #66458e;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-rMs09ubynT .media-container-row {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-rMs09ubynT .mbr-section-subtitle,
  .cid-rMs09ubynT .mbr-section-title,
  .cid-rMs09ubynT .mbr-text,
  .cid-rMs09ubynT .mbr-section-btn,
  .cid-rMs09ubynT .icon-block-top,
  .cid-rMs09ubynT .box-item-title,
  .cid-rMs09ubynT .box-item-text {
    text-align: center !important;
  }
}
.cid-rMs09ubynT .icon-block-top,
.cid-rMs09ubynT .box-item-title {
  color: #232323;
}
.cid-rMs09ubynT .box-item-text FONT {
  color: #ffffff;
}
.cid-rMs09ubynT .icon-block-top,
.cid-rMs09ubynT .box-item-title FONT {
  color: #ffffff;
}
.cid-rMs09vxrH5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-rMs09vxrH5 .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rMs09vxrH5 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rMs09vxrH5:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rMs09vxrH5 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rMs09vxrH5 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rMs09vxrH5 .text-block {
  text-align: center !important;
}
.cid-rMs09vxrH5 SPAN {
  color: #ffffff;
}
.cid-rMs09wbrrc {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 992px) {
  .cid-rMs09wbrrc .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rMs09wbrrc .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rMs09wbrrc .mbr-text {
    text-align: center;
  }
}
.cid-rMs09wVJBv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rMs09wVJBv .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rMs09wVJBv .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rMs09wVJBv:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rMs09wVJBv .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rMs09wVJBv .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rMs09wVJBv .text-block {
  text-align: center !important;
}
.cid-rMs09wVJBv SPAN {
  color: #232323;
}
.cid-tzFh2xui6n {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tzFh2xui6n .mbr-shop {
  display: table;
  width: 100%;
}
.cid-tzFh2xui6n .mbr-shop .row {
  margin: 0;
}
.cid-tzFh2xui6n .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-tzFh2xui6n .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-tzFh2xui6n .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-tzFh2xui6n .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-tzFh2xui6n .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-tzFh2xui6n .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-tzFh2xui6n .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-tzFh2xui6n .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-tzFh2xui6n .mbr-shop .hide-modal {
  display: none;
}
.cid-tzFh2xui6n .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-tzFh2xui6n .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-tzFh2xui6n .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-tzFh2xui6n .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-tzFh2xui6n .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-tzFh2xui6n .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-tzFh2xui6n .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-tzFh2xui6n .mbr-shop .filter-by-pu,
.cid-tzFh2xui6n .mbr-shop .filter-by-pd,
.cid-tzFh2xui6n .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-tzFh2xui6n .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-tzFh2xui6n .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-tzFh2xui6n .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-tzFh2xui6n .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-tzFh2xui6n .mbr-shop .galleryItem h4,
.cid-tzFh2xui6n .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-tzFh2xui6n .mbr-shop .galleryItem h5,
.cid-tzFh2xui6n .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-tzFh2xui6n .mbr-shop .galleryItem p,
.cid-tzFh2xui6n .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-tzFh2xui6n .mbr-shop .item-button {
  text-align: center;
}
.cid-tzFh2xui6n .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-tzFh2xui6n .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-tzFh2xui6n .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-tzFh2xui6n .mbr-shop .sidebar-block {
  position: relative;
}
.cid-tzFh2xui6n .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-tzFh2xui6n .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-tzFh2xui6n .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-tzFh2xui6n .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-tzFh2xui6n .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-tzFh2xui6n .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-tzFh2xui6n .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-tzFh2xui6n .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-tzFh2xui6n .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-tzFh2xui6n .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-tzFh2xui6n .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-tzFh2xui6n .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-tzFh2xui6n .mbr-shop .onsale {
  position: absolute;
  top: 25px;
  right: 25px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #cb9931;
  border-radius: 6px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-tzFh2xui6n .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-tzFh2xui6n .mbr-shop .mbr-gallery-item__hided h4,
.cid-tzFh2xui6n .mbr-shop .mbr-gallery-item__hided h5,
.cid-tzFh2xui6n .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-tzFh2xui6n .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-tzFh2xui6n .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-tzFh2xui6n .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-tzFh2xui6n .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-tzFh2xui6n .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-tzFh2xui6n .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-tzFh2xui6n .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-tzFh2xui6n .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-tzFh2xui6n .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-tzFh2xui6n .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-tzFh2xui6n .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-tzFh2xui6n .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-tzFh2xui6n .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-tzFh2xui6n .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-tzFh2xui6n .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-tzFh2xui6n .mbr-shop .range-controls {
  position: relative;
}
.cid-tzFh2xui6n .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-tzFh2xui6n .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-tzFh2xui6n .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-tzFh2xui6n .mbr-shop .toggle:hover,
.cid-tzFh2xui6n .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-tzFh2xui6n .mbr-shop .min-toggle {
  left: 0;
}
.cid-tzFh2xui6n .mbr-shop .max-toggle {
  right: 0;
}
.cid-tzFh2xui6n .mbr-shop .hided-by-price {
  display: none;
}
.cid-tzFh2xui6n .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-tzFh2xui6n .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-tzFh2xui6n .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-tzFh2xui6n .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-tzFh2xui6n .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-tzFh2xui6n .mbr-shop .text-modal .card-description {
  padding-top: 5px;
  display: block;
  font-size: 13px;
  line-height: 17px;
  margin-bottom: 20px;
}
.cid-tzFh2xui6n .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-tzFh2xui6n .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-tzFh2xui6n .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-tzFh2xui6n .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-tzFh2xui6n .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 30%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-tzFh2xui6n .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 20px;
  background-color: #cccccc;
  right: 55%;
  top: 25%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-tzFh2xui6n .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-tzFh2xui6n .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-tzFh2xui6n .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-tzFh2xui6n .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-tzFh2xui6n .mbr-shop .shop-items .onsale,
.cid-tzFh2xui6n .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-tzFh2xui6n .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-tzFh2xui6n .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-tzFh2xui6n .mbr-shop .price-range {
  display: inline-block;
}
.cid-tzFh2xui6n .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-tzFh2xui6n .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-tzFh2xui6n .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-tzFh2xui6n .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-tzFh2xui6n .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-tzFh2xui6n .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-tzFh2xui6n .mbr-shop .onsale {
    position: absolute;
    top: 5px;
    right: 5px;
  }
  .cid-tzFh2xui6n .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-tzFh2xui6n .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-tzFh2xui6n .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-tzFh2xui6n .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-tzFh2xui6n .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-tzFh2xui6n .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-tzFh2xui6n .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-tzFh2xui6n .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-tzFh2xui6n .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tzFh2xui6n .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-tzFh2xui6n .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-tzFh2xui6n .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-tzFh2xui6n .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-tzFh2xui6n .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tzFh2xui6n .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-tzFh2xui6n .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-tzFh2xui6n .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-tzFh2xui6n .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-tzFh2xui6n .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-tzFh2xui6n .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-tzFh2xui6n .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-tzFh2xui6n .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-tzFh2xui6n .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-tzFh2xui6n .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-tzFh2xui6n .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-tzFh2xui6n .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-tzFh2xui6n .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-tzFh2xui6n .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-tzFh2xui6n .range-controls {
  display: block !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzFh2xui6n .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-tzFh2xui6n .onsale {
  color: #ffffff;
}
.cid-tzFh2xui6n .item-title {
  font-size: 20px;
  color: #cb9931;
}
.cid-tzFh2xui6n .shop-item-price,
.cid-tzFh2xui6n .price-block {
  margin-top: -10px;
  font-size: 25px;
  color: #232323;
}
.cid-tzFh2xui6n .card-description {
  color: #232323;
}
.cid-rMs09zOnfX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/collage-1-1000x1000.jpg");
}
.cid-rMs09zOnfX h2 {
  color: #ffffff;
}
.cid-rSexU14fFA {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rMs31ZszEK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/banner-prospectors-958x602.jpg");
}
.cid-rMs31ZszEK .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rMs31ZszEK .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rMs31ZszEK:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rMs31ZszEK .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rMs31ZszEK .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rMs31ZszEK .text-block {
  text-align: center !important;
}
.cid-rMs31ZszEK SPAN {
  color: #ffffff;
}
.cid-rSexUHdOgO {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rMs09Bbn1s {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fondouppercut2-1-1500x1000.jpeg");
}
.cid-rMs09Bbn1s .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rMs09Bbn1s .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rMs09Bbn1s:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rMs09Bbn1s .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rMs09Bbn1s .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rMs09Bbn1s .text-block {
  text-align: center !important;
}
.cid-rMs09Bbn1s SPAN {
  color: #ffffff;
}
.cid-rSexVwgwKL {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u2wAp4asy2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fondo-suavecito-2000x1004.jpeg");
}
.cid-u2wAp4asy2 .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-u2wAp4asy2 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-u2wAp4asy2:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-u2wAp4asy2 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-u2wAp4asy2 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-u2wAp4asy2 .text-block {
  text-align: center !important;
}
.cid-u2wAp4asy2 SPAN {
  color: #ffffff;
}
.cid-rSexWhhDCO {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rMs09Cuge0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/bannerfighters-4-2000x667.jpg");
}
.cid-rMs09Cuge0 .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rMs09Cuge0 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rMs09Cuge0:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rMs09Cuge0 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rMs09Cuge0 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rMs09Cuge0 .text-block {
  text-align: center !important;
}
.cid-rMs09Cuge0 SPAN {
  color: #ffffff;
}
.cid-rSexX7Wo8V {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rMs09FpykC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hull-commercial-photography-3-2-1198x800.jpg");
}
.cid-rMs09FpykC .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rMs09FpykC .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rMs09FpykC:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rMs09FpykC .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rMs09FpykC .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rMs09FpykC .text-block {
  text-align: center !important;
}
.cid-rMs09FpykC SPAN {
  color: #ffffff;
}
.cid-tSjMqjyZW7 {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSp8ggCo8M {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/img-razor-bros01-1000x666.jpg");
}
.cid-tSp8ggCo8M .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-tSp8ggCo8M .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tSp8ggCo8M:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tSp8ggCo8M .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tSp8ggCo8M .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tSp8ggCo8M .text-block {
  text-align: center !important;
}
.cid-tSp8ggCo8M SPAN {
  color: #ffffff;
}
.cid-u2wABctuPe {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tEmJfgMwqe {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #104f52;
}
.cid-tEmJfgMwqe .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tEmJfgMwqe .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tEmJfgMwqe .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tEmJfgMwqe .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tEmJfgMwqe .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tEmJfgMwqe .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tEmJfgMwqe .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tEmJfgMwqe .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tEmJfgMwqe .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tEmJfgMwqe .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tEmJfgMwqe .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tEmJfgMwqe .media-container-row .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-tEmJfgMwqe .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tEmJfgMwqe .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tEmJfgMwqe foot-menu-item {
  text-align: right;
  color: #767676;
}
.cid-tEmJfgMwqe html {
  overflow-y: hidden;
}
.cid-tEmJfgMwqe html body {
  height: 100%;
  overflow: auto;
}
.cid-tEmJfgMwqe img {
  height: 50px;
}
.cid-tEmJfgMwqe .flotante {
  display: scroll;
  position: fixed;
  z-index: 20000;
  bottom: 20px;
  right: 20px;
}
.cid-rMs09HOYNS .navbar {
  background: #232323;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rMs09HOYNS .navbar-dropdown.bg-color.transparent.opened {
  background: #232323;
}
.cid-rMs09HOYNS a {
  font-style: normal;
}
.cid-rMs09HOYNS .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rMs09HOYNS .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rMs09HOYNS .nav-item:focus,
.cid-rMs09HOYNS .nav-link:focus {
  outline: none;
}
.cid-rMs09HOYNS .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rMs09HOYNS .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rMs09HOYNS .menu-logo {
  margin-right: auto;
}
.cid-rMs09HOYNS .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rMs09HOYNS .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rMs09HOYNS .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rMs09HOYNS .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rMs09HOYNS .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rMs09HOYNS .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rMs09HOYNS .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rMs09HOYNS .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rMs09HOYNS .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMs09HOYNS .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rMs09HOYNS .dropdown .dropdown-menu {
  background: #232323;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rMs09HOYNS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rMs09HOYNS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rMs09HOYNS .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rMs09HOYNS .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMs09HOYNS .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rMs09HOYNS .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rMs09HOYNS .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rMs09HOYNS .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rMs09HOYNS .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rMs09HOYNS .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rMs09HOYNS .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rMs09HOYNS button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rMs09HOYNS button.navbar-toggler:focus {
  outline: none;
}
.cid-rMs09HOYNS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #219a9f;
}
.cid-rMs09HOYNS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMs09HOYNS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMs09HOYNS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMs09HOYNS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMs09HOYNS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMs09HOYNS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMs09HOYNS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMs09HOYNS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMs09HOYNS .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rMs09HOYNS .collapsed .btn {
  display: flex;
}
.cid-rMs09HOYNS .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rMs09HOYNS .collapsed .navbar-collapse.collapsing,
.cid-rMs09HOYNS .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rMs09HOYNS .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rMs09HOYNS .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rMs09HOYNS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rMs09HOYNS .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rMs09HOYNS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rMs09HOYNS .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rMs09HOYNS .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rMs09HOYNS .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rMs09HOYNS .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rMs09HOYNS .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rMs09HOYNS .collapsed button.navbar-toggler {
  display: block;
}
.cid-rMs09HOYNS .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rMs09HOYNS .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rMs09HOYNS .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rMs09HOYNS .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rMs09HOYNS .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rMs09HOYNS .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rMs09HOYNS.navbar-expand {
    flex-direction: column;
  }
  .cid-rMs09HOYNS img {
    height: 3.8rem !important;
  }
  .cid-rMs09HOYNS .btn {
    display: flex;
  }
  .cid-rMs09HOYNS button.navbar-toggler {
    display: block;
  }
  .cid-rMs09HOYNS .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rMs09HOYNS .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rMs09HOYNS .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rMs09HOYNS .navbar-collapse.collapsing,
  .cid-rMs09HOYNS .navbar-collapse.show {
    display: block !important;
  }
  .cid-rMs09HOYNS .navbar-collapse.collapsing .navbar-nav,
  .cid-rMs09HOYNS .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rMs09HOYNS .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rMs09HOYNS .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rMs09HOYNS .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rMs09HOYNS .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rMs09HOYNS .navbar-collapse.collapsing .navbar-buttons,
  .cid-rMs09HOYNS .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rMs09HOYNS .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rMs09HOYNS .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rMs09HOYNS .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rMs09HOYNS .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rMs09HOYNS .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rMs09HOYNS .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rMs09HOYNS .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rMs09HOYNS .navbar-collapse {
  flex-basis: auto;
}
.cid-rMs09HOYNS .nav-link:hover,
.cid-rMs09HOYNS .dropdown-item:hover {
  color: #219a9f !important;
}
.cid-rNLBWTyx8l {
  background-image: url("../../../assets/images/bannerfighters-2000x1571.jpg");
}
.cid-rNLBWTyx8l .mbr-figure {
  margin-top: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-rNLBWTyx8l .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-rNLBWTyx8l .mbr-figure img {
    width: 80% !important;
  }
}
.cid-rNLBWTyx8l a:link {
  text-decoration: none;
}
.cid-rNLBWTyx8l .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-rNLBWTyx8l .icon-transition span:hover {
  color: #EB5E91;
}
.cid-rNLBWTyx8l .inner-text {
  line-height: 0em;
}
.cid-rNLBWTyx8l .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-rNLBWTyx8l .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 80px;
}
.cid-rNLBWTyx8l .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-rNLBWTyx8l .content-text,
.cid-rNLBWTyx8l .inner-text {
  color: #c1c1c1;
}
.cid-rNLBWTyx8l .content-container .btn-bgr {
  z-index: 0;
}
.cid-rNLBWTyx8l .box-item-text {
  color: #232323;
}
.cid-rNLBWTyx8l .box-item {
  padding: 2.5rem;
  margin-bottom: -3rem;
  margin-top: 2.5rem;
}
.cid-rNLBWTyx8l .box-item:first-child {
  background-color: #ffffff;
}
.cid-rNLBWTyx8l .box-item:nth-child(2) {
  background-color: #232323;
}
.cid-rNLBWTyx8l .box-item:last-child {
  background-color: #ffffff;
}
.cid-rNLBWTyx8l .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-rNLBWTyx8l .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-rNLBWTyx8l .box-list li:last-child {
  border-bottom: none;
}
.cid-rNLBWTyx8l .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-rNLBWTyx8l .mbr-iconfont {
  color: #66458e;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-rNLBWTyx8l .media-container-row {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-rNLBWTyx8l .mbr-section-subtitle,
  .cid-rNLBWTyx8l .mbr-section-title,
  .cid-rNLBWTyx8l .mbr-text,
  .cid-rNLBWTyx8l .mbr-section-btn,
  .cid-rNLBWTyx8l .icon-block-top,
  .cid-rNLBWTyx8l .box-item-title,
  .cid-rNLBWTyx8l .box-item-text {
    text-align: center !important;
  }
}
.cid-rNLBWTyx8l .icon-block-top,
.cid-rNLBWTyx8l .box-item-title {
  color: #232323;
}
.cid-rNLBWTyx8l .box-item-text FONT {
  color: #ffffff;
}
.cid-rNLBWTyx8l .icon-block-top,
.cid-rNLBWTyx8l .box-item-title FONT {
  color: #ffffff;
}
.cid-rNLBWV19WE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-rNLBWV19WE .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rNLBWV19WE .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rNLBWV19WE:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rNLBWV19WE .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rNLBWV19WE .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rNLBWV19WE .text-block {
  text-align: center !important;
}
.cid-rNLBWV19WE SPAN {
  color: #ffffff;
}
.cid-rNLBWVH1ZL {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 992px) {
  .cid-rNLBWVH1ZL .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rNLBWVH1ZL .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rNLBWVH1ZL .mbr-text {
    text-align: center;
  }
}
.cid-rNLBWWMfX5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNLBWWMfX5 .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rNLBWWMfX5 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rNLBWWMfX5:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rNLBWWMfX5 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rNLBWWMfX5 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rNLBWWMfX5 .text-block {
  text-align: center !important;
}
.cid-rNLBWWMfX5 SPAN {
  color: #232323;
}
.cid-tzFfANcC87 {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tzFfANcC87 .mbr-shop {
  display: table;
  width: 100%;
}
.cid-tzFfANcC87 .mbr-shop .row {
  margin: 0;
}
.cid-tzFfANcC87 .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-tzFfANcC87 .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-tzFfANcC87 .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-tzFfANcC87 .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-tzFfANcC87 .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-tzFfANcC87 .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-tzFfANcC87 .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-tzFfANcC87 .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-tzFfANcC87 .mbr-shop .hide-modal {
  display: none;
}
.cid-tzFfANcC87 .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-tzFfANcC87 .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-tzFfANcC87 .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-tzFfANcC87 .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-tzFfANcC87 .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-tzFfANcC87 .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-tzFfANcC87 .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-tzFfANcC87 .mbr-shop .filter-by-pu,
.cid-tzFfANcC87 .mbr-shop .filter-by-pd,
.cid-tzFfANcC87 .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-tzFfANcC87 .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-tzFfANcC87 .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-tzFfANcC87 .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-tzFfANcC87 .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-tzFfANcC87 .mbr-shop .galleryItem h4,
.cid-tzFfANcC87 .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-tzFfANcC87 .mbr-shop .galleryItem h5,
.cid-tzFfANcC87 .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-tzFfANcC87 .mbr-shop .galleryItem p,
.cid-tzFfANcC87 .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-tzFfANcC87 .mbr-shop .item-button {
  text-align: center;
}
.cid-tzFfANcC87 .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-tzFfANcC87 .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-tzFfANcC87 .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-tzFfANcC87 .mbr-shop .sidebar-block {
  position: relative;
}
.cid-tzFfANcC87 .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-tzFfANcC87 .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-tzFfANcC87 .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-tzFfANcC87 .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-tzFfANcC87 .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-tzFfANcC87 .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-tzFfANcC87 .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-tzFfANcC87 .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-tzFfANcC87 .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-tzFfANcC87 .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-tzFfANcC87 .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-tzFfANcC87 .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-tzFfANcC87 .mbr-shop .onsale {
  position: absolute;
  top: 25px;
  right: 25px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #7f1933;
  border-radius: 6px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-tzFfANcC87 .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-tzFfANcC87 .mbr-shop .mbr-gallery-item__hided h4,
.cid-tzFfANcC87 .mbr-shop .mbr-gallery-item__hided h5,
.cid-tzFfANcC87 .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-tzFfANcC87 .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-tzFfANcC87 .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-tzFfANcC87 .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-tzFfANcC87 .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-tzFfANcC87 .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-tzFfANcC87 .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-tzFfANcC87 .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-tzFfANcC87 .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-tzFfANcC87 .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-tzFfANcC87 .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-tzFfANcC87 .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-tzFfANcC87 .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-tzFfANcC87 .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-tzFfANcC87 .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-tzFfANcC87 .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-tzFfANcC87 .mbr-shop .range-controls {
  position: relative;
}
.cid-tzFfANcC87 .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-tzFfANcC87 .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-tzFfANcC87 .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-tzFfANcC87 .mbr-shop .toggle:hover,
.cid-tzFfANcC87 .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-tzFfANcC87 .mbr-shop .min-toggle {
  left: 0;
}
.cid-tzFfANcC87 .mbr-shop .max-toggle {
  right: 0;
}
.cid-tzFfANcC87 .mbr-shop .hided-by-price {
  display: none;
}
.cid-tzFfANcC87 .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-tzFfANcC87 .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-tzFfANcC87 .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-tzFfANcC87 .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-tzFfANcC87 .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-tzFfANcC87 .mbr-shop .text-modal .card-description {
  padding-top: 5px;
  display: block;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 20px;
}
.cid-tzFfANcC87 .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-tzFfANcC87 .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-tzFfANcC87 .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-tzFfANcC87 .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-tzFfANcC87 .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 30%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-tzFfANcC87 .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 20px;
  background-color: #cccccc;
  right: 55%;
  top: 25%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-tzFfANcC87 .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-tzFfANcC87 .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-tzFfANcC87 .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-tzFfANcC87 .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-tzFfANcC87 .mbr-shop .shop-items .onsale,
.cid-tzFfANcC87 .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-tzFfANcC87 .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-tzFfANcC87 .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-tzFfANcC87 .mbr-shop .price-range {
  display: inline-block;
}
.cid-tzFfANcC87 .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-tzFfANcC87 .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-tzFfANcC87 .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-tzFfANcC87 .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-tzFfANcC87 .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-tzFfANcC87 .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-tzFfANcC87 .mbr-shop .onsale {
    position: absolute;
    top: 5px;
    right: 5px;
  }
  .cid-tzFfANcC87 .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-tzFfANcC87 .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-tzFfANcC87 .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-tzFfANcC87 .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-tzFfANcC87 .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-tzFfANcC87 .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-tzFfANcC87 .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-tzFfANcC87 .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-tzFfANcC87 .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tzFfANcC87 .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-tzFfANcC87 .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-tzFfANcC87 .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-tzFfANcC87 .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-tzFfANcC87 .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tzFfANcC87 .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-tzFfANcC87 .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-tzFfANcC87 .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-tzFfANcC87 .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-tzFfANcC87 .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-tzFfANcC87 .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-tzFfANcC87 .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-tzFfANcC87 .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-tzFfANcC87 .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-tzFfANcC87 .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-tzFfANcC87 .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-tzFfANcC87 .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-tzFfANcC87 .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-tzFfANcC87 .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzFfANcC87 .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-tzFfANcC87 .onsale {
  color: #ffffff;
}
.cid-tzFfANcC87 .item-title {
  font-size: 20px;
  color: #eb5e91;
}
.cid-tzFfANcC87 .shop-item-price,
.cid-tzFfANcC87 .price-block {
  margin-top: -10px;
  font-size: 25px;
  color: #232323;
}
.cid-tzFfANcC87 .card-description {
  color: #232323;
}
.cid-rNLBX0eZ9F {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/collage-1-1000x1000.jpg");
}
.cid-rNLBX0eZ9F h2 {
  color: #ffffff;
}
.cid-rSexDvwbP3 {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNLHtn0geo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/banner-prospectors-958x602.jpg");
}
.cid-rNLHtn0geo .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rNLHtn0geo .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rNLHtn0geo:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rNLHtn0geo .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rNLHtn0geo .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rNLHtn0geo .text-block {
  text-align: center !important;
}
.cid-rNLHtn0geo SPAN {
  color: #ffffff;
}
.cid-rSexE6m1j2 {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNLBX1EwxD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fondouppercut2-1-1500x1000.jpeg");
}
.cid-rNLBX1EwxD .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rNLBX1EwxD .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rNLBX1EwxD:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rNLBX1EwxD .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rNLBX1EwxD .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rNLBX1EwxD .text-block {
  text-align: center !important;
}
.cid-rNLBX1EwxD SPAN {
  color: #ffffff;
}
.cid-rSexFfD4ma {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u2wyLgyQaR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fondo-suavecito-2000x1004.jpeg");
}
.cid-u2wyLgyQaR .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-u2wyLgyQaR .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-u2wyLgyQaR:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-u2wyLgyQaR .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-u2wyLgyQaR .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-u2wyLgyQaR .text-block {
  text-align: center !important;
}
.cid-u2wyLgyQaR SPAN {
  color: #ffffff;
}
.cid-rSexG1tVb2 {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNLBX4Q1cB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fondotheshavingco-2-2000x1499.jpg");
}
.cid-rNLBX4Q1cB .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rNLBX4Q1cB .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rNLBX4Q1cB:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rNLBX4Q1cB .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rNLBX4Q1cB .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rNLBX4Q1cB .text-block {
  text-align: center !important;
}
.cid-rNLBX4Q1cB SPAN {
  color: #ffffff;
}
.cid-rSexGLHe5Z {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNLBX6gbxH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hull-commercial-photography-3-2-1198x800.jpg");
}
.cid-rNLBX6gbxH .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rNLBX6gbxH .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rNLBX6gbxH:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rNLBX6gbxH .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rNLBX6gbxH .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rNLBX6gbxH .text-block {
  text-align: center !important;
}
.cid-rNLBX6gbxH SPAN {
  color: #ffffff;
}
.cid-tSjMf2lzvh {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rNLBX8StqG .navbar {
  background: #232323;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rNLBX8StqG .navbar-dropdown.bg-color.transparent.opened {
  background: #232323;
}
.cid-rNLBX8StqG a {
  font-style: normal;
}
.cid-rNLBX8StqG .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rNLBX8StqG .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rNLBX8StqG .nav-item:focus,
.cid-rNLBX8StqG .nav-link:focus {
  outline: none;
}
.cid-rNLBX8StqG .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rNLBX8StqG .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rNLBX8StqG .menu-logo {
  margin-right: auto;
}
.cid-rNLBX8StqG .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rNLBX8StqG .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rNLBX8StqG .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rNLBX8StqG .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rNLBX8StqG .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rNLBX8StqG .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rNLBX8StqG .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rNLBX8StqG .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rNLBX8StqG .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rNLBX8StqG .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rNLBX8StqG .dropdown .dropdown-menu {
  background: #232323;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rNLBX8StqG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rNLBX8StqG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rNLBX8StqG .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rNLBX8StqG .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rNLBX8StqG .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rNLBX8StqG .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rNLBX8StqG .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rNLBX8StqG .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rNLBX8StqG .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rNLBX8StqG .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rNLBX8StqG .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rNLBX8StqG button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rNLBX8StqG button.navbar-toggler:focus {
  outline: none;
}
.cid-rNLBX8StqG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #219a9f;
}
.cid-rNLBX8StqG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rNLBX8StqG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rNLBX8StqG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rNLBX8StqG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rNLBX8StqG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rNLBX8StqG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rNLBX8StqG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rNLBX8StqG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rNLBX8StqG .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rNLBX8StqG .collapsed .btn {
  display: flex;
}
.cid-rNLBX8StqG .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rNLBX8StqG .collapsed .navbar-collapse.collapsing,
.cid-rNLBX8StqG .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rNLBX8StqG .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rNLBX8StqG .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rNLBX8StqG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rNLBX8StqG .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rNLBX8StqG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rNLBX8StqG .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rNLBX8StqG .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rNLBX8StqG .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rNLBX8StqG .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rNLBX8StqG .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rNLBX8StqG .collapsed button.navbar-toggler {
  display: block;
}
.cid-rNLBX8StqG .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rNLBX8StqG .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rNLBX8StqG .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rNLBX8StqG .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rNLBX8StqG .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rNLBX8StqG .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rNLBX8StqG.navbar-expand {
    flex-direction: column;
  }
  .cid-rNLBX8StqG img {
    height: 3.8rem !important;
  }
  .cid-rNLBX8StqG .btn {
    display: flex;
  }
  .cid-rNLBX8StqG button.navbar-toggler {
    display: block;
  }
  .cid-rNLBX8StqG .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rNLBX8StqG .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rNLBX8StqG .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rNLBX8StqG .navbar-collapse.collapsing,
  .cid-rNLBX8StqG .navbar-collapse.show {
    display: block !important;
  }
  .cid-rNLBX8StqG .navbar-collapse.collapsing .navbar-nav,
  .cid-rNLBX8StqG .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rNLBX8StqG .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rNLBX8StqG .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rNLBX8StqG .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rNLBX8StqG .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rNLBX8StqG .navbar-collapse.collapsing .navbar-buttons,
  .cid-rNLBX8StqG .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rNLBX8StqG .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rNLBX8StqG .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rNLBX8StqG .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rNLBX8StqG .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rNLBX8StqG .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rNLBX8StqG .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rNLBX8StqG .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rNLBX8StqG .navbar-collapse {
  flex-basis: auto;
}
.cid-rNLBX8StqG .nav-link:hover,
.cid-rNLBX8StqG .dropdown-item:hover {
  color: #219a9f !important;
}
.cid-tSp7KQyDjy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/img-razor-bros01-1000x666.jpg");
}
.cid-tSp7KQyDjy .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-tSp7KQyDjy .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tSp7KQyDjy:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tSp7KQyDjy .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tSp7KQyDjy .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tSp7KQyDjy .text-block {
  text-align: center !important;
}
.cid-tSp7KQyDjy SPAN {
  color: #ffffff;
}
.cid-u2wz01aiU9 {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tEmJ5l9cXt {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #104f52;
}
.cid-tEmJ5l9cXt .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tEmJ5l9cXt .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tEmJ5l9cXt .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tEmJ5l9cXt .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tEmJ5l9cXt .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tEmJ5l9cXt .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tEmJ5l9cXt .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tEmJ5l9cXt .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tEmJ5l9cXt .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tEmJ5l9cXt .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tEmJ5l9cXt .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tEmJ5l9cXt .media-container-row .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-tEmJ5l9cXt .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tEmJ5l9cXt .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tEmJ5l9cXt foot-menu-item {
  text-align: right;
  color: #767676;
}
.cid-tEmJ5l9cXt html {
  overflow-y: hidden;
}
.cid-tEmJ5l9cXt html body {
  height: 100%;
  overflow: auto;
}
.cid-tEmJ5l9cXt img {
  height: 50px;
}
.cid-tEmJ5l9cXt .flotante {
  display: scroll;
  position: fixed;
  z-index: 20000;
  bottom: 20px;
  right: 20px;
}
.cid-tzVXfO5mXW {
  background-image: url("../../../assets/images/bannerprospectorspomade3-2-2000x1499.jpg");
}
.cid-tzVXfO5mXW .mbr-figure {
  margin-top: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-tzVXfO5mXW .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tzVXfO5mXW .mbr-figure img {
    width: 80% !important;
  }
}
.cid-tzVXfO5mXW a:link {
  text-decoration: none;
}
.cid-tzVXfO5mXW .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tzVXfO5mXW .icon-transition span:hover {
  color: #e4d295;
}
.cid-tzVXfO5mXW .inner-text {
  line-height: 0em;
}
.cid-tzVXfO5mXW .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-tzVXfO5mXW .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 80px;
}
.cid-tzVXfO5mXW .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-tzVXfO5mXW .content-text,
.cid-tzVXfO5mXW .inner-text {
  color: #c1c1c1;
}
.cid-tzVXfO5mXW .content-container .btn-bgr {
  z-index: 0;
}
.cid-tzVXfO5mXW .box-item-text {
  color: #232323;
}
.cid-tzVXfO5mXW .box-item {
  padding: 2.5rem;
  margin-bottom: -3rem;
  margin-top: 2.5rem;
}
.cid-tzVXfO5mXW .box-item:first-child {
  background-color: #ffffff;
}
.cid-tzVXfO5mXW .box-item:nth-child(2) {
  background-color: #232323;
}
.cid-tzVXfO5mXW .box-item:last-child {
  background-color: #ffffff;
}
.cid-tzVXfO5mXW .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-tzVXfO5mXW .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-tzVXfO5mXW .box-list li:last-child {
  border-bottom: none;
}
.cid-tzVXfO5mXW .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-tzVXfO5mXW .mbr-iconfont {
  color: #66458e;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-tzVXfO5mXW .media-container-row {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-tzVXfO5mXW .mbr-section-subtitle,
  .cid-tzVXfO5mXW .mbr-section-title,
  .cid-tzVXfO5mXW .mbr-text,
  .cid-tzVXfO5mXW .mbr-section-btn,
  .cid-tzVXfO5mXW .icon-block-top,
  .cid-tzVXfO5mXW .box-item-title,
  .cid-tzVXfO5mXW .box-item-text {
    text-align: center !important;
  }
}
.cid-tzVXfO5mXW .icon-block-top,
.cid-tzVXfO5mXW .box-item-title {
  color: #232323;
}
.cid-tzVXfO5mXW .box-item-text FONT {
  color: #ffffff;
}
.cid-tzVXfO5mXW .icon-block-top,
.cid-tzVXfO5mXW .box-item-title FONT {
  color: #ffffff;
}
.cid-tzVXDzvj3Q {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tzVXDzvj3Q .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-tzVXDzvj3Q .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tzVXDzvj3Q:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tzVXDzvj3Q .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tzVXDzvj3Q .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tzVXDzvj3Q .text-block {
  text-align: center !important;
}
.cid-tzVXDzvj3Q SPAN {
  color: #ffffff;
}
.cid-tzVVTiQ7nQ {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 992px) {
  .cid-tzVVTiQ7nQ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tzVVTiQ7nQ .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tzVVTiQ7nQ .mbr-text {
    text-align: center;
  }
}
.cid-tzVVTjd2zo {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzVVTjd2zo .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-tzVVTjd2zo .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tzVVTjd2zo:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tzVVTjd2zo .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tzVVTjd2zo .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tzVVTjd2zo .text-block {
  text-align: center !important;
}
.cid-tzVVTjd2zo SPAN {
  color: #232323;
}
.cid-tzVWDxfxAy {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tzVWDxfxAy .mbr-shop {
  display: table;
  width: 100%;
}
.cid-tzVWDxfxAy .mbr-shop .row {
  margin: 0;
}
.cid-tzVWDxfxAy .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-tzVWDxfxAy .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-tzVWDxfxAy .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-tzVWDxfxAy .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-tzVWDxfxAy .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-tzVWDxfxAy .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-tzVWDxfxAy .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-tzVWDxfxAy .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-tzVWDxfxAy .mbr-shop .hide-modal {
  display: none;
}
.cid-tzVWDxfxAy .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-tzVWDxfxAy .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-tzVWDxfxAy .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-tzVWDxfxAy .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-tzVWDxfxAy .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-tzVWDxfxAy .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-tzVWDxfxAy .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-tzVWDxfxAy .mbr-shop .filter-by-pu,
.cid-tzVWDxfxAy .mbr-shop .filter-by-pd,
.cid-tzVWDxfxAy .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-tzVWDxfxAy .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-tzVWDxfxAy .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-tzVWDxfxAy .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-tzVWDxfxAy .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-tzVWDxfxAy .mbr-shop .galleryItem h4,
.cid-tzVWDxfxAy .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-tzVWDxfxAy .mbr-shop .galleryItem h5,
.cid-tzVWDxfxAy .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-tzVWDxfxAy .mbr-shop .galleryItem p,
.cid-tzVWDxfxAy .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-tzVWDxfxAy .mbr-shop .item-button {
  text-align: center;
}
.cid-tzVWDxfxAy .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-tzVWDxfxAy .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-tzVWDxfxAy .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-tzVWDxfxAy .mbr-shop .sidebar-block {
  position: relative;
}
.cid-tzVWDxfxAy .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-tzVWDxfxAy .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-tzVWDxfxAy .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-tzVWDxfxAy .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-tzVWDxfxAy .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-tzVWDxfxAy .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-tzVWDxfxAy .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-tzVWDxfxAy .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-tzVWDxfxAy .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-tzVWDxfxAy .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-tzVWDxfxAy .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-tzVWDxfxAy .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-tzVWDxfxAy .mbr-shop .onsale {
  position: absolute;
  top: 25px;
  right: 25px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #7f1933;
  border-radius: 6px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-tzVWDxfxAy .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-tzVWDxfxAy .mbr-shop .mbr-gallery-item__hided h4,
.cid-tzVWDxfxAy .mbr-shop .mbr-gallery-item__hided h5,
.cid-tzVWDxfxAy .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-tzVWDxfxAy .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-tzVWDxfxAy .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-tzVWDxfxAy .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-tzVWDxfxAy .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-tzVWDxfxAy .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-tzVWDxfxAy .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-tzVWDxfxAy .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-tzVWDxfxAy .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-tzVWDxfxAy .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-tzVWDxfxAy .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-tzVWDxfxAy .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-tzVWDxfxAy .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-tzVWDxfxAy .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-tzVWDxfxAy .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-tzVWDxfxAy .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-tzVWDxfxAy .mbr-shop .range-controls {
  position: relative;
}
.cid-tzVWDxfxAy .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-tzVWDxfxAy .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-tzVWDxfxAy .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-tzVWDxfxAy .mbr-shop .toggle:hover,
.cid-tzVWDxfxAy .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-tzVWDxfxAy .mbr-shop .min-toggle {
  left: 0;
}
.cid-tzVWDxfxAy .mbr-shop .max-toggle {
  right: 0;
}
.cid-tzVWDxfxAy .mbr-shop .hided-by-price {
  display: none;
}
.cid-tzVWDxfxAy .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-tzVWDxfxAy .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-tzVWDxfxAy .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-tzVWDxfxAy .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-tzVWDxfxAy .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-tzVWDxfxAy .mbr-shop .text-modal .card-description {
  padding-top: 5px;
  display: block;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 20px;
}
.cid-tzVWDxfxAy .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-tzVWDxfxAy .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-tzVWDxfxAy .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-tzVWDxfxAy .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-tzVWDxfxAy .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 30%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-tzVWDxfxAy .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 20px;
  background-color: #cccccc;
  right: 55%;
  top: 25%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-tzVWDxfxAy .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-tzVWDxfxAy .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-tzVWDxfxAy .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-tzVWDxfxAy .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-tzVWDxfxAy .mbr-shop .shop-items .onsale,
.cid-tzVWDxfxAy .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-tzVWDxfxAy .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-tzVWDxfxAy .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-tzVWDxfxAy .mbr-shop .price-range {
  display: inline-block;
}
.cid-tzVWDxfxAy .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-tzVWDxfxAy .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-tzVWDxfxAy .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-tzVWDxfxAy .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-tzVWDxfxAy .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-tzVWDxfxAy .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-tzVWDxfxAy .mbr-shop .onsale {
    position: absolute;
    top: 5px;
    right: 5px;
  }
  .cid-tzVWDxfxAy .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-tzVWDxfxAy .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-tzVWDxfxAy .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-tzVWDxfxAy .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-tzVWDxfxAy .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-tzVWDxfxAy .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-tzVWDxfxAy .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-tzVWDxfxAy .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-tzVWDxfxAy .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tzVWDxfxAy .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-tzVWDxfxAy .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-tzVWDxfxAy .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-tzVWDxfxAy .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-tzVWDxfxAy .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tzVWDxfxAy .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-tzVWDxfxAy .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-tzVWDxfxAy .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-tzVWDxfxAy .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-tzVWDxfxAy .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-tzVWDxfxAy .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-tzVWDxfxAy .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-tzVWDxfxAy .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-tzVWDxfxAy .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-tzVWDxfxAy .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-tzVWDxfxAy .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-tzVWDxfxAy .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-tzVWDxfxAy .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-tzVWDxfxAy .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzVWDxfxAy .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-tzVWDxfxAy .onsale {
  color: #ffffff;
}
.cid-tzVWDxfxAy .item-title {
  font-size: 20px;
  color: #7f1933;
}
.cid-tzVWDxfxAy .shop-item-price,
.cid-tzVWDxfxAy .price-block {
  margin-top: -10px;
  font-size: 25px;
  color: #232323;
}
.cid-tzVWDxfxAy .card-description {
  color: #232323;
}
.cid-tzVVTmZjzs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/collage-1-1000x1000.jpg");
}
.cid-tzVVTmZjzs h2 {
  color: #ffffff;
}
.cid-tzVVTnoBD1 {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzVYvR11mt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fondouppercut2-1-1500x1000.jpeg");
}
.cid-tzVYvR11mt .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-tzVYvR11mt .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tzVYvR11mt:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tzVYvR11mt .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tzVYvR11mt .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tzVYvR11mt .text-block {
  text-align: center !important;
}
.cid-tzVYvR11mt SPAN {
  color: #ffffff;
}
.cid-tzVVTo4N6d {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u2wvQzNwdc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fondo-suavecito-2000x1004.jpeg");
}
.cid-u2wvQzNwdc .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-u2wvQzNwdc .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-u2wvQzNwdc:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-u2wvQzNwdc .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-u2wvQzNwdc .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-u2wvQzNwdc .text-block {
  text-align: center !important;
}
.cid-u2wvQzNwdc SPAN {
  color: #ffffff;
}
.cid-tzVVToZ0By {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzVVTonKeC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/bannerfighters-4-2000x667.jpg");
}
.cid-tzVVTonKeC .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-tzVVTonKeC .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tzVVTonKeC:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tzVVTonKeC .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tzVVTonKeC .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tzVVTonKeC .text-block {
  text-align: center !important;
}
.cid-tzVVTonKeC SPAN {
  color: #ffffff;
}
.cid-tzVVTpFLX1 {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzVVTpkK2j {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fondotheshavingco-2-2000x1499.jpg");
}
.cid-tzVVTpkK2j .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-tzVVTpkK2j .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tzVVTpkK2j:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tzVVTpkK2j .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tzVVTpkK2j .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tzVVTpkK2j .text-block {
  text-align: center !important;
}
.cid-tzVVTpkK2j SPAN {
  color: #ffffff;
}
.cid-tzVVTqUITz {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzVVTpZFe2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hull-commercial-photography-3-2-1198x800.jpg");
}
.cid-tzVVTpZFe2 .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-tzVVTpZFe2 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tzVVTpZFe2:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tzVVTpZFe2 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tzVVTpZFe2 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tzVVTpZFe2 .text-block {
  text-align: center !important;
}
.cid-tzVVTpZFe2 SPAN {
  color: #ffffff;
}
.cid-tSjL3HgXD8 {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzVVTqnCXM .navbar {
  background: #232323;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-tzVVTqnCXM .navbar-dropdown.bg-color.transparent.opened {
  background: #232323;
}
.cid-tzVVTqnCXM a {
  font-style: normal;
}
.cid-tzVVTqnCXM .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tzVVTqnCXM .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tzVVTqnCXM .nav-item:focus,
.cid-tzVVTqnCXM .nav-link:focus {
  outline: none;
}
.cid-tzVVTqnCXM .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tzVVTqnCXM .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tzVVTqnCXM .menu-logo {
  margin-right: auto;
}
.cid-tzVVTqnCXM .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tzVVTqnCXM .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tzVVTqnCXM .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tzVVTqnCXM .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tzVVTqnCXM .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tzVVTqnCXM .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tzVVTqnCXM .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tzVVTqnCXM .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tzVVTqnCXM .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tzVVTqnCXM .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tzVVTqnCXM .dropdown .dropdown-menu {
  background: #232323;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tzVVTqnCXM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tzVVTqnCXM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tzVVTqnCXM .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tzVVTqnCXM .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tzVVTqnCXM .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tzVVTqnCXM .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tzVVTqnCXM .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tzVVTqnCXM .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tzVVTqnCXM .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tzVVTqnCXM .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tzVVTqnCXM .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tzVVTqnCXM button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tzVVTqnCXM button.navbar-toggler:focus {
  outline: none;
}
.cid-tzVVTqnCXM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #219a9f;
}
.cid-tzVVTqnCXM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tzVVTqnCXM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tzVVTqnCXM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tzVVTqnCXM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tzVVTqnCXM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tzVVTqnCXM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tzVVTqnCXM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tzVVTqnCXM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tzVVTqnCXM .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tzVVTqnCXM .collapsed .btn {
  display: flex;
}
.cid-tzVVTqnCXM .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tzVVTqnCXM .collapsed .navbar-collapse.collapsing,
.cid-tzVVTqnCXM .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tzVVTqnCXM .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tzVVTqnCXM .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tzVVTqnCXM .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tzVVTqnCXM .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tzVVTqnCXM .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tzVVTqnCXM .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tzVVTqnCXM .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tzVVTqnCXM .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tzVVTqnCXM .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tzVVTqnCXM .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tzVVTqnCXM .collapsed button.navbar-toggler {
  display: block;
}
.cid-tzVVTqnCXM .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tzVVTqnCXM .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tzVVTqnCXM .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tzVVTqnCXM .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tzVVTqnCXM .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tzVVTqnCXM .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tzVVTqnCXM.navbar-expand {
    flex-direction: column;
  }
  .cid-tzVVTqnCXM img {
    height: 3.8rem !important;
  }
  .cid-tzVVTqnCXM .btn {
    display: flex;
  }
  .cid-tzVVTqnCXM button.navbar-toggler {
    display: block;
  }
  .cid-tzVVTqnCXM .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tzVVTqnCXM .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tzVVTqnCXM .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tzVVTqnCXM .navbar-collapse.collapsing,
  .cid-tzVVTqnCXM .navbar-collapse.show {
    display: block !important;
  }
  .cid-tzVVTqnCXM .navbar-collapse.collapsing .navbar-nav,
  .cid-tzVVTqnCXM .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tzVVTqnCXM .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tzVVTqnCXM .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tzVVTqnCXM .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tzVVTqnCXM .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tzVVTqnCXM .navbar-collapse.collapsing .navbar-buttons,
  .cid-tzVVTqnCXM .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tzVVTqnCXM .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tzVVTqnCXM .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tzVVTqnCXM .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tzVVTqnCXM .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tzVVTqnCXM .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tzVVTqnCXM .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tzVVTqnCXM .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tzVVTqnCXM .navbar-collapse {
  flex-basis: auto;
}
.cid-tzVVTqnCXM .nav-link:hover,
.cid-tzVVTqnCXM .dropdown-item:hover {
  color: #219a9f !important;
}
.cid-tSjL2Dkggk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/img-razor-bros01-1000x6664.jpg");
}
.cid-tSjL2Dkggk .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-tSjL2Dkggk .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tSjL2Dkggk:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tSjL2Dkggk .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tSjL2Dkggk .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tSjL2Dkggk .text-block {
  text-align: center !important;
}
.cid-tSjL2Dkggk SPAN {
  color: #ffffff;
}
.cid-u2wwhZpC7r {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tEmIUPOJTh {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #104f52;
}
.cid-tEmIUPOJTh .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tEmIUPOJTh .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tEmIUPOJTh .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tEmIUPOJTh .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tEmIUPOJTh .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tEmIUPOJTh .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tEmIUPOJTh .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tEmIUPOJTh .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tEmIUPOJTh .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tEmIUPOJTh .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tEmIUPOJTh .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tEmIUPOJTh .media-container-row .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-tEmIUPOJTh .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tEmIUPOJTh .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tEmIUPOJTh foot-menu-item {
  text-align: right;
  color: #767676;
}
.cid-tEmIUPOJTh html {
  overflow-y: hidden;
}
.cid-tEmIUPOJTh html body {
  height: 100%;
  overflow: auto;
}
.cid-tEmIUPOJTh img {
  height: 50px;
}
.cid-tEmIUPOJTh .flotante {
  display: scroll;
  position: fixed;
  z-index: 20000;
  bottom: 20px;
  right: 20px;
}
.cid-qQW1PIqaHP .mbr-figure {
  margin-top: -50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-qQW1PIqaHP .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-qQW1PIqaHP .mbr-figure img {
    width: 90% !important;
  }
}
.cid-qQW1PIqaHP a:link {
  text-decoration: none;
}
.cid-qQW1PIqaHP .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-qQW1PIqaHP .icon-transition span:hover {
  color: #219A9F;
}
.cid-qQW1PIqaHP .inner-text {
  line-height: 3em;
}
.cid-qQW1PIqaHP .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-qQW1PIqaHP .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qQW1PIqaHP .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-qQW1PIqaHP .content-text,
.cid-qQW1PIqaHP .inner-text {
  color: #c1c1c1;
}
.cid-tA2GJVRdBb {
  background-image: url("../../../assets/images/fondouppercut2-1-1500x1000.jpeg");
}
.cid-tA2GJVRdBb .mbr-figure {
  margin-top: -50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-tA2GJVRdBb .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tA2GJVRdBb .mbr-figure img {
    width: 90% !important;
  }
}
.cid-tA2GJVRdBb a:link {
  text-decoration: none;
}
.cid-tA2GJVRdBb .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tA2GJVRdBb .icon-transition span:hover {
  color: #219A9F;
}
.cid-tA2GJVRdBb .inner-text {
  line-height: 3em;
}
.cid-tA2GJVRdBb .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-tA2GJVRdBb .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tA2GJVRdBb .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-tA2GJVRdBb .content-text,
.cid-tA2GJVRdBb .inner-text {
  color: #c1c1c1;
}
.cid-tA2GJVRdBb .mbr-text,
.cid-tA2GJVRdBb .mbr-section-btn {
  color: #ffffff;
}
.cid-rMs0gh8aSl {
  background-image: url("../../../assets/images/bannerhuntandhustle-2000x1335.jpg");
}
.cid-rMs0gh8aSl .mbr-figure {
  margin-top: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-rMs0gh8aSl .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-rMs0gh8aSl .mbr-figure img {
    width: 80% !important;
  }
}
.cid-rMs0gh8aSl a:link {
  text-decoration: none;
}
.cid-rMs0gh8aSl .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-rMs0gh8aSl .icon-transition span:hover {
  color: #E73E3D;
}
.cid-rMs0gh8aSl .inner-text {
  line-height: 0em;
}
.cid-rMs0gh8aSl .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-rMs0gh8aSl .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 80px;
}
.cid-rMs0gh8aSl .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-rMs0gh8aSl .content-text,
.cid-rMs0gh8aSl .inner-text {
  color: #c1c1c1;
}
.cid-rMs0gh8aSl .content-container .btn-bgr {
  z-index: 0;
}
.cid-rMs0gh8aSl .box-item-text {
  color: #232323;
}
.cid-rMs0gh8aSl .box-item {
  padding: 2.5rem;
  margin-bottom: -3rem;
  margin-top: 2.5rem;
}
.cid-rMs0gh8aSl .box-item:first-child {
  background-color: #ffffff;
}
.cid-rMs0gh8aSl .box-item:nth-child(2) {
  background-color: #232323;
}
.cid-rMs0gh8aSl .box-item:last-child {
  background-color: #ffffff;
}
.cid-rMs0gh8aSl .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-rMs0gh8aSl .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-rMs0gh8aSl .box-list li:last-child {
  border-bottom: none;
}
.cid-rMs0gh8aSl .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-rMs0gh8aSl .mbr-iconfont {
  color: #66458e;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-rMs0gh8aSl .media-container-row {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-rMs0gh8aSl .mbr-section-subtitle,
  .cid-rMs0gh8aSl .mbr-section-title,
  .cid-rMs0gh8aSl .mbr-text,
  .cid-rMs0gh8aSl .mbr-section-btn,
  .cid-rMs0gh8aSl .icon-block-top,
  .cid-rMs0gh8aSl .box-item-title,
  .cid-rMs0gh8aSl .box-item-text {
    text-align: center !important;
  }
}
.cid-rMs0gh8aSl .icon-block-top,
.cid-rMs0gh8aSl .box-item-title {
  color: #232323;
}
.cid-rMs0gh8aSl .box-item-text FONT {
  color: #ffffff;
}
.cid-rMs0gh8aSl .icon-block-top,
.cid-rMs0gh8aSl .box-item-title FONT {
  color: #ffffff;
}
.cid-rMs0giSS1f {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-rMs0giSS1f .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rMs0giSS1f .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rMs0giSS1f:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rMs0giSS1f .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rMs0giSS1f .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rMs0giSS1f .text-block {
  text-align: center !important;
}
.cid-rMs0giSS1f SPAN {
  color: #ffffff;
}
.cid-rMs0gjAfdX {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 992px) {
  .cid-rMs0gjAfdX .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rMs0gjAfdX .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rMs0gjAfdX .mbr-text {
    text-align: center;
  }
}
.cid-rMs0gknuxL {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rMs0gknuxL .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rMs0gknuxL .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rMs0gknuxL:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rMs0gknuxL .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rMs0gknuxL .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rMs0gknuxL .text-block {
  text-align: center !important;
}
.cid-rMs0gknuxL SPAN {
  color: #232323;
}
.cid-tzFGLEqeVS {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tzFGLEqeVS .mbr-shop {
  display: table;
  width: 100%;
}
.cid-tzFGLEqeVS .mbr-shop .row {
  margin: 0;
}
.cid-tzFGLEqeVS .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-tzFGLEqeVS .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-tzFGLEqeVS .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-tzFGLEqeVS .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-tzFGLEqeVS .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-tzFGLEqeVS .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-tzFGLEqeVS .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-tzFGLEqeVS .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-tzFGLEqeVS .mbr-shop .hide-modal {
  display: none;
}
.cid-tzFGLEqeVS .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-tzFGLEqeVS .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-tzFGLEqeVS .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-tzFGLEqeVS .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-tzFGLEqeVS .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-tzFGLEqeVS .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-tzFGLEqeVS .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-tzFGLEqeVS .mbr-shop .filter-by-pu,
.cid-tzFGLEqeVS .mbr-shop .filter-by-pd,
.cid-tzFGLEqeVS .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-tzFGLEqeVS .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-tzFGLEqeVS .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-tzFGLEqeVS .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-tzFGLEqeVS .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-tzFGLEqeVS .mbr-shop .galleryItem h4,
.cid-tzFGLEqeVS .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-tzFGLEqeVS .mbr-shop .galleryItem h5,
.cid-tzFGLEqeVS .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-tzFGLEqeVS .mbr-shop .galleryItem p,
.cid-tzFGLEqeVS .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-tzFGLEqeVS .mbr-shop .item-button {
  text-align: center;
}
.cid-tzFGLEqeVS .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-tzFGLEqeVS .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-tzFGLEqeVS .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-tzFGLEqeVS .mbr-shop .sidebar-block {
  position: relative;
}
.cid-tzFGLEqeVS .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-tzFGLEqeVS .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-tzFGLEqeVS .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-tzFGLEqeVS .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-tzFGLEqeVS .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-tzFGLEqeVS .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-tzFGLEqeVS .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-tzFGLEqeVS .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-tzFGLEqeVS .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-tzFGLEqeVS .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-tzFGLEqeVS .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-tzFGLEqeVS .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-tzFGLEqeVS .mbr-shop .onsale {
  position: absolute;
  top: 25px;
  right: 25px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #e73e3d;
  border-radius: 6px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-tzFGLEqeVS .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-tzFGLEqeVS .mbr-shop .mbr-gallery-item__hided h4,
.cid-tzFGLEqeVS .mbr-shop .mbr-gallery-item__hided h5,
.cid-tzFGLEqeVS .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-tzFGLEqeVS .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-tzFGLEqeVS .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-tzFGLEqeVS .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-tzFGLEqeVS .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-tzFGLEqeVS .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-tzFGLEqeVS .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-tzFGLEqeVS .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-tzFGLEqeVS .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-tzFGLEqeVS .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-tzFGLEqeVS .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-tzFGLEqeVS .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-tzFGLEqeVS .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-tzFGLEqeVS .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-tzFGLEqeVS .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-tzFGLEqeVS .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-tzFGLEqeVS .mbr-shop .range-controls {
  position: relative;
}
.cid-tzFGLEqeVS .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-tzFGLEqeVS .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-tzFGLEqeVS .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-tzFGLEqeVS .mbr-shop .toggle:hover,
.cid-tzFGLEqeVS .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-tzFGLEqeVS .mbr-shop .min-toggle {
  left: 0;
}
.cid-tzFGLEqeVS .mbr-shop .max-toggle {
  right: 0;
}
.cid-tzFGLEqeVS .mbr-shop .hided-by-price {
  display: none;
}
.cid-tzFGLEqeVS .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-tzFGLEqeVS .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-tzFGLEqeVS .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-tzFGLEqeVS .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-tzFGLEqeVS .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-tzFGLEqeVS .mbr-shop .text-modal .card-description {
  padding-top: 5px;
  display: block;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 20px;
}
.cid-tzFGLEqeVS .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-tzFGLEqeVS .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-tzFGLEqeVS .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-tzFGLEqeVS .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-tzFGLEqeVS .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 30%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-tzFGLEqeVS .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 20px;
  background-color: #cccccc;
  right: 55%;
  top: 25%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-tzFGLEqeVS .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-tzFGLEqeVS .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-tzFGLEqeVS .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-tzFGLEqeVS .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-tzFGLEqeVS .mbr-shop .shop-items .onsale,
.cid-tzFGLEqeVS .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-tzFGLEqeVS .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-tzFGLEqeVS .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-tzFGLEqeVS .mbr-shop .price-range {
  display: inline-block;
}
.cid-tzFGLEqeVS .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-tzFGLEqeVS .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-tzFGLEqeVS .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-tzFGLEqeVS .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-tzFGLEqeVS .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-tzFGLEqeVS .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-tzFGLEqeVS .mbr-shop .onsale {
    position: absolute;
    top: 5px;
    right: 5px;
  }
  .cid-tzFGLEqeVS .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-tzFGLEqeVS .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-tzFGLEqeVS .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-tzFGLEqeVS .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-tzFGLEqeVS .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-tzFGLEqeVS .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-tzFGLEqeVS .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-tzFGLEqeVS .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-tzFGLEqeVS .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tzFGLEqeVS .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-tzFGLEqeVS .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-tzFGLEqeVS .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-tzFGLEqeVS .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-tzFGLEqeVS .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tzFGLEqeVS .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-tzFGLEqeVS .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-tzFGLEqeVS .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-tzFGLEqeVS .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-tzFGLEqeVS .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-tzFGLEqeVS .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-tzFGLEqeVS .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-tzFGLEqeVS .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-tzFGLEqeVS .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-tzFGLEqeVS .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-tzFGLEqeVS .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-tzFGLEqeVS .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-tzFGLEqeVS .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-tzFGLEqeVS .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-tzFGLEqeVS .range-controls {
  display: block !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tzFGLEqeVS .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-tzFGLEqeVS .onsale {
  color: #ffffff;
}
.cid-tzFGLEqeVS .item-title {
  font-size: 20px;
  color: #e73e3d;
}
.cid-tzFGLEqeVS .shop-item-price,
.cid-tzFGLEqeVS .price-block {
  margin-top: -10px;
  font-size: 25px;
  color: #232323;
}
.cid-tzFGLEqeVS .card-description {
  color: #232323;
}
.cid-rMs0gnzhCg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/collage-1-1000x1000.jpg");
}
.cid-rMs0gnzhCg h2 {
  color: #ffffff;
}
.cid-rSey7QHjrQ {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rMs26dRi0H {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/banner-prospectors-958x602.jpg");
}
.cid-rMs26dRi0H .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rMs26dRi0H .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rMs26dRi0H:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rMs26dRi0H .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rMs26dRi0H .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rMs26dRi0H .text-block {
  text-align: center !important;
}
.cid-rMs26dRi0H SPAN {
  color: #ffffff;
}
.cid-rSey8wzEPA {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rMs0gpdKS9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fondouppercut2-1-1500x1000.jpeg");
}
.cid-rMs0gpdKS9 .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rMs0gpdKS9 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rMs0gpdKS9:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rMs0gpdKS9 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rMs0gpdKS9 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rMs0gpdKS9 .text-block {
  text-align: center !important;
}
.cid-rMs0gpdKS9 SPAN {
  color: #ffffff;
}
.cid-rSey9acjQo {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u2wzrZYb3w {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fondo-suavecito-2000x1004.jpeg");
}
.cid-u2wzrZYb3w .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-u2wzrZYb3w .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-u2wzrZYb3w:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-u2wzrZYb3w .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-u2wzrZYb3w .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-u2wzrZYb3w .text-block {
  text-align: center !important;
}
.cid-u2wzrZYb3w SPAN {
  color: #ffffff;
}
.cid-rSey9Nq6Ys {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rMs0gr88bm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/bannerfighters-4-2000x667.jpg");
}
.cid-rMs0gr88bm .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rMs0gr88bm .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rMs0gr88bm:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rMs0gr88bm .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rMs0gr88bm .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rMs0gr88bm .text-block {
  text-align: center !important;
}
.cid-rMs0gr88bm SPAN {
  color: #ffffff;
}
.cid-rSeyanSGWz {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rMs0gsW4oG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fondotheshavingco-2-2000x1499.jpg");
}
.cid-rMs0gsW4oG .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-rMs0gsW4oG .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-rMs0gsW4oG:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-rMs0gsW4oG .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-rMs0gsW4oG .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-rMs0gsW4oG .text-block {
  text-align: center !important;
}
.cid-rMs0gsW4oG SPAN {
  color: #ffffff;
}
.cid-tSjMlB3UoP {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSp7Sd8VRF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/img-razor-bros01-1000x666.jpg");
}
.cid-tSp7Sd8VRF .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-tSp7Sd8VRF .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tSp7Sd8VRF:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tSp7Sd8VRF .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tSp7Sd8VRF .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tSp7Sd8VRF .text-block {
  text-align: center !important;
}
.cid-tSp7Sd8VRF SPAN {
  color: #ffffff;
}
.cid-u2wzKRe0iK {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tEmJ9Ek2cO {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #104f52;
}
.cid-tEmJ9Ek2cO .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tEmJ9Ek2cO .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tEmJ9Ek2cO .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tEmJ9Ek2cO .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tEmJ9Ek2cO .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tEmJ9Ek2cO .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tEmJ9Ek2cO .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tEmJ9Ek2cO .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tEmJ9Ek2cO .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tEmJ9Ek2cO .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tEmJ9Ek2cO .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tEmJ9Ek2cO .media-container-row .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-tEmJ9Ek2cO .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tEmJ9Ek2cO .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tEmJ9Ek2cO foot-menu-item {
  text-align: right;
  color: #767676;
}
.cid-tEmJ9Ek2cO html {
  overflow-y: hidden;
}
.cid-tEmJ9Ek2cO html body {
  height: 100%;
  overflow: auto;
}
.cid-tEmJ9Ek2cO img {
  height: 50px;
}
.cid-tEmJ9Ek2cO .flotante {
  display: scroll;
  position: fixed;
  z-index: 20000;
  bottom: 20px;
  right: 20px;
}
.cid-rMs0gxRkX9 .navbar {
  background: #232323;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rMs0gxRkX9 .navbar-dropdown.bg-color.transparent.opened {
  background: #232323;
}
.cid-rMs0gxRkX9 a {
  font-style: normal;
}
.cid-rMs0gxRkX9 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rMs0gxRkX9 .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rMs0gxRkX9 .nav-item:focus,
.cid-rMs0gxRkX9 .nav-link:focus {
  outline: none;
}
.cid-rMs0gxRkX9 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rMs0gxRkX9 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rMs0gxRkX9 .menu-logo {
  margin-right: auto;
}
.cid-rMs0gxRkX9 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-rMs0gxRkX9 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rMs0gxRkX9 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rMs0gxRkX9 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rMs0gxRkX9 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rMs0gxRkX9 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rMs0gxRkX9 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rMs0gxRkX9 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rMs0gxRkX9 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMs0gxRkX9 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rMs0gxRkX9 .dropdown .dropdown-menu {
  background: #232323;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rMs0gxRkX9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rMs0gxRkX9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rMs0gxRkX9 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rMs0gxRkX9 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMs0gxRkX9 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rMs0gxRkX9 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rMs0gxRkX9 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rMs0gxRkX9 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rMs0gxRkX9 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rMs0gxRkX9 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rMs0gxRkX9 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rMs0gxRkX9 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rMs0gxRkX9 button.navbar-toggler:focus {
  outline: none;
}
.cid-rMs0gxRkX9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #219a9f;
}
.cid-rMs0gxRkX9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMs0gxRkX9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMs0gxRkX9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMs0gxRkX9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMs0gxRkX9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMs0gxRkX9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMs0gxRkX9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMs0gxRkX9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMs0gxRkX9 .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rMs0gxRkX9 .collapsed .btn {
  display: flex;
}
.cid-rMs0gxRkX9 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rMs0gxRkX9 .collapsed .navbar-collapse.collapsing,
.cid-rMs0gxRkX9 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rMs0gxRkX9 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rMs0gxRkX9 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rMs0gxRkX9 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rMs0gxRkX9 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rMs0gxRkX9 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rMs0gxRkX9 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rMs0gxRkX9 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rMs0gxRkX9 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rMs0gxRkX9 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rMs0gxRkX9 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rMs0gxRkX9 .collapsed button.navbar-toggler {
  display: block;
}
.cid-rMs0gxRkX9 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rMs0gxRkX9 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rMs0gxRkX9 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rMs0gxRkX9 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rMs0gxRkX9 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rMs0gxRkX9 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rMs0gxRkX9.navbar-expand {
    flex-direction: column;
  }
  .cid-rMs0gxRkX9 img {
    height: 3.8rem !important;
  }
  .cid-rMs0gxRkX9 .btn {
    display: flex;
  }
  .cid-rMs0gxRkX9 button.navbar-toggler {
    display: block;
  }
  .cid-rMs0gxRkX9 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rMs0gxRkX9 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rMs0gxRkX9 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rMs0gxRkX9 .navbar-collapse.collapsing,
  .cid-rMs0gxRkX9 .navbar-collapse.show {
    display: block !important;
  }
  .cid-rMs0gxRkX9 .navbar-collapse.collapsing .navbar-nav,
  .cid-rMs0gxRkX9 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rMs0gxRkX9 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rMs0gxRkX9 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rMs0gxRkX9 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rMs0gxRkX9 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rMs0gxRkX9 .navbar-collapse.collapsing .navbar-buttons,
  .cid-rMs0gxRkX9 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rMs0gxRkX9 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rMs0gxRkX9 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rMs0gxRkX9 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rMs0gxRkX9 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rMs0gxRkX9 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rMs0gxRkX9 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rMs0gxRkX9 .menu-logo {
    flex-shrink: 0;
  }
}
.cid-rMs0gxRkX9 .navbar-collapse {
  flex-basis: auto;
}
.cid-rMs0gxRkX9 .nav-link:hover,
.cid-rMs0gxRkX9 .dropdown-item:hover {
  color: #219a9f !important;
}
.cid-tA2JqHZQwj {
  background-image: url("../../../assets/images/banner-prospectors-958x602.jpg");
}
.cid-tA2JqHZQwj .mbr-figure {
  margin-top: -50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-tA2JqHZQwj .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tA2JqHZQwj .mbr-figure img {
    width: 90% !important;
  }
}
.cid-tA2JqHZQwj a:link {
  text-decoration: none;
}
.cid-tA2JqHZQwj .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tA2JqHZQwj .icon-transition span:hover {
  color: #219A9F;
}
.cid-tA2JqHZQwj .inner-text {
  line-height: 3em;
}
.cid-tA2JqHZQwj .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-tA2JqHZQwj .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tA2JqHZQwj .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-tA2JqHZQwj .content-text,
.cid-tA2JqHZQwj .inner-text {
  color: #c1c1c1;
}
.cid-tA2JqHZQwj .mbr-text,
.cid-tA2JqHZQwj .mbr-section-btn {
  color: #ffffff;
}
.cid-tA2NcYV1LY {
  background-image: url("../../../assets/images/bannerfighters-2000x1571.jpg");
}
.cid-tA2NcYV1LY .mbr-figure {
  margin-top: -50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-tA2NcYV1LY .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tA2NcYV1LY .mbr-figure img {
    width: 90% !important;
  }
}
.cid-tA2NcYV1LY a:link {
  text-decoration: none;
}
.cid-tA2NcYV1LY .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tA2NcYV1LY .icon-transition span:hover {
  color: #219A9F;
}
.cid-tA2NcYV1LY .inner-text {
  line-height: 3em;
}
.cid-tA2NcYV1LY .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-tA2NcYV1LY .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tA2NcYV1LY .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-tA2NcYV1LY .content-text,
.cid-tA2NcYV1LY .inner-text {
  color: #c1c1c1;
}
.cid-tA2NcYV1LY .mbr-text,
.cid-tA2NcYV1LY .mbr-section-btn {
  color: #ffffff;
}
.cid-tA2OBYURI2 {
  background-image: url("../../../assets/images/hull-commercial-photography-3-2-1198x800.jpg");
}
.cid-tA2OBYURI2 .mbr-figure {
  margin-top: -50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-tA2OBYURI2 .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tA2OBYURI2 .mbr-figure img {
    width: 90% !important;
  }
}
.cid-tA2OBYURI2 a:link {
  text-decoration: none;
}
.cid-tA2OBYURI2 .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tA2OBYURI2 .icon-transition span:hover {
  color: #219A9F;
}
.cid-tA2OBYURI2 .inner-text {
  line-height: 3em;
}
.cid-tA2OBYURI2 .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-tA2OBYURI2 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tA2OBYURI2 .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-tA2OBYURI2 .content-text,
.cid-tA2OBYURI2 .inner-text {
  color: #c1c1c1;
}
.cid-tA2OBYURI2 .mbr-text,
.cid-tA2OBYURI2 .mbr-section-btn {
  color: #ffffff;
}
.cid-tA2PyPkso0 {
  background-image: url("../../../assets/images/fondotheshavingco-2-2000x1499.jpg");
}
.cid-tA2PyPkso0 .mbr-figure {
  margin-top: -50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-tA2PyPkso0 .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tA2PyPkso0 .mbr-figure img {
    width: 90% !important;
  }
}
.cid-tA2PyPkso0 a:link {
  text-decoration: none;
}
.cid-tA2PyPkso0 .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tA2PyPkso0 .icon-transition span:hover {
  color: #219A9F;
}
.cid-tA2PyPkso0 .inner-text {
  line-height: 3em;
}
.cid-tA2PyPkso0 .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-tA2PyPkso0 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tA2PyPkso0 .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-tA2PyPkso0 .content-text,
.cid-tA2PyPkso0 .inner-text {
  color: #c1c1c1;
}
.cid-tA2PyPkso0 .mbr-text,
.cid-tA2PyPkso0 .mbr-section-btn {
  color: #ffffff;
}
.cid-tSjBaU9jM0 {
  background-image: url("../../../assets/images/banneertakarabelmont-2000x1821.jpeg");
}
.cid-tSjBaU9jM0 .mbr-figure {
  margin-top: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-tSjBaU9jM0 .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tSjBaU9jM0 .mbr-figure img {
    width: 80% !important;
  }
}
.cid-tSjBaU9jM0 a:link {
  text-decoration: none;
}
.cid-tSjBaU9jM0 .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tSjBaU9jM0 .icon-transition span:hover {
  color: #CB9931;
}
.cid-tSjBaU9jM0 .inner-text {
  line-height: 0em;
}
.cid-tSjBaU9jM0 .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-tSjBaU9jM0 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 80px;
}
.cid-tSjBaU9jM0 .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-tSjBaU9jM0 .content-text,
.cid-tSjBaU9jM0 .inner-text {
  color: #c1c1c1;
}
.cid-tSjBaU9jM0 .content-container .btn-bgr {
  z-index: 0;
}
.cid-tSjBaU9jM0 .box-item-text {
  color: #232323;
}
.cid-tSjBaU9jM0 .box-item {
  padding: 2.5rem;
  margin-bottom: -3rem;
  margin-top: 2.5rem;
}
.cid-tSjBaU9jM0 .box-item:first-child {
  background-color: #ffffff;
}
.cid-tSjBaU9jM0 .box-item:nth-child(2) {
  background-color: #232323;
}
.cid-tSjBaU9jM0 .box-item:last-child {
  background-color: #ffffff;
}
.cid-tSjBaU9jM0 .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-tSjBaU9jM0 .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-tSjBaU9jM0 .box-list li:last-child {
  border-bottom: none;
}
.cid-tSjBaU9jM0 .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-tSjBaU9jM0 .mbr-iconfont {
  color: #66458e;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-tSjBaU9jM0 .media-container-row {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-tSjBaU9jM0 .mbr-section-subtitle,
  .cid-tSjBaU9jM0 .mbr-section-title,
  .cid-tSjBaU9jM0 .mbr-text,
  .cid-tSjBaU9jM0 .mbr-section-btn,
  .cid-tSjBaU9jM0 .icon-block-top,
  .cid-tSjBaU9jM0 .box-item-title,
  .cid-tSjBaU9jM0 .box-item-text {
    text-align: center !important;
  }
}
.cid-tSjBaU9jM0 .icon-block-top,
.cid-tSjBaU9jM0 .box-item-title {
  color: #232323;
}
.cid-tSjBaU9jM0 .box-item-text FONT {
  color: #ffffff;
}
.cid-tSjBaU9jM0 .icon-block-top,
.cid-tSjBaU9jM0 .box-item-title FONT {
  color: #ffffff;
}
.cid-tSjBaY2Iqp {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tSjBaY2Iqp .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-tSjBaY2Iqp .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tSjBaY2Iqp:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tSjBaY2Iqp .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tSjBaY2Iqp .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tSjBaY2Iqp .text-block {
  text-align: center !important;
}
.cid-tSjBaY2Iqp SPAN {
  color: #ffffff;
}
.cid-tSph2jhENW {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 992px) {
  .cid-tSph2jhENW .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tSph2jhENW .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tSph2jhENW .mbr-text {
    text-align: center;
  }
}
.cid-tSjBaZ4Lkt {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSjBaZ4Lkt .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-tSjBaZ4Lkt .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tSjBaZ4Lkt:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tSjBaZ4Lkt .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tSjBaZ4Lkt .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tSjBaZ4Lkt .text-block {
  text-align: center !important;
}
.cid-tSjBaZ4Lkt SPAN {
  color: #232323;
}
.cid-tSk98evGUT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tSk98evGUT .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tSk98evGUT .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tSk98evGUT .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tSk98evGUT .mbr-text {
    text-align: center;
  }
}
.cid-tSk98evGUT H1 {
  color: #232323;
}
.cid-tSk98evGUT .mbr-text,
.cid-tSk98evGUT .mbr-section-btn {
  color: #232323;
}
.cid-tSk98evGUT H3 {
  margin-top: -20px;
  color: #232323;
}
.cid-tSkMah8bys {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #232323;
}
@media (min-width: 992px) {
  .cid-tSkMah8bys .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tSkMah8bys .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tSkMah8bys .mbr-text {
    text-align: center;
  }
}
.cid-tSkMah8bys H1 {
  color: #ffffff;
}
.cid-tSkMah8bys .mbr-text,
.cid-tSkMah8bys .mbr-section-btn {
  color: #ffffff;
}
.cid-tSkMah8bys H3 {
  margin-top: -20px;
  color: #ffffff;
}
.cid-tSkRuxoe0q {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tSkRuxoe0q .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tSkRuxoe0q .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tSkRuxoe0q .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tSkRuxoe0q .mbr-text {
    text-align: center;
  }
}
.cid-tSkRuxoe0q H1 {
  color: #232323;
}
.cid-tSkRuxoe0q .mbr-text,
.cid-tSkRuxoe0q .mbr-section-btn {
  color: #232323;
}
.cid-tSkRuxoe0q H3 {
  margin-top: -20px;
  color: #232323;
}
.cid-tSkWzCmgW0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #232323;
}
@media (min-width: 992px) {
  .cid-tSkWzCmgW0 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tSkWzCmgW0 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tSkWzCmgW0 .mbr-text {
    text-align: center;
  }
}
.cid-tSkWzCmgW0 H1 {
  color: #ffffff;
}
.cid-tSkWzCmgW0 .mbr-text,
.cid-tSkWzCmgW0 .mbr-section-btn {
  color: #ffffff;
}
.cid-tSkWzCmgW0 H3 {
  margin-top: -20px;
  color: #ffffff;
}
.cid-tSl0DCVcai {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tSl0DCVcai .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tSl0DCVcai .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tSl0DCVcai .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tSl0DCVcai .mbr-text {
    text-align: center;
  }
}
.cid-tSl0DCVcai H1 {
  color: #232323;
}
.cid-tSl0DCVcai .mbr-text,
.cid-tSl0DCVcai .mbr-section-btn {
  color: #232323;
}
.cid-tSl0DCVcai H3 {
  margin-top: -20px;
  color: #232323;
}
.cid-tSl37lA8RB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #232323;
}
@media (min-width: 992px) {
  .cid-tSl37lA8RB .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tSl37lA8RB .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tSl37lA8RB .mbr-text {
    text-align: center;
  }
}
.cid-tSl37lA8RB H1 {
  color: #ffffff;
}
.cid-tSl37lA8RB .mbr-text,
.cid-tSl37lA8RB .mbr-section-btn {
  color: #ffffff;
}
.cid-tSl37lA8RB H3 {
  margin-top: -20px;
  color: #ffffff;
}
.cid-tSla4Wkm6J {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tSla4Wkm6J .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tSla4Wkm6J .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tSla4Wkm6J .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tSla4Wkm6J .mbr-text {
    text-align: center;
  }
}
.cid-tSla4Wkm6J H1 {
  color: #232323;
}
.cid-tSla4Wkm6J .mbr-text,
.cid-tSla4Wkm6J .mbr-section-btn {
  color: #232323;
}
.cid-tSla4Wkm6J H3 {
  margin-top: -20px;
  color: #232323;
}
.cid-tSoVYTuIKW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #232323;
}
@media (min-width: 992px) {
  .cid-tSoVYTuIKW .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tSoVYTuIKW .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tSoVYTuIKW .mbr-text {
    text-align: center;
  }
}
.cid-tSoVYTuIKW H1 {
  color: #ffffff;
}
.cid-tSoVYTuIKW .mbr-text,
.cid-tSoVYTuIKW .mbr-section-btn {
  color: #ffffff;
}
.cid-tSoVYTuIKW H3 {
  margin-top: -20px;
  color: #ffffff;
}
.cid-tSp066vo2v {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tSp066vo2v .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-tSp066vo2v .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tSp066vo2v .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tSp066vo2v .mbr-text {
    text-align: center;
  }
}
.cid-tSp066vo2v H1 {
  color: #232323;
}
.cid-tSp066vo2v .mbr-text,
.cid-tSp066vo2v .mbr-section-btn {
  color: #232323;
}
.cid-tSp066vo2v H3 {
  margin-top: -20px;
  color: #232323;
}
.cid-tSjBb23232 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/collage-1-1000x1000.jpg");
}
.cid-tSjBb23232 h2 {
  color: #ffffff;
}
.cid-tSjBb2qN88 {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSjBb2Gsd5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/banner-prospectors-958x602.jpg");
}
.cid-tSjBb2Gsd5 .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-tSjBb2Gsd5 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tSjBb2Gsd5:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tSjBb2Gsd5 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tSjBb2Gsd5 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tSjBb2Gsd5 .text-block {
  text-align: center !important;
}
.cid-tSjBb2Gsd5 SPAN {
  color: #ffffff;
}
.cid-tSjBb2XBEC {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSjBb3a1Yd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fondouppercut2-1-1500x1000.jpeg");
}
.cid-tSjBb3a1Yd .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-tSjBb3a1Yd .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tSjBb3a1Yd:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tSjBb3a1Yd .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tSjBb3a1Yd .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tSjBb3a1Yd .text-block {
  text-align: center !important;
}
.cid-tSjBb3a1Yd SPAN {
  color: #ffffff;
}
.cid-tSjBb3rREB {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u2wAVagojs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fondo-suavecito-2000x1004.jpeg");
}
.cid-u2wAVagojs .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-u2wAVagojs .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-u2wAVagojs:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-u2wAVagojs .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-u2wAVagojs .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-u2wAVagojs .text-block {
  text-align: center !important;
}
.cid-u2wAVagojs SPAN {
  color: #ffffff;
}
.cid-tSjBb4rPTb {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSjBb3Il3z {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/bannerfighters-4-2000x667.jpg");
}
.cid-tSjBb3Il3z .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-tSjBb3Il3z .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tSjBb3Il3z:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tSjBb3Il3z .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tSjBb3Il3z .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tSjBb3Il3z .text-block {
  text-align: center !important;
}
.cid-tSjBb3Il3z SPAN {
  color: #ffffff;
}
.cid-tSjBb3Yi8w {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSjK6R726D {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fondotheshavingco-2-2000x1499.jpg");
}
.cid-tSjK6R726D .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-tSjK6R726D .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tSjK6R726D:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tSjK6R726D .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tSjK6R726D .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tSjK6R726D .text-block {
  text-align: center !important;
}
.cid-tSjK6R726D SPAN {
  color: #ffffff;
}
.cid-tSjKhvGzeB {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSjBb4bp19 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hull-commercial-photography-3-2-1198x800.jpg");
}
.cid-tSjBb4bp19 .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-tSjBb4bp19 .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-tSjBb4bp19:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-tSjBb4bp19 .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tSjBb4bp19 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-tSjBb4bp19 .text-block {
  text-align: center !important;
}
.cid-tSjBb4bp19 SPAN {
  color: #ffffff;
}
.cid-u2wB31c9dp {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tSjBb4D69a {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #104f52;
}
.cid-tSjBb4D69a .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tSjBb4D69a .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tSjBb4D69a .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tSjBb4D69a .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tSjBb4D69a .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tSjBb4D69a .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tSjBb4D69a .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tSjBb4D69a .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tSjBb4D69a .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tSjBb4D69a .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tSjBb4D69a .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tSjBb4D69a .media-container-row .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-tSjBb4D69a .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tSjBb4D69a .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tSjBb4D69a foot-menu-item {
  text-align: right;
  color: #767676;
}
.cid-tSjBb4D69a html {
  overflow-y: hidden;
}
.cid-tSjBb4D69a html body {
  height: 100%;
  overflow: auto;
}
.cid-tSjBb4D69a img {
  height: 50px;
}
.cid-tSjBb4D69a .flotante {
  display: scroll;
  position: fixed;
  z-index: 20000;
  bottom: 20px;
  right: 20px;
}
.cid-tSjBb5E6og .navbar {
  background: #232323;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-tSjBb5E6og .navbar-dropdown.bg-color.transparent.opened {
  background: #232323;
}
.cid-tSjBb5E6og a {
  font-style: normal;
}
.cid-tSjBb5E6og .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tSjBb5E6og .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tSjBb5E6og .nav-item:focus,
.cid-tSjBb5E6og .nav-link:focus {
  outline: none;
}
.cid-tSjBb5E6og .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tSjBb5E6og .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tSjBb5E6og .menu-logo {
  margin-right: auto;
}
.cid-tSjBb5E6og .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tSjBb5E6og .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tSjBb5E6og .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tSjBb5E6og .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tSjBb5E6og .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tSjBb5E6og .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tSjBb5E6og .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tSjBb5E6og .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tSjBb5E6og .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tSjBb5E6og .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tSjBb5E6og .dropdown .dropdown-menu {
  background: #232323;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tSjBb5E6og .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tSjBb5E6og .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSjBb5E6og .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tSjBb5E6og .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSjBb5E6og .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tSjBb5E6og .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tSjBb5E6og .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tSjBb5E6og .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tSjBb5E6og .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tSjBb5E6og .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tSjBb5E6og .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tSjBb5E6og button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tSjBb5E6og button.navbar-toggler:focus {
  outline: none;
}
.cid-tSjBb5E6og button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #219a9f;
}
.cid-tSjBb5E6og button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tSjBb5E6og button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tSjBb5E6og button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tSjBb5E6og button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tSjBb5E6og nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tSjBb5E6og nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tSjBb5E6og nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tSjBb5E6og nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tSjBb5E6og .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tSjBb5E6og .collapsed .btn {
  display: flex;
}
.cid-tSjBb5E6og .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tSjBb5E6og .collapsed .navbar-collapse.collapsing,
.cid-tSjBb5E6og .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tSjBb5E6og .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tSjBb5E6og .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tSjBb5E6og .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tSjBb5E6og .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tSjBb5E6og .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tSjBb5E6og .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tSjBb5E6og .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tSjBb5E6og .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tSjBb5E6og .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tSjBb5E6og .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tSjBb5E6og .collapsed button.navbar-toggler {
  display: block;
}
.cid-tSjBb5E6og .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tSjBb5E6og .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tSjBb5E6og .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tSjBb5E6og .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tSjBb5E6og .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tSjBb5E6og .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tSjBb5E6og.navbar-expand {
    flex-direction: column;
  }
  .cid-tSjBb5E6og img {
    height: 3.8rem !important;
  }
  .cid-tSjBb5E6og .btn {
    display: flex;
  }
  .cid-tSjBb5E6og button.navbar-toggler {
    display: block;
  }
  .cid-tSjBb5E6og .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tSjBb5E6og .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tSjBb5E6og .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tSjBb5E6og .navbar-collapse.collapsing,
  .cid-tSjBb5E6og .navbar-collapse.show {
    display: block !important;
  }
  .cid-tSjBb5E6og .navbar-collapse.collapsing .navbar-nav,
  .cid-tSjBb5E6og .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tSjBb5E6og .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tSjBb5E6og .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tSjBb5E6og .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tSjBb5E6og .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tSjBb5E6og .navbar-collapse.collapsing .navbar-buttons,
  .cid-tSjBb5E6og .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tSjBb5E6og .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tSjBb5E6og .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tSjBb5E6og .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tSjBb5E6og .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tSjBb5E6og .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tSjBb5E6og .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tSjBb5E6og .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tSjBb5E6og .navbar-collapse {
  flex-basis: auto;
}
.cid-tSjBb5E6og .nav-link:hover,
.cid-tSjBb5E6og .dropdown-item:hover {
  color: #219a9f !important;
}
.cid-u2rxLrhFdc {
  background-image: url("../../../assets/images/fondosuavecito-1920x1284.jpeg");
}
.cid-u2rxLrhFdc .mbr-figure {
  margin-top: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-u2rxLrhFdc .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-u2rxLrhFdc .mbr-figure img {
    width: 80% !important;
  }
}
.cid-u2rxLrhFdc a:link {
  text-decoration: none;
}
.cid-u2rxLrhFdc .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-u2rxLrhFdc .icon-transition span:hover {
  color: #E52326;
}
.cid-u2rxLrhFdc .inner-text {
  line-height: 0em;
}
.cid-u2rxLrhFdc .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-u2rxLrhFdc .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 80px;
}
.cid-u2rxLrhFdc .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-u2rxLrhFdc .content-text,
.cid-u2rxLrhFdc .inner-text {
  color: #c1c1c1;
}
.cid-u2rxLrhFdc .content-container .btn-bgr {
  z-index: 0;
}
.cid-u2rxLrhFdc .box-item-text {
  color: #232323;
}
.cid-u2rxLrhFdc .box-item {
  padding: 2.5rem;
  margin-bottom: -3rem;
  margin-top: 2.5rem;
}
.cid-u2rxLrhFdc .box-item:first-child {
  background-color: #ffffff;
}
.cid-u2rxLrhFdc .box-item:nth-child(2) {
  background-color: #232323;
}
.cid-u2rxLrhFdc .box-item:last-child {
  background-color: #ffffff;
}
.cid-u2rxLrhFdc .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-u2rxLrhFdc .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-u2rxLrhFdc .box-list li:last-child {
  border-bottom: none;
}
.cid-u2rxLrhFdc .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-u2rxLrhFdc .mbr-iconfont {
  color: #66458e;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-u2rxLrhFdc .media-container-row {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-u2rxLrhFdc .mbr-section-subtitle,
  .cid-u2rxLrhFdc .mbr-section-title,
  .cid-u2rxLrhFdc .mbr-text,
  .cid-u2rxLrhFdc .mbr-section-btn,
  .cid-u2rxLrhFdc .icon-block-top,
  .cid-u2rxLrhFdc .box-item-title,
  .cid-u2rxLrhFdc .box-item-text {
    text-align: center !important;
  }
}
.cid-u2rxLrhFdc .icon-block-top,
.cid-u2rxLrhFdc .box-item-title {
  color: #232323;
}
.cid-u2rxLrhFdc .box-item-text FONT {
  color: #ffffff;
}
.cid-u2rxLrhFdc .icon-block-top,
.cid-u2rxLrhFdc .box-item-title FONT {
  color: #ffffff;
}
.cid-u2rxLtXFnZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-u2rxLtXFnZ .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-u2rxLtXFnZ .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-u2rxLtXFnZ:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-u2rxLtXFnZ .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-u2rxLtXFnZ .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-u2rxLtXFnZ .text-block {
  text-align: center !important;
}
.cid-u2rxLtXFnZ SPAN {
  color: #ffffff;
}
.cid-u2rxLuwzEa {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #232323;
}
@media (min-width: 992px) {
  .cid-u2rxLuwzEa .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-u2rxLuwzEa .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-u2rxLuwzEa .mbr-text {
    text-align: center;
  }
}
.cid-u2rxLuSoQy {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u2rxLuSoQy .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-u2rxLuSoQy .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-u2rxLuSoQy:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-u2rxLuSoQy .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-u2rxLuSoQy .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-u2rxLuSoQy .text-block {
  text-align: center !important;
}
.cid-u2rxLuSoQy SPAN {
  color: #232323;
}
.cid-u5vKftZ4zw {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-u5vKftZ4zw .mbr-shop {
  display: table;
  width: 100%;
}
.cid-u5vKftZ4zw .mbr-shop .row {
  margin: 0;
}
.cid-u5vKftZ4zw .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-u5vKftZ4zw .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-u5vKftZ4zw .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-u5vKftZ4zw .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-u5vKftZ4zw .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-u5vKftZ4zw .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-u5vKftZ4zw .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-u5vKftZ4zw .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-u5vKftZ4zw .mbr-shop .hide-modal {
  display: none;
}
.cid-u5vKftZ4zw .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-u5vKftZ4zw .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-u5vKftZ4zw .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-u5vKftZ4zw .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-u5vKftZ4zw .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-u5vKftZ4zw .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-u5vKftZ4zw .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-u5vKftZ4zw .mbr-shop .filter-by-pu,
.cid-u5vKftZ4zw .mbr-shop .filter-by-pd,
.cid-u5vKftZ4zw .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-u5vKftZ4zw .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-u5vKftZ4zw .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-u5vKftZ4zw .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-u5vKftZ4zw .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-u5vKftZ4zw .mbr-shop .galleryItem h4,
.cid-u5vKftZ4zw .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-u5vKftZ4zw .mbr-shop .galleryItem h5,
.cid-u5vKftZ4zw .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-u5vKftZ4zw .mbr-shop .galleryItem p,
.cid-u5vKftZ4zw .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-u5vKftZ4zw .mbr-shop .item-button {
  text-align: center;
}
.cid-u5vKftZ4zw .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-u5vKftZ4zw .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-u5vKftZ4zw .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-u5vKftZ4zw .mbr-shop .sidebar-block {
  position: relative;
}
.cid-u5vKftZ4zw .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-u5vKftZ4zw .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-u5vKftZ4zw .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-u5vKftZ4zw .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-u5vKftZ4zw .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-u5vKftZ4zw .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-u5vKftZ4zw .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-u5vKftZ4zw .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-u5vKftZ4zw .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-u5vKftZ4zw .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-u5vKftZ4zw .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-u5vKftZ4zw .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-u5vKftZ4zw .mbr-shop .onsale {
  position: absolute;
  top: 25px;
  right: 25px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #802a18;
  border-radius: 6px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-u5vKftZ4zw .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-u5vKftZ4zw .mbr-shop .mbr-gallery-item__hided h4,
.cid-u5vKftZ4zw .mbr-shop .mbr-gallery-item__hided h5,
.cid-u5vKftZ4zw .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-u5vKftZ4zw .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-u5vKftZ4zw .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-u5vKftZ4zw .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-u5vKftZ4zw .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-u5vKftZ4zw .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-u5vKftZ4zw .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-u5vKftZ4zw .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-u5vKftZ4zw .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-u5vKftZ4zw .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-u5vKftZ4zw .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-u5vKftZ4zw .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-u5vKftZ4zw .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-u5vKftZ4zw .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-u5vKftZ4zw .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-u5vKftZ4zw .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-u5vKftZ4zw .mbr-shop .range-controls {
  position: relative;
}
.cid-u5vKftZ4zw .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-u5vKftZ4zw .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-u5vKftZ4zw .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-u5vKftZ4zw .mbr-shop .toggle:hover,
.cid-u5vKftZ4zw .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-u5vKftZ4zw .mbr-shop .min-toggle {
  left: 0;
}
.cid-u5vKftZ4zw .mbr-shop .max-toggle {
  right: 0;
}
.cid-u5vKftZ4zw .mbr-shop .hided-by-price {
  display: none;
}
.cid-u5vKftZ4zw .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-u5vKftZ4zw .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-u5vKftZ4zw .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-u5vKftZ4zw .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-u5vKftZ4zw .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-u5vKftZ4zw .mbr-shop .text-modal .card-description {
  padding-top: 5px;
  display: block;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 20px;
}
.cid-u5vKftZ4zw .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-u5vKftZ4zw .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-u5vKftZ4zw .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-u5vKftZ4zw .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-u5vKftZ4zw .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 30%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-u5vKftZ4zw .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 20px;
  background-color: #cccccc;
  right: 55%;
  top: 25%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-u5vKftZ4zw .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-u5vKftZ4zw .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-u5vKftZ4zw .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-u5vKftZ4zw .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-u5vKftZ4zw .mbr-shop .shop-items .onsale,
.cid-u5vKftZ4zw .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-u5vKftZ4zw .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-u5vKftZ4zw .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-u5vKftZ4zw .mbr-shop .price-range {
  display: inline-block;
}
.cid-u5vKftZ4zw .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-u5vKftZ4zw .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-u5vKftZ4zw .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-u5vKftZ4zw .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-u5vKftZ4zw .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-u5vKftZ4zw .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-u5vKftZ4zw .mbr-shop .onsale {
    position: absolute;
    top: 5px;
    right: 5px;
  }
  .cid-u5vKftZ4zw .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-u5vKftZ4zw .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-u5vKftZ4zw .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-u5vKftZ4zw .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-u5vKftZ4zw .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-u5vKftZ4zw .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-u5vKftZ4zw .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-u5vKftZ4zw .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-u5vKftZ4zw .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u5vKftZ4zw .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-u5vKftZ4zw .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-u5vKftZ4zw .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-u5vKftZ4zw .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-u5vKftZ4zw .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-u5vKftZ4zw .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-u5vKftZ4zw .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-u5vKftZ4zw .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-u5vKftZ4zw .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-u5vKftZ4zw .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-u5vKftZ4zw .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-u5vKftZ4zw .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-u5vKftZ4zw .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-u5vKftZ4zw .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-u5vKftZ4zw .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-u5vKftZ4zw .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-u5vKftZ4zw .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-u5vKftZ4zw .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-u5vKftZ4zw .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-u5vKftZ4zw .range-controls {
  display: block !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u5vKftZ4zw .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-u5vKftZ4zw .onsale {
  color: #f7a82b;
}
.cid-u5vKftZ4zw .item-title {
  font-size: 20px;
  color: #802a18;
}
.cid-u5vKftZ4zw .shop-item-price,
.cid-u5vKftZ4zw .price-block {
  margin-top: -10px;
  font-size: 25px;
  color: #232323;
}
.cid-u5vKftZ4zw .card-description {
  color: #232323;
}
.cid-u5vKftZ4zw .card-description DIV {
  text-align: left;
}
.cid-u2rxLy5LOp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/collage-1-1000x1000.jpg");
}
.cid-u2rxLy5LOp h2 {
  color: #ffffff;
}
.cid-u2rxLyswEI {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u2rxLyQYib {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/banner-prospectors-958x602.jpg");
}
.cid-u2rxLyQYib .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-u2rxLyQYib .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-u2rxLyQYib:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-u2rxLyQYib .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-u2rxLyQYib .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-u2rxLyQYib .text-block {
  text-align: center !important;
}
.cid-u2rxLyQYib SPAN {
  color: #ffffff;
}
.cid-u2rxLzaSyF {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u2rGFl5LZm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fondouppercut2-1-1500x1000.jpeg");
}
.cid-u2rGFl5LZm .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-u2rGFl5LZm .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-u2rGFl5LZm:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-u2rGFl5LZm .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-u2rGFl5LZm .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-u2rGFl5LZm .text-block {
  text-align: center !important;
}
.cid-u2rGFl5LZm SPAN {
  color: #ffffff;
}
.cid-u2rxLzWscf {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u2rxLzAHRf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/bannerfighters-4-2000x667.jpg");
}
.cid-u2rxLzAHRf .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-u2rxLzAHRf .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-u2rxLzAHRf:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-u2rxLzAHRf .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-u2rxLzAHRf .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-u2rxLzAHRf .text-block {
  text-align: center !important;
}
.cid-u2rxLzAHRf SPAN {
  color: #ffffff;
}
.cid-u2rGX0qKVq {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u2rxLAflmM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fondotheshavingco-2-2000x1499.jpg");
}
.cid-u2rxLAflmM .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-u2rxLAflmM .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-u2rxLAflmM:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-u2rxLAflmM .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-u2rxLAflmM .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-u2rxLAflmM .text-block {
  text-align: center !important;
}
.cid-u2rxLAflmM SPAN {
  color: #ffffff;
}
.cid-u2rxLAzZhS {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u2rxLAQ3Yc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hull-commercial-photography-3-2-1198x800.jpg");
}
.cid-u2rxLAQ3Yc .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-u2rxLAQ3Yc .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-u2rxLAQ3Yc:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-u2rxLAQ3Yc .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-u2rxLAQ3Yc .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-u2rxLAQ3Yc .text-block {
  text-align: center !important;
}
.cid-u2rxLAQ3Yc SPAN {
  color: #ffffff;
}
.cid-u2rxLB9Q3A .navbar {
  background: #232323;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-u2rxLB9Q3A .navbar-dropdown.bg-color.transparent.opened {
  background: #232323;
}
.cid-u2rxLB9Q3A a {
  font-style: normal;
}
.cid-u2rxLB9Q3A .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-u2rxLB9Q3A .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-u2rxLB9Q3A .nav-item:focus,
.cid-u2rxLB9Q3A .nav-link:focus {
  outline: none;
}
.cid-u2rxLB9Q3A .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-u2rxLB9Q3A .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-u2rxLB9Q3A .menu-logo {
  margin-right: auto;
}
.cid-u2rxLB9Q3A .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-u2rxLB9Q3A .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-u2rxLB9Q3A .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-u2rxLB9Q3A .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-u2rxLB9Q3A .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-u2rxLB9Q3A .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-u2rxLB9Q3A .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-u2rxLB9Q3A .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-u2rxLB9Q3A .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-u2rxLB9Q3A .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-u2rxLB9Q3A .dropdown .dropdown-menu {
  background: #232323;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-u2rxLB9Q3A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-u2rxLB9Q3A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2rxLB9Q3A .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-u2rxLB9Q3A .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2rxLB9Q3A .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-u2rxLB9Q3A .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-u2rxLB9Q3A .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-u2rxLB9Q3A .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-u2rxLB9Q3A .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-u2rxLB9Q3A .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-u2rxLB9Q3A .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-u2rxLB9Q3A button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-u2rxLB9Q3A button.navbar-toggler:focus {
  outline: none;
}
.cid-u2rxLB9Q3A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #219a9f;
}
.cid-u2rxLB9Q3A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u2rxLB9Q3A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u2rxLB9Q3A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u2rxLB9Q3A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u2rxLB9Q3A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u2rxLB9Q3A nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u2rxLB9Q3A nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u2rxLB9Q3A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u2rxLB9Q3A .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-u2rxLB9Q3A .collapsed .btn {
  display: flex;
}
.cid-u2rxLB9Q3A .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-u2rxLB9Q3A .collapsed .navbar-collapse.collapsing,
.cid-u2rxLB9Q3A .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-u2rxLB9Q3A .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-u2rxLB9Q3A .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-u2rxLB9Q3A .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-u2rxLB9Q3A .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-u2rxLB9Q3A .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-u2rxLB9Q3A .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-u2rxLB9Q3A .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-u2rxLB9Q3A .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-u2rxLB9Q3A .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-u2rxLB9Q3A .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-u2rxLB9Q3A .collapsed button.navbar-toggler {
  display: block;
}
.cid-u2rxLB9Q3A .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-u2rxLB9Q3A .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-u2rxLB9Q3A .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-u2rxLB9Q3A .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-u2rxLB9Q3A .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-u2rxLB9Q3A .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-u2rxLB9Q3A.navbar-expand {
    flex-direction: column;
  }
  .cid-u2rxLB9Q3A img {
    height: 3.8rem !important;
  }
  .cid-u2rxLB9Q3A .btn {
    display: flex;
  }
  .cid-u2rxLB9Q3A button.navbar-toggler {
    display: block;
  }
  .cid-u2rxLB9Q3A .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-u2rxLB9Q3A .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-u2rxLB9Q3A .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-u2rxLB9Q3A .navbar-collapse.collapsing,
  .cid-u2rxLB9Q3A .navbar-collapse.show {
    display: block !important;
  }
  .cid-u2rxLB9Q3A .navbar-collapse.collapsing .navbar-nav,
  .cid-u2rxLB9Q3A .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-u2rxLB9Q3A .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-u2rxLB9Q3A .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-u2rxLB9Q3A .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-u2rxLB9Q3A .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-u2rxLB9Q3A .navbar-collapse.collapsing .navbar-buttons,
  .cid-u2rxLB9Q3A .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-u2rxLB9Q3A .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-u2rxLB9Q3A .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-u2rxLB9Q3A .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-u2rxLB9Q3A .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-u2rxLB9Q3A .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-u2rxLB9Q3A .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-u2rxLB9Q3A .menu-logo {
    flex-shrink: 0;
  }
}
.cid-u2rxLB9Q3A .navbar-collapse {
  flex-basis: auto;
}
.cid-u2rxLB9Q3A .nav-link:hover,
.cid-u2rxLB9Q3A .dropdown-item:hover {
  color: #219a9f !important;
}
.cid-u2rxLBHa1L {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u2rxLC5hzy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/img-razor-bros01-1000x666.jpg");
}
.cid-u2rxLC5hzy .card-wrapper {
  z-index: 3;
  height: -5px;
}
.cid-u2rxLC5hzy .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-u2rxLC5hzy:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-u2rxLC5hzy .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-u2rxLC5hzy .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-u2rxLC5hzy .text-block {
  text-align: center !important;
}
.cid-u2rxLC5hzy SPAN {
  color: #ffffff;
}
.cid-u2rxLCogNW {
  padding-top: 4px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u2rxLCFG8w {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #104f52;
}
.cid-u2rxLCFG8w .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u2rxLCFG8w .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u2rxLCFG8w .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u2rxLCFG8w .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u2rxLCFG8w .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u2rxLCFG8w .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-u2rxLCFG8w .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-u2rxLCFG8w .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u2rxLCFG8w .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u2rxLCFG8w .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u2rxLCFG8w .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2rxLCFG8w .media-container-row .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-u2rxLCFG8w .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u2rxLCFG8w .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-u2rxLCFG8w foot-menu-item {
  text-align: right;
  color: #767676;
}
.cid-u2rxLCFG8w html {
  overflow-y: hidden;
}
.cid-u2rxLCFG8w html body {
  height: 100%;
  overflow: auto;
}
.cid-u2rxLCFG8w img {
  height: 50px;
}
.cid-u2rxLCFG8w .flotante {
  display: scroll;
  position: fixed;
  z-index: 20000;
  bottom: 20px;
  right: 20px;
}
.cid-u2wBysQqRs {
  background-image: url("../../../assets/images/fondo-suavecito-2000x1004.jpg");
}
.cid-u2wBysQqRs .mbr-figure {
  margin-top: -50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-u2wBysQqRs .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-u2wBysQqRs .mbr-figure img {
    width: 90% !important;
  }
}
.cid-u2wBysQqRs a:link {
  text-decoration: none;
}
.cid-u2wBysQqRs .icon-transition span {
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-u2wBysQqRs .icon-transition span:hover {
  color: #219A9F;
}
.cid-u2wBysQqRs .inner-text {
  line-height: 3em;
}
.cid-u2wBysQqRs .social-media {
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.cid-u2wBysQqRs .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-u2wBysQqRs .social-media ul li {
  padding: -4px;
  display: inline-block;
}
.cid-u2wBysQqRs .content-text,
.cid-u2wBysQqRs .inner-text {
  color: #c1c1c1;
}
.cid-u2wBysQqRs .mbr-text,
.cid-u2wBysQqRs .mbr-section-btn {
  color: #ffffff;
}
