body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Merriweather', serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #acc6b9 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #898176 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #c49792 !important;
  border-color: #c49792 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #a6615a !important;
  border-color: #a6615a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a6615a !important;
  border-color: #a6615a !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #acc6b9 !important;
  border-color: #acc6b9 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #79a38e !important;
  border-color: #79a38e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #79a38e !important;
  border-color: #79a38e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #898176 !important;
  border-color: #898176 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #5a554e !important;
  border-color: #5a554e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #5a554e !important;
  border-color: #5a554e !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c49792;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a6615a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #c49792 !important;
  border-color: #c49792 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #acc6b9;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #79a38e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #acc6b9 !important;
  border-color: #acc6b9 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #898176;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #5a554e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #898176 !important;
  border-color: #898176 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #c49792 !important;
}
.text-success {
  color: #acc6b9 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #898176 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #9c5b54 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #709c86 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #524d47 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #898176;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #f8faf9;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #c4c0bb;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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: #c49792 !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%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uEtC9ovybW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uEtC9ovybW nav.navbar {
  position: fixed;
}
.cid-uEtC9ovybW .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uEtC9ovybW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uEtC9ovybW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uEtC9ovybW .dropdown-item:hover,
.cid-uEtC9ovybW .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uEtC9ovybW .dropdown-item:hover span {
  color: white;
}
.cid-uEtC9ovybW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uEtC9ovybW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uEtC9ovybW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uEtC9ovybW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uEtC9ovybW .nav-link {
  position: relative;
}
.cid-uEtC9ovybW .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uEtC9ovybW .container {
    flex-wrap: nowrap;
  }
}
.cid-uEtC9ovybW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uEtC9ovybW .dropdown-menu,
.cid-uEtC9ovybW .navbar.opened {
  background: #fafcee !important;
}
.cid-uEtC9ovybW .nav-item:focus,
.cid-uEtC9ovybW .nav-link:focus {
  outline: none;
}
.cid-uEtC9ovybW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uEtC9ovybW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uEtC9ovybW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uEtC9ovybW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uEtC9ovybW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uEtC9ovybW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uEtC9ovybW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uEtC9ovybW .navbar.opened {
  transition: all 0.3s;
}
.cid-uEtC9ovybW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uEtC9ovybW .navbar .navbar-logo img {
  width: auto;
}
.cid-uEtC9ovybW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uEtC9ovybW .navbar.collapsed {
  justify-content: center;
}
.cid-uEtC9ovybW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uEtC9ovybW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uEtC9ovybW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uEtC9ovybW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uEtC9ovybW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uEtC9ovybW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uEtC9ovybW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uEtC9ovybW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uEtC9ovybW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uEtC9ovybW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uEtC9ovybW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uEtC9ovybW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uEtC9ovybW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uEtC9ovybW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uEtC9ovybW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uEtC9ovybW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uEtC9ovybW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uEtC9ovybW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uEtC9ovybW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uEtC9ovybW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uEtC9ovybW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uEtC9ovybW .navbar.navbar-short {
  min-height: 60px;
}
.cid-uEtC9ovybW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uEtC9ovybW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uEtC9ovybW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uEtC9ovybW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uEtC9ovybW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uEtC9ovybW .dropdown-item.active,
.cid-uEtC9ovybW .dropdown-item:active {
  background-color: transparent;
}
.cid-uEtC9ovybW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uEtC9ovybW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uEtC9ovybW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uEtC9ovybW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uEtC9ovybW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uEtC9ovybW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uEtC9ovybW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uEtC9ovybW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uEtC9ovybW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uEtC9ovybW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uEtC9ovybW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uEtC9ovybW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uEtC9ovybW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uEtC9ovybW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uEtC9ovybW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uEtC9ovybW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uEtC9ovybW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uEtC9ovybW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uEtC9ovybW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uEtC9ovybW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uEtC9ovybW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uEtC9ovybW .navbar {
    height: 70px;
  }
  .cid-uEtC9ovybW .navbar.opened {
    height: auto;
  }
  .cid-uEtC9ovybW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uEtC9WX9xB {
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-1.jpg");
}
.cid-uEtC9WX9xB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEtC9WX9xB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEtCaK9vjb {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uEtCaK9vjb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEtCaK9vjb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEzokqKuDd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uEzokqKuDd img,
.cid-uEzokqKuDd .item-img {
  width: 100%;
}
.cid-uEzokqKuDd .item:focus,
.cid-uEzokqKuDd span:focus {
  outline: none;
}
.cid-uEzokqKuDd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uEzokqKuDd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafcf1;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uEzokqKuDd .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uEzokqKuDd .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEzokqKuDd .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uEzokqKuDd .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uEzokqKuDd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uEzokqKuDd .mbr-section-title {
  color: #232323;
}
.cid-uEzokqKuDd .mbr-text,
.cid-uEzokqKuDd .mbr-section-btn {
  text-align: center;
  color: #232323;
}
.cid-uEzokqKuDd .item-title {
  text-align: center;
  color: #232323;
}
.cid-uEzokqKuDd .item-subtitle {
  text-align: left;
}
.cid-uEB05DSNB8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #acc6b9;
}
.cid-uEB05DSNB8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEB05DSNB8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEB05DSNB8 .mbr-section-title {
  color: #232323;
}
.cid-uEB05DSNB8 .mbr-section-subtitle {
  color: #232323;
}
.cid-uEB1Mwlkdl {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background: #acc6b9;
}
.cid-uEB1Mwlkdl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEB1Mwlkdl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEB1Mwlkdl .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uEB1Mwlkdl .team-card:hover {
  transform: translateY(-10px);
}
.cid-uEB1Mwlkdl .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uEB1Mwlkdl .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uEB1Mwlkdl .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uEB1Mwlkdl .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uEB1Mwlkdl .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uEB1Mwlkdl .social-row {
  text-align: center;
}
.cid-uEB1Mwlkdl .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #c49792;
  transition: all 0.3s;
}
.cid-uEB1Mwlkdl .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #c49792;
  font-size: 1.5rem;
}
.cid-uEB1Mwlkdl .social-row .soc-item:hover {
  background-color: #c49792;
}
.cid-uEB1Mwlkdl .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uEB1Mwlkdl .mbr-section-title {
  color: #232323;
}
.cid-uEB1Mwlkdl .card-title,
.cid-uEB1Mwlkdl .social-row {
  color: #232323;
}
.cid-uJQtpVuKJp {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uJQtpVuKJp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJQtpVuKJp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJQtmwIgeR {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uJQtmwIgeR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJQtmwIgeR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJQtmwIgeR .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uJQtmwIgeR .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uJQtmwIgeR .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uJQtmwIgeR .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uJQtmwIgeR .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uJQtmwIgeR .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uJQtmwIgeR .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uJQtmwIgeR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uJQtmwIgeR .mbr-text,
.cid-uJQtmwIgeR .mbr-section-btn {
  text-align: center;
}
.cid-uJQtmwIgeR .card-title {
  text-align: center;
}
.cid-uEB3z7SdIP {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uEB3z7SdIP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEB3z7SdIP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEB3z7SdIP .mbr-section-title {
  color: #ffffff;
}
.cid-uEB3z7SdIP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uEB3JsAOoP {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uEB3JsAOoP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEB3JsAOoP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEzoDSINYP {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uEzoDSINYP .content {
    text-align: center;
  }
  .cid-uEzoDSINYP .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uEzoDSINYP .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uEzoDSINYP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uEzoDSINYP .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uEzoDSINYP .google-map {
  height: 25rem;
  position: relative;
}
.cid-uEzoDSINYP .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uEzoDSINYP .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uEzoDSINYP .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uEzoDSINYP .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uEzoDSINYP .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uEzoDSINYP .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uEzoDSINYP .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uEzoDSINYP .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uEzoDSINYP .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uEzoDSINYP .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uEzoDSINYP .list {
  list-style-type: none;
  padding: 0;
}
.cid-uEEVH1frlw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uEEVH1frlw nav.navbar {
  position: fixed;
}
.cid-uEEVH1frlw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uEEVH1frlw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uEEVH1frlw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uEEVH1frlw .dropdown-item:hover,
.cid-uEEVH1frlw .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uEEVH1frlw .dropdown-item:hover span {
  color: white;
}
.cid-uEEVH1frlw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uEEVH1frlw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uEEVH1frlw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uEEVH1frlw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uEEVH1frlw .nav-link {
  position: relative;
}
.cid-uEEVH1frlw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uEEVH1frlw .container {
    flex-wrap: nowrap;
  }
}
.cid-uEEVH1frlw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uEEVH1frlw .dropdown-menu,
.cid-uEEVH1frlw .navbar.opened {
  background: #fafcee !important;
}
.cid-uEEVH1frlw .nav-item:focus,
.cid-uEEVH1frlw .nav-link:focus {
  outline: none;
}
.cid-uEEVH1frlw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uEEVH1frlw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uEEVH1frlw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uEEVH1frlw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uEEVH1frlw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uEEVH1frlw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uEEVH1frlw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uEEVH1frlw .navbar.opened {
  transition: all 0.3s;
}
.cid-uEEVH1frlw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uEEVH1frlw .navbar .navbar-logo img {
  width: auto;
}
.cid-uEEVH1frlw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uEEVH1frlw .navbar.collapsed {
  justify-content: center;
}
.cid-uEEVH1frlw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uEEVH1frlw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uEEVH1frlw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uEEVH1frlw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uEEVH1frlw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uEEVH1frlw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uEEVH1frlw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uEEVH1frlw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uEEVH1frlw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uEEVH1frlw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uEEVH1frlw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uEEVH1frlw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uEEVH1frlw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uEEVH1frlw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uEEVH1frlw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uEEVH1frlw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uEEVH1frlw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uEEVH1frlw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uEEVH1frlw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uEEVH1frlw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uEEVH1frlw .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uEEVH1frlw .navbar.navbar-short {
  min-height: 60px;
}
.cid-uEEVH1frlw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uEEVH1frlw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uEEVH1frlw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uEEVH1frlw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uEEVH1frlw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uEEVH1frlw .dropdown-item.active,
.cid-uEEVH1frlw .dropdown-item:active {
  background-color: transparent;
}
.cid-uEEVH1frlw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uEEVH1frlw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uEEVH1frlw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uEEVH1frlw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uEEVH1frlw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uEEVH1frlw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uEEVH1frlw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uEEVH1frlw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uEEVH1frlw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uEEVH1frlw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uEEVH1frlw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uEEVH1frlw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uEEVH1frlw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uEEVH1frlw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uEEVH1frlw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uEEVH1frlw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uEEVH1frlw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uEEVH1frlw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uEEVH1frlw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uEEVH1frlw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uEEVH1frlw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uEEVH1frlw .navbar {
    height: 70px;
  }
  .cid-uEEVH1frlw .navbar.opened {
    height: auto;
  }
  .cid-uEEVH1frlw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uEEVH28UGS {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uEEVH28UGS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEEVH28UGS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEEVH2n9ro {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uEEVH2n9ro img,
.cid-uEEVH2n9ro .item-img {
  width: 100%;
}
.cid-uEEVH2n9ro .item:focus,
.cid-uEEVH2n9ro span:focus {
  outline: none;
}
.cid-uEEVH2n9ro .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uEEVH2n9ro .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafcf1;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uEEVH2n9ro .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uEEVH2n9ro .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEEVH2n9ro .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uEEVH2n9ro .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uEEVH2n9ro .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uEEVH2n9ro .mbr-section-title {
  color: #232323;
}
.cid-uEEVH2n9ro .mbr-text,
.cid-uEEVH2n9ro .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uEEVH2n9ro .item-title {
  text-align: center;
  color: #232323;
}
.cid-uEEVH2n9ro .item-subtitle {
  text-align: left;
}
.cid-v0JfG1YF57 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v0JfG1YF57 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0JfG1YF57 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0JfG1YF57 .content-wrapper {
  background: #fafcf1;
}
@media (max-width: 991px) {
  .cid-v0JfG1YF57 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-v0JfG1YF57 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0JfG1YF57 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v0JfG1YF57 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v0JfG1YF57 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-v0JfG1YF57 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-v0JfG1YF57 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0JfG1YF57 .card-title {
  text-align: center;
}
.cid-v0JfG1YF57 .mbr-text,
.cid-v0JfG1YF57 .mbr-section-btn {
  text-align: center;
}
.cid-uGsk8PEeOc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uGsk8PEeOc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGsk8PEeOc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEF22IQnTL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uEF22IQnTL img,
.cid-uEF22IQnTL .item-img {
  width: 100%;
}
.cid-uEF22IQnTL .item:focus,
.cid-uEF22IQnTL span:focus {
  outline: none;
}
.cid-uEF22IQnTL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uEF22IQnTL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafcf1;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uEF22IQnTL .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uEF22IQnTL .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEF22IQnTL .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uEF22IQnTL .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uEF22IQnTL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uEF22IQnTL .mbr-section-title {
  color: #232323;
}
.cid-uEF22IQnTL .mbr-text,
.cid-uEF22IQnTL .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uEF22IQnTL .item-title {
  text-align: center;
  color: #232323;
}
.cid-uEF22IQnTL .item-subtitle {
  text-align: left;
}
.cid-uGsk9u14ri {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGsk9u14ri .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGsk9u14ri .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEF35e6aNy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uEF35e6aNy img,
.cid-uEF35e6aNy .item-img {
  width: 100%;
}
.cid-uEF35e6aNy .item:focus,
.cid-uEF35e6aNy span:focus {
  outline: none;
}
.cid-uEF35e6aNy .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uEF35e6aNy .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafcf1;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uEF35e6aNy .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uEF35e6aNy .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEF35e6aNy .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uEF35e6aNy .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uEF35e6aNy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uEF35e6aNy .mbr-section-title {
  color: #232323;
}
.cid-uEF35e6aNy .mbr-text,
.cid-uEF35e6aNy .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uEF35e6aNy .item-title {
  text-align: center;
  color: #232323;
}
.cid-uEF35e6aNy .item-subtitle {
  text-align: left;
}
.cid-uEEVH3W3lr {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uEEVH3W3lr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEEVH3W3lr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEEVH3W3lr .mbr-section-title {
  color: #ffffff;
}
.cid-uEEVH3W3lr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uEEVH4vlh3 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uEEVH4vlh3 .content {
    text-align: center;
  }
  .cid-uEEVH4vlh3 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uEEVH4vlh3 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uEEVH4vlh3 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uEEVH4vlh3 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uEEVH4vlh3 .google-map {
  height: 25rem;
  position: relative;
}
.cid-uEEVH4vlh3 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uEEVH4vlh3 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uEEVH4vlh3 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uEEVH4vlh3 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uEEVH4vlh3 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uEEVH4vlh3 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uEEVH4vlh3 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uEEVH4vlh3 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uEEVH4vlh3 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uEEVH4vlh3 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uEEVH4vlh3 .list {
  list-style-type: none;
  padding: 0;
}
.cid-uEFa11yUn2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uEFa11yUn2 nav.navbar {
  position: fixed;
}
.cid-uEFa11yUn2 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uEFa11yUn2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uEFa11yUn2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uEFa11yUn2 .dropdown-item:hover,
.cid-uEFa11yUn2 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uEFa11yUn2 .dropdown-item:hover span {
  color: white;
}
.cid-uEFa11yUn2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uEFa11yUn2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uEFa11yUn2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uEFa11yUn2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uEFa11yUn2 .nav-link {
  position: relative;
}
.cid-uEFa11yUn2 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uEFa11yUn2 .container {
    flex-wrap: nowrap;
  }
}
.cid-uEFa11yUn2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uEFa11yUn2 .dropdown-menu,
.cid-uEFa11yUn2 .navbar.opened {
  background: #fafcee !important;
}
.cid-uEFa11yUn2 .nav-item:focus,
.cid-uEFa11yUn2 .nav-link:focus {
  outline: none;
}
.cid-uEFa11yUn2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uEFa11yUn2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uEFa11yUn2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uEFa11yUn2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uEFa11yUn2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uEFa11yUn2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uEFa11yUn2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uEFa11yUn2 .navbar.opened {
  transition: all 0.3s;
}
.cid-uEFa11yUn2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uEFa11yUn2 .navbar .navbar-logo img {
  width: auto;
}
.cid-uEFa11yUn2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uEFa11yUn2 .navbar.collapsed {
  justify-content: center;
}
.cid-uEFa11yUn2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uEFa11yUn2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uEFa11yUn2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uEFa11yUn2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uEFa11yUn2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uEFa11yUn2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uEFa11yUn2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uEFa11yUn2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uEFa11yUn2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uEFa11yUn2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uEFa11yUn2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uEFa11yUn2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uEFa11yUn2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uEFa11yUn2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uEFa11yUn2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uEFa11yUn2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uEFa11yUn2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uEFa11yUn2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uEFa11yUn2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uEFa11yUn2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uEFa11yUn2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uEFa11yUn2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uEFa11yUn2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uEFa11yUn2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uEFa11yUn2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uEFa11yUn2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uEFa11yUn2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uEFa11yUn2 .dropdown-item.active,
.cid-uEFa11yUn2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uEFa11yUn2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uEFa11yUn2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uEFa11yUn2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uEFa11yUn2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uEFa11yUn2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uEFa11yUn2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uEFa11yUn2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uEFa11yUn2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uEFa11yUn2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uEFa11yUn2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uEFa11yUn2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uEFa11yUn2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uEFa11yUn2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uEFa11yUn2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uEFa11yUn2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uEFa11yUn2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uEFa11yUn2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uEFa11yUn2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uEFa11yUn2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uEFa11yUn2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uEFa11yUn2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uEFa11yUn2 .navbar {
    height: 70px;
  }
  .cid-uEFa11yUn2 .navbar.opened {
    height: auto;
  }
  .cid-uEFa11yUn2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uEFa11XMeL {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uEFa11XMeL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEFa11XMeL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEFc7omSe2 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uEFc7omSe2 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uEFc7omSe2 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uEFc7omSe2 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uEFc7omSe2 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uEFa13Duxy {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uEFa13Duxy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEFa13Duxy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEFa13Duxy .mbr-section-title {
  color: #ffffff;
}
.cid-uEFa13Duxy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uEFa13SiQ9 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uEFa13SiQ9 .content {
    text-align: center;
  }
  .cid-uEFa13SiQ9 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uEFa13SiQ9 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uEFa13SiQ9 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uEFa13SiQ9 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uEFa13SiQ9 .google-map {
  height: 25rem;
  position: relative;
}
.cid-uEFa13SiQ9 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uEFa13SiQ9 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uEFa13SiQ9 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uEFa13SiQ9 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uEFa13SiQ9 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uEFa13SiQ9 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uEFa13SiQ9 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uEFa13SiQ9 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uEFa13SiQ9 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uEFa13SiQ9 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uEFa13SiQ9 .list {
  list-style-type: none;
  padding: 0;
}
.cid-uEF5VX2bRR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uEF5VX2bRR nav.navbar {
  position: fixed;
}
.cid-uEF5VX2bRR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uEF5VX2bRR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uEF5VX2bRR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uEF5VX2bRR .dropdown-item:hover,
.cid-uEF5VX2bRR .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uEF5VX2bRR .dropdown-item:hover span {
  color: white;
}
.cid-uEF5VX2bRR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uEF5VX2bRR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uEF5VX2bRR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uEF5VX2bRR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uEF5VX2bRR .nav-link {
  position: relative;
}
.cid-uEF5VX2bRR .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uEF5VX2bRR .container {
    flex-wrap: nowrap;
  }
}
.cid-uEF5VX2bRR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uEF5VX2bRR .dropdown-menu,
.cid-uEF5VX2bRR .navbar.opened {
  background: #fafcee !important;
}
.cid-uEF5VX2bRR .nav-item:focus,
.cid-uEF5VX2bRR .nav-link:focus {
  outline: none;
}
.cid-uEF5VX2bRR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uEF5VX2bRR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uEF5VX2bRR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uEF5VX2bRR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uEF5VX2bRR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uEF5VX2bRR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uEF5VX2bRR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uEF5VX2bRR .navbar.opened {
  transition: all 0.3s;
}
.cid-uEF5VX2bRR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uEF5VX2bRR .navbar .navbar-logo img {
  width: auto;
}
.cid-uEF5VX2bRR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uEF5VX2bRR .navbar.collapsed {
  justify-content: center;
}
.cid-uEF5VX2bRR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uEF5VX2bRR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uEF5VX2bRR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uEF5VX2bRR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uEF5VX2bRR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uEF5VX2bRR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uEF5VX2bRR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uEF5VX2bRR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uEF5VX2bRR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uEF5VX2bRR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uEF5VX2bRR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uEF5VX2bRR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uEF5VX2bRR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uEF5VX2bRR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uEF5VX2bRR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uEF5VX2bRR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uEF5VX2bRR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uEF5VX2bRR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uEF5VX2bRR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uEF5VX2bRR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uEF5VX2bRR .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uEF5VX2bRR .navbar.navbar-short {
  min-height: 60px;
}
.cid-uEF5VX2bRR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uEF5VX2bRR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uEF5VX2bRR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uEF5VX2bRR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uEF5VX2bRR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uEF5VX2bRR .dropdown-item.active,
.cid-uEF5VX2bRR .dropdown-item:active {
  background-color: transparent;
}
.cid-uEF5VX2bRR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uEF5VX2bRR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uEF5VX2bRR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uEF5VX2bRR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uEF5VX2bRR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uEF5VX2bRR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uEF5VX2bRR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uEF5VX2bRR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uEF5VX2bRR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uEF5VX2bRR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uEF5VX2bRR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uEF5VX2bRR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uEF5VX2bRR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uEF5VX2bRR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uEF5VX2bRR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uEF5VX2bRR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uEF5VX2bRR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uEF5VX2bRR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uEF5VX2bRR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uEF5VX2bRR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uEF5VX2bRR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uEF5VX2bRR .navbar {
    height: 70px;
  }
  .cid-uEF5VX2bRR .navbar.opened {
    height: auto;
  }
  .cid-uEF5VX2bRR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uEF5VXAraJ {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uEF5VXAraJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEF5VXAraJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEF6NrewRz {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uEF6NrewRz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEF6NrewRz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEF6NrewRz .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uEF6NrewRz .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uEF6NrewRz .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uEF6NrewRz .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uEF6NrewRz .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uEF6NrewRz .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uEF6NrewRz .carousel-control,
.cid-uEF6NrewRz .close {
  background: #1b1b1b;
}
.cid-uEF6NrewRz .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uEF6NrewRz .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uEF6NrewRz .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uEF6NrewRz .carousel-control-next span {
  margin-left: 5px;
}
.cid-uEF6NrewRz .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uEF6NrewRz .close::before {
  content: '\e91a';
}
.cid-uEF6NrewRz .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uEF6NrewRz .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uEF6NrewRz .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uEF6NrewRz .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uEF6NrewRz .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uEF6NrewRz .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uEF6NrewRz .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uEF6NrewRz .carousel-indicators li.active,
.cid-uEF6NrewRz .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uEF6NrewRz .carousel-indicators li::after,
.cid-uEF6NrewRz .carousel-indicators li::before {
  content: none;
}
.cid-uEF6NrewRz .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uEF6NrewRz .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uEF6NrewRz .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uEF6NrewRz .carousel-indicators {
    display: none;
  }
}
.cid-uEF6NrewRz .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uEF6NrewRz .carousel-inner > .active {
  display: block;
}
.cid-uEF6NrewRz .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uEF6NrewRz .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uEF6NrewRz .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uEF6NrewRz .carousel-control,
  .cid-uEF6NrewRz .carousel-indicators,
  .cid-uEF6NrewRz .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uEF6NrewRz .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uEF6NrewRz .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uEF6NrewRz .carousel-indicators .active,
.cid-uEF6NrewRz .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uEF6NrewRz .carousel-indicators .active {
  background: #fff;
}
.cid-uEF6NrewRz .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uEF6NrewRz .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uEF6NrewRz .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uEF6NrewRz .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uEF6NrewRz .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uEF6NrewRz .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uEF6NrewRz .carousel {
  width: 100%;
}
.cid-uEF6NrewRz .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uEF6NrewRz .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uEF6NrewRz .modal.fade .modal-dialog,
.cid-uEF6NrewRz .modal.in .modal-dialog {
  transform: none;
}
.cid-uEF6NrewRz .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uEF6NrewRz H6 {
  text-align: center;
}
.cid-uEF5VZtcFF {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uEF5VZtcFF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEF5VZtcFF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEF5VZtcFF .mbr-section-title {
  color: #ffffff;
}
.cid-uEF5VZtcFF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uEF5VZOkJA {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uEF5VZOkJA .content {
    text-align: center;
  }
  .cid-uEF5VZOkJA .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uEF5VZOkJA .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uEF5VZOkJA .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uEF5VZOkJA .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uEF5VZOkJA .google-map {
  height: 25rem;
  position: relative;
}
.cid-uEF5VZOkJA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uEF5VZOkJA .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uEF5VZOkJA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uEF5VZOkJA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uEF5VZOkJA .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uEF5VZOkJA .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uEF5VZOkJA .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uEF5VZOkJA .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uEF5VZOkJA .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uEF5VZOkJA .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uEF5VZOkJA .list {
  list-style-type: none;
  padding: 0;
}
.cid-uFI3zTzQnu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFI3zTzQnu nav.navbar {
  position: fixed;
}
.cid-uFI3zTzQnu .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFI3zTzQnu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFI3zTzQnu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFI3zTzQnu .dropdown-item:hover,
.cid-uFI3zTzQnu .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uFI3zTzQnu .dropdown-item:hover span {
  color: white;
}
.cid-uFI3zTzQnu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFI3zTzQnu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFI3zTzQnu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFI3zTzQnu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFI3zTzQnu .nav-link {
  position: relative;
}
.cid-uFI3zTzQnu .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uFI3zTzQnu .container {
    flex-wrap: nowrap;
  }
}
.cid-uFI3zTzQnu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFI3zTzQnu .dropdown-menu,
.cid-uFI3zTzQnu .navbar.opened {
  background: #fafcee !important;
}
.cid-uFI3zTzQnu .nav-item:focus,
.cid-uFI3zTzQnu .nav-link:focus {
  outline: none;
}
.cid-uFI3zTzQnu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFI3zTzQnu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFI3zTzQnu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFI3zTzQnu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFI3zTzQnu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFI3zTzQnu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFI3zTzQnu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uFI3zTzQnu .navbar.opened {
  transition: all 0.3s;
}
.cid-uFI3zTzQnu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFI3zTzQnu .navbar .navbar-logo img {
  width: auto;
}
.cid-uFI3zTzQnu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFI3zTzQnu .navbar.collapsed {
  justify-content: center;
}
.cid-uFI3zTzQnu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFI3zTzQnu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFI3zTzQnu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uFI3zTzQnu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFI3zTzQnu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFI3zTzQnu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uFI3zTzQnu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFI3zTzQnu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFI3zTzQnu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFI3zTzQnu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFI3zTzQnu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFI3zTzQnu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFI3zTzQnu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFI3zTzQnu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uFI3zTzQnu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFI3zTzQnu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFI3zTzQnu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFI3zTzQnu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFI3zTzQnu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFI3zTzQnu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFI3zTzQnu .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFI3zTzQnu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFI3zTzQnu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFI3zTzQnu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFI3zTzQnu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFI3zTzQnu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFI3zTzQnu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFI3zTzQnu .dropdown-item.active,
.cid-uFI3zTzQnu .dropdown-item:active {
  background-color: transparent;
}
.cid-uFI3zTzQnu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFI3zTzQnu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFI3zTzQnu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFI3zTzQnu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uFI3zTzQnu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFI3zTzQnu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFI3zTzQnu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFI3zTzQnu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFI3zTzQnu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFI3zTzQnu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFI3zTzQnu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFI3zTzQnu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFI3zTzQnu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFI3zTzQnu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFI3zTzQnu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFI3zTzQnu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFI3zTzQnu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFI3zTzQnu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFI3zTzQnu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFI3zTzQnu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFI3zTzQnu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFI3zTzQnu .navbar {
    height: 70px;
  }
  .cid-uFI3zTzQnu .navbar.opened {
    height: auto;
  }
  .cid-uFI3zTzQnu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFI3zTPxZx {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uFI3zTPxZx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFI3zTPxZx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGsuwKt6Qr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uGsuwKt6Qr img,
.cid-uGsuwKt6Qr .item-img {
  width: 100%;
}
.cid-uGsuwKt6Qr .item:focus,
.cid-uGsuwKt6Qr span:focus {
  outline: none;
}
.cid-uGsuwKt6Qr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uGsuwKt6Qr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafcf1;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGsuwKt6Qr .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uGsuwKt6Qr .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGsuwKt6Qr .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uGsuwKt6Qr .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uGsuwKt6Qr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGsuwKt6Qr .mbr-section-title {
  color: #232323;
}
.cid-uGsuwKt6Qr .mbr-text,
.cid-uGsuwKt6Qr .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uGsuwKt6Qr .item-title {
  text-align: center;
  color: #232323;
}
.cid-uGsuwKt6Qr .item-subtitle {
  text-align: left;
}
.cid-uJQzEgQP6S {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uJQzEgQP6S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJQzEgQP6S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJQzESuPlP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJQzESuPlP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJQzESuPlP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJQzESuPlP .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uJQzESuPlP .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uJQzESuPlP .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uJQzESuPlP .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uJQzESuPlP .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uJQzESuPlP .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uJQzESuPlP .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uJQzESuPlP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uJQzESuPlP .mbr-text,
.cid-uJQzESuPlP .mbr-section-btn {
  text-align: center;
}
.cid-uJQzESuPlP .card-title {
  text-align: center;
}
.cid-v0OGvLNgXi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafcf1;
}
.cid-v0OGvLNgXi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0OGvLNgXi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0OGvLNgXi .content-wrapper {
  background: #fafcf1;
}
@media (max-width: 991px) {
  .cid-v0OGvLNgXi .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-v0OGvLNgXi .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0OGvLNgXi .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v0OGvLNgXi .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v0OGvLNgXi .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-v0OGvLNgXi .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-v0OGvLNgXi .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v0OGvLNgXi .card-title {
  text-align: center;
}
.cid-v0OGvLNgXi .mbr-text,
.cid-v0OGvLNgXi .mbr-section-btn {
  text-align: center;
}
.cid-uFI3zV0E9t {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uFI3zV0E9t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFI3zV0E9t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFI3zV0E9t .mbr-section-title {
  color: #ffffff;
}
.cid-uFI3zV0E9t .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFI6QMaO9m {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uFI6QMaO9m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFI6QMaO9m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFI3zVeTLD {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uFI3zVeTLD .content {
    text-align: center;
  }
  .cid-uFI3zVeTLD .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uFI3zVeTLD .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uFI3zVeTLD .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uFI3zVeTLD .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uFI3zVeTLD .google-map {
  height: 25rem;
  position: relative;
}
.cid-uFI3zVeTLD .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uFI3zVeTLD .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uFI3zVeTLD .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uFI3zVeTLD .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uFI3zVeTLD .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uFI3zVeTLD .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uFI3zVeTLD .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uFI3zVeTLD .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uFI3zVeTLD .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uFI3zVeTLD .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uFI3zVeTLD .list {
  list-style-type: none;
  padding: 0;
}
.cid-uFIaPwetmT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFIaPwetmT nav.navbar {
  position: fixed;
}
.cid-uFIaPwetmT .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFIaPwetmT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFIaPwetmT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFIaPwetmT .dropdown-item:hover,
.cid-uFIaPwetmT .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uFIaPwetmT .dropdown-item:hover span {
  color: white;
}
.cid-uFIaPwetmT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFIaPwetmT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFIaPwetmT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFIaPwetmT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFIaPwetmT .nav-link {
  position: relative;
}
.cid-uFIaPwetmT .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uFIaPwetmT .container {
    flex-wrap: nowrap;
  }
}
.cid-uFIaPwetmT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFIaPwetmT .dropdown-menu,
.cid-uFIaPwetmT .navbar.opened {
  background: #fafcee !important;
}
.cid-uFIaPwetmT .nav-item:focus,
.cid-uFIaPwetmT .nav-link:focus {
  outline: none;
}
.cid-uFIaPwetmT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFIaPwetmT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFIaPwetmT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFIaPwetmT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFIaPwetmT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFIaPwetmT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFIaPwetmT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uFIaPwetmT .navbar.opened {
  transition: all 0.3s;
}
.cid-uFIaPwetmT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFIaPwetmT .navbar .navbar-logo img {
  width: auto;
}
.cid-uFIaPwetmT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFIaPwetmT .navbar.collapsed {
  justify-content: center;
}
.cid-uFIaPwetmT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFIaPwetmT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFIaPwetmT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uFIaPwetmT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFIaPwetmT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFIaPwetmT .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uFIaPwetmT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFIaPwetmT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFIaPwetmT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFIaPwetmT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFIaPwetmT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFIaPwetmT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFIaPwetmT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFIaPwetmT .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uFIaPwetmT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFIaPwetmT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFIaPwetmT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFIaPwetmT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFIaPwetmT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFIaPwetmT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFIaPwetmT .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFIaPwetmT .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFIaPwetmT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFIaPwetmT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFIaPwetmT .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFIaPwetmT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFIaPwetmT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFIaPwetmT .dropdown-item.active,
.cid-uFIaPwetmT .dropdown-item:active {
  background-color: transparent;
}
.cid-uFIaPwetmT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFIaPwetmT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFIaPwetmT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFIaPwetmT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uFIaPwetmT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFIaPwetmT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFIaPwetmT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFIaPwetmT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFIaPwetmT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFIaPwetmT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uFIaPwetmT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFIaPwetmT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFIaPwetmT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFIaPwetmT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFIaPwetmT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFIaPwetmT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFIaPwetmT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFIaPwetmT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFIaPwetmT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFIaPwetmT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFIaPwetmT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFIaPwetmT .navbar {
    height: 70px;
  }
  .cid-uFIaPwetmT .navbar.opened {
    height: auto;
  }
  .cid-uFIaPwetmT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFIaPwEIN8 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uFIaPwEIN8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFIaPwEIN8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGJzvBs3tv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uGJzvBs3tv img,
.cid-uGJzvBs3tv .item-img {
  width: 100%;
}
.cid-uGJzvBs3tv .item:focus,
.cid-uGJzvBs3tv span:focus {
  outline: none;
}
.cid-uGJzvBs3tv .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uGJzvBs3tv .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafcf1;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGJzvBs3tv .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uGJzvBs3tv .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGJzvBs3tv .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uGJzvBs3tv .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uGJzvBs3tv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGJzvBs3tv .mbr-section-title {
  color: #232323;
}
.cid-uGJzvBs3tv .mbr-text,
.cid-uGJzvBs3tv .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uGJzvBs3tv .item-title {
  text-align: center;
  color: #232323;
}
.cid-uGJzvBs3tv .item-subtitle {
  text-align: left;
}
.cid-uFIaPwYwsS {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uFIaPwYwsS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFIaPwYwsS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFIaPwYwsS .mbr-section-title {
  color: #ffffff;
}
.cid-uFIaPwYwsS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFIaPxdigH {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uFIaPxdigH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFIaPxdigH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFIaPxshWA {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uFIaPxshWA .content {
    text-align: center;
  }
  .cid-uFIaPxshWA .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uFIaPxshWA .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uFIaPxshWA .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uFIaPxshWA .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uFIaPxshWA .google-map {
  height: 25rem;
  position: relative;
}
.cid-uFIaPxshWA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uFIaPxshWA .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uFIaPxshWA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uFIaPxshWA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uFIaPxshWA .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uFIaPxshWA .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uFIaPxshWA .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uFIaPxshWA .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uFIaPxshWA .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uFIaPxshWA .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uFIaPxshWA .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGso5ZB8VH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGso5ZB8VH nav.navbar {
  position: fixed;
}
.cid-uGso5ZB8VH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGso5ZB8VH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGso5ZB8VH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGso5ZB8VH .dropdown-item:hover,
.cid-uGso5ZB8VH .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGso5ZB8VH .dropdown-item:hover span {
  color: white;
}
.cid-uGso5ZB8VH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGso5ZB8VH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGso5ZB8VH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGso5ZB8VH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGso5ZB8VH .nav-link {
  position: relative;
}
.cid-uGso5ZB8VH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGso5ZB8VH .container {
    flex-wrap: nowrap;
  }
}
.cid-uGso5ZB8VH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGso5ZB8VH .dropdown-menu,
.cid-uGso5ZB8VH .navbar.opened {
  background: #fafcee !important;
}
.cid-uGso5ZB8VH .nav-item:focus,
.cid-uGso5ZB8VH .nav-link:focus {
  outline: none;
}
.cid-uGso5ZB8VH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGso5ZB8VH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGso5ZB8VH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGso5ZB8VH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGso5ZB8VH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGso5ZB8VH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGso5ZB8VH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGso5ZB8VH .navbar.opened {
  transition: all 0.3s;
}
.cid-uGso5ZB8VH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGso5ZB8VH .navbar .navbar-logo img {
  width: auto;
}
.cid-uGso5ZB8VH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGso5ZB8VH .navbar.collapsed {
  justify-content: center;
}
.cid-uGso5ZB8VH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGso5ZB8VH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGso5ZB8VH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGso5ZB8VH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGso5ZB8VH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGso5ZB8VH .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGso5ZB8VH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGso5ZB8VH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGso5ZB8VH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGso5ZB8VH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGso5ZB8VH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGso5ZB8VH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGso5ZB8VH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGso5ZB8VH .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGso5ZB8VH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGso5ZB8VH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGso5ZB8VH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGso5ZB8VH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGso5ZB8VH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGso5ZB8VH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGso5ZB8VH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGso5ZB8VH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGso5ZB8VH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGso5ZB8VH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGso5ZB8VH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGso5ZB8VH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGso5ZB8VH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGso5ZB8VH .dropdown-item.active,
.cid-uGso5ZB8VH .dropdown-item:active {
  background-color: transparent;
}
.cid-uGso5ZB8VH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGso5ZB8VH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGso5ZB8VH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGso5ZB8VH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGso5ZB8VH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGso5ZB8VH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGso5ZB8VH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGso5ZB8VH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGso5ZB8VH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGso5ZB8VH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGso5ZB8VH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGso5ZB8VH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGso5ZB8VH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGso5ZB8VH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGso5ZB8VH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGso5ZB8VH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGso5ZB8VH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGso5ZB8VH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGso5ZB8VH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGso5ZB8VH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGso5ZB8VH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGso5ZB8VH .navbar {
    height: 70px;
  }
  .cid-uGso5ZB8VH .navbar.opened {
    height: auto;
  }
  .cid-uGso5ZB8VH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGso601Tu8 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGso601Tu8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGso601Tu8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGstbLkLjY {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uGstbLkLjY img,
.cid-uGstbLkLjY .item-img {
  width: 100%;
}
.cid-uGstbLkLjY .item:focus,
.cid-uGstbLkLjY span:focus {
  outline: none;
}
.cid-uGstbLkLjY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uGstbLkLjY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafcf1;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGstbLkLjY .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uGstbLkLjY .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGstbLkLjY .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uGstbLkLjY .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uGstbLkLjY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGstbLkLjY .mbr-section-title {
  color: #232323;
}
.cid-uGstbLkLjY .mbr-text,
.cid-uGstbLkLjY .mbr-section-btn {
  text-align: center;
  color: #232323;
}
.cid-uGstbLkLjY .item-title {
  text-align: center;
  color: #232323;
}
.cid-uGstbLkLjY .item-subtitle {
  text-align: left;
}
.cid-uGso60nnB0 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGso60nnB0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGso60nnB0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGso60nnB0 .mbr-section-title {
  color: #ffffff;
}
.cid-uGso60nnB0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGso60BcN1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGso60BcN1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGso60BcN1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGso60PSa3 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGso60PSa3 .content {
    text-align: center;
  }
  .cid-uGso60PSa3 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGso60PSa3 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGso60PSa3 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGso60PSa3 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGso60PSa3 .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGso60PSa3 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGso60PSa3 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGso60PSa3 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGso60PSa3 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGso60PSa3 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGso60PSa3 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGso60PSa3 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGso60PSa3 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGso60PSa3 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGso60PSa3 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGso60PSa3 .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGxzfzN4YG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGxzfzN4YG nav.navbar {
  position: fixed;
}
.cid-uGxzfzN4YG .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGxzfzN4YG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGxzfzN4YG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGxzfzN4YG .dropdown-item:hover,
.cid-uGxzfzN4YG .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGxzfzN4YG .dropdown-item:hover span {
  color: white;
}
.cid-uGxzfzN4YG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGxzfzN4YG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGxzfzN4YG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGxzfzN4YG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGxzfzN4YG .nav-link {
  position: relative;
}
.cid-uGxzfzN4YG .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGxzfzN4YG .container {
    flex-wrap: nowrap;
  }
}
.cid-uGxzfzN4YG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGxzfzN4YG .dropdown-menu,
.cid-uGxzfzN4YG .navbar.opened {
  background: #fafcee !important;
}
.cid-uGxzfzN4YG .nav-item:focus,
.cid-uGxzfzN4YG .nav-link:focus {
  outline: none;
}
.cid-uGxzfzN4YG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGxzfzN4YG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGxzfzN4YG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGxzfzN4YG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGxzfzN4YG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGxzfzN4YG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGxzfzN4YG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGxzfzN4YG .navbar.opened {
  transition: all 0.3s;
}
.cid-uGxzfzN4YG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGxzfzN4YG .navbar .navbar-logo img {
  width: auto;
}
.cid-uGxzfzN4YG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGxzfzN4YG .navbar.collapsed {
  justify-content: center;
}
.cid-uGxzfzN4YG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGxzfzN4YG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGxzfzN4YG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGxzfzN4YG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGxzfzN4YG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGxzfzN4YG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGxzfzN4YG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGxzfzN4YG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGxzfzN4YG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGxzfzN4YG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGxzfzN4YG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGxzfzN4YG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGxzfzN4YG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGxzfzN4YG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGxzfzN4YG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGxzfzN4YG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGxzfzN4YG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGxzfzN4YG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGxzfzN4YG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGxzfzN4YG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGxzfzN4YG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGxzfzN4YG .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGxzfzN4YG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGxzfzN4YG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGxzfzN4YG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGxzfzN4YG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGxzfzN4YG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGxzfzN4YG .dropdown-item.active,
.cid-uGxzfzN4YG .dropdown-item:active {
  background-color: transparent;
}
.cid-uGxzfzN4YG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGxzfzN4YG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGxzfzN4YG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGxzfzN4YG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGxzfzN4YG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGxzfzN4YG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGxzfzN4YG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGxzfzN4YG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGxzfzN4YG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGxzfzN4YG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGxzfzN4YG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGxzfzN4YG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGxzfzN4YG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGxzfzN4YG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGxzfzN4YG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGxzfzN4YG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGxzfzN4YG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGxzfzN4YG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGxzfzN4YG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGxzfzN4YG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGxzfzN4YG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGxzfzN4YG .navbar {
    height: 70px;
  }
  .cid-uGxzfzN4YG .navbar.opened {
    height: auto;
  }
  .cid-uGxzfzN4YG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGxzfAk98V {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGxzfAk98V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGxzfAk98V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGxzfBMxGs {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGxzfBMxGs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGxzfBMxGs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGxzfBMxGs .mbr-section-title {
  color: #ffffff;
}
.cid-uGxzfBMxGs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGxzfCf4bD {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGxzfCf4bD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGxzfCf4bD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGxzfCwcIR {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGxzfCwcIR .content {
    text-align: center;
  }
  .cid-uGxzfCwcIR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGxzfCwcIR .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGxzfCwcIR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGxzfCwcIR .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGxzfCwcIR .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGxzfCwcIR .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGxzfCwcIR .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGxzfCwcIR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGxzfCwcIR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGxzfCwcIR .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGxzfCwcIR .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGxzfCwcIR .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGxzfCwcIR .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGxzfCwcIR .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGxzfCwcIR .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGxzfCwcIR .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGxK09z6nL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGxK09z6nL nav.navbar {
  position: fixed;
}
.cid-uGxK09z6nL .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGxK09z6nL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGxK09z6nL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGxK09z6nL .dropdown-item:hover,
.cid-uGxK09z6nL .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGxK09z6nL .dropdown-item:hover span {
  color: white;
}
.cid-uGxK09z6nL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGxK09z6nL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGxK09z6nL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGxK09z6nL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGxK09z6nL .nav-link {
  position: relative;
}
.cid-uGxK09z6nL .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGxK09z6nL .container {
    flex-wrap: nowrap;
  }
}
.cid-uGxK09z6nL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGxK09z6nL .dropdown-menu,
.cid-uGxK09z6nL .navbar.opened {
  background: #fafcee !important;
}
.cid-uGxK09z6nL .nav-item:focus,
.cid-uGxK09z6nL .nav-link:focus {
  outline: none;
}
.cid-uGxK09z6nL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGxK09z6nL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGxK09z6nL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGxK09z6nL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGxK09z6nL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGxK09z6nL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGxK09z6nL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGxK09z6nL .navbar.opened {
  transition: all 0.3s;
}
.cid-uGxK09z6nL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGxK09z6nL .navbar .navbar-logo img {
  width: auto;
}
.cid-uGxK09z6nL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGxK09z6nL .navbar.collapsed {
  justify-content: center;
}
.cid-uGxK09z6nL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGxK09z6nL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGxK09z6nL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGxK09z6nL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGxK09z6nL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGxK09z6nL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGxK09z6nL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGxK09z6nL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGxK09z6nL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGxK09z6nL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGxK09z6nL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGxK09z6nL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGxK09z6nL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGxK09z6nL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGxK09z6nL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGxK09z6nL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGxK09z6nL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGxK09z6nL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGxK09z6nL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGxK09z6nL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGxK09z6nL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGxK09z6nL .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGxK09z6nL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGxK09z6nL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGxK09z6nL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGxK09z6nL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGxK09z6nL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGxK09z6nL .dropdown-item.active,
.cid-uGxK09z6nL .dropdown-item:active {
  background-color: transparent;
}
.cid-uGxK09z6nL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGxK09z6nL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGxK09z6nL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGxK09z6nL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGxK09z6nL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGxK09z6nL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGxK09z6nL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGxK09z6nL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGxK09z6nL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGxK09z6nL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGxK09z6nL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGxK09z6nL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGxK09z6nL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGxK09z6nL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGxK09z6nL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGxK09z6nL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGxK09z6nL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGxK09z6nL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGxK09z6nL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGxK09z6nL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGxK09z6nL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGxK09z6nL .navbar {
    height: 70px;
  }
  .cid-uGxK09z6nL .navbar.opened {
    height: auto;
  }
  .cid-uGxK09z6nL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGxK09XVIr {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGxK09XVIr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGxK09XVIr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGxK0aettO {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGxK0aettO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGxK0aettO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGxK0aettO .mbr-section-title {
  color: #ffffff;
}
.cid-uGxK0aettO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGxK0asqye {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGxK0asqye .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGxK0asqye .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGxK0aGR74 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGxK0aGR74 .content {
    text-align: center;
  }
  .cid-uGxK0aGR74 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGxK0aGR74 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGxK0aGR74 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGxK0aGR74 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGxK0aGR74 .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGxK0aGR74 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGxK0aGR74 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGxK0aGR74 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGxK0aGR74 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGxK0aGR74 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGxK0aGR74 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGxK0aGR74 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGxK0aGR74 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGxK0aGR74 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGxK0aGR74 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGxK0aGR74 .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGxOzGep96 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGxOzGep96 nav.navbar {
  position: fixed;
}
.cid-uGxOzGep96 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGxOzGep96 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGxOzGep96 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGxOzGep96 .dropdown-item:hover,
.cid-uGxOzGep96 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGxOzGep96 .dropdown-item:hover span {
  color: white;
}
.cid-uGxOzGep96 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGxOzGep96 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGxOzGep96 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGxOzGep96 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGxOzGep96 .nav-link {
  position: relative;
}
.cid-uGxOzGep96 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGxOzGep96 .container {
    flex-wrap: nowrap;
  }
}
.cid-uGxOzGep96 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGxOzGep96 .dropdown-menu,
.cid-uGxOzGep96 .navbar.opened {
  background: #fafcee !important;
}
.cid-uGxOzGep96 .nav-item:focus,
.cid-uGxOzGep96 .nav-link:focus {
  outline: none;
}
.cid-uGxOzGep96 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGxOzGep96 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGxOzGep96 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGxOzGep96 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGxOzGep96 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGxOzGep96 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGxOzGep96 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGxOzGep96 .navbar.opened {
  transition: all 0.3s;
}
.cid-uGxOzGep96 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGxOzGep96 .navbar .navbar-logo img {
  width: auto;
}
.cid-uGxOzGep96 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGxOzGep96 .navbar.collapsed {
  justify-content: center;
}
.cid-uGxOzGep96 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGxOzGep96 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGxOzGep96 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGxOzGep96 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGxOzGep96 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGxOzGep96 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGxOzGep96 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGxOzGep96 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGxOzGep96 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGxOzGep96 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGxOzGep96 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGxOzGep96 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGxOzGep96 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGxOzGep96 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGxOzGep96 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGxOzGep96 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGxOzGep96 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGxOzGep96 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGxOzGep96 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGxOzGep96 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGxOzGep96 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGxOzGep96 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGxOzGep96 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGxOzGep96 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGxOzGep96 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGxOzGep96 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGxOzGep96 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGxOzGep96 .dropdown-item.active,
.cid-uGxOzGep96 .dropdown-item:active {
  background-color: transparent;
}
.cid-uGxOzGep96 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGxOzGep96 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGxOzGep96 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGxOzGep96 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGxOzGep96 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGxOzGep96 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGxOzGep96 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGxOzGep96 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGxOzGep96 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGxOzGep96 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGxOzGep96 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGxOzGep96 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGxOzGep96 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGxOzGep96 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGxOzGep96 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGxOzGep96 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGxOzGep96 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGxOzGep96 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGxOzGep96 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGxOzGep96 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGxOzGep96 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGxOzGep96 .navbar {
    height: 70px;
  }
  .cid-uGxOzGep96 .navbar.opened {
    height: auto;
  }
  .cid-uGxOzGep96 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGxOzGAxeA {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGxOzGAxeA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGxOzGAxeA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGxOzGSTsf {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGxOzGSTsf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGxOzGSTsf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGxOzGSTsf .mbr-section-title {
  color: #ffffff;
}
.cid-uGxOzGSTsf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGxOzH7ljH {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGxOzH7ljH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGxOzH7ljH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGxOzHlpFI {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGxOzHlpFI .content {
    text-align: center;
  }
  .cid-uGxOzHlpFI .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGxOzHlpFI .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGxOzHlpFI .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGxOzHlpFI .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGxOzHlpFI .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGxOzHlpFI .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGxOzHlpFI .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGxOzHlpFI .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGxOzHlpFI .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGxOzHlpFI .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGxOzHlpFI .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGxOzHlpFI .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGxOzHlpFI .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGxOzHlpFI .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGxOzHlpFI .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGxOzHlpFI .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGxRJAsiDx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGxRJAsiDx nav.navbar {
  position: fixed;
}
.cid-uGxRJAsiDx .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGxRJAsiDx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGxRJAsiDx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGxRJAsiDx .dropdown-item:hover,
.cid-uGxRJAsiDx .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGxRJAsiDx .dropdown-item:hover span {
  color: white;
}
.cid-uGxRJAsiDx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGxRJAsiDx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGxRJAsiDx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGxRJAsiDx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGxRJAsiDx .nav-link {
  position: relative;
}
.cid-uGxRJAsiDx .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGxRJAsiDx .container {
    flex-wrap: nowrap;
  }
}
.cid-uGxRJAsiDx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGxRJAsiDx .dropdown-menu,
.cid-uGxRJAsiDx .navbar.opened {
  background: #fafcee !important;
}
.cid-uGxRJAsiDx .nav-item:focus,
.cid-uGxRJAsiDx .nav-link:focus {
  outline: none;
}
.cid-uGxRJAsiDx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGxRJAsiDx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGxRJAsiDx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGxRJAsiDx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGxRJAsiDx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGxRJAsiDx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGxRJAsiDx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGxRJAsiDx .navbar.opened {
  transition: all 0.3s;
}
.cid-uGxRJAsiDx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGxRJAsiDx .navbar .navbar-logo img {
  width: auto;
}
.cid-uGxRJAsiDx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGxRJAsiDx .navbar.collapsed {
  justify-content: center;
}
.cid-uGxRJAsiDx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGxRJAsiDx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGxRJAsiDx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGxRJAsiDx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGxRJAsiDx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGxRJAsiDx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGxRJAsiDx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGxRJAsiDx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGxRJAsiDx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGxRJAsiDx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGxRJAsiDx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGxRJAsiDx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGxRJAsiDx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGxRJAsiDx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGxRJAsiDx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGxRJAsiDx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGxRJAsiDx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGxRJAsiDx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGxRJAsiDx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGxRJAsiDx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGxRJAsiDx .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGxRJAsiDx .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGxRJAsiDx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGxRJAsiDx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGxRJAsiDx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGxRJAsiDx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGxRJAsiDx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGxRJAsiDx .dropdown-item.active,
.cid-uGxRJAsiDx .dropdown-item:active {
  background-color: transparent;
}
.cid-uGxRJAsiDx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGxRJAsiDx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGxRJAsiDx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGxRJAsiDx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGxRJAsiDx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGxRJAsiDx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGxRJAsiDx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGxRJAsiDx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGxRJAsiDx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGxRJAsiDx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGxRJAsiDx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGxRJAsiDx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGxRJAsiDx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGxRJAsiDx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGxRJAsiDx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGxRJAsiDx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGxRJAsiDx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGxRJAsiDx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGxRJAsiDx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGxRJAsiDx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGxRJAsiDx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGxRJAsiDx .navbar {
    height: 70px;
  }
  .cid-uGxRJAsiDx .navbar.opened {
    height: auto;
  }
  .cid-uGxRJAsiDx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGxRJAPbDV {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGxRJAPbDV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGxRJAPbDV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGxRJB7Bzs {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGxRJB7Bzs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGxRJB7Bzs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGxRJB7Bzs .mbr-section-title {
  color: #ffffff;
}
.cid-uGxRJB7Bzs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGxRJBlQBh {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGxRJBlQBh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGxRJBlQBh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGxRJBzTgH {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGxRJBzTgH .content {
    text-align: center;
  }
  .cid-uGxRJBzTgH .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGxRJBzTgH .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGxRJBzTgH .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGxRJBzTgH .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGxRJBzTgH .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGxRJBzTgH .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGxRJBzTgH .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGxRJBzTgH .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGxRJBzTgH .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGxRJBzTgH .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGxRJBzTgH .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGxRJBzTgH .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGxRJBzTgH .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGxRJBzTgH .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGxRJBzTgH .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGxRJBzTgH .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGy3U10xF3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGy3U10xF3 nav.navbar {
  position: fixed;
}
.cid-uGy3U10xF3 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGy3U10xF3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGy3U10xF3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGy3U10xF3 .dropdown-item:hover,
.cid-uGy3U10xF3 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGy3U10xF3 .dropdown-item:hover span {
  color: white;
}
.cid-uGy3U10xF3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGy3U10xF3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGy3U10xF3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGy3U10xF3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGy3U10xF3 .nav-link {
  position: relative;
}
.cid-uGy3U10xF3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGy3U10xF3 .container {
    flex-wrap: nowrap;
  }
}
.cid-uGy3U10xF3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGy3U10xF3 .dropdown-menu,
.cid-uGy3U10xF3 .navbar.opened {
  background: #fafcee !important;
}
.cid-uGy3U10xF3 .nav-item:focus,
.cid-uGy3U10xF3 .nav-link:focus {
  outline: none;
}
.cid-uGy3U10xF3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGy3U10xF3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGy3U10xF3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGy3U10xF3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGy3U10xF3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGy3U10xF3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGy3U10xF3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGy3U10xF3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uGy3U10xF3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGy3U10xF3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uGy3U10xF3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGy3U10xF3 .navbar.collapsed {
  justify-content: center;
}
.cid-uGy3U10xF3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGy3U10xF3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGy3U10xF3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGy3U10xF3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGy3U10xF3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGy3U10xF3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGy3U10xF3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGy3U10xF3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGy3U10xF3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGy3U10xF3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGy3U10xF3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGy3U10xF3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGy3U10xF3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGy3U10xF3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGy3U10xF3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGy3U10xF3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGy3U10xF3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGy3U10xF3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGy3U10xF3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGy3U10xF3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGy3U10xF3 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGy3U10xF3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGy3U10xF3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGy3U10xF3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGy3U10xF3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGy3U10xF3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGy3U10xF3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGy3U10xF3 .dropdown-item.active,
.cid-uGy3U10xF3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uGy3U10xF3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGy3U10xF3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGy3U10xF3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGy3U10xF3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGy3U10xF3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGy3U10xF3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGy3U10xF3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGy3U10xF3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGy3U10xF3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGy3U10xF3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGy3U10xF3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGy3U10xF3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGy3U10xF3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGy3U10xF3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGy3U10xF3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGy3U10xF3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGy3U10xF3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGy3U10xF3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGy3U10xF3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGy3U10xF3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGy3U10xF3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGy3U10xF3 .navbar {
    height: 70px;
  }
  .cid-uGy3U10xF3 .navbar.opened {
    height: auto;
  }
  .cid-uGy3U10xF3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGy3U1BDlV {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGy3U1BDlV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGy3U1BDlV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGy3U1Yei7 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGy3U1Yei7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGy3U1Yei7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGy3U1Yei7 .mbr-section-title {
  color: #ffffff;
}
.cid-uGy3U1Yei7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGy3U2hi6l {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGy3U2hi6l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGy3U2hi6l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGy3U2AESG {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGy3U2AESG .content {
    text-align: center;
  }
  .cid-uGy3U2AESG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGy3U2AESG .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGy3U2AESG .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGy3U2AESG .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGy3U2AESG .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGy3U2AESG .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGy3U2AESG .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGy3U2AESG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGy3U2AESG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGy3U2AESG .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGy3U2AESG .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGy3U2AESG .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGy3U2AESG .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGy3U2AESG .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGy3U2AESG .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGy3U2AESG .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGy6j4ZT9E {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGy6j4ZT9E nav.navbar {
  position: fixed;
}
.cid-uGy6j4ZT9E .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGy6j4ZT9E .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGy6j4ZT9E .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGy6j4ZT9E .dropdown-item:hover,
.cid-uGy6j4ZT9E .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGy6j4ZT9E .dropdown-item:hover span {
  color: white;
}
.cid-uGy6j4ZT9E .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGy6j4ZT9E .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGy6j4ZT9E .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGy6j4ZT9E .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGy6j4ZT9E .nav-link {
  position: relative;
}
.cid-uGy6j4ZT9E .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGy6j4ZT9E .container {
    flex-wrap: nowrap;
  }
}
.cid-uGy6j4ZT9E .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGy6j4ZT9E .dropdown-menu,
.cid-uGy6j4ZT9E .navbar.opened {
  background: #fafcee !important;
}
.cid-uGy6j4ZT9E .nav-item:focus,
.cid-uGy6j4ZT9E .nav-link:focus {
  outline: none;
}
.cid-uGy6j4ZT9E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGy6j4ZT9E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGy6j4ZT9E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGy6j4ZT9E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGy6j4ZT9E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGy6j4ZT9E .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGy6j4ZT9E .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGy6j4ZT9E .navbar.opened {
  transition: all 0.3s;
}
.cid-uGy6j4ZT9E .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGy6j4ZT9E .navbar .navbar-logo img {
  width: auto;
}
.cid-uGy6j4ZT9E .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGy6j4ZT9E .navbar.collapsed {
  justify-content: center;
}
.cid-uGy6j4ZT9E .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGy6j4ZT9E .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGy6j4ZT9E .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGy6j4ZT9E .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGy6j4ZT9E .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGy6j4ZT9E .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGy6j4ZT9E .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGy6j4ZT9E .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGy6j4ZT9E .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGy6j4ZT9E .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGy6j4ZT9E .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGy6j4ZT9E .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGy6j4ZT9E .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGy6j4ZT9E .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGy6j4ZT9E .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGy6j4ZT9E .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGy6j4ZT9E .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGy6j4ZT9E .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGy6j4ZT9E .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGy6j4ZT9E .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGy6j4ZT9E .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGy6j4ZT9E .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGy6j4ZT9E .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGy6j4ZT9E .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGy6j4ZT9E .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGy6j4ZT9E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGy6j4ZT9E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGy6j4ZT9E .dropdown-item.active,
.cid-uGy6j4ZT9E .dropdown-item:active {
  background-color: transparent;
}
.cid-uGy6j4ZT9E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGy6j4ZT9E .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGy6j4ZT9E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGy6j4ZT9E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGy6j4ZT9E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGy6j4ZT9E .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGy6j4ZT9E ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGy6j4ZT9E .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGy6j4ZT9E button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGy6j4ZT9E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGy6j4ZT9E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGy6j4ZT9E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGy6j4ZT9E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGy6j4ZT9E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGy6j4ZT9E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGy6j4ZT9E nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGy6j4ZT9E nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGy6j4ZT9E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGy6j4ZT9E .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGy6j4ZT9E a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGy6j4ZT9E .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGy6j4ZT9E .navbar {
    height: 70px;
  }
  .cid-uGy6j4ZT9E .navbar.opened {
    height: auto;
  }
  .cid-uGy6j4ZT9E .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGy6j5uA1l {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGy6j5uA1l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGy6j5uA1l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGy6j5PsBU {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGy6j5PsBU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGy6j5PsBU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGy6j5PsBU .mbr-section-title {
  color: #ffffff;
}
.cid-uGy6j5PsBU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGy6j6nc8v {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGy6j6nc8v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGy6j6nc8v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGy6j6Eigc {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGy6j6Eigc .content {
    text-align: center;
  }
  .cid-uGy6j6Eigc .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGy6j6Eigc .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGy6j6Eigc .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGy6j6Eigc .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGy6j6Eigc .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGy6j6Eigc .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGy6j6Eigc .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGy6j6Eigc .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGy6j6Eigc .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGy6j6Eigc .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGy6j6Eigc .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGy6j6Eigc .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGy6j6Eigc .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGy6j6Eigc .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGy6j6Eigc .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGy6j6Eigc .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGybbHTz29 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGybbHTz29 nav.navbar {
  position: fixed;
}
.cid-uGybbHTz29 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGybbHTz29 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGybbHTz29 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGybbHTz29 .dropdown-item:hover,
.cid-uGybbHTz29 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGybbHTz29 .dropdown-item:hover span {
  color: white;
}
.cid-uGybbHTz29 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGybbHTz29 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGybbHTz29 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGybbHTz29 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGybbHTz29 .nav-link {
  position: relative;
}
.cid-uGybbHTz29 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGybbHTz29 .container {
    flex-wrap: nowrap;
  }
}
.cid-uGybbHTz29 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGybbHTz29 .dropdown-menu,
.cid-uGybbHTz29 .navbar.opened {
  background: #fafcee !important;
}
.cid-uGybbHTz29 .nav-item:focus,
.cid-uGybbHTz29 .nav-link:focus {
  outline: none;
}
.cid-uGybbHTz29 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGybbHTz29 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGybbHTz29 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGybbHTz29 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGybbHTz29 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGybbHTz29 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGybbHTz29 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGybbHTz29 .navbar.opened {
  transition: all 0.3s;
}
.cid-uGybbHTz29 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGybbHTz29 .navbar .navbar-logo img {
  width: auto;
}
.cid-uGybbHTz29 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGybbHTz29 .navbar.collapsed {
  justify-content: center;
}
.cid-uGybbHTz29 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGybbHTz29 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGybbHTz29 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGybbHTz29 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGybbHTz29 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGybbHTz29 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGybbHTz29 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGybbHTz29 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGybbHTz29 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGybbHTz29 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGybbHTz29 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGybbHTz29 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGybbHTz29 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGybbHTz29 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGybbHTz29 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGybbHTz29 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGybbHTz29 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGybbHTz29 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGybbHTz29 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGybbHTz29 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGybbHTz29 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGybbHTz29 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGybbHTz29 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGybbHTz29 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGybbHTz29 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGybbHTz29 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGybbHTz29 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGybbHTz29 .dropdown-item.active,
.cid-uGybbHTz29 .dropdown-item:active {
  background-color: transparent;
}
.cid-uGybbHTz29 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGybbHTz29 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGybbHTz29 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGybbHTz29 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGybbHTz29 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGybbHTz29 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGybbHTz29 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGybbHTz29 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGybbHTz29 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGybbHTz29 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGybbHTz29 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGybbHTz29 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGybbHTz29 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGybbHTz29 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGybbHTz29 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGybbHTz29 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGybbHTz29 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGybbHTz29 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGybbHTz29 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGybbHTz29 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGybbHTz29 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGybbHTz29 .navbar {
    height: 70px;
  }
  .cid-uGybbHTz29 .navbar.opened {
    height: auto;
  }
  .cid-uGybbHTz29 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGybbIxe2I {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGybbIxe2I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGybbIxe2I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGybbISTVo {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGybbISTVo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGybbISTVo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGybbISTVo .mbr-section-title {
  color: #ffffff;
}
.cid-uGybbISTVo .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGybbJ6f6y {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGybbJ6f6y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGybbJ6f6y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGybbJlAXh {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGybbJlAXh .content {
    text-align: center;
  }
  .cid-uGybbJlAXh .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGybbJlAXh .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGybbJlAXh .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGybbJlAXh .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGybbJlAXh .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGybbJlAXh .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGybbJlAXh .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGybbJlAXh .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGybbJlAXh .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGybbJlAXh .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGybbJlAXh .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGybbJlAXh .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGybbJlAXh .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGybbJlAXh .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGybbJlAXh .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGybbJlAXh .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGyfcMzRBH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGyfcMzRBH nav.navbar {
  position: fixed;
}
.cid-uGyfcMzRBH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGyfcMzRBH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGyfcMzRBH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGyfcMzRBH .dropdown-item:hover,
.cid-uGyfcMzRBH .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGyfcMzRBH .dropdown-item:hover span {
  color: white;
}
.cid-uGyfcMzRBH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGyfcMzRBH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGyfcMzRBH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGyfcMzRBH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGyfcMzRBH .nav-link {
  position: relative;
}
.cid-uGyfcMzRBH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGyfcMzRBH .container {
    flex-wrap: nowrap;
  }
}
.cid-uGyfcMzRBH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGyfcMzRBH .dropdown-menu,
.cid-uGyfcMzRBH .navbar.opened {
  background: #fafcee !important;
}
.cid-uGyfcMzRBH .nav-item:focus,
.cid-uGyfcMzRBH .nav-link:focus {
  outline: none;
}
.cid-uGyfcMzRBH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGyfcMzRBH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGyfcMzRBH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGyfcMzRBH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGyfcMzRBH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGyfcMzRBH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGyfcMzRBH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGyfcMzRBH .navbar.opened {
  transition: all 0.3s;
}
.cid-uGyfcMzRBH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGyfcMzRBH .navbar .navbar-logo img {
  width: auto;
}
.cid-uGyfcMzRBH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGyfcMzRBH .navbar.collapsed {
  justify-content: center;
}
.cid-uGyfcMzRBH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGyfcMzRBH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGyfcMzRBH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGyfcMzRBH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGyfcMzRBH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGyfcMzRBH .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGyfcMzRBH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGyfcMzRBH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGyfcMzRBH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGyfcMzRBH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGyfcMzRBH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGyfcMzRBH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGyfcMzRBH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGyfcMzRBH .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGyfcMzRBH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGyfcMzRBH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGyfcMzRBH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGyfcMzRBH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGyfcMzRBH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGyfcMzRBH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGyfcMzRBH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGyfcMzRBH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGyfcMzRBH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGyfcMzRBH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGyfcMzRBH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGyfcMzRBH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGyfcMzRBH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGyfcMzRBH .dropdown-item.active,
.cid-uGyfcMzRBH .dropdown-item:active {
  background-color: transparent;
}
.cid-uGyfcMzRBH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGyfcMzRBH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGyfcMzRBH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGyfcMzRBH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGyfcMzRBH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGyfcMzRBH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGyfcMzRBH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGyfcMzRBH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGyfcMzRBH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGyfcMzRBH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGyfcMzRBH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGyfcMzRBH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGyfcMzRBH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGyfcMzRBH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGyfcMzRBH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGyfcMzRBH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGyfcMzRBH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGyfcMzRBH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGyfcMzRBH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGyfcMzRBH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGyfcMzRBH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGyfcMzRBH .navbar {
    height: 70px;
  }
  .cid-uGyfcMzRBH .navbar.opened {
    height: auto;
  }
  .cid-uGyfcMzRBH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGyfcMWKJN {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGyfcMWKJN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGyfcMWKJN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGyfcNeEjF {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGyfcNeEjF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGyfcNeEjF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGyfcNeEjF .mbr-section-title {
  color: #ffffff;
}
.cid-uGyfcNeEjF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGyfcNsR5q {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGyfcNsR5q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGyfcNsR5q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGyfcNGPZZ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGyfcNGPZZ .content {
    text-align: center;
  }
  .cid-uGyfcNGPZZ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGyfcNGPZZ .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGyfcNGPZZ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGyfcNGPZZ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGyfcNGPZZ .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGyfcNGPZZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGyfcNGPZZ .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGyfcNGPZZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGyfcNGPZZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGyfcNGPZZ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGyfcNGPZZ .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGyfcNGPZZ .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGyfcNGPZZ .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGyfcNGPZZ .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGyfcNGPZZ .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGyfcNGPZZ .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGDwK6nS3Q {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGDwK6nS3Q nav.navbar {
  position: fixed;
}
.cid-uGDwK6nS3Q .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGDwK6nS3Q .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGDwK6nS3Q .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGDwK6nS3Q .dropdown-item:hover,
.cid-uGDwK6nS3Q .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGDwK6nS3Q .dropdown-item:hover span {
  color: white;
}
.cid-uGDwK6nS3Q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGDwK6nS3Q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGDwK6nS3Q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGDwK6nS3Q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGDwK6nS3Q .nav-link {
  position: relative;
}
.cid-uGDwK6nS3Q .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGDwK6nS3Q .container {
    flex-wrap: nowrap;
  }
}
.cid-uGDwK6nS3Q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGDwK6nS3Q .dropdown-menu,
.cid-uGDwK6nS3Q .navbar.opened {
  background: #fafcee !important;
}
.cid-uGDwK6nS3Q .nav-item:focus,
.cid-uGDwK6nS3Q .nav-link:focus {
  outline: none;
}
.cid-uGDwK6nS3Q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGDwK6nS3Q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGDwK6nS3Q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGDwK6nS3Q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGDwK6nS3Q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGDwK6nS3Q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGDwK6nS3Q .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGDwK6nS3Q .navbar.opened {
  transition: all 0.3s;
}
.cid-uGDwK6nS3Q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGDwK6nS3Q .navbar .navbar-logo img {
  width: auto;
}
.cid-uGDwK6nS3Q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGDwK6nS3Q .navbar.collapsed {
  justify-content: center;
}
.cid-uGDwK6nS3Q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGDwK6nS3Q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGDwK6nS3Q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGDwK6nS3Q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGDwK6nS3Q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGDwK6nS3Q .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGDwK6nS3Q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGDwK6nS3Q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGDwK6nS3Q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGDwK6nS3Q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGDwK6nS3Q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGDwK6nS3Q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGDwK6nS3Q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGDwK6nS3Q .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGDwK6nS3Q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGDwK6nS3Q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGDwK6nS3Q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGDwK6nS3Q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGDwK6nS3Q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGDwK6nS3Q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGDwK6nS3Q .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGDwK6nS3Q .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGDwK6nS3Q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGDwK6nS3Q .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGDwK6nS3Q .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGDwK6nS3Q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGDwK6nS3Q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGDwK6nS3Q .dropdown-item.active,
.cid-uGDwK6nS3Q .dropdown-item:active {
  background-color: transparent;
}
.cid-uGDwK6nS3Q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGDwK6nS3Q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGDwK6nS3Q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGDwK6nS3Q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGDwK6nS3Q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGDwK6nS3Q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGDwK6nS3Q ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGDwK6nS3Q .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGDwK6nS3Q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGDwK6nS3Q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGDwK6nS3Q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGDwK6nS3Q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGDwK6nS3Q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGDwK6nS3Q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGDwK6nS3Q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGDwK6nS3Q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGDwK6nS3Q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGDwK6nS3Q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGDwK6nS3Q .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGDwK6nS3Q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGDwK6nS3Q .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGDwK6nS3Q .navbar {
    height: 70px;
  }
  .cid-uGDwK6nS3Q .navbar.opened {
    height: auto;
  }
  .cid-uGDwK6nS3Q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGDwK6KIHD {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGDwK6KIHD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDwK6KIHD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDwK73TIe {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGDwK73TIe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDwK73TIe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDwK73TIe .mbr-section-title {
  color: #ffffff;
}
.cid-uGDwK73TIe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGDwK7iaKF {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGDwK7iaKF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDwK7iaKF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDwK7wc55 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGDwK7wc55 .content {
    text-align: center;
  }
  .cid-uGDwK7wc55 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGDwK7wc55 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGDwK7wc55 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGDwK7wc55 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGDwK7wc55 .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGDwK7wc55 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGDwK7wc55 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGDwK7wc55 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGDwK7wc55 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGDwK7wc55 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGDwK7wc55 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGDwK7wc55 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGDwK7wc55 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGDwK7wc55 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGDwK7wc55 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGDwK7wc55 .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGDzotENS4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGDzotENS4 nav.navbar {
  position: fixed;
}
.cid-uGDzotENS4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGDzotENS4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGDzotENS4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGDzotENS4 .dropdown-item:hover,
.cid-uGDzotENS4 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGDzotENS4 .dropdown-item:hover span {
  color: white;
}
.cid-uGDzotENS4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGDzotENS4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGDzotENS4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGDzotENS4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGDzotENS4 .nav-link {
  position: relative;
}
.cid-uGDzotENS4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGDzotENS4 .container {
    flex-wrap: nowrap;
  }
}
.cid-uGDzotENS4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGDzotENS4 .dropdown-menu,
.cid-uGDzotENS4 .navbar.opened {
  background: #fafcee !important;
}
.cid-uGDzotENS4 .nav-item:focus,
.cid-uGDzotENS4 .nav-link:focus {
  outline: none;
}
.cid-uGDzotENS4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGDzotENS4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGDzotENS4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGDzotENS4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGDzotENS4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGDzotENS4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGDzotENS4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGDzotENS4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uGDzotENS4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGDzotENS4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uGDzotENS4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGDzotENS4 .navbar.collapsed {
  justify-content: center;
}
.cid-uGDzotENS4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGDzotENS4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGDzotENS4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGDzotENS4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGDzotENS4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGDzotENS4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGDzotENS4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGDzotENS4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGDzotENS4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGDzotENS4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGDzotENS4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGDzotENS4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGDzotENS4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGDzotENS4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGDzotENS4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGDzotENS4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGDzotENS4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGDzotENS4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGDzotENS4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGDzotENS4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGDzotENS4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGDzotENS4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGDzotENS4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGDzotENS4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGDzotENS4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGDzotENS4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGDzotENS4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGDzotENS4 .dropdown-item.active,
.cid-uGDzotENS4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uGDzotENS4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGDzotENS4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGDzotENS4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGDzotENS4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGDzotENS4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGDzotENS4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGDzotENS4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGDzotENS4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGDzotENS4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGDzotENS4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGDzotENS4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGDzotENS4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGDzotENS4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGDzotENS4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGDzotENS4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGDzotENS4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGDzotENS4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGDzotENS4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGDzotENS4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGDzotENS4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGDzotENS4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGDzotENS4 .navbar {
    height: 70px;
  }
  .cid-uGDzotENS4 .navbar.opened {
    height: auto;
  }
  .cid-uGDzotENS4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGDzou06Br {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGDzou06Br .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDzou06Br .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDzouhNKm {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGDzouhNKm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDzouhNKm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDzouhNKm .mbr-section-title {
  color: #ffffff;
}
.cid-uGDzouhNKm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGDzouvaXV {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGDzouvaXV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDzouvaXV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDzouIVSp {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGDzouIVSp .content {
    text-align: center;
  }
  .cid-uGDzouIVSp .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGDzouIVSp .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGDzouIVSp .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGDzouIVSp .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGDzouIVSp .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGDzouIVSp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGDzouIVSp .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGDzouIVSp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGDzouIVSp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGDzouIVSp .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGDzouIVSp .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGDzouIVSp .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGDzouIVSp .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGDzouIVSp .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGDzouIVSp .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGDzouIVSp .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGDCIEaDyV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGDCIEaDyV nav.navbar {
  position: fixed;
}
.cid-uGDCIEaDyV .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGDCIEaDyV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGDCIEaDyV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGDCIEaDyV .dropdown-item:hover,
.cid-uGDCIEaDyV .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGDCIEaDyV .dropdown-item:hover span {
  color: white;
}
.cid-uGDCIEaDyV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGDCIEaDyV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGDCIEaDyV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGDCIEaDyV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGDCIEaDyV .nav-link {
  position: relative;
}
.cid-uGDCIEaDyV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGDCIEaDyV .container {
    flex-wrap: nowrap;
  }
}
.cid-uGDCIEaDyV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGDCIEaDyV .dropdown-menu,
.cid-uGDCIEaDyV .navbar.opened {
  background: #fafcee !important;
}
.cid-uGDCIEaDyV .nav-item:focus,
.cid-uGDCIEaDyV .nav-link:focus {
  outline: none;
}
.cid-uGDCIEaDyV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGDCIEaDyV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGDCIEaDyV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGDCIEaDyV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGDCIEaDyV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGDCIEaDyV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGDCIEaDyV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGDCIEaDyV .navbar.opened {
  transition: all 0.3s;
}
.cid-uGDCIEaDyV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGDCIEaDyV .navbar .navbar-logo img {
  width: auto;
}
.cid-uGDCIEaDyV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGDCIEaDyV .navbar.collapsed {
  justify-content: center;
}
.cid-uGDCIEaDyV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGDCIEaDyV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGDCIEaDyV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGDCIEaDyV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGDCIEaDyV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGDCIEaDyV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGDCIEaDyV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGDCIEaDyV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGDCIEaDyV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGDCIEaDyV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGDCIEaDyV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGDCIEaDyV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGDCIEaDyV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGDCIEaDyV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGDCIEaDyV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGDCIEaDyV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGDCIEaDyV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGDCIEaDyV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGDCIEaDyV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGDCIEaDyV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGDCIEaDyV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGDCIEaDyV .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGDCIEaDyV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGDCIEaDyV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGDCIEaDyV .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGDCIEaDyV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGDCIEaDyV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGDCIEaDyV .dropdown-item.active,
.cid-uGDCIEaDyV .dropdown-item:active {
  background-color: transparent;
}
.cid-uGDCIEaDyV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGDCIEaDyV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGDCIEaDyV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGDCIEaDyV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGDCIEaDyV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGDCIEaDyV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGDCIEaDyV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGDCIEaDyV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGDCIEaDyV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGDCIEaDyV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGDCIEaDyV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGDCIEaDyV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGDCIEaDyV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGDCIEaDyV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGDCIEaDyV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGDCIEaDyV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGDCIEaDyV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGDCIEaDyV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGDCIEaDyV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGDCIEaDyV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGDCIEaDyV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGDCIEaDyV .navbar {
    height: 70px;
  }
  .cid-uGDCIEaDyV .navbar.opened {
    height: auto;
  }
  .cid-uGDCIEaDyV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGDCIEyNw6 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGDCIEyNw6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDCIEyNw6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDCIEQ47u {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGDCIEQ47u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDCIEQ47u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDCIEQ47u .mbr-section-title {
  color: #ffffff;
}
.cid-uGDCIEQ47u .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGDCIF4wJ5 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGDCIF4wJ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDCIF4wJ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDCIFk7p0 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGDCIFk7p0 .content {
    text-align: center;
  }
  .cid-uGDCIFk7p0 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGDCIFk7p0 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGDCIFk7p0 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGDCIFk7p0 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGDCIFk7p0 .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGDCIFk7p0 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGDCIFk7p0 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGDCIFk7p0 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGDCIFk7p0 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGDCIFk7p0 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGDCIFk7p0 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGDCIFk7p0 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGDCIFk7p0 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGDCIFk7p0 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGDCIFk7p0 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGDCIFk7p0 .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGDFuk3WCm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGDFuk3WCm nav.navbar {
  position: fixed;
}
.cid-uGDFuk3WCm .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGDFuk3WCm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGDFuk3WCm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGDFuk3WCm .dropdown-item:hover,
.cid-uGDFuk3WCm .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGDFuk3WCm .dropdown-item:hover span {
  color: white;
}
.cid-uGDFuk3WCm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGDFuk3WCm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGDFuk3WCm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGDFuk3WCm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGDFuk3WCm .nav-link {
  position: relative;
}
.cid-uGDFuk3WCm .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGDFuk3WCm .container {
    flex-wrap: nowrap;
  }
}
.cid-uGDFuk3WCm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGDFuk3WCm .dropdown-menu,
.cid-uGDFuk3WCm .navbar.opened {
  background: #fafcee !important;
}
.cid-uGDFuk3WCm .nav-item:focus,
.cid-uGDFuk3WCm .nav-link:focus {
  outline: none;
}
.cid-uGDFuk3WCm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGDFuk3WCm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGDFuk3WCm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGDFuk3WCm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGDFuk3WCm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGDFuk3WCm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGDFuk3WCm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGDFuk3WCm .navbar.opened {
  transition: all 0.3s;
}
.cid-uGDFuk3WCm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGDFuk3WCm .navbar .navbar-logo img {
  width: auto;
}
.cid-uGDFuk3WCm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGDFuk3WCm .navbar.collapsed {
  justify-content: center;
}
.cid-uGDFuk3WCm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGDFuk3WCm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGDFuk3WCm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGDFuk3WCm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGDFuk3WCm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGDFuk3WCm .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGDFuk3WCm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGDFuk3WCm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGDFuk3WCm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGDFuk3WCm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGDFuk3WCm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGDFuk3WCm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGDFuk3WCm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGDFuk3WCm .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGDFuk3WCm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGDFuk3WCm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGDFuk3WCm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGDFuk3WCm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGDFuk3WCm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGDFuk3WCm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGDFuk3WCm .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGDFuk3WCm .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGDFuk3WCm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGDFuk3WCm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGDFuk3WCm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGDFuk3WCm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGDFuk3WCm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGDFuk3WCm .dropdown-item.active,
.cid-uGDFuk3WCm .dropdown-item:active {
  background-color: transparent;
}
.cid-uGDFuk3WCm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGDFuk3WCm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGDFuk3WCm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGDFuk3WCm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGDFuk3WCm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGDFuk3WCm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGDFuk3WCm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGDFuk3WCm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGDFuk3WCm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGDFuk3WCm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGDFuk3WCm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGDFuk3WCm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGDFuk3WCm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGDFuk3WCm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGDFuk3WCm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGDFuk3WCm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGDFuk3WCm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGDFuk3WCm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGDFuk3WCm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGDFuk3WCm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGDFuk3WCm .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGDFuk3WCm .navbar {
    height: 70px;
  }
  .cid-uGDFuk3WCm .navbar.opened {
    height: auto;
  }
  .cid-uGDFuk3WCm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGDFuktreW {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGDFuktreW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDFuktreW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDFukNCry {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGDFukNCry .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDFukNCry .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDFukNCry .mbr-section-title {
  color: #ffffff;
}
.cid-uGDFukNCry .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGDFuldLcG {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGDFuldLcG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDFuldLcG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDFuluYHT {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGDFuluYHT .content {
    text-align: center;
  }
  .cid-uGDFuluYHT .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGDFuluYHT .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGDFuluYHT .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGDFuluYHT .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGDFuluYHT .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGDFuluYHT .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGDFuluYHT .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGDFuluYHT .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGDFuluYHT .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGDFuluYHT .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGDFuluYHT .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGDFuluYHT .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGDFuluYHT .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGDFuluYHT .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGDFuluYHT .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGDFuluYHT .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGDOWJbagw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGDOWJbagw nav.navbar {
  position: fixed;
}
.cid-uGDOWJbagw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGDOWJbagw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGDOWJbagw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGDOWJbagw .dropdown-item:hover,
.cid-uGDOWJbagw .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGDOWJbagw .dropdown-item:hover span {
  color: white;
}
.cid-uGDOWJbagw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGDOWJbagw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGDOWJbagw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGDOWJbagw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGDOWJbagw .nav-link {
  position: relative;
}
.cid-uGDOWJbagw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGDOWJbagw .container {
    flex-wrap: nowrap;
  }
}
.cid-uGDOWJbagw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGDOWJbagw .dropdown-menu,
.cid-uGDOWJbagw .navbar.opened {
  background: #fafcee !important;
}
.cid-uGDOWJbagw .nav-item:focus,
.cid-uGDOWJbagw .nav-link:focus {
  outline: none;
}
.cid-uGDOWJbagw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGDOWJbagw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGDOWJbagw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGDOWJbagw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGDOWJbagw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGDOWJbagw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGDOWJbagw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGDOWJbagw .navbar.opened {
  transition: all 0.3s;
}
.cid-uGDOWJbagw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGDOWJbagw .navbar .navbar-logo img {
  width: auto;
}
.cid-uGDOWJbagw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGDOWJbagw .navbar.collapsed {
  justify-content: center;
}
.cid-uGDOWJbagw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGDOWJbagw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGDOWJbagw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGDOWJbagw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGDOWJbagw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGDOWJbagw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGDOWJbagw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGDOWJbagw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGDOWJbagw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGDOWJbagw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGDOWJbagw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGDOWJbagw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGDOWJbagw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGDOWJbagw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGDOWJbagw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGDOWJbagw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGDOWJbagw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGDOWJbagw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGDOWJbagw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGDOWJbagw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGDOWJbagw .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGDOWJbagw .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGDOWJbagw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGDOWJbagw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGDOWJbagw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGDOWJbagw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGDOWJbagw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGDOWJbagw .dropdown-item.active,
.cid-uGDOWJbagw .dropdown-item:active {
  background-color: transparent;
}
.cid-uGDOWJbagw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGDOWJbagw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGDOWJbagw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGDOWJbagw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGDOWJbagw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGDOWJbagw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGDOWJbagw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGDOWJbagw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGDOWJbagw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGDOWJbagw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGDOWJbagw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGDOWJbagw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGDOWJbagw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGDOWJbagw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGDOWJbagw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGDOWJbagw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGDOWJbagw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGDOWJbagw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGDOWJbagw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGDOWJbagw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGDOWJbagw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGDOWJbagw .navbar {
    height: 70px;
  }
  .cid-uGDOWJbagw .navbar.opened {
    height: auto;
  }
  .cid-uGDOWJbagw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGDOWJytxC {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGDOWJytxC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDOWJytxC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDOWJQXvd {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGDOWJQXvd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDOWJQXvd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDOWJQXvd .mbr-section-title {
  color: #ffffff;
}
.cid-uGDOWJQXvd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGDOWK5Zxs {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGDOWK5Zxs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDOWK5Zxs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDOWKiUYG {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGDOWKiUYG .content {
    text-align: center;
  }
  .cid-uGDOWKiUYG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGDOWKiUYG .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGDOWKiUYG .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGDOWKiUYG .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGDOWKiUYG .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGDOWKiUYG .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGDOWKiUYG .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGDOWKiUYG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGDOWKiUYG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGDOWKiUYG .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGDOWKiUYG .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGDOWKiUYG .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGDOWKiUYG .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGDOWKiUYG .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGDOWKiUYG .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGDOWKiUYG .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGDSHrCyzs {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGDSHrCyzs nav.navbar {
  position: fixed;
}
.cid-uGDSHrCyzs .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGDSHrCyzs .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGDSHrCyzs .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGDSHrCyzs .dropdown-item:hover,
.cid-uGDSHrCyzs .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGDSHrCyzs .dropdown-item:hover span {
  color: white;
}
.cid-uGDSHrCyzs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGDSHrCyzs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGDSHrCyzs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGDSHrCyzs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGDSHrCyzs .nav-link {
  position: relative;
}
.cid-uGDSHrCyzs .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGDSHrCyzs .container {
    flex-wrap: nowrap;
  }
}
.cid-uGDSHrCyzs .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGDSHrCyzs .dropdown-menu,
.cid-uGDSHrCyzs .navbar.opened {
  background: #fafcee !important;
}
.cid-uGDSHrCyzs .nav-item:focus,
.cid-uGDSHrCyzs .nav-link:focus {
  outline: none;
}
.cid-uGDSHrCyzs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGDSHrCyzs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGDSHrCyzs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGDSHrCyzs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGDSHrCyzs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGDSHrCyzs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGDSHrCyzs .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGDSHrCyzs .navbar.opened {
  transition: all 0.3s;
}
.cid-uGDSHrCyzs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGDSHrCyzs .navbar .navbar-logo img {
  width: auto;
}
.cid-uGDSHrCyzs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGDSHrCyzs .navbar.collapsed {
  justify-content: center;
}
.cid-uGDSHrCyzs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGDSHrCyzs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGDSHrCyzs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGDSHrCyzs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGDSHrCyzs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGDSHrCyzs .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGDSHrCyzs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGDSHrCyzs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGDSHrCyzs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGDSHrCyzs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGDSHrCyzs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGDSHrCyzs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGDSHrCyzs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGDSHrCyzs .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGDSHrCyzs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGDSHrCyzs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGDSHrCyzs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGDSHrCyzs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGDSHrCyzs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGDSHrCyzs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGDSHrCyzs .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGDSHrCyzs .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGDSHrCyzs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGDSHrCyzs .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGDSHrCyzs .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGDSHrCyzs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGDSHrCyzs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGDSHrCyzs .dropdown-item.active,
.cid-uGDSHrCyzs .dropdown-item:active {
  background-color: transparent;
}
.cid-uGDSHrCyzs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGDSHrCyzs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGDSHrCyzs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGDSHrCyzs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGDSHrCyzs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGDSHrCyzs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGDSHrCyzs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGDSHrCyzs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGDSHrCyzs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGDSHrCyzs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGDSHrCyzs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGDSHrCyzs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGDSHrCyzs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGDSHrCyzs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGDSHrCyzs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGDSHrCyzs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGDSHrCyzs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGDSHrCyzs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGDSHrCyzs .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGDSHrCyzs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGDSHrCyzs .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGDSHrCyzs .navbar {
    height: 70px;
  }
  .cid-uGDSHrCyzs .navbar.opened {
    height: auto;
  }
  .cid-uGDSHrCyzs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGDSHrZ39W {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGDSHrZ39W .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDSHrZ39W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDSHsiBoE {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGDSHsiBoE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDSHsiBoE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDSHsiBoE .mbr-section-title {
  color: #ffffff;
}
.cid-uGDSHsiBoE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGDSHswHHL {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGDSHswHHL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDSHswHHL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDSHsKRXo {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGDSHsKRXo .content {
    text-align: center;
  }
  .cid-uGDSHsKRXo .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGDSHsKRXo .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGDSHsKRXo .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGDSHsKRXo .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGDSHsKRXo .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGDSHsKRXo .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGDSHsKRXo .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGDSHsKRXo .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGDSHsKRXo .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGDSHsKRXo .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGDSHsKRXo .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGDSHsKRXo .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGDSHsKRXo .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGDSHsKRXo .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGDSHsKRXo .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGDSHsKRXo .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGDViINuDR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGDViINuDR nav.navbar {
  position: fixed;
}
.cid-uGDViINuDR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGDViINuDR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGDViINuDR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGDViINuDR .dropdown-item:hover,
.cid-uGDViINuDR .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGDViINuDR .dropdown-item:hover span {
  color: white;
}
.cid-uGDViINuDR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGDViINuDR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGDViINuDR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGDViINuDR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGDViINuDR .nav-link {
  position: relative;
}
.cid-uGDViINuDR .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGDViINuDR .container {
    flex-wrap: nowrap;
  }
}
.cid-uGDViINuDR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGDViINuDR .dropdown-menu,
.cid-uGDViINuDR .navbar.opened {
  background: #fafcee !important;
}
.cid-uGDViINuDR .nav-item:focus,
.cid-uGDViINuDR .nav-link:focus {
  outline: none;
}
.cid-uGDViINuDR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGDViINuDR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGDViINuDR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGDViINuDR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGDViINuDR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGDViINuDR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGDViINuDR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGDViINuDR .navbar.opened {
  transition: all 0.3s;
}
.cid-uGDViINuDR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGDViINuDR .navbar .navbar-logo img {
  width: auto;
}
.cid-uGDViINuDR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGDViINuDR .navbar.collapsed {
  justify-content: center;
}
.cid-uGDViINuDR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGDViINuDR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGDViINuDR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGDViINuDR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGDViINuDR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGDViINuDR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGDViINuDR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGDViINuDR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGDViINuDR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGDViINuDR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGDViINuDR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGDViINuDR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGDViINuDR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGDViINuDR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGDViINuDR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGDViINuDR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGDViINuDR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGDViINuDR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGDViINuDR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGDViINuDR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGDViINuDR .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGDViINuDR .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGDViINuDR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGDViINuDR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGDViINuDR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGDViINuDR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGDViINuDR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGDViINuDR .dropdown-item.active,
.cid-uGDViINuDR .dropdown-item:active {
  background-color: transparent;
}
.cid-uGDViINuDR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGDViINuDR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGDViINuDR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGDViINuDR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGDViINuDR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGDViINuDR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGDViINuDR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGDViINuDR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGDViINuDR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGDViINuDR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGDViINuDR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGDViINuDR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGDViINuDR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGDViINuDR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGDViINuDR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGDViINuDR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGDViINuDR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGDViINuDR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGDViINuDR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGDViINuDR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGDViINuDR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGDViINuDR .navbar {
    height: 70px;
  }
  .cid-uGDViINuDR .navbar.opened {
    height: auto;
  }
  .cid-uGDViINuDR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGDViJ9TyJ {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGDViJ9TyJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDViJ9TyJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDViJroNh {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGDViJroNh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDViJroNh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDViJroNh .mbr-section-title {
  color: #ffffff;
}
.cid-uGDViJroNh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGDViJFjhA {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGDViJFjhA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDViJFjhA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDViJTKp7 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGDViJTKp7 .content {
    text-align: center;
  }
  .cid-uGDViJTKp7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGDViJTKp7 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGDViJTKp7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGDViJTKp7 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGDViJTKp7 .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGDViJTKp7 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGDViJTKp7 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGDViJTKp7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGDViJTKp7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGDViJTKp7 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGDViJTKp7 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGDViJTKp7 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGDViJTKp7 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGDViJTKp7 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGDViJTKp7 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGDViJTKp7 .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGE3woSKuK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGE3woSKuK nav.navbar {
  position: fixed;
}
.cid-uGE3woSKuK .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGE3woSKuK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGE3woSKuK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGE3woSKuK .dropdown-item:hover,
.cid-uGE3woSKuK .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGE3woSKuK .dropdown-item:hover span {
  color: white;
}
.cid-uGE3woSKuK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGE3woSKuK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGE3woSKuK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGE3woSKuK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGE3woSKuK .nav-link {
  position: relative;
}
.cid-uGE3woSKuK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGE3woSKuK .container {
    flex-wrap: nowrap;
  }
}
.cid-uGE3woSKuK .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGE3woSKuK .dropdown-menu,
.cid-uGE3woSKuK .navbar.opened {
  background: #fafcee !important;
}
.cid-uGE3woSKuK .nav-item:focus,
.cid-uGE3woSKuK .nav-link:focus {
  outline: none;
}
.cid-uGE3woSKuK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGE3woSKuK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGE3woSKuK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGE3woSKuK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGE3woSKuK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGE3woSKuK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGE3woSKuK .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGE3woSKuK .navbar.opened {
  transition: all 0.3s;
}
.cid-uGE3woSKuK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGE3woSKuK .navbar .navbar-logo img {
  width: auto;
}
.cid-uGE3woSKuK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGE3woSKuK .navbar.collapsed {
  justify-content: center;
}
.cid-uGE3woSKuK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGE3woSKuK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGE3woSKuK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGE3woSKuK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGE3woSKuK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGE3woSKuK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGE3woSKuK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGE3woSKuK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGE3woSKuK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGE3woSKuK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGE3woSKuK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGE3woSKuK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGE3woSKuK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGE3woSKuK .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGE3woSKuK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGE3woSKuK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGE3woSKuK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGE3woSKuK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGE3woSKuK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGE3woSKuK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGE3woSKuK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGE3woSKuK .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGE3woSKuK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGE3woSKuK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGE3woSKuK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGE3woSKuK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGE3woSKuK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGE3woSKuK .dropdown-item.active,
.cid-uGE3woSKuK .dropdown-item:active {
  background-color: transparent;
}
.cid-uGE3woSKuK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGE3woSKuK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGE3woSKuK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGE3woSKuK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGE3woSKuK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGE3woSKuK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGE3woSKuK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGE3woSKuK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGE3woSKuK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGE3woSKuK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGE3woSKuK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGE3woSKuK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGE3woSKuK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGE3woSKuK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGE3woSKuK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGE3woSKuK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGE3woSKuK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGE3woSKuK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGE3woSKuK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGE3woSKuK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGE3woSKuK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGE3woSKuK .navbar {
    height: 70px;
  }
  .cid-uGE3woSKuK .navbar.opened {
    height: auto;
  }
  .cid-uGE3woSKuK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGE3wpfJ9a {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGE3wpfJ9a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGE3wpfJ9a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGE3wpxmDN {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGE3wpxmDN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGE3wpxmDN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGE3wpxmDN .mbr-section-title {
  color: #ffffff;
}
.cid-uGE3wpxmDN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGE3wpOfJT {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGE3wpOfJT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGE3wpOfJT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGE3wq1XnW {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGE3wq1XnW .content {
    text-align: center;
  }
  .cid-uGE3wq1XnW .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGE3wq1XnW .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGE3wq1XnW .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGE3wq1XnW .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGE3wq1XnW .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGE3wq1XnW .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGE3wq1XnW .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGE3wq1XnW .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGE3wq1XnW .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGE3wq1XnW .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGE3wq1XnW .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGE3wq1XnW .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGE3wq1XnW .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGE3wq1XnW .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGE3wq1XnW .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGE3wq1XnW .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGE5CDTsXi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGE5CDTsXi nav.navbar {
  position: fixed;
}
.cid-uGE5CDTsXi .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGE5CDTsXi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGE5CDTsXi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGE5CDTsXi .dropdown-item:hover,
.cid-uGE5CDTsXi .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGE5CDTsXi .dropdown-item:hover span {
  color: white;
}
.cid-uGE5CDTsXi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGE5CDTsXi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGE5CDTsXi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGE5CDTsXi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGE5CDTsXi .nav-link {
  position: relative;
}
.cid-uGE5CDTsXi .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGE5CDTsXi .container {
    flex-wrap: nowrap;
  }
}
.cid-uGE5CDTsXi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGE5CDTsXi .dropdown-menu,
.cid-uGE5CDTsXi .navbar.opened {
  background: #fafcee !important;
}
.cid-uGE5CDTsXi .nav-item:focus,
.cid-uGE5CDTsXi .nav-link:focus {
  outline: none;
}
.cid-uGE5CDTsXi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGE5CDTsXi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGE5CDTsXi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGE5CDTsXi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGE5CDTsXi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGE5CDTsXi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGE5CDTsXi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGE5CDTsXi .navbar.opened {
  transition: all 0.3s;
}
.cid-uGE5CDTsXi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGE5CDTsXi .navbar .navbar-logo img {
  width: auto;
}
.cid-uGE5CDTsXi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGE5CDTsXi .navbar.collapsed {
  justify-content: center;
}
.cid-uGE5CDTsXi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGE5CDTsXi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGE5CDTsXi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGE5CDTsXi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGE5CDTsXi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGE5CDTsXi .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGE5CDTsXi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGE5CDTsXi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGE5CDTsXi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGE5CDTsXi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGE5CDTsXi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGE5CDTsXi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGE5CDTsXi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGE5CDTsXi .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGE5CDTsXi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGE5CDTsXi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGE5CDTsXi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGE5CDTsXi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGE5CDTsXi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGE5CDTsXi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGE5CDTsXi .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGE5CDTsXi .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGE5CDTsXi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGE5CDTsXi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGE5CDTsXi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGE5CDTsXi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGE5CDTsXi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGE5CDTsXi .dropdown-item.active,
.cid-uGE5CDTsXi .dropdown-item:active {
  background-color: transparent;
}
.cid-uGE5CDTsXi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGE5CDTsXi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGE5CDTsXi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGE5CDTsXi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGE5CDTsXi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGE5CDTsXi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGE5CDTsXi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGE5CDTsXi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGE5CDTsXi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGE5CDTsXi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGE5CDTsXi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGE5CDTsXi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGE5CDTsXi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGE5CDTsXi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGE5CDTsXi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGE5CDTsXi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGE5CDTsXi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGE5CDTsXi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGE5CDTsXi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGE5CDTsXi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGE5CDTsXi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGE5CDTsXi .navbar {
    height: 70px;
  }
  .cid-uGE5CDTsXi .navbar.opened {
    height: auto;
  }
  .cid-uGE5CDTsXi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGE5CEhXJw {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGE5CEhXJw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGE5CEhXJw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGE5CEzlvk {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGE5CEzlvk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGE5CEzlvk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGE5CEzlvk .mbr-section-title {
  color: #ffffff;
}
.cid-uGE5CEzlvk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGE5CEO2as {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGE5CEO2as .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGE5CEO2as .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGE5CF4eyS {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGE5CF4eyS .content {
    text-align: center;
  }
  .cid-uGE5CF4eyS .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGE5CF4eyS .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGE5CF4eyS .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGE5CF4eyS .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGE5CF4eyS .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGE5CF4eyS .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGE5CF4eyS .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGE5CF4eyS .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGE5CF4eyS .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGE5CF4eyS .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGE5CF4eyS .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGE5CF4eyS .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGE5CF4eyS .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGE5CF4eyS .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGE5CF4eyS .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGE5CF4eyS .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGJcZ0JcXH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGJcZ0JcXH nav.navbar {
  position: fixed;
}
.cid-uGJcZ0JcXH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGJcZ0JcXH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGJcZ0JcXH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGJcZ0JcXH .dropdown-item:hover,
.cid-uGJcZ0JcXH .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGJcZ0JcXH .dropdown-item:hover span {
  color: white;
}
.cid-uGJcZ0JcXH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGJcZ0JcXH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGJcZ0JcXH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGJcZ0JcXH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGJcZ0JcXH .nav-link {
  position: relative;
}
.cid-uGJcZ0JcXH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGJcZ0JcXH .container {
    flex-wrap: nowrap;
  }
}
.cid-uGJcZ0JcXH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGJcZ0JcXH .dropdown-menu,
.cid-uGJcZ0JcXH .navbar.opened {
  background: #fafcee !important;
}
.cid-uGJcZ0JcXH .nav-item:focus,
.cid-uGJcZ0JcXH .nav-link:focus {
  outline: none;
}
.cid-uGJcZ0JcXH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGJcZ0JcXH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGJcZ0JcXH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGJcZ0JcXH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGJcZ0JcXH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGJcZ0JcXH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGJcZ0JcXH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGJcZ0JcXH .navbar.opened {
  transition: all 0.3s;
}
.cid-uGJcZ0JcXH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGJcZ0JcXH .navbar .navbar-logo img {
  width: auto;
}
.cid-uGJcZ0JcXH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGJcZ0JcXH .navbar.collapsed {
  justify-content: center;
}
.cid-uGJcZ0JcXH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGJcZ0JcXH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGJcZ0JcXH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGJcZ0JcXH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGJcZ0JcXH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGJcZ0JcXH .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGJcZ0JcXH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGJcZ0JcXH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGJcZ0JcXH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGJcZ0JcXH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGJcZ0JcXH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGJcZ0JcXH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGJcZ0JcXH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGJcZ0JcXH .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGJcZ0JcXH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGJcZ0JcXH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGJcZ0JcXH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGJcZ0JcXH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGJcZ0JcXH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGJcZ0JcXH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGJcZ0JcXH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGJcZ0JcXH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGJcZ0JcXH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGJcZ0JcXH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGJcZ0JcXH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGJcZ0JcXH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGJcZ0JcXH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGJcZ0JcXH .dropdown-item.active,
.cid-uGJcZ0JcXH .dropdown-item:active {
  background-color: transparent;
}
.cid-uGJcZ0JcXH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGJcZ0JcXH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGJcZ0JcXH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGJcZ0JcXH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGJcZ0JcXH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGJcZ0JcXH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGJcZ0JcXH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGJcZ0JcXH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGJcZ0JcXH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGJcZ0JcXH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGJcZ0JcXH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGJcZ0JcXH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGJcZ0JcXH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGJcZ0JcXH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGJcZ0JcXH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGJcZ0JcXH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGJcZ0JcXH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGJcZ0JcXH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGJcZ0JcXH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGJcZ0JcXH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGJcZ0JcXH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGJcZ0JcXH .navbar {
    height: 70px;
  }
  .cid-uGJcZ0JcXH .navbar.opened {
    height: auto;
  }
  .cid-uGJcZ0JcXH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGJcZ17QJ1 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGJcZ17QJ1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGJcZ17QJ1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGJcZ1pNib {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGJcZ1pNib .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGJcZ1pNib .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGJcZ1pNib .mbr-section-title {
  color: #ffffff;
}
.cid-uGJcZ1pNib .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGJcZ1Ckeu {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGJcZ1Ckeu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGJcZ1Ckeu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGJcZ1T8tB {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGJcZ1T8tB .content {
    text-align: center;
  }
  .cid-uGJcZ1T8tB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGJcZ1T8tB .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGJcZ1T8tB .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGJcZ1T8tB .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGJcZ1T8tB .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGJcZ1T8tB .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGJcZ1T8tB .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGJcZ1T8tB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGJcZ1T8tB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGJcZ1T8tB .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGJcZ1T8tB .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGJcZ1T8tB .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGJcZ1T8tB .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGJcZ1T8tB .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGJcZ1T8tB .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGJcZ1T8tB .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGJnkTxtNx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGJnkTxtNx nav.navbar {
  position: fixed;
}
.cid-uGJnkTxtNx .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGJnkTxtNx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGJnkTxtNx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGJnkTxtNx .dropdown-item:hover,
.cid-uGJnkTxtNx .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGJnkTxtNx .dropdown-item:hover span {
  color: white;
}
.cid-uGJnkTxtNx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGJnkTxtNx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGJnkTxtNx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGJnkTxtNx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGJnkTxtNx .nav-link {
  position: relative;
}
.cid-uGJnkTxtNx .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGJnkTxtNx .container {
    flex-wrap: nowrap;
  }
}
.cid-uGJnkTxtNx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGJnkTxtNx .dropdown-menu,
.cid-uGJnkTxtNx .navbar.opened {
  background: #fafcee !important;
}
.cid-uGJnkTxtNx .nav-item:focus,
.cid-uGJnkTxtNx .nav-link:focus {
  outline: none;
}
.cid-uGJnkTxtNx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGJnkTxtNx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGJnkTxtNx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGJnkTxtNx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGJnkTxtNx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGJnkTxtNx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGJnkTxtNx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGJnkTxtNx .navbar.opened {
  transition: all 0.3s;
}
.cid-uGJnkTxtNx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGJnkTxtNx .navbar .navbar-logo img {
  width: auto;
}
.cid-uGJnkTxtNx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGJnkTxtNx .navbar.collapsed {
  justify-content: center;
}
.cid-uGJnkTxtNx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGJnkTxtNx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGJnkTxtNx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGJnkTxtNx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGJnkTxtNx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGJnkTxtNx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGJnkTxtNx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGJnkTxtNx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGJnkTxtNx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGJnkTxtNx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGJnkTxtNx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGJnkTxtNx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGJnkTxtNx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGJnkTxtNx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGJnkTxtNx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGJnkTxtNx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGJnkTxtNx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGJnkTxtNx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGJnkTxtNx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGJnkTxtNx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGJnkTxtNx .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGJnkTxtNx .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGJnkTxtNx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGJnkTxtNx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGJnkTxtNx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGJnkTxtNx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGJnkTxtNx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGJnkTxtNx .dropdown-item.active,
.cid-uGJnkTxtNx .dropdown-item:active {
  background-color: transparent;
}
.cid-uGJnkTxtNx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGJnkTxtNx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGJnkTxtNx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGJnkTxtNx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGJnkTxtNx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGJnkTxtNx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGJnkTxtNx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGJnkTxtNx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGJnkTxtNx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGJnkTxtNx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGJnkTxtNx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGJnkTxtNx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGJnkTxtNx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGJnkTxtNx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGJnkTxtNx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGJnkTxtNx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGJnkTxtNx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGJnkTxtNx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGJnkTxtNx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGJnkTxtNx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGJnkTxtNx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGJnkTxtNx .navbar {
    height: 70px;
  }
  .cid-uGJnkTxtNx .navbar.opened {
    height: auto;
  }
  .cid-uGJnkTxtNx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGJnkTUdVC {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGJnkTUdVC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGJnkTUdVC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGJnkUbuhd {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGJnkUbuhd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGJnkUbuhd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGJnkUbuhd .mbr-section-title {
  color: #ffffff;
}
.cid-uGJnkUbuhd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGJnkUq7LH {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGJnkUq7LH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGJnkUq7LH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGJnkUDFSB {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGJnkUDFSB .content {
    text-align: center;
  }
  .cid-uGJnkUDFSB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGJnkUDFSB .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGJnkUDFSB .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGJnkUDFSB .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGJnkUDFSB .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGJnkUDFSB .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGJnkUDFSB .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGJnkUDFSB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGJnkUDFSB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGJnkUDFSB .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGJnkUDFSB .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGJnkUDFSB .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGJnkUDFSB .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGJnkUDFSB .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGJnkUDFSB .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGJnkUDFSB .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGJpFxBosl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGJpFxBosl nav.navbar {
  position: fixed;
}
.cid-uGJpFxBosl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGJpFxBosl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGJpFxBosl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGJpFxBosl .dropdown-item:hover,
.cid-uGJpFxBosl .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGJpFxBosl .dropdown-item:hover span {
  color: white;
}
.cid-uGJpFxBosl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGJpFxBosl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGJpFxBosl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGJpFxBosl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGJpFxBosl .nav-link {
  position: relative;
}
.cid-uGJpFxBosl .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGJpFxBosl .container {
    flex-wrap: nowrap;
  }
}
.cid-uGJpFxBosl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGJpFxBosl .dropdown-menu,
.cid-uGJpFxBosl .navbar.opened {
  background: #fafcee !important;
}
.cid-uGJpFxBosl .nav-item:focus,
.cid-uGJpFxBosl .nav-link:focus {
  outline: none;
}
.cid-uGJpFxBosl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGJpFxBosl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGJpFxBosl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGJpFxBosl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGJpFxBosl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGJpFxBosl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGJpFxBosl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGJpFxBosl .navbar.opened {
  transition: all 0.3s;
}
.cid-uGJpFxBosl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGJpFxBosl .navbar .navbar-logo img {
  width: auto;
}
.cid-uGJpFxBosl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGJpFxBosl .navbar.collapsed {
  justify-content: center;
}
.cid-uGJpFxBosl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGJpFxBosl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGJpFxBosl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGJpFxBosl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGJpFxBosl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGJpFxBosl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGJpFxBosl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGJpFxBosl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGJpFxBosl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGJpFxBosl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGJpFxBosl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGJpFxBosl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGJpFxBosl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGJpFxBosl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGJpFxBosl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGJpFxBosl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGJpFxBosl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGJpFxBosl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGJpFxBosl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGJpFxBosl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGJpFxBosl .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGJpFxBosl .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGJpFxBosl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGJpFxBosl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGJpFxBosl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGJpFxBosl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGJpFxBosl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGJpFxBosl .dropdown-item.active,
.cid-uGJpFxBosl .dropdown-item:active {
  background-color: transparent;
}
.cid-uGJpFxBosl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGJpFxBosl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGJpFxBosl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGJpFxBosl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGJpFxBosl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGJpFxBosl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGJpFxBosl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGJpFxBosl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGJpFxBosl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGJpFxBosl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGJpFxBosl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGJpFxBosl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGJpFxBosl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGJpFxBosl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGJpFxBosl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGJpFxBosl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGJpFxBosl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGJpFxBosl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGJpFxBosl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGJpFxBosl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGJpFxBosl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGJpFxBosl .navbar {
    height: 70px;
  }
  .cid-uGJpFxBosl .navbar.opened {
    height: auto;
  }
  .cid-uGJpFxBosl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGJpFxZwrl {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGJpFxZwrl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGJpFxZwrl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGJpFyikHq {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGJpFyikHq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGJpFyikHq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGJpFyikHq .mbr-section-title {
  color: #ffffff;
}
.cid-uGJpFyikHq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGJpFyvuMG {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGJpFyvuMG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGJpFyvuMG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGJpFyKi8G {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGJpFyKi8G .content {
    text-align: center;
  }
  .cid-uGJpFyKi8G .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGJpFyKi8G .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGJpFyKi8G .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGJpFyKi8G .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGJpFyKi8G .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGJpFyKi8G .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGJpFyKi8G .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGJpFyKi8G .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGJpFyKi8G .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGJpFyKi8G .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGJpFyKi8G .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGJpFyKi8G .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGJpFyKi8G .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGJpFyKi8G .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGJpFyKi8G .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGJpFyKi8G .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGJrUmU3nz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGJrUmU3nz nav.navbar {
  position: fixed;
}
.cid-uGJrUmU3nz .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGJrUmU3nz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGJrUmU3nz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGJrUmU3nz .dropdown-item:hover,
.cid-uGJrUmU3nz .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGJrUmU3nz .dropdown-item:hover span {
  color: white;
}
.cid-uGJrUmU3nz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGJrUmU3nz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGJrUmU3nz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGJrUmU3nz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGJrUmU3nz .nav-link {
  position: relative;
}
.cid-uGJrUmU3nz .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGJrUmU3nz .container {
    flex-wrap: nowrap;
  }
}
.cid-uGJrUmU3nz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGJrUmU3nz .dropdown-menu,
.cid-uGJrUmU3nz .navbar.opened {
  background: #fafcee !important;
}
.cid-uGJrUmU3nz .nav-item:focus,
.cid-uGJrUmU3nz .nav-link:focus {
  outline: none;
}
.cid-uGJrUmU3nz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGJrUmU3nz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGJrUmU3nz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGJrUmU3nz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGJrUmU3nz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGJrUmU3nz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGJrUmU3nz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGJrUmU3nz .navbar.opened {
  transition: all 0.3s;
}
.cid-uGJrUmU3nz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGJrUmU3nz .navbar .navbar-logo img {
  width: auto;
}
.cid-uGJrUmU3nz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGJrUmU3nz .navbar.collapsed {
  justify-content: center;
}
.cid-uGJrUmU3nz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGJrUmU3nz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGJrUmU3nz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGJrUmU3nz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGJrUmU3nz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGJrUmU3nz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGJrUmU3nz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGJrUmU3nz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGJrUmU3nz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGJrUmU3nz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGJrUmU3nz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGJrUmU3nz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGJrUmU3nz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGJrUmU3nz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGJrUmU3nz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGJrUmU3nz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGJrUmU3nz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGJrUmU3nz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGJrUmU3nz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGJrUmU3nz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGJrUmU3nz .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGJrUmU3nz .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGJrUmU3nz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGJrUmU3nz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGJrUmU3nz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGJrUmU3nz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGJrUmU3nz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGJrUmU3nz .dropdown-item.active,
.cid-uGJrUmU3nz .dropdown-item:active {
  background-color: transparent;
}
.cid-uGJrUmU3nz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGJrUmU3nz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGJrUmU3nz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGJrUmU3nz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGJrUmU3nz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGJrUmU3nz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGJrUmU3nz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGJrUmU3nz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGJrUmU3nz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGJrUmU3nz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGJrUmU3nz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGJrUmU3nz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGJrUmU3nz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGJrUmU3nz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGJrUmU3nz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGJrUmU3nz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGJrUmU3nz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGJrUmU3nz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGJrUmU3nz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGJrUmU3nz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGJrUmU3nz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGJrUmU3nz .navbar {
    height: 70px;
  }
  .cid-uGJrUmU3nz .navbar.opened {
    height: auto;
  }
  .cid-uGJrUmU3nz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGJrUnhjrH {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGJrUnhjrH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGJrUnhjrH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGJrUnzY60 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGJrUnzY60 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGJrUnzY60 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGJrUnzY60 .mbr-section-title {
  color: #ffffff;
}
.cid-uGJrUnzY60 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGJrUnOjiW {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGJrUnOjiW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGJrUnOjiW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGJrUo4ukW {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGJrUo4ukW .content {
    text-align: center;
  }
  .cid-uGJrUo4ukW .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGJrUo4ukW .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGJrUo4ukW .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGJrUo4ukW .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGJrUo4ukW .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGJrUo4ukW .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGJrUo4ukW .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGJrUo4ukW .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGJrUo4ukW .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGJrUo4ukW .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGJrUo4ukW .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGJrUo4ukW .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGJrUo4ukW .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGJrUo4ukW .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGJrUo4ukW .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGJrUo4ukW .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGJtNoqGfb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGJtNoqGfb nav.navbar {
  position: fixed;
}
.cid-uGJtNoqGfb .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGJtNoqGfb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGJtNoqGfb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGJtNoqGfb .dropdown-item:hover,
.cid-uGJtNoqGfb .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGJtNoqGfb .dropdown-item:hover span {
  color: white;
}
.cid-uGJtNoqGfb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGJtNoqGfb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGJtNoqGfb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGJtNoqGfb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGJtNoqGfb .nav-link {
  position: relative;
}
.cid-uGJtNoqGfb .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGJtNoqGfb .container {
    flex-wrap: nowrap;
  }
}
.cid-uGJtNoqGfb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGJtNoqGfb .dropdown-menu,
.cid-uGJtNoqGfb .navbar.opened {
  background: #fafcee !important;
}
.cid-uGJtNoqGfb .nav-item:focus,
.cid-uGJtNoqGfb .nav-link:focus {
  outline: none;
}
.cid-uGJtNoqGfb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGJtNoqGfb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGJtNoqGfb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGJtNoqGfb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGJtNoqGfb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGJtNoqGfb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGJtNoqGfb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGJtNoqGfb .navbar.opened {
  transition: all 0.3s;
}
.cid-uGJtNoqGfb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGJtNoqGfb .navbar .navbar-logo img {
  width: auto;
}
.cid-uGJtNoqGfb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGJtNoqGfb .navbar.collapsed {
  justify-content: center;
}
.cid-uGJtNoqGfb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGJtNoqGfb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGJtNoqGfb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGJtNoqGfb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGJtNoqGfb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGJtNoqGfb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGJtNoqGfb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGJtNoqGfb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGJtNoqGfb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGJtNoqGfb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGJtNoqGfb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGJtNoqGfb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGJtNoqGfb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGJtNoqGfb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGJtNoqGfb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGJtNoqGfb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGJtNoqGfb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGJtNoqGfb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGJtNoqGfb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGJtNoqGfb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGJtNoqGfb .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGJtNoqGfb .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGJtNoqGfb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGJtNoqGfb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGJtNoqGfb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGJtNoqGfb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGJtNoqGfb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGJtNoqGfb .dropdown-item.active,
.cid-uGJtNoqGfb .dropdown-item:active {
  background-color: transparent;
}
.cid-uGJtNoqGfb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGJtNoqGfb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGJtNoqGfb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGJtNoqGfb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGJtNoqGfb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGJtNoqGfb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGJtNoqGfb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGJtNoqGfb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGJtNoqGfb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGJtNoqGfb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGJtNoqGfb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGJtNoqGfb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGJtNoqGfb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGJtNoqGfb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGJtNoqGfb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGJtNoqGfb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGJtNoqGfb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGJtNoqGfb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGJtNoqGfb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGJtNoqGfb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGJtNoqGfb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGJtNoqGfb .navbar {
    height: 70px;
  }
  .cid-uGJtNoqGfb .navbar.opened {
    height: auto;
  }
  .cid-uGJtNoqGfb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGJtNoZVwh {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGJtNoZVwh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGJtNoZVwh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGJtNplwAu {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uGJtNplwAu img,
.cid-uGJtNplwAu .item-img {
  width: 100%;
}
.cid-uGJtNplwAu .item:focus,
.cid-uGJtNplwAu span:focus {
  outline: none;
}
.cid-uGJtNplwAu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uGJtNplwAu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafcf1;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGJtNplwAu .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uGJtNplwAu .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGJtNplwAu .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uGJtNplwAu .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uGJtNplwAu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGJtNplwAu .mbr-section-title {
  color: #232323;
}
.cid-uGJtNplwAu .mbr-text,
.cid-uGJtNplwAu .mbr-section-btn {
  text-align: center;
  color: #232323;
}
.cid-uGJtNplwAu .item-title {
  text-align: center;
  color: #232323;
}
.cid-uGJtNplwAu .item-subtitle {
  text-align: left;
}
.cid-uGJtNqKt0V {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGJtNqKt0V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGJtNqKt0V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGJtNqKt0V .mbr-section-title {
  color: #ffffff;
}
.cid-uGJtNqKt0V .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGJtNrmaZ4 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGJtNrmaZ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGJtNrmaZ4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGJtNrGFgy {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGJtNrGFgy .content {
    text-align: center;
  }
  .cid-uGJtNrGFgy .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGJtNrGFgy .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGJtNrGFgy .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGJtNrGFgy .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGJtNrGFgy .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGJtNrGFgy .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGJtNrGFgy .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGJtNrGFgy .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGJtNrGFgy .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGJtNrGFgy .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGJtNrGFgy .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGJtNrGFgy .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGJtNrGFgy .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGJtNrGFgy .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGJtNrGFgy .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGJtNrGFgy .list {
  list-style-type: none;
  padding: 0;
}
.cid-uGJxrcCNMF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uGJxrcCNMF nav.navbar {
  position: fixed;
}
.cid-uGJxrcCNMF .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGJxrcCNMF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGJxrcCNMF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGJxrcCNMF .dropdown-item:hover,
.cid-uGJxrcCNMF .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uGJxrcCNMF .dropdown-item:hover span {
  color: white;
}
.cid-uGJxrcCNMF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGJxrcCNMF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGJxrcCNMF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGJxrcCNMF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGJxrcCNMF .nav-link {
  position: relative;
}
.cid-uGJxrcCNMF .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGJxrcCNMF .container {
    flex-wrap: nowrap;
  }
}
.cid-uGJxrcCNMF .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGJxrcCNMF .dropdown-menu,
.cid-uGJxrcCNMF .navbar.opened {
  background: #fafcee !important;
}
.cid-uGJxrcCNMF .nav-item:focus,
.cid-uGJxrcCNMF .nav-link:focus {
  outline: none;
}
.cid-uGJxrcCNMF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGJxrcCNMF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGJxrcCNMF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGJxrcCNMF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGJxrcCNMF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGJxrcCNMF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGJxrcCNMF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uGJxrcCNMF .navbar.opened {
  transition: all 0.3s;
}
.cid-uGJxrcCNMF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGJxrcCNMF .navbar .navbar-logo img {
  width: auto;
}
.cid-uGJxrcCNMF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGJxrcCNMF .navbar.collapsed {
  justify-content: center;
}
.cid-uGJxrcCNMF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGJxrcCNMF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGJxrcCNMF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uGJxrcCNMF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGJxrcCNMF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGJxrcCNMF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uGJxrcCNMF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGJxrcCNMF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGJxrcCNMF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGJxrcCNMF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGJxrcCNMF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGJxrcCNMF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGJxrcCNMF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGJxrcCNMF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uGJxrcCNMF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGJxrcCNMF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGJxrcCNMF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGJxrcCNMF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGJxrcCNMF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGJxrcCNMF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGJxrcCNMF .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGJxrcCNMF .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGJxrcCNMF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGJxrcCNMF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGJxrcCNMF .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGJxrcCNMF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGJxrcCNMF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGJxrcCNMF .dropdown-item.active,
.cid-uGJxrcCNMF .dropdown-item:active {
  background-color: transparent;
}
.cid-uGJxrcCNMF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGJxrcCNMF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGJxrcCNMF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGJxrcCNMF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uGJxrcCNMF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGJxrcCNMF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGJxrcCNMF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGJxrcCNMF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGJxrcCNMF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGJxrcCNMF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uGJxrcCNMF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGJxrcCNMF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGJxrcCNMF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGJxrcCNMF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGJxrcCNMF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGJxrcCNMF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGJxrcCNMF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGJxrcCNMF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGJxrcCNMF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGJxrcCNMF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGJxrcCNMF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGJxrcCNMF .navbar {
    height: 70px;
  }
  .cid-uGJxrcCNMF .navbar.opened {
    height: auto;
  }
  .cid-uGJxrcCNMF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGJxrcVGCw {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGJxrcVGCw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGJxrcVGCw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGJxNmRqTY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGJxNmRqTY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGJxNmRqTY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uGJxNmRqTY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uGJxNmRqTY .row {
  flex-direction: row-reverse;
}
.cid-uGJxNmRqTY img {
  width: 100%;
}
.cid-uGJxrdt5dk {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uGJxrdt5dk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGJxrdt5dk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGJxrdt5dk .mbr-section-title {
  color: #ffffff;
}
.cid-uGJxrdt5dk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGJxrdFDeY {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uGJxrdFDeY .content {
    text-align: center;
  }
  .cid-uGJxrdFDeY .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uGJxrdFDeY .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uGJxrdFDeY .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uGJxrdFDeY .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uGJxrdFDeY .google-map {
  height: 25rem;
  position: relative;
}
.cid-uGJxrdFDeY .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uGJxrdFDeY .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uGJxrdFDeY .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uGJxrdFDeY .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uGJxrdFDeY .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGJxrdFDeY .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uGJxrdFDeY .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uGJxrdFDeY .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uGJxrdFDeY .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uGJxrdFDeY .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uGJxrdFDeY .list {
  list-style-type: none;
  padding: 0;
}
.cid-uHzOQe9Ke9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHzOQe9Ke9 nav.navbar {
  position: fixed;
}
.cid-uHzOQe9Ke9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHzOQe9Ke9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHzOQe9Ke9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHzOQe9Ke9 .dropdown-item:hover,
.cid-uHzOQe9Ke9 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uHzOQe9Ke9 .dropdown-item:hover span {
  color: white;
}
.cid-uHzOQe9Ke9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHzOQe9Ke9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHzOQe9Ke9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHzOQe9Ke9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHzOQe9Ke9 .nav-link {
  position: relative;
}
.cid-uHzOQe9Ke9 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHzOQe9Ke9 .container {
    flex-wrap: nowrap;
  }
}
.cid-uHzOQe9Ke9 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHzOQe9Ke9 .dropdown-menu,
.cid-uHzOQe9Ke9 .navbar.opened {
  background: #fafcee !important;
}
.cid-uHzOQe9Ke9 .nav-item:focus,
.cid-uHzOQe9Ke9 .nav-link:focus {
  outline: none;
}
.cid-uHzOQe9Ke9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHzOQe9Ke9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHzOQe9Ke9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHzOQe9Ke9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHzOQe9Ke9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHzOQe9Ke9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHzOQe9Ke9 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uHzOQe9Ke9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uHzOQe9Ke9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHzOQe9Ke9 .navbar .navbar-logo img {
  width: auto;
}
.cid-uHzOQe9Ke9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHzOQe9Ke9 .navbar.collapsed {
  justify-content: center;
}
.cid-uHzOQe9Ke9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHzOQe9Ke9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHzOQe9Ke9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uHzOQe9Ke9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHzOQe9Ke9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHzOQe9Ke9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uHzOQe9Ke9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHzOQe9Ke9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHzOQe9Ke9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHzOQe9Ke9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHzOQe9Ke9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHzOQe9Ke9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHzOQe9Ke9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHzOQe9Ke9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uHzOQe9Ke9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHzOQe9Ke9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHzOQe9Ke9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHzOQe9Ke9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHzOQe9Ke9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHzOQe9Ke9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHzOQe9Ke9 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHzOQe9Ke9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHzOQe9Ke9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHzOQe9Ke9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHzOQe9Ke9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHzOQe9Ke9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHzOQe9Ke9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHzOQe9Ke9 .dropdown-item.active,
.cid-uHzOQe9Ke9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uHzOQe9Ke9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHzOQe9Ke9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHzOQe9Ke9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHzOQe9Ke9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uHzOQe9Ke9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHzOQe9Ke9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHzOQe9Ke9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHzOQe9Ke9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHzOQe9Ke9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHzOQe9Ke9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uHzOQe9Ke9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHzOQe9Ke9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHzOQe9Ke9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHzOQe9Ke9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHzOQe9Ke9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHzOQe9Ke9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHzOQe9Ke9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHzOQe9Ke9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHzOQe9Ke9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHzOQe9Ke9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHzOQe9Ke9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHzOQe9Ke9 .navbar {
    height: 70px;
  }
  .cid-uHzOQe9Ke9 .navbar.opened {
    height: auto;
  }
  .cid-uHzOQe9Ke9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHzOQeufSl {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHzOQeufSl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHzOQeufSl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHzOQeP73I {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uHzOQeP73I img,
.cid-uHzOQeP73I .item-img {
  width: 100%;
}
.cid-uHzOQeP73I .item:focus,
.cid-uHzOQeP73I span:focus {
  outline: none;
}
.cid-uHzOQeP73I .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uHzOQeP73I .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafcf1;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uHzOQeP73I .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uHzOQeP73I .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uHzOQeP73I .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uHzOQeP73I .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uHzOQeP73I .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uHzOQeP73I .mbr-section-title {
  color: #232323;
}
.cid-uHzOQeP73I .mbr-text,
.cid-uHzOQeP73I .mbr-section-btn {
  text-align: center;
  color: #232323;
}
.cid-uHzOQeP73I .item-title {
  text-align: center;
  color: #232323;
}
.cid-uHzOQeP73I .item-subtitle {
  text-align: left;
}
.cid-uHzOQfYUsK {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uHzOQfYUsK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHzOQfYUsK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHzOQfYUsK .mbr-section-title {
  color: #ffffff;
}
.cid-uHzOQfYUsK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uHzOQgejyg {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHzOQgejyg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHzOQgejyg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHzOQgu2kG {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uHzOQgu2kG .content {
    text-align: center;
  }
  .cid-uHzOQgu2kG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uHzOQgu2kG .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uHzOQgu2kG .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uHzOQgu2kG .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uHzOQgu2kG .google-map {
  height: 25rem;
  position: relative;
}
.cid-uHzOQgu2kG .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uHzOQgu2kG .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uHzOQgu2kG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uHzOQgu2kG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uHzOQgu2kG .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uHzOQgu2kG .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uHzOQgu2kG .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uHzOQgu2kG .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uHzOQgu2kG .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uHzOQgu2kG .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uHzOQgu2kG .list {
  list-style-type: none;
  padding: 0;
}
.cid-uHA0p3HoFJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHA0p3HoFJ nav.navbar {
  position: fixed;
}
.cid-uHA0p3HoFJ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHA0p3HoFJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHA0p3HoFJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHA0p3HoFJ .dropdown-item:hover,
.cid-uHA0p3HoFJ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uHA0p3HoFJ .dropdown-item:hover span {
  color: white;
}
.cid-uHA0p3HoFJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHA0p3HoFJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHA0p3HoFJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHA0p3HoFJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHA0p3HoFJ .nav-link {
  position: relative;
}
.cid-uHA0p3HoFJ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHA0p3HoFJ .container {
    flex-wrap: nowrap;
  }
}
.cid-uHA0p3HoFJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHA0p3HoFJ .dropdown-menu,
.cid-uHA0p3HoFJ .navbar.opened {
  background: #fafcee !important;
}
.cid-uHA0p3HoFJ .nav-item:focus,
.cid-uHA0p3HoFJ .nav-link:focus {
  outline: none;
}
.cid-uHA0p3HoFJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHA0p3HoFJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHA0p3HoFJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHA0p3HoFJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHA0p3HoFJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHA0p3HoFJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHA0p3HoFJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uHA0p3HoFJ .navbar.opened {
  transition: all 0.3s;
}
.cid-uHA0p3HoFJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHA0p3HoFJ .navbar .navbar-logo img {
  width: auto;
}
.cid-uHA0p3HoFJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHA0p3HoFJ .navbar.collapsed {
  justify-content: center;
}
.cid-uHA0p3HoFJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHA0p3HoFJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHA0p3HoFJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uHA0p3HoFJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHA0p3HoFJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHA0p3HoFJ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uHA0p3HoFJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHA0p3HoFJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHA0p3HoFJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHA0p3HoFJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHA0p3HoFJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHA0p3HoFJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHA0p3HoFJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHA0p3HoFJ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uHA0p3HoFJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHA0p3HoFJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHA0p3HoFJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHA0p3HoFJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHA0p3HoFJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHA0p3HoFJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHA0p3HoFJ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHA0p3HoFJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHA0p3HoFJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHA0p3HoFJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHA0p3HoFJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHA0p3HoFJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHA0p3HoFJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHA0p3HoFJ .dropdown-item.active,
.cid-uHA0p3HoFJ .dropdown-item:active {
  background-color: transparent;
}
.cid-uHA0p3HoFJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHA0p3HoFJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHA0p3HoFJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHA0p3HoFJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uHA0p3HoFJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHA0p3HoFJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHA0p3HoFJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHA0p3HoFJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHA0p3HoFJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHA0p3HoFJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uHA0p3HoFJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHA0p3HoFJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHA0p3HoFJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHA0p3HoFJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHA0p3HoFJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHA0p3HoFJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHA0p3HoFJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHA0p3HoFJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHA0p3HoFJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHA0p3HoFJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHA0p3HoFJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHA0p3HoFJ .navbar {
    height: 70px;
  }
  .cid-uHA0p3HoFJ .navbar.opened {
    height: auto;
  }
  .cid-uHA0p3HoFJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHA0p42ZNk {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHA0p42ZNk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHA0p42ZNk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHA0p4gZqh {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uHA0p4gZqh img,
.cid-uHA0p4gZqh .item-img {
  width: 100%;
}
.cid-uHA0p4gZqh .item:focus,
.cid-uHA0p4gZqh span:focus {
  outline: none;
}
.cid-uHA0p4gZqh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uHA0p4gZqh .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafcf1;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uHA0p4gZqh .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uHA0p4gZqh .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uHA0p4gZqh .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uHA0p4gZqh .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uHA0p4gZqh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uHA0p4gZqh .mbr-section-title {
  color: #232323;
}
.cid-uHA0p4gZqh .mbr-text,
.cid-uHA0p4gZqh .mbr-section-btn {
  text-align: center;
  color: #232323;
}
.cid-uHA0p4gZqh .item-title {
  text-align: center;
  color: #232323;
}
.cid-uHA0p4gZqh .item-subtitle {
  text-align: left;
}
.cid-uHA0p4SktN {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uHA0p4SktN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHA0p4SktN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHA0p4SktN .mbr-section-title {
  color: #ffffff;
}
.cid-uHA0p4SktN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uHA0p58ME8 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHA0p58ME8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHA0p58ME8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHA0p5mCSo {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uHA0p5mCSo .content {
    text-align: center;
  }
  .cid-uHA0p5mCSo .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uHA0p5mCSo .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uHA0p5mCSo .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uHA0p5mCSo .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uHA0p5mCSo .google-map {
  height: 25rem;
  position: relative;
}
.cid-uHA0p5mCSo .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uHA0p5mCSo .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uHA0p5mCSo .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uHA0p5mCSo .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uHA0p5mCSo .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uHA0p5mCSo .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uHA0p5mCSo .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uHA0p5mCSo .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uHA0p5mCSo .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uHA0p5mCSo .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uHA0p5mCSo .list {
  list-style-type: none;
  padding: 0;
}
.cid-uHG8avAvyb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHG8avAvyb nav.navbar {
  position: fixed;
}
.cid-uHG8avAvyb .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHG8avAvyb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHG8avAvyb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHG8avAvyb .dropdown-item:hover,
.cid-uHG8avAvyb .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uHG8avAvyb .dropdown-item:hover span {
  color: white;
}
.cid-uHG8avAvyb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHG8avAvyb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHG8avAvyb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHG8avAvyb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHG8avAvyb .nav-link {
  position: relative;
}
.cid-uHG8avAvyb .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHG8avAvyb .container {
    flex-wrap: nowrap;
  }
}
.cid-uHG8avAvyb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHG8avAvyb .dropdown-menu,
.cid-uHG8avAvyb .navbar.opened {
  background: #fafcee !important;
}
.cid-uHG8avAvyb .nav-item:focus,
.cid-uHG8avAvyb .nav-link:focus {
  outline: none;
}
.cid-uHG8avAvyb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHG8avAvyb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHG8avAvyb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHG8avAvyb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHG8avAvyb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHG8avAvyb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHG8avAvyb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uHG8avAvyb .navbar.opened {
  transition: all 0.3s;
}
.cid-uHG8avAvyb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHG8avAvyb .navbar .navbar-logo img {
  width: auto;
}
.cid-uHG8avAvyb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHG8avAvyb .navbar.collapsed {
  justify-content: center;
}
.cid-uHG8avAvyb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHG8avAvyb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHG8avAvyb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uHG8avAvyb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHG8avAvyb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHG8avAvyb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uHG8avAvyb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHG8avAvyb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHG8avAvyb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHG8avAvyb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHG8avAvyb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHG8avAvyb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHG8avAvyb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHG8avAvyb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uHG8avAvyb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHG8avAvyb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHG8avAvyb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHG8avAvyb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHG8avAvyb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHG8avAvyb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHG8avAvyb .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHG8avAvyb .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHG8avAvyb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHG8avAvyb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHG8avAvyb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHG8avAvyb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHG8avAvyb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHG8avAvyb .dropdown-item.active,
.cid-uHG8avAvyb .dropdown-item:active {
  background-color: transparent;
}
.cid-uHG8avAvyb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHG8avAvyb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHG8avAvyb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHG8avAvyb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uHG8avAvyb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHG8avAvyb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHG8avAvyb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHG8avAvyb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHG8avAvyb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHG8avAvyb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uHG8avAvyb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHG8avAvyb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHG8avAvyb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHG8avAvyb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHG8avAvyb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHG8avAvyb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHG8avAvyb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHG8avAvyb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHG8avAvyb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHG8avAvyb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHG8avAvyb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHG8avAvyb .navbar {
    height: 70px;
  }
  .cid-uHG8avAvyb .navbar.opened {
    height: auto;
  }
  .cid-uHG8avAvyb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHG8avVXgi {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHG8avVXgi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHG8avVXgi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHG8awC7xg {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uHG8awC7xg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHG8awC7xg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHG8awC7xg .mbr-section-title {
  color: #ffffff;
}
.cid-uHG8awC7xg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uHG8awOO8H {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHG8awOO8H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHG8awOO8H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHG8ax4WaU {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uHG8ax4WaU .content {
    text-align: center;
  }
  .cid-uHG8ax4WaU .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uHG8ax4WaU .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uHG8ax4WaU .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uHG8ax4WaU .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uHG8ax4WaU .google-map {
  height: 25rem;
  position: relative;
}
.cid-uHG8ax4WaU .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uHG8ax4WaU .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uHG8ax4WaU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uHG8ax4WaU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uHG8ax4WaU .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uHG8ax4WaU .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uHG8ax4WaU .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uHG8ax4WaU .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uHG8ax4WaU .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uHG8ax4WaU .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uHG8ax4WaU .list {
  list-style-type: none;
  padding: 0;
}
.cid-uHGcfLJpVB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHGcfLJpVB nav.navbar {
  position: fixed;
}
.cid-uHGcfLJpVB .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHGcfLJpVB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHGcfLJpVB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHGcfLJpVB .dropdown-item:hover,
.cid-uHGcfLJpVB .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uHGcfLJpVB .dropdown-item:hover span {
  color: white;
}
.cid-uHGcfLJpVB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHGcfLJpVB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHGcfLJpVB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHGcfLJpVB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHGcfLJpVB .nav-link {
  position: relative;
}
.cid-uHGcfLJpVB .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHGcfLJpVB .container {
    flex-wrap: nowrap;
  }
}
.cid-uHGcfLJpVB .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uHGcfLJpVB .dropdown-menu,
.cid-uHGcfLJpVB .navbar.opened {
  background: #fafcee !important;
}
.cid-uHGcfLJpVB .nav-item:focus,
.cid-uHGcfLJpVB .nav-link:focus {
  outline: none;
}
.cid-uHGcfLJpVB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHGcfLJpVB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHGcfLJpVB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHGcfLJpVB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHGcfLJpVB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHGcfLJpVB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHGcfLJpVB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uHGcfLJpVB .navbar.opened {
  transition: all 0.3s;
}
.cid-uHGcfLJpVB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHGcfLJpVB .navbar .navbar-logo img {
  width: auto;
}
.cid-uHGcfLJpVB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHGcfLJpVB .navbar.collapsed {
  justify-content: center;
}
.cid-uHGcfLJpVB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHGcfLJpVB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHGcfLJpVB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uHGcfLJpVB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHGcfLJpVB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHGcfLJpVB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uHGcfLJpVB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHGcfLJpVB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHGcfLJpVB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHGcfLJpVB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHGcfLJpVB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHGcfLJpVB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHGcfLJpVB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHGcfLJpVB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uHGcfLJpVB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHGcfLJpVB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHGcfLJpVB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHGcfLJpVB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHGcfLJpVB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHGcfLJpVB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHGcfLJpVB .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHGcfLJpVB .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHGcfLJpVB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHGcfLJpVB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHGcfLJpVB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHGcfLJpVB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHGcfLJpVB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHGcfLJpVB .dropdown-item.active,
.cid-uHGcfLJpVB .dropdown-item:active {
  background-color: transparent;
}
.cid-uHGcfLJpVB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHGcfLJpVB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHGcfLJpVB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHGcfLJpVB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uHGcfLJpVB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHGcfLJpVB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHGcfLJpVB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHGcfLJpVB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHGcfLJpVB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHGcfLJpVB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uHGcfLJpVB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHGcfLJpVB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHGcfLJpVB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHGcfLJpVB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHGcfLJpVB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHGcfLJpVB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHGcfLJpVB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHGcfLJpVB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHGcfLJpVB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHGcfLJpVB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHGcfLJpVB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHGcfLJpVB .navbar {
    height: 70px;
  }
  .cid-uHGcfLJpVB .navbar.opened {
    height: auto;
  }
  .cid-uHGcfLJpVB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHGcfMjl9z {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHGcfMjl9z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHGcfMjl9z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHGcfMD79t {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uHGcfMD79t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHGcfMD79t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHGcfMD79t .mbr-section-title {
  color: #ffffff;
}
.cid-uHGcfMD79t .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uHGcfMShkF {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHGcfMShkF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHGcfMShkF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHGcfN5J5r {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uHGcfN5J5r .content {
    text-align: center;
  }
  .cid-uHGcfN5J5r .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uHGcfN5J5r .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uHGcfN5J5r .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uHGcfN5J5r .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uHGcfN5J5r .google-map {
  height: 25rem;
  position: relative;
}
.cid-uHGcfN5J5r .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uHGcfN5J5r .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uHGcfN5J5r .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uHGcfN5J5r .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uHGcfN5J5r .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uHGcfN5J5r .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uHGcfN5J5r .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uHGcfN5J5r .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uHGcfN5J5r .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uHGcfN5J5r .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uHGcfN5J5r .list {
  list-style-type: none;
  padding: 0;
}
.cid-uJQCEiXB0A {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uJQCEiXB0A nav.navbar {
  position: fixed;
}
.cid-uJQCEiXB0A .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJQCEiXB0A .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uJQCEiXB0A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uJQCEiXB0A .dropdown-item:hover,
.cid-uJQCEiXB0A .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uJQCEiXB0A .dropdown-item:hover span {
  color: white;
}
.cid-uJQCEiXB0A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJQCEiXB0A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJQCEiXB0A .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uJQCEiXB0A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJQCEiXB0A .nav-link {
  position: relative;
}
.cid-uJQCEiXB0A .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uJQCEiXB0A .container {
    flex-wrap: nowrap;
  }
}
.cid-uJQCEiXB0A .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uJQCEiXB0A .dropdown-menu,
.cid-uJQCEiXB0A .navbar.opened {
  background: #fafcee !important;
}
.cid-uJQCEiXB0A .nav-item:focus,
.cid-uJQCEiXB0A .nav-link:focus {
  outline: none;
}
.cid-uJQCEiXB0A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJQCEiXB0A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJQCEiXB0A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJQCEiXB0A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJQCEiXB0A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJQCEiXB0A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJQCEiXB0A .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uJQCEiXB0A .navbar.opened {
  transition: all 0.3s;
}
.cid-uJQCEiXB0A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJQCEiXB0A .navbar .navbar-logo img {
  width: auto;
}
.cid-uJQCEiXB0A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJQCEiXB0A .navbar.collapsed {
  justify-content: center;
}
.cid-uJQCEiXB0A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJQCEiXB0A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJQCEiXB0A .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uJQCEiXB0A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJQCEiXB0A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJQCEiXB0A .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uJQCEiXB0A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJQCEiXB0A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJQCEiXB0A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJQCEiXB0A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJQCEiXB0A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJQCEiXB0A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJQCEiXB0A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJQCEiXB0A .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uJQCEiXB0A .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJQCEiXB0A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJQCEiXB0A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJQCEiXB0A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJQCEiXB0A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJQCEiXB0A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uJQCEiXB0A .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uJQCEiXB0A .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJQCEiXB0A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJQCEiXB0A .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJQCEiXB0A .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uJQCEiXB0A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJQCEiXB0A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJQCEiXB0A .dropdown-item.active,
.cid-uJQCEiXB0A .dropdown-item:active {
  background-color: transparent;
}
.cid-uJQCEiXB0A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJQCEiXB0A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJQCEiXB0A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJQCEiXB0A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uJQCEiXB0A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJQCEiXB0A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJQCEiXB0A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJQCEiXB0A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJQCEiXB0A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJQCEiXB0A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uJQCEiXB0A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJQCEiXB0A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJQCEiXB0A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJQCEiXB0A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJQCEiXB0A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJQCEiXB0A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJQCEiXB0A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJQCEiXB0A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJQCEiXB0A .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJQCEiXB0A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJQCEiXB0A .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJQCEiXB0A .navbar {
    height: 70px;
  }
  .cid-uJQCEiXB0A .navbar.opened {
    height: auto;
  }
  .cid-uJQCEiXB0A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJQCEjhKEI {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJQCEjhKEI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJQCEjhKEI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJQCEjwMQT {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uJQCEjwMQT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJQCEjwMQT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJQCEjwMQT .mbr-section-title {
  color: #ffffff;
}
.cid-uJQCEjwMQT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uJQCEjLCaD {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uJQCEjLCaD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJQCEjLCaD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJQCEjXRip {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uJQCEjXRip .content {
    text-align: center;
  }
  .cid-uJQCEjXRip .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uJQCEjXRip .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uJQCEjXRip .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uJQCEjXRip .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uJQCEjXRip .google-map {
  height: 25rem;
  position: relative;
}
.cid-uJQCEjXRip .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uJQCEjXRip .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uJQCEjXRip .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uJQCEjXRip .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uJQCEjXRip .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uJQCEjXRip .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uJQCEjXRip .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uJQCEjXRip .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uJQCEjXRip .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uJQCEjXRip .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uJQCEjXRip .list {
  list-style-type: none;
  padding: 0;
}
.cid-uK2qKPb6Yh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uK2qKPb6Yh nav.navbar {
  position: fixed;
}
.cid-uK2qKPb6Yh .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uK2qKPb6Yh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uK2qKPb6Yh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uK2qKPb6Yh .dropdown-item:hover,
.cid-uK2qKPb6Yh .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uK2qKPb6Yh .dropdown-item:hover span {
  color: white;
}
.cid-uK2qKPb6Yh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uK2qKPb6Yh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uK2qKPb6Yh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uK2qKPb6Yh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uK2qKPb6Yh .nav-link {
  position: relative;
}
.cid-uK2qKPb6Yh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uK2qKPb6Yh .container {
    flex-wrap: nowrap;
  }
}
.cid-uK2qKPb6Yh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uK2qKPb6Yh .dropdown-menu,
.cid-uK2qKPb6Yh .navbar.opened {
  background: #fafcee !important;
}
.cid-uK2qKPb6Yh .nav-item:focus,
.cid-uK2qKPb6Yh .nav-link:focus {
  outline: none;
}
.cid-uK2qKPb6Yh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uK2qKPb6Yh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uK2qKPb6Yh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uK2qKPb6Yh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uK2qKPb6Yh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uK2qKPb6Yh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uK2qKPb6Yh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uK2qKPb6Yh .navbar.opened {
  transition: all 0.3s;
}
.cid-uK2qKPb6Yh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uK2qKPb6Yh .navbar .navbar-logo img {
  width: auto;
}
.cid-uK2qKPb6Yh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uK2qKPb6Yh .navbar.collapsed {
  justify-content: center;
}
.cid-uK2qKPb6Yh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uK2qKPb6Yh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uK2qKPb6Yh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uK2qKPb6Yh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uK2qKPb6Yh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uK2qKPb6Yh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uK2qKPb6Yh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uK2qKPb6Yh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uK2qKPb6Yh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uK2qKPb6Yh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uK2qKPb6Yh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uK2qKPb6Yh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uK2qKPb6Yh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uK2qKPb6Yh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uK2qKPb6Yh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uK2qKPb6Yh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uK2qKPb6Yh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uK2qKPb6Yh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uK2qKPb6Yh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uK2qKPb6Yh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uK2qKPb6Yh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uK2qKPb6Yh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uK2qKPb6Yh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uK2qKPb6Yh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uK2qKPb6Yh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uK2qKPb6Yh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uK2qKPb6Yh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uK2qKPb6Yh .dropdown-item.active,
.cid-uK2qKPb6Yh .dropdown-item:active {
  background-color: transparent;
}
.cid-uK2qKPb6Yh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uK2qKPb6Yh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uK2qKPb6Yh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uK2qKPb6Yh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uK2qKPb6Yh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uK2qKPb6Yh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uK2qKPb6Yh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uK2qKPb6Yh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uK2qKPb6Yh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uK2qKPb6Yh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uK2qKPb6Yh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uK2qKPb6Yh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uK2qKPb6Yh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uK2qKPb6Yh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uK2qKPb6Yh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uK2qKPb6Yh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uK2qKPb6Yh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uK2qKPb6Yh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uK2qKPb6Yh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uK2qKPb6Yh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uK2qKPb6Yh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uK2qKPb6Yh .navbar {
    height: 70px;
  }
  .cid-uK2qKPb6Yh .navbar.opened {
    height: auto;
  }
  .cid-uK2qKPb6Yh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uK2qKPs8pt {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uK2qKPs8pt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK2qKPs8pt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK2qKPHvrR {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uK2qKPHvrR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK2qKPHvrR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK2qKPHvrR .mbr-section-title {
  color: #ffffff;
}
.cid-uK2qKPHvrR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uK2qKPS12l {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uK2qKPS12l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK2qKPS12l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK2qKQ5y4B {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uK2qKQ5y4B .content {
    text-align: center;
  }
  .cid-uK2qKQ5y4B .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uK2qKQ5y4B .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uK2qKQ5y4B .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uK2qKQ5y4B .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uK2qKQ5y4B .google-map {
  height: 25rem;
  position: relative;
}
.cid-uK2qKQ5y4B .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uK2qKQ5y4B .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uK2qKQ5y4B .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uK2qKQ5y4B .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uK2qKQ5y4B .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uK2qKQ5y4B .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uK2qKQ5y4B .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uK2qKQ5y4B .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uK2qKQ5y4B .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uK2qKQ5y4B .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uK2qKQ5y4B .list {
  list-style-type: none;
  padding: 0;
}
.cid-uK2uHEQpWR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uK2uHEQpWR nav.navbar {
  position: fixed;
}
.cid-uK2uHEQpWR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uK2uHEQpWR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uK2uHEQpWR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uK2uHEQpWR .dropdown-item:hover,
.cid-uK2uHEQpWR .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uK2uHEQpWR .dropdown-item:hover span {
  color: white;
}
.cid-uK2uHEQpWR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uK2uHEQpWR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uK2uHEQpWR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uK2uHEQpWR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uK2uHEQpWR .nav-link {
  position: relative;
}
.cid-uK2uHEQpWR .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uK2uHEQpWR .container {
    flex-wrap: nowrap;
  }
}
.cid-uK2uHEQpWR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uK2uHEQpWR .dropdown-menu,
.cid-uK2uHEQpWR .navbar.opened {
  background: #fafcee !important;
}
.cid-uK2uHEQpWR .nav-item:focus,
.cid-uK2uHEQpWR .nav-link:focus {
  outline: none;
}
.cid-uK2uHEQpWR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uK2uHEQpWR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uK2uHEQpWR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uK2uHEQpWR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uK2uHEQpWR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uK2uHEQpWR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uK2uHEQpWR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uK2uHEQpWR .navbar.opened {
  transition: all 0.3s;
}
.cid-uK2uHEQpWR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uK2uHEQpWR .navbar .navbar-logo img {
  width: auto;
}
.cid-uK2uHEQpWR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uK2uHEQpWR .navbar.collapsed {
  justify-content: center;
}
.cid-uK2uHEQpWR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uK2uHEQpWR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uK2uHEQpWR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uK2uHEQpWR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uK2uHEQpWR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uK2uHEQpWR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uK2uHEQpWR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uK2uHEQpWR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uK2uHEQpWR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uK2uHEQpWR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uK2uHEQpWR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uK2uHEQpWR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uK2uHEQpWR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uK2uHEQpWR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uK2uHEQpWR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uK2uHEQpWR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uK2uHEQpWR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uK2uHEQpWR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uK2uHEQpWR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uK2uHEQpWR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uK2uHEQpWR .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uK2uHEQpWR .navbar.navbar-short {
  min-height: 60px;
}
.cid-uK2uHEQpWR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uK2uHEQpWR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uK2uHEQpWR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uK2uHEQpWR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uK2uHEQpWR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uK2uHEQpWR .dropdown-item.active,
.cid-uK2uHEQpWR .dropdown-item:active {
  background-color: transparent;
}
.cid-uK2uHEQpWR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uK2uHEQpWR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uK2uHEQpWR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uK2uHEQpWR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uK2uHEQpWR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uK2uHEQpWR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uK2uHEQpWR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uK2uHEQpWR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uK2uHEQpWR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uK2uHEQpWR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uK2uHEQpWR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uK2uHEQpWR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uK2uHEQpWR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uK2uHEQpWR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uK2uHEQpWR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uK2uHEQpWR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uK2uHEQpWR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uK2uHEQpWR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uK2uHEQpWR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uK2uHEQpWR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uK2uHEQpWR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uK2uHEQpWR .navbar {
    height: 70px;
  }
  .cid-uK2uHEQpWR .navbar.opened {
    height: auto;
  }
  .cid-uK2uHEQpWR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uK2uHF7i7h {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uK2uHF7i7h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK2uHF7i7h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK2uHFltBn {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uK2uHFltBn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK2uHFltBn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK2uHFltBn .mbr-section-title {
  color: #ffffff;
}
.cid-uK2uHFltBn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uK2uHFzD7j {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uK2uHFzD7j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK2uHFzD7j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK2uHFMONV {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uK2uHFMONV .content {
    text-align: center;
  }
  .cid-uK2uHFMONV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uK2uHFMONV .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uK2uHFMONV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uK2uHFMONV .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uK2uHFMONV .google-map {
  height: 25rem;
  position: relative;
}
.cid-uK2uHFMONV .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uK2uHFMONV .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uK2uHFMONV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uK2uHFMONV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uK2uHFMONV .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uK2uHFMONV .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uK2uHFMONV .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uK2uHFMONV .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uK2uHFMONV .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uK2uHFMONV .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uK2uHFMONV .list {
  list-style-type: none;
  padding: 0;
}
.cid-uK2yrToyyw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uK2yrToyyw nav.navbar {
  position: fixed;
}
.cid-uK2yrToyyw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uK2yrToyyw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uK2yrToyyw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uK2yrToyyw .dropdown-item:hover,
.cid-uK2yrToyyw .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uK2yrToyyw .dropdown-item:hover span {
  color: white;
}
.cid-uK2yrToyyw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uK2yrToyyw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uK2yrToyyw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uK2yrToyyw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uK2yrToyyw .nav-link {
  position: relative;
}
.cid-uK2yrToyyw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uK2yrToyyw .container {
    flex-wrap: nowrap;
  }
}
.cid-uK2yrToyyw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uK2yrToyyw .dropdown-menu,
.cid-uK2yrToyyw .navbar.opened {
  background: #fafcee !important;
}
.cid-uK2yrToyyw .nav-item:focus,
.cid-uK2yrToyyw .nav-link:focus {
  outline: none;
}
.cid-uK2yrToyyw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uK2yrToyyw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uK2yrToyyw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uK2yrToyyw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uK2yrToyyw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uK2yrToyyw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uK2yrToyyw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uK2yrToyyw .navbar.opened {
  transition: all 0.3s;
}
.cid-uK2yrToyyw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uK2yrToyyw .navbar .navbar-logo img {
  width: auto;
}
.cid-uK2yrToyyw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uK2yrToyyw .navbar.collapsed {
  justify-content: center;
}
.cid-uK2yrToyyw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uK2yrToyyw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uK2yrToyyw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uK2yrToyyw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uK2yrToyyw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uK2yrToyyw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uK2yrToyyw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uK2yrToyyw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uK2yrToyyw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uK2yrToyyw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uK2yrToyyw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uK2yrToyyw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uK2yrToyyw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uK2yrToyyw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uK2yrToyyw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uK2yrToyyw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uK2yrToyyw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uK2yrToyyw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uK2yrToyyw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uK2yrToyyw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uK2yrToyyw .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uK2yrToyyw .navbar.navbar-short {
  min-height: 60px;
}
.cid-uK2yrToyyw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uK2yrToyyw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uK2yrToyyw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uK2yrToyyw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uK2yrToyyw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uK2yrToyyw .dropdown-item.active,
.cid-uK2yrToyyw .dropdown-item:active {
  background-color: transparent;
}
.cid-uK2yrToyyw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uK2yrToyyw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uK2yrToyyw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uK2yrToyyw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uK2yrToyyw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uK2yrToyyw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uK2yrToyyw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uK2yrToyyw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uK2yrToyyw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uK2yrToyyw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uK2yrToyyw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uK2yrToyyw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uK2yrToyyw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uK2yrToyyw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uK2yrToyyw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uK2yrToyyw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uK2yrToyyw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uK2yrToyyw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uK2yrToyyw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uK2yrToyyw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uK2yrToyyw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uK2yrToyyw .navbar {
    height: 70px;
  }
  .cid-uK2yrToyyw .navbar.opened {
    height: auto;
  }
  .cid-uK2yrToyyw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uK2yrTFK5K {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uK2yrTFK5K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK2yrTFK5K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK2yrTUJqU {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uK2yrTUJqU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK2yrTUJqU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK2yrTUJqU .mbr-section-title {
  color: #ffffff;
}
.cid-uK2yrTUJqU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uK2yrU6sUQ {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uK2yrU6sUQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK2yrU6sUQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK2yrUiexF {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uK2yrUiexF .content {
    text-align: center;
  }
  .cid-uK2yrUiexF .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uK2yrUiexF .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uK2yrUiexF .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uK2yrUiexF .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uK2yrUiexF .google-map {
  height: 25rem;
  position: relative;
}
.cid-uK2yrUiexF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uK2yrUiexF .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uK2yrUiexF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uK2yrUiexF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uK2yrUiexF .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uK2yrUiexF .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uK2yrUiexF .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uK2yrUiexF .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uK2yrUiexF .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uK2yrUiexF .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uK2yrUiexF .list {
  list-style-type: none;
  padding: 0;
}
.cid-uK7nbT9SU1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uK7nbT9SU1 nav.navbar {
  position: fixed;
}
.cid-uK7nbT9SU1 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uK7nbT9SU1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uK7nbT9SU1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uK7nbT9SU1 .dropdown-item:hover,
.cid-uK7nbT9SU1 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uK7nbT9SU1 .dropdown-item:hover span {
  color: white;
}
.cid-uK7nbT9SU1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uK7nbT9SU1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uK7nbT9SU1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uK7nbT9SU1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uK7nbT9SU1 .nav-link {
  position: relative;
}
.cid-uK7nbT9SU1 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uK7nbT9SU1 .container {
    flex-wrap: nowrap;
  }
}
.cid-uK7nbT9SU1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uK7nbT9SU1 .dropdown-menu,
.cid-uK7nbT9SU1 .navbar.opened {
  background: #fafcee !important;
}
.cid-uK7nbT9SU1 .nav-item:focus,
.cid-uK7nbT9SU1 .nav-link:focus {
  outline: none;
}
.cid-uK7nbT9SU1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uK7nbT9SU1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uK7nbT9SU1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uK7nbT9SU1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uK7nbT9SU1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uK7nbT9SU1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uK7nbT9SU1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uK7nbT9SU1 .navbar.opened {
  transition: all 0.3s;
}
.cid-uK7nbT9SU1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uK7nbT9SU1 .navbar .navbar-logo img {
  width: auto;
}
.cid-uK7nbT9SU1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uK7nbT9SU1 .navbar.collapsed {
  justify-content: center;
}
.cid-uK7nbT9SU1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uK7nbT9SU1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uK7nbT9SU1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uK7nbT9SU1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uK7nbT9SU1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uK7nbT9SU1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uK7nbT9SU1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uK7nbT9SU1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uK7nbT9SU1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uK7nbT9SU1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uK7nbT9SU1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uK7nbT9SU1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uK7nbT9SU1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uK7nbT9SU1 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uK7nbT9SU1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uK7nbT9SU1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uK7nbT9SU1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uK7nbT9SU1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uK7nbT9SU1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uK7nbT9SU1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uK7nbT9SU1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uK7nbT9SU1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uK7nbT9SU1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uK7nbT9SU1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uK7nbT9SU1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uK7nbT9SU1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uK7nbT9SU1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uK7nbT9SU1 .dropdown-item.active,
.cid-uK7nbT9SU1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uK7nbT9SU1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uK7nbT9SU1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uK7nbT9SU1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uK7nbT9SU1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uK7nbT9SU1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uK7nbT9SU1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uK7nbT9SU1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uK7nbT9SU1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uK7nbT9SU1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uK7nbT9SU1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uK7nbT9SU1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uK7nbT9SU1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uK7nbT9SU1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uK7nbT9SU1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uK7nbT9SU1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uK7nbT9SU1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uK7nbT9SU1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uK7nbT9SU1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uK7nbT9SU1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uK7nbT9SU1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uK7nbT9SU1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uK7nbT9SU1 .navbar {
    height: 70px;
  }
  .cid-uK7nbT9SU1 .navbar.opened {
    height: auto;
  }
  .cid-uK7nbT9SU1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uK7nbTp0rr {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uK7nbTp0rr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK7nbTp0rr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK7nbTBKcD {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uK7nbTBKcD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK7nbTBKcD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK7nbTBKcD .mbr-section-title {
  color: #ffffff;
}
.cid-uK7nbTBKcD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uK7nbTMdOO {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uK7nbTMdOO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK7nbTMdOO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK7nbTZMyD {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uK7nbTZMyD .content {
    text-align: center;
  }
  .cid-uK7nbTZMyD .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uK7nbTZMyD .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uK7nbTZMyD .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uK7nbTZMyD .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uK7nbTZMyD .google-map {
  height: 25rem;
  position: relative;
}
.cid-uK7nbTZMyD .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uK7nbTZMyD .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uK7nbTZMyD .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uK7nbTZMyD .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uK7nbTZMyD .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uK7nbTZMyD .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uK7nbTZMyD .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uK7nbTZMyD .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uK7nbTZMyD .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uK7nbTZMyD .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uK7nbTZMyD .list {
  list-style-type: none;
  padding: 0;
}
.cid-uK7sjOUJiv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uK7sjOUJiv nav.navbar {
  position: fixed;
}
.cid-uK7sjOUJiv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uK7sjOUJiv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uK7sjOUJiv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uK7sjOUJiv .dropdown-item:hover,
.cid-uK7sjOUJiv .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uK7sjOUJiv .dropdown-item:hover span {
  color: white;
}
.cid-uK7sjOUJiv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uK7sjOUJiv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uK7sjOUJiv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uK7sjOUJiv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uK7sjOUJiv .nav-link {
  position: relative;
}
.cid-uK7sjOUJiv .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uK7sjOUJiv .container {
    flex-wrap: nowrap;
  }
}
.cid-uK7sjOUJiv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uK7sjOUJiv .dropdown-menu,
.cid-uK7sjOUJiv .navbar.opened {
  background: #fafcee !important;
}
.cid-uK7sjOUJiv .nav-item:focus,
.cid-uK7sjOUJiv .nav-link:focus {
  outline: none;
}
.cid-uK7sjOUJiv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uK7sjOUJiv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uK7sjOUJiv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uK7sjOUJiv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uK7sjOUJiv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uK7sjOUJiv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uK7sjOUJiv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uK7sjOUJiv .navbar.opened {
  transition: all 0.3s;
}
.cid-uK7sjOUJiv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uK7sjOUJiv .navbar .navbar-logo img {
  width: auto;
}
.cid-uK7sjOUJiv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uK7sjOUJiv .navbar.collapsed {
  justify-content: center;
}
.cid-uK7sjOUJiv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uK7sjOUJiv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uK7sjOUJiv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uK7sjOUJiv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uK7sjOUJiv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uK7sjOUJiv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uK7sjOUJiv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uK7sjOUJiv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uK7sjOUJiv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uK7sjOUJiv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uK7sjOUJiv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uK7sjOUJiv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uK7sjOUJiv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uK7sjOUJiv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uK7sjOUJiv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uK7sjOUJiv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uK7sjOUJiv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uK7sjOUJiv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uK7sjOUJiv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uK7sjOUJiv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uK7sjOUJiv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uK7sjOUJiv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uK7sjOUJiv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uK7sjOUJiv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uK7sjOUJiv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uK7sjOUJiv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uK7sjOUJiv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uK7sjOUJiv .dropdown-item.active,
.cid-uK7sjOUJiv .dropdown-item:active {
  background-color: transparent;
}
.cid-uK7sjOUJiv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uK7sjOUJiv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uK7sjOUJiv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uK7sjOUJiv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uK7sjOUJiv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uK7sjOUJiv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uK7sjOUJiv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uK7sjOUJiv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uK7sjOUJiv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uK7sjOUJiv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uK7sjOUJiv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uK7sjOUJiv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uK7sjOUJiv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uK7sjOUJiv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uK7sjOUJiv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uK7sjOUJiv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uK7sjOUJiv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uK7sjOUJiv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uK7sjOUJiv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uK7sjOUJiv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uK7sjOUJiv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uK7sjOUJiv .navbar {
    height: 70px;
  }
  .cid-uK7sjOUJiv .navbar.opened {
    height: auto;
  }
  .cid-uK7sjOUJiv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uK7sjPoD5p {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uK7sjPoD5p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK7sjPoD5p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK7sjPCQCJ {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uK7sjPCQCJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK7sjPCQCJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK7sjPCQCJ .mbr-section-title {
  color: #ffffff;
}
.cid-uK7sjPCQCJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uK7sjPPsWO {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uK7sjPPsWO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK7sjPPsWO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uK7sjQ2zBH {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uK7sjQ2zBH .content {
    text-align: center;
  }
  .cid-uK7sjQ2zBH .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uK7sjQ2zBH .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uK7sjQ2zBH .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uK7sjQ2zBH .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uK7sjQ2zBH .google-map {
  height: 25rem;
  position: relative;
}
.cid-uK7sjQ2zBH .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uK7sjQ2zBH .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uK7sjQ2zBH .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uK7sjQ2zBH .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uK7sjQ2zBH .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uK7sjQ2zBH .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uK7sjQ2zBH .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uK7sjQ2zBH .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uK7sjQ2zBH .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uK7sjQ2zBH .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uK7sjQ2zBH .list {
  list-style-type: none;
  padding: 0;
}
.cid-uU7iOqWV9V {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uU7iOqWV9V nav.navbar {
  position: fixed;
}
.cid-uU7iOqWV9V .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uU7iOqWV9V .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uU7iOqWV9V .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uU7iOqWV9V .dropdown-item:hover,
.cid-uU7iOqWV9V .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uU7iOqWV9V .dropdown-item:hover span {
  color: white;
}
.cid-uU7iOqWV9V .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uU7iOqWV9V .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uU7iOqWV9V .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uU7iOqWV9V .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uU7iOqWV9V .nav-link {
  position: relative;
}
.cid-uU7iOqWV9V .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uU7iOqWV9V .container {
    flex-wrap: nowrap;
  }
}
.cid-uU7iOqWV9V .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uU7iOqWV9V .dropdown-menu,
.cid-uU7iOqWV9V .navbar.opened {
  background: #fafcee !important;
}
.cid-uU7iOqWV9V .nav-item:focus,
.cid-uU7iOqWV9V .nav-link:focus {
  outline: none;
}
.cid-uU7iOqWV9V .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uU7iOqWV9V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uU7iOqWV9V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uU7iOqWV9V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uU7iOqWV9V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uU7iOqWV9V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uU7iOqWV9V .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uU7iOqWV9V .navbar.opened {
  transition: all 0.3s;
}
.cid-uU7iOqWV9V .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uU7iOqWV9V .navbar .navbar-logo img {
  width: auto;
}
.cid-uU7iOqWV9V .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uU7iOqWV9V .navbar.collapsed {
  justify-content: center;
}
.cid-uU7iOqWV9V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uU7iOqWV9V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uU7iOqWV9V .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uU7iOqWV9V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uU7iOqWV9V .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uU7iOqWV9V .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uU7iOqWV9V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uU7iOqWV9V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uU7iOqWV9V .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uU7iOqWV9V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uU7iOqWV9V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uU7iOqWV9V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uU7iOqWV9V .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uU7iOqWV9V .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uU7iOqWV9V .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uU7iOqWV9V .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uU7iOqWV9V .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uU7iOqWV9V .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uU7iOqWV9V .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uU7iOqWV9V .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uU7iOqWV9V .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uU7iOqWV9V .navbar.navbar-short {
  min-height: 60px;
}
.cid-uU7iOqWV9V .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uU7iOqWV9V .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uU7iOqWV9V .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uU7iOqWV9V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uU7iOqWV9V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uU7iOqWV9V .dropdown-item.active,
.cid-uU7iOqWV9V .dropdown-item:active {
  background-color: transparent;
}
.cid-uU7iOqWV9V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uU7iOqWV9V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uU7iOqWV9V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uU7iOqWV9V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uU7iOqWV9V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uU7iOqWV9V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uU7iOqWV9V ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uU7iOqWV9V .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uU7iOqWV9V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uU7iOqWV9V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uU7iOqWV9V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uU7iOqWV9V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uU7iOqWV9V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uU7iOqWV9V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uU7iOqWV9V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uU7iOqWV9V nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uU7iOqWV9V nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uU7iOqWV9V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uU7iOqWV9V .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uU7iOqWV9V a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uU7iOqWV9V .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uU7iOqWV9V .navbar {
    height: 70px;
  }
  .cid-uU7iOqWV9V .navbar.opened {
    height: auto;
  }
  .cid-uU7iOqWV9V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uU7iOrbyUD {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uU7iOrbyUD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7iOrbyUD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7iOrq0FP {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uU7iOrq0FP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7iOrq0FP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7iOrq0FP .mbr-section-title {
  color: #ffffff;
}
.cid-uU7iOrq0FP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uU7iOrBCIG {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uU7iOrBCIG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7iOrBCIG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7iOrOE5w {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uU7iOrOE5w .content {
    text-align: center;
  }
  .cid-uU7iOrOE5w .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uU7iOrOE5w .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uU7iOrOE5w .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uU7iOrOE5w .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uU7iOrOE5w .google-map {
  height: 25rem;
  position: relative;
}
.cid-uU7iOrOE5w .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uU7iOrOE5w .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uU7iOrOE5w .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uU7iOrOE5w .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uU7iOrOE5w .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uU7iOrOE5w .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uU7iOrOE5w .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uU7iOrOE5w .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uU7iOrOE5w .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uU7iOrOE5w .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uU7iOrOE5w .list {
  list-style-type: none;
  padding: 0;
}
.cid-uU7o3HReLZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uU7o3HReLZ nav.navbar {
  position: fixed;
}
.cid-uU7o3HReLZ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uU7o3HReLZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uU7o3HReLZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uU7o3HReLZ .dropdown-item:hover,
.cid-uU7o3HReLZ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uU7o3HReLZ .dropdown-item:hover span {
  color: white;
}
.cid-uU7o3HReLZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uU7o3HReLZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uU7o3HReLZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uU7o3HReLZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uU7o3HReLZ .nav-link {
  position: relative;
}
.cid-uU7o3HReLZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uU7o3HReLZ .container {
    flex-wrap: nowrap;
  }
}
.cid-uU7o3HReLZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uU7o3HReLZ .dropdown-menu,
.cid-uU7o3HReLZ .navbar.opened {
  background: #fafcee !important;
}
.cid-uU7o3HReLZ .nav-item:focus,
.cid-uU7o3HReLZ .nav-link:focus {
  outline: none;
}
.cid-uU7o3HReLZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uU7o3HReLZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uU7o3HReLZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uU7o3HReLZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uU7o3HReLZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uU7o3HReLZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uU7o3HReLZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uU7o3HReLZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uU7o3HReLZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uU7o3HReLZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uU7o3HReLZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uU7o3HReLZ .navbar.collapsed {
  justify-content: center;
}
.cid-uU7o3HReLZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uU7o3HReLZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uU7o3HReLZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uU7o3HReLZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uU7o3HReLZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uU7o3HReLZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uU7o3HReLZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uU7o3HReLZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uU7o3HReLZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uU7o3HReLZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uU7o3HReLZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uU7o3HReLZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uU7o3HReLZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uU7o3HReLZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uU7o3HReLZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uU7o3HReLZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uU7o3HReLZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uU7o3HReLZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uU7o3HReLZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uU7o3HReLZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uU7o3HReLZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uU7o3HReLZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uU7o3HReLZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uU7o3HReLZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uU7o3HReLZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uU7o3HReLZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uU7o3HReLZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uU7o3HReLZ .dropdown-item.active,
.cid-uU7o3HReLZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uU7o3HReLZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uU7o3HReLZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uU7o3HReLZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uU7o3HReLZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uU7o3HReLZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uU7o3HReLZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uU7o3HReLZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uU7o3HReLZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uU7o3HReLZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uU7o3HReLZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uU7o3HReLZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uU7o3HReLZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uU7o3HReLZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uU7o3HReLZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uU7o3HReLZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uU7o3HReLZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uU7o3HReLZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uU7o3HReLZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uU7o3HReLZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uU7o3HReLZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uU7o3HReLZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uU7o3HReLZ .navbar {
    height: 70px;
  }
  .cid-uU7o3HReLZ .navbar.opened {
    height: auto;
  }
  .cid-uU7o3HReLZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uU7o3Ia1Bt {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uU7o3Ia1Bt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7o3Ia1Bt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7o3IndRZ {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uU7o3IndRZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7o3IndRZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7o3IndRZ .mbr-section-title {
  color: #ffffff;
}
.cid-uU7o3IndRZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uU7o3IAS5W {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uU7o3IAS5W .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7o3IAS5W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7o3INqzR {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uU7o3INqzR .content {
    text-align: center;
  }
  .cid-uU7o3INqzR .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uU7o3INqzR .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uU7o3INqzR .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uU7o3INqzR .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uU7o3INqzR .google-map {
  height: 25rem;
  position: relative;
}
.cid-uU7o3INqzR .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uU7o3INqzR .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uU7o3INqzR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uU7o3INqzR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uU7o3INqzR .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uU7o3INqzR .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uU7o3INqzR .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uU7o3INqzR .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uU7o3INqzR .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uU7o3INqzR .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uU7o3INqzR .list {
  list-style-type: none;
  padding: 0;
}
.cid-uU7sj0afHF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uU7sj0afHF nav.navbar {
  position: fixed;
}
.cid-uU7sj0afHF .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uU7sj0afHF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uU7sj0afHF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uU7sj0afHF .dropdown-item:hover,
.cid-uU7sj0afHF .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uU7sj0afHF .dropdown-item:hover span {
  color: white;
}
.cid-uU7sj0afHF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uU7sj0afHF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uU7sj0afHF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uU7sj0afHF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uU7sj0afHF .nav-link {
  position: relative;
}
.cid-uU7sj0afHF .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uU7sj0afHF .container {
    flex-wrap: nowrap;
  }
}
.cid-uU7sj0afHF .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uU7sj0afHF .dropdown-menu,
.cid-uU7sj0afHF .navbar.opened {
  background: #fafcee !important;
}
.cid-uU7sj0afHF .nav-item:focus,
.cid-uU7sj0afHF .nav-link:focus {
  outline: none;
}
.cid-uU7sj0afHF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uU7sj0afHF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uU7sj0afHF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uU7sj0afHF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uU7sj0afHF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uU7sj0afHF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uU7sj0afHF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uU7sj0afHF .navbar.opened {
  transition: all 0.3s;
}
.cid-uU7sj0afHF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uU7sj0afHF .navbar .navbar-logo img {
  width: auto;
}
.cid-uU7sj0afHF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uU7sj0afHF .navbar.collapsed {
  justify-content: center;
}
.cid-uU7sj0afHF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uU7sj0afHF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uU7sj0afHF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uU7sj0afHF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uU7sj0afHF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uU7sj0afHF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uU7sj0afHF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uU7sj0afHF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uU7sj0afHF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uU7sj0afHF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uU7sj0afHF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uU7sj0afHF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uU7sj0afHF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uU7sj0afHF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uU7sj0afHF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uU7sj0afHF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uU7sj0afHF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uU7sj0afHF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uU7sj0afHF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uU7sj0afHF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uU7sj0afHF .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uU7sj0afHF .navbar.navbar-short {
  min-height: 60px;
}
.cid-uU7sj0afHF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uU7sj0afHF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uU7sj0afHF .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uU7sj0afHF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uU7sj0afHF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uU7sj0afHF .dropdown-item.active,
.cid-uU7sj0afHF .dropdown-item:active {
  background-color: transparent;
}
.cid-uU7sj0afHF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uU7sj0afHF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uU7sj0afHF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uU7sj0afHF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uU7sj0afHF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uU7sj0afHF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uU7sj0afHF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uU7sj0afHF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uU7sj0afHF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uU7sj0afHF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uU7sj0afHF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uU7sj0afHF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uU7sj0afHF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uU7sj0afHF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uU7sj0afHF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uU7sj0afHF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uU7sj0afHF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uU7sj0afHF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uU7sj0afHF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uU7sj0afHF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uU7sj0afHF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uU7sj0afHF .navbar {
    height: 70px;
  }
  .cid-uU7sj0afHF .navbar.opened {
    height: auto;
  }
  .cid-uU7sj0afHF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uU7sj0r7MB {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uU7sj0r7MB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7sj0r7MB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7sj0B0IT {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uU7sj0B0IT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7sj0B0IT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7sj0B0IT .mbr-section-title {
  color: #ffffff;
}
.cid-uU7sj0B0IT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uU7sj0M6Yb {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uU7sj0M6Yb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7sj0M6Yb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7sj104a3 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uU7sj104a3 .content {
    text-align: center;
  }
  .cid-uU7sj104a3 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uU7sj104a3 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uU7sj104a3 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uU7sj104a3 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uU7sj104a3 .google-map {
  height: 25rem;
  position: relative;
}
.cid-uU7sj104a3 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uU7sj104a3 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uU7sj104a3 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uU7sj104a3 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uU7sj104a3 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uU7sj104a3 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uU7sj104a3 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uU7sj104a3 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uU7sj104a3 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uU7sj104a3 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uU7sj104a3 .list {
  list-style-type: none;
  padding: 0;
}
.cid-uU7ww8VMaM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uU7ww8VMaM nav.navbar {
  position: fixed;
}
.cid-uU7ww8VMaM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uU7ww8VMaM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uU7ww8VMaM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uU7ww8VMaM .dropdown-item:hover,
.cid-uU7ww8VMaM .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uU7ww8VMaM .dropdown-item:hover span {
  color: white;
}
.cid-uU7ww8VMaM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uU7ww8VMaM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uU7ww8VMaM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uU7ww8VMaM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uU7ww8VMaM .nav-link {
  position: relative;
}
.cid-uU7ww8VMaM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uU7ww8VMaM .container {
    flex-wrap: nowrap;
  }
}
.cid-uU7ww8VMaM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uU7ww8VMaM .dropdown-menu,
.cid-uU7ww8VMaM .navbar.opened {
  background: #fafcee !important;
}
.cid-uU7ww8VMaM .nav-item:focus,
.cid-uU7ww8VMaM .nav-link:focus {
  outline: none;
}
.cid-uU7ww8VMaM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uU7ww8VMaM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uU7ww8VMaM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uU7ww8VMaM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uU7ww8VMaM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uU7ww8VMaM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uU7ww8VMaM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uU7ww8VMaM .navbar.opened {
  transition: all 0.3s;
}
.cid-uU7ww8VMaM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uU7ww8VMaM .navbar .navbar-logo img {
  width: auto;
}
.cid-uU7ww8VMaM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uU7ww8VMaM .navbar.collapsed {
  justify-content: center;
}
.cid-uU7ww8VMaM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uU7ww8VMaM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uU7ww8VMaM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uU7ww8VMaM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uU7ww8VMaM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uU7ww8VMaM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uU7ww8VMaM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uU7ww8VMaM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uU7ww8VMaM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uU7ww8VMaM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uU7ww8VMaM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uU7ww8VMaM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uU7ww8VMaM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uU7ww8VMaM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uU7ww8VMaM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uU7ww8VMaM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uU7ww8VMaM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uU7ww8VMaM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uU7ww8VMaM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uU7ww8VMaM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uU7ww8VMaM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uU7ww8VMaM .navbar.navbar-short {
  min-height: 60px;
}
.cid-uU7ww8VMaM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uU7ww8VMaM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uU7ww8VMaM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uU7ww8VMaM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uU7ww8VMaM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uU7ww8VMaM .dropdown-item.active,
.cid-uU7ww8VMaM .dropdown-item:active {
  background-color: transparent;
}
.cid-uU7ww8VMaM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uU7ww8VMaM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uU7ww8VMaM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uU7ww8VMaM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uU7ww8VMaM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uU7ww8VMaM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uU7ww8VMaM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uU7ww8VMaM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uU7ww8VMaM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uU7ww8VMaM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uU7ww8VMaM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uU7ww8VMaM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uU7ww8VMaM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uU7ww8VMaM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uU7ww8VMaM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uU7ww8VMaM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uU7ww8VMaM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uU7ww8VMaM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uU7ww8VMaM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uU7ww8VMaM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uU7ww8VMaM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uU7ww8VMaM .navbar {
    height: 70px;
  }
  .cid-uU7ww8VMaM .navbar.opened {
    height: auto;
  }
  .cid-uU7ww8VMaM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uU7ww9bNDv {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uU7ww9bNDv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7ww9bNDv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7ww9tTJ1 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uU7ww9tTJ1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7ww9tTJ1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7ww9tTJ1 .mbr-section-title {
  color: #ffffff;
}
.cid-uU7ww9tTJ1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uU7ww9IDzc {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uU7ww9IDzc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7ww9IDzc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7ww9VFID {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uU7ww9VFID .content {
    text-align: center;
  }
  .cid-uU7ww9VFID .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uU7ww9VFID .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uU7ww9VFID .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uU7ww9VFID .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uU7ww9VFID .google-map {
  height: 25rem;
  position: relative;
}
.cid-uU7ww9VFID .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uU7ww9VFID .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uU7ww9VFID .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uU7ww9VFID .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uU7ww9VFID .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uU7ww9VFID .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uU7ww9VFID .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uU7ww9VFID .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uU7ww9VFID .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uU7ww9VFID .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uU7ww9VFID .list {
  list-style-type: none;
  padding: 0;
}
.cid-uU7EOPzmbC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uU7EOPzmbC nav.navbar {
  position: fixed;
}
.cid-uU7EOPzmbC .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uU7EOPzmbC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uU7EOPzmbC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uU7EOPzmbC .dropdown-item:hover,
.cid-uU7EOPzmbC .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uU7EOPzmbC .dropdown-item:hover span {
  color: white;
}
.cid-uU7EOPzmbC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uU7EOPzmbC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uU7EOPzmbC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uU7EOPzmbC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uU7EOPzmbC .nav-link {
  position: relative;
}
.cid-uU7EOPzmbC .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uU7EOPzmbC .container {
    flex-wrap: nowrap;
  }
}
.cid-uU7EOPzmbC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uU7EOPzmbC .dropdown-menu,
.cid-uU7EOPzmbC .navbar.opened {
  background: #fafcee !important;
}
.cid-uU7EOPzmbC .nav-item:focus,
.cid-uU7EOPzmbC .nav-link:focus {
  outline: none;
}
.cid-uU7EOPzmbC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uU7EOPzmbC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uU7EOPzmbC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uU7EOPzmbC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uU7EOPzmbC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uU7EOPzmbC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uU7EOPzmbC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uU7EOPzmbC .navbar.opened {
  transition: all 0.3s;
}
.cid-uU7EOPzmbC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uU7EOPzmbC .navbar .navbar-logo img {
  width: auto;
}
.cid-uU7EOPzmbC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uU7EOPzmbC .navbar.collapsed {
  justify-content: center;
}
.cid-uU7EOPzmbC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uU7EOPzmbC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uU7EOPzmbC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uU7EOPzmbC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uU7EOPzmbC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uU7EOPzmbC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uU7EOPzmbC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uU7EOPzmbC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uU7EOPzmbC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uU7EOPzmbC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uU7EOPzmbC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uU7EOPzmbC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uU7EOPzmbC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uU7EOPzmbC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uU7EOPzmbC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uU7EOPzmbC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uU7EOPzmbC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uU7EOPzmbC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uU7EOPzmbC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uU7EOPzmbC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uU7EOPzmbC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uU7EOPzmbC .navbar.navbar-short {
  min-height: 60px;
}
.cid-uU7EOPzmbC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uU7EOPzmbC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uU7EOPzmbC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uU7EOPzmbC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uU7EOPzmbC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uU7EOPzmbC .dropdown-item.active,
.cid-uU7EOPzmbC .dropdown-item:active {
  background-color: transparent;
}
.cid-uU7EOPzmbC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uU7EOPzmbC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uU7EOPzmbC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uU7EOPzmbC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uU7EOPzmbC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uU7EOPzmbC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uU7EOPzmbC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uU7EOPzmbC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uU7EOPzmbC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uU7EOPzmbC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uU7EOPzmbC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uU7EOPzmbC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uU7EOPzmbC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uU7EOPzmbC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uU7EOPzmbC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uU7EOPzmbC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uU7EOPzmbC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uU7EOPzmbC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uU7EOPzmbC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uU7EOPzmbC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uU7EOPzmbC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uU7EOPzmbC .navbar {
    height: 70px;
  }
  .cid-uU7EOPzmbC .navbar.opened {
    height: auto;
  }
  .cid-uU7EOPzmbC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uU7EOPQvL8 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uU7EOPQvL8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7EOPQvL8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7EOQcjTb {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uU7EOQcjTb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7EOQcjTb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7EOQcjTb .mbr-section-title {
  color: #ffffff;
}
.cid-uU7EOQcjTb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uU7EOQrB7s {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uU7EOQrB7s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7EOQrB7s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7EOQEQ4W {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uU7EOQEQ4W .content {
    text-align: center;
  }
  .cid-uU7EOQEQ4W .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uU7EOQEQ4W .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uU7EOQEQ4W .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uU7EOQEQ4W .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uU7EOQEQ4W .google-map {
  height: 25rem;
  position: relative;
}
.cid-uU7EOQEQ4W .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uU7EOQEQ4W .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uU7EOQEQ4W .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uU7EOQEQ4W .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uU7EOQEQ4W .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uU7EOQEQ4W .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uU7EOQEQ4W .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uU7EOQEQ4W .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uU7EOQEQ4W .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uU7EOQEQ4W .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uU7EOQEQ4W .list {
  list-style-type: none;
  padding: 0;
}
.cid-uU7HIndcyR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uU7HIndcyR nav.navbar {
  position: fixed;
}
.cid-uU7HIndcyR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uU7HIndcyR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uU7HIndcyR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uU7HIndcyR .dropdown-item:hover,
.cid-uU7HIndcyR .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uU7HIndcyR .dropdown-item:hover span {
  color: white;
}
.cid-uU7HIndcyR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uU7HIndcyR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uU7HIndcyR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uU7HIndcyR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uU7HIndcyR .nav-link {
  position: relative;
}
.cid-uU7HIndcyR .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uU7HIndcyR .container {
    flex-wrap: nowrap;
  }
}
.cid-uU7HIndcyR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uU7HIndcyR .dropdown-menu,
.cid-uU7HIndcyR .navbar.opened {
  background: #fafcee !important;
}
.cid-uU7HIndcyR .nav-item:focus,
.cid-uU7HIndcyR .nav-link:focus {
  outline: none;
}
.cid-uU7HIndcyR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uU7HIndcyR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uU7HIndcyR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uU7HIndcyR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uU7HIndcyR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uU7HIndcyR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uU7HIndcyR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uU7HIndcyR .navbar.opened {
  transition: all 0.3s;
}
.cid-uU7HIndcyR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uU7HIndcyR .navbar .navbar-logo img {
  width: auto;
}
.cid-uU7HIndcyR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uU7HIndcyR .navbar.collapsed {
  justify-content: center;
}
.cid-uU7HIndcyR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uU7HIndcyR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uU7HIndcyR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uU7HIndcyR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uU7HIndcyR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uU7HIndcyR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uU7HIndcyR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uU7HIndcyR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uU7HIndcyR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uU7HIndcyR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uU7HIndcyR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uU7HIndcyR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uU7HIndcyR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uU7HIndcyR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uU7HIndcyR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uU7HIndcyR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uU7HIndcyR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uU7HIndcyR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uU7HIndcyR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uU7HIndcyR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uU7HIndcyR .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uU7HIndcyR .navbar.navbar-short {
  min-height: 60px;
}
.cid-uU7HIndcyR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uU7HIndcyR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uU7HIndcyR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uU7HIndcyR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uU7HIndcyR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uU7HIndcyR .dropdown-item.active,
.cid-uU7HIndcyR .dropdown-item:active {
  background-color: transparent;
}
.cid-uU7HIndcyR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uU7HIndcyR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uU7HIndcyR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uU7HIndcyR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uU7HIndcyR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uU7HIndcyR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uU7HIndcyR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uU7HIndcyR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uU7HIndcyR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uU7HIndcyR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uU7HIndcyR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uU7HIndcyR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uU7HIndcyR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uU7HIndcyR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uU7HIndcyR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uU7HIndcyR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uU7HIndcyR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uU7HIndcyR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uU7HIndcyR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uU7HIndcyR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uU7HIndcyR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uU7HIndcyR .navbar {
    height: 70px;
  }
  .cid-uU7HIndcyR .navbar.opened {
    height: auto;
  }
  .cid-uU7HIndcyR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uU7HInuLxv {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uU7HInuLxv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7HInuLxv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7HInIU6Y {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uU7HInIU6Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7HInIU6Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7HInIU6Y .mbr-section-title {
  color: #ffffff;
}
.cid-uU7HInIU6Y .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uU7HInVCZf {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uU7HInVCZf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7HInVCZf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7HIo70mr {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uU7HIo70mr .content {
    text-align: center;
  }
  .cid-uU7HIo70mr .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uU7HIo70mr .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uU7HIo70mr .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uU7HIo70mr .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uU7HIo70mr .google-map {
  height: 25rem;
  position: relative;
}
.cid-uU7HIo70mr .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uU7HIo70mr .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uU7HIo70mr .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uU7HIo70mr .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uU7HIo70mr .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uU7HIo70mr .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uU7HIo70mr .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uU7HIo70mr .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uU7HIo70mr .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uU7HIo70mr .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uU7HIo70mr .list {
  list-style-type: none;
  padding: 0;
}
.cid-uU7KUcr7Co {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uU7KUcr7Co nav.navbar {
  position: fixed;
}
.cid-uU7KUcr7Co .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uU7KUcr7Co .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uU7KUcr7Co .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uU7KUcr7Co .dropdown-item:hover,
.cid-uU7KUcr7Co .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uU7KUcr7Co .dropdown-item:hover span {
  color: white;
}
.cid-uU7KUcr7Co .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uU7KUcr7Co .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uU7KUcr7Co .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uU7KUcr7Co .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uU7KUcr7Co .nav-link {
  position: relative;
}
.cid-uU7KUcr7Co .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uU7KUcr7Co .container {
    flex-wrap: nowrap;
  }
}
.cid-uU7KUcr7Co .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uU7KUcr7Co .dropdown-menu,
.cid-uU7KUcr7Co .navbar.opened {
  background: #fafcee !important;
}
.cid-uU7KUcr7Co .nav-item:focus,
.cid-uU7KUcr7Co .nav-link:focus {
  outline: none;
}
.cid-uU7KUcr7Co .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uU7KUcr7Co .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uU7KUcr7Co .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uU7KUcr7Co .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uU7KUcr7Co .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uU7KUcr7Co .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uU7KUcr7Co .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uU7KUcr7Co .navbar.opened {
  transition: all 0.3s;
}
.cid-uU7KUcr7Co .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uU7KUcr7Co .navbar .navbar-logo img {
  width: auto;
}
.cid-uU7KUcr7Co .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uU7KUcr7Co .navbar.collapsed {
  justify-content: center;
}
.cid-uU7KUcr7Co .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uU7KUcr7Co .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uU7KUcr7Co .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uU7KUcr7Co .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uU7KUcr7Co .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uU7KUcr7Co .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uU7KUcr7Co .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uU7KUcr7Co .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uU7KUcr7Co .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uU7KUcr7Co .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uU7KUcr7Co .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uU7KUcr7Co .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uU7KUcr7Co .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uU7KUcr7Co .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uU7KUcr7Co .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uU7KUcr7Co .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uU7KUcr7Co .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uU7KUcr7Co .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uU7KUcr7Co .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uU7KUcr7Co .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uU7KUcr7Co .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uU7KUcr7Co .navbar.navbar-short {
  min-height: 60px;
}
.cid-uU7KUcr7Co .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uU7KUcr7Co .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uU7KUcr7Co .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uU7KUcr7Co .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uU7KUcr7Co .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uU7KUcr7Co .dropdown-item.active,
.cid-uU7KUcr7Co .dropdown-item:active {
  background-color: transparent;
}
.cid-uU7KUcr7Co .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uU7KUcr7Co .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uU7KUcr7Co .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uU7KUcr7Co .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uU7KUcr7Co .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uU7KUcr7Co .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uU7KUcr7Co ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uU7KUcr7Co .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uU7KUcr7Co button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uU7KUcr7Co button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uU7KUcr7Co button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uU7KUcr7Co button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uU7KUcr7Co button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uU7KUcr7Co button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uU7KUcr7Co nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uU7KUcr7Co nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uU7KUcr7Co nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uU7KUcr7Co nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uU7KUcr7Co .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uU7KUcr7Co a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uU7KUcr7Co .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uU7KUcr7Co .navbar {
    height: 70px;
  }
  .cid-uU7KUcr7Co .navbar.opened {
    height: auto;
  }
  .cid-uU7KUcr7Co .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uU7KUcIMUN {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uU7KUcIMUN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7KUcIMUN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7KUcVNWg {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uU7KUcVNWg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7KUcVNWg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7KUcVNWg .mbr-section-title {
  color: #ffffff;
}
.cid-uU7KUcVNWg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uU7KUda35a {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uU7KUda35a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7KUda35a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7KUdnlUY {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uU7KUdnlUY .content {
    text-align: center;
  }
  .cid-uU7KUdnlUY .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uU7KUdnlUY .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uU7KUdnlUY .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uU7KUdnlUY .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uU7KUdnlUY .google-map {
  height: 25rem;
  position: relative;
}
.cid-uU7KUdnlUY .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uU7KUdnlUY .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uU7KUdnlUY .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uU7KUdnlUY .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uU7KUdnlUY .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uU7KUdnlUY .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uU7KUdnlUY .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uU7KUdnlUY .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uU7KUdnlUY .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uU7KUdnlUY .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uU7KUdnlUY .list {
  list-style-type: none;
  padding: 0;
}
.cid-uU7NGswyMj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uU7NGswyMj nav.navbar {
  position: fixed;
}
.cid-uU7NGswyMj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uU7NGswyMj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uU7NGswyMj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uU7NGswyMj .dropdown-item:hover,
.cid-uU7NGswyMj .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uU7NGswyMj .dropdown-item:hover span {
  color: white;
}
.cid-uU7NGswyMj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uU7NGswyMj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uU7NGswyMj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uU7NGswyMj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uU7NGswyMj .nav-link {
  position: relative;
}
.cid-uU7NGswyMj .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uU7NGswyMj .container {
    flex-wrap: nowrap;
  }
}
.cid-uU7NGswyMj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uU7NGswyMj .dropdown-menu,
.cid-uU7NGswyMj .navbar.opened {
  background: #fafcee !important;
}
.cid-uU7NGswyMj .nav-item:focus,
.cid-uU7NGswyMj .nav-link:focus {
  outline: none;
}
.cid-uU7NGswyMj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uU7NGswyMj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uU7NGswyMj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uU7NGswyMj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uU7NGswyMj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uU7NGswyMj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uU7NGswyMj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uU7NGswyMj .navbar.opened {
  transition: all 0.3s;
}
.cid-uU7NGswyMj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uU7NGswyMj .navbar .navbar-logo img {
  width: auto;
}
.cid-uU7NGswyMj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uU7NGswyMj .navbar.collapsed {
  justify-content: center;
}
.cid-uU7NGswyMj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uU7NGswyMj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uU7NGswyMj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uU7NGswyMj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uU7NGswyMj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uU7NGswyMj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uU7NGswyMj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uU7NGswyMj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uU7NGswyMj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uU7NGswyMj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uU7NGswyMj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uU7NGswyMj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uU7NGswyMj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uU7NGswyMj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uU7NGswyMj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uU7NGswyMj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uU7NGswyMj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uU7NGswyMj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uU7NGswyMj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uU7NGswyMj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uU7NGswyMj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uU7NGswyMj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uU7NGswyMj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uU7NGswyMj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uU7NGswyMj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uU7NGswyMj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uU7NGswyMj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uU7NGswyMj .dropdown-item.active,
.cid-uU7NGswyMj .dropdown-item:active {
  background-color: transparent;
}
.cid-uU7NGswyMj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uU7NGswyMj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uU7NGswyMj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uU7NGswyMj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uU7NGswyMj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uU7NGswyMj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uU7NGswyMj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uU7NGswyMj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uU7NGswyMj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uU7NGswyMj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uU7NGswyMj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uU7NGswyMj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uU7NGswyMj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uU7NGswyMj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uU7NGswyMj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uU7NGswyMj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uU7NGswyMj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uU7NGswyMj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uU7NGswyMj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uU7NGswyMj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uU7NGswyMj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uU7NGswyMj .navbar {
    height: 70px;
  }
  .cid-uU7NGswyMj .navbar.opened {
    height: auto;
  }
  .cid-uU7NGswyMj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uU7NGsNvEN {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uU7NGsNvEN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7NGsNvEN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7NGt0Ygj {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uU7NGt0Ygj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7NGt0Ygj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7NGt0Ygj .mbr-section-title {
  color: #ffffff;
}
.cid-uU7NGt0Ygj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uU7NGteF6L {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uU7NGteF6L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7NGteF6L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7NGtpw3W {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uU7NGtpw3W .content {
    text-align: center;
  }
  .cid-uU7NGtpw3W .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uU7NGtpw3W .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uU7NGtpw3W .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uU7NGtpw3W .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uU7NGtpw3W .google-map {
  height: 25rem;
  position: relative;
}
.cid-uU7NGtpw3W .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uU7NGtpw3W .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uU7NGtpw3W .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uU7NGtpw3W .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uU7NGtpw3W .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uU7NGtpw3W .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uU7NGtpw3W .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uU7NGtpw3W .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uU7NGtpw3W .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uU7NGtpw3W .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uU7NGtpw3W .list {
  list-style-type: none;
  padding: 0;
}
.cid-uU7QmSITcn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uU7QmSITcn nav.navbar {
  position: fixed;
}
.cid-uU7QmSITcn .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uU7QmSITcn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uU7QmSITcn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uU7QmSITcn .dropdown-item:hover,
.cid-uU7QmSITcn .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uU7QmSITcn .dropdown-item:hover span {
  color: white;
}
.cid-uU7QmSITcn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uU7QmSITcn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uU7QmSITcn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uU7QmSITcn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uU7QmSITcn .nav-link {
  position: relative;
}
.cid-uU7QmSITcn .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uU7QmSITcn .container {
    flex-wrap: nowrap;
  }
}
.cid-uU7QmSITcn .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uU7QmSITcn .dropdown-menu,
.cid-uU7QmSITcn .navbar.opened {
  background: #fafcee !important;
}
.cid-uU7QmSITcn .nav-item:focus,
.cid-uU7QmSITcn .nav-link:focus {
  outline: none;
}
.cid-uU7QmSITcn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uU7QmSITcn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uU7QmSITcn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uU7QmSITcn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uU7QmSITcn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uU7QmSITcn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uU7QmSITcn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-uU7QmSITcn .navbar.opened {
  transition: all 0.3s;
}
.cid-uU7QmSITcn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uU7QmSITcn .navbar .navbar-logo img {
  width: auto;
}
.cid-uU7QmSITcn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uU7QmSITcn .navbar.collapsed {
  justify-content: center;
}
.cid-uU7QmSITcn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uU7QmSITcn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uU7QmSITcn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uU7QmSITcn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uU7QmSITcn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uU7QmSITcn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uU7QmSITcn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uU7QmSITcn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uU7QmSITcn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uU7QmSITcn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uU7QmSITcn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uU7QmSITcn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uU7QmSITcn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uU7QmSITcn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uU7QmSITcn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uU7QmSITcn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uU7QmSITcn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uU7QmSITcn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uU7QmSITcn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uU7QmSITcn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uU7QmSITcn .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uU7QmSITcn .navbar.navbar-short {
  min-height: 60px;
}
.cid-uU7QmSITcn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uU7QmSITcn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uU7QmSITcn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uU7QmSITcn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uU7QmSITcn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uU7QmSITcn .dropdown-item.active,
.cid-uU7QmSITcn .dropdown-item:active {
  background-color: transparent;
}
.cid-uU7QmSITcn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uU7QmSITcn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uU7QmSITcn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uU7QmSITcn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-uU7QmSITcn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uU7QmSITcn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uU7QmSITcn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uU7QmSITcn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uU7QmSITcn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uU7QmSITcn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-uU7QmSITcn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uU7QmSITcn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uU7QmSITcn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uU7QmSITcn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uU7QmSITcn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uU7QmSITcn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uU7QmSITcn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uU7QmSITcn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uU7QmSITcn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uU7QmSITcn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uU7QmSITcn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uU7QmSITcn .navbar {
    height: 70px;
  }
  .cid-uU7QmSITcn .navbar.opened {
    height: auto;
  }
  .cid-uU7QmSITcn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uU7QmSZYTk {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uU7QmSZYTk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7QmSZYTk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7QmTkdDt {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-uU7QmTkdDt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7QmTkdDt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7QmTkdDt .mbr-section-title {
  color: #ffffff;
}
.cid-uU7QmTkdDt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uU7QmTyZKw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uU7QmTyZKw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU7QmTyZKw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU7QmTKQ3h {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-uU7QmTKQ3h .content {
    text-align: center;
  }
  .cid-uU7QmTKQ3h .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uU7QmTKQ3h .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uU7QmTKQ3h .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uU7QmTKQ3h .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uU7QmTKQ3h .google-map {
  height: 25rem;
  position: relative;
}
.cid-uU7QmTKQ3h .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uU7QmTKQ3h .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uU7QmTKQ3h .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uU7QmTKQ3h .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uU7QmTKQ3h .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uU7QmTKQ3h .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uU7QmTKQ3h .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uU7QmTKQ3h .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uU7QmTKQ3h .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uU7QmTKQ3h .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uU7QmTKQ3h .list {
  list-style-type: none;
  padding: 0;
}
.cid-v0wRKzv2zQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0wRKzv2zQ nav.navbar {
  position: fixed;
}
.cid-v0wRKzv2zQ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0wRKzv2zQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0wRKzv2zQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0wRKzv2zQ .dropdown-item:hover,
.cid-v0wRKzv2zQ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v0wRKzv2zQ .dropdown-item:hover span {
  color: white;
}
.cid-v0wRKzv2zQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0wRKzv2zQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0wRKzv2zQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0wRKzv2zQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0wRKzv2zQ .nav-link {
  position: relative;
}
.cid-v0wRKzv2zQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v0wRKzv2zQ .container {
    flex-wrap: nowrap;
  }
}
.cid-v0wRKzv2zQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0wRKzv2zQ .dropdown-menu,
.cid-v0wRKzv2zQ .navbar.opened {
  background: #fafcee !important;
}
.cid-v0wRKzv2zQ .nav-item:focus,
.cid-v0wRKzv2zQ .nav-link:focus {
  outline: none;
}
.cid-v0wRKzv2zQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0wRKzv2zQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0wRKzv2zQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0wRKzv2zQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0wRKzv2zQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0wRKzv2zQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0wRKzv2zQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-v0wRKzv2zQ .navbar.opened {
  transition: all 0.3s;
}
.cid-v0wRKzv2zQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0wRKzv2zQ .navbar .navbar-logo img {
  width: auto;
}
.cid-v0wRKzv2zQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0wRKzv2zQ .navbar.collapsed {
  justify-content: center;
}
.cid-v0wRKzv2zQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0wRKzv2zQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0wRKzv2zQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v0wRKzv2zQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0wRKzv2zQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0wRKzv2zQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0wRKzv2zQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0wRKzv2zQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0wRKzv2zQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0wRKzv2zQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0wRKzv2zQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0wRKzv2zQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0wRKzv2zQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0wRKzv2zQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0wRKzv2zQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0wRKzv2zQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0wRKzv2zQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0wRKzv2zQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0wRKzv2zQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0wRKzv2zQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0wRKzv2zQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0wRKzv2zQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0wRKzv2zQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0wRKzv2zQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0wRKzv2zQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0wRKzv2zQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0wRKzv2zQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0wRKzv2zQ .dropdown-item.active,
.cid-v0wRKzv2zQ .dropdown-item:active {
  background-color: transparent;
}
.cid-v0wRKzv2zQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0wRKzv2zQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0wRKzv2zQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0wRKzv2zQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-v0wRKzv2zQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0wRKzv2zQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0wRKzv2zQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0wRKzv2zQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0wRKzv2zQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0wRKzv2zQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-v0wRKzv2zQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0wRKzv2zQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0wRKzv2zQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0wRKzv2zQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0wRKzv2zQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0wRKzv2zQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0wRKzv2zQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0wRKzv2zQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0wRKzv2zQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0wRKzv2zQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0wRKzv2zQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0wRKzv2zQ .navbar {
    height: 70px;
  }
  .cid-v0wRKzv2zQ .navbar.opened {
    height: auto;
  }
  .cid-v0wRKzv2zQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0wRKzNtcP {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0wRKzNtcP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0wRKzNtcP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0wRKzYRXk {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-v0wRKzYRXk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0wRKzYRXk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0wRKzYRXk .mbr-section-title {
  color: #ffffff;
}
.cid-v0wRKzYRXk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0wRKA9Egx {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0wRKA9Egx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0wRKA9Egx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0wRKAoxwM {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-v0wRKAoxwM .content {
    text-align: center;
  }
  .cid-v0wRKAoxwM .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v0wRKAoxwM .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-v0wRKAoxwM .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0wRKAoxwM .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-v0wRKAoxwM .google-map {
  height: 25rem;
  position: relative;
}
.cid-v0wRKAoxwM .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v0wRKAoxwM .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v0wRKAoxwM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v0wRKAoxwM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v0wRKAoxwM .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v0wRKAoxwM .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-v0wRKAoxwM .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-v0wRKAoxwM .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v0wRKAoxwM .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0wRKAoxwM .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v0wRKAoxwM .list {
  list-style-type: none;
  padding: 0;
}
.cid-v0wVNo20DX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0wVNo20DX nav.navbar {
  position: fixed;
}
.cid-v0wVNo20DX .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0wVNo20DX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0wVNo20DX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0wVNo20DX .dropdown-item:hover,
.cid-v0wVNo20DX .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v0wVNo20DX .dropdown-item:hover span {
  color: white;
}
.cid-v0wVNo20DX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0wVNo20DX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0wVNo20DX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0wVNo20DX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0wVNo20DX .nav-link {
  position: relative;
}
.cid-v0wVNo20DX .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v0wVNo20DX .container {
    flex-wrap: nowrap;
  }
}
.cid-v0wVNo20DX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0wVNo20DX .dropdown-menu,
.cid-v0wVNo20DX .navbar.opened {
  background: #fafcee !important;
}
.cid-v0wVNo20DX .nav-item:focus,
.cid-v0wVNo20DX .nav-link:focus {
  outline: none;
}
.cid-v0wVNo20DX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0wVNo20DX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0wVNo20DX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0wVNo20DX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0wVNo20DX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0wVNo20DX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0wVNo20DX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-v0wVNo20DX .navbar.opened {
  transition: all 0.3s;
}
.cid-v0wVNo20DX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0wVNo20DX .navbar .navbar-logo img {
  width: auto;
}
.cid-v0wVNo20DX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0wVNo20DX .navbar.collapsed {
  justify-content: center;
}
.cid-v0wVNo20DX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0wVNo20DX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0wVNo20DX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v0wVNo20DX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0wVNo20DX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0wVNo20DX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0wVNo20DX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0wVNo20DX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0wVNo20DX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0wVNo20DX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0wVNo20DX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0wVNo20DX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0wVNo20DX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0wVNo20DX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0wVNo20DX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0wVNo20DX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0wVNo20DX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0wVNo20DX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0wVNo20DX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0wVNo20DX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0wVNo20DX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0wVNo20DX .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0wVNo20DX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0wVNo20DX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0wVNo20DX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0wVNo20DX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0wVNo20DX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0wVNo20DX .dropdown-item.active,
.cid-v0wVNo20DX .dropdown-item:active {
  background-color: transparent;
}
.cid-v0wVNo20DX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0wVNo20DX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0wVNo20DX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0wVNo20DX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-v0wVNo20DX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0wVNo20DX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0wVNo20DX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0wVNo20DX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0wVNo20DX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0wVNo20DX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-v0wVNo20DX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0wVNo20DX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0wVNo20DX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0wVNo20DX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0wVNo20DX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0wVNo20DX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0wVNo20DX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0wVNo20DX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0wVNo20DX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0wVNo20DX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0wVNo20DX .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0wVNo20DX .navbar {
    height: 70px;
  }
  .cid-v0wVNo20DX .navbar.opened {
    height: auto;
  }
  .cid-v0wVNo20DX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0wVNolv7S {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0wVNolv7S .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0wVNolv7S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0wVNoAyag {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-v0wVNoAyag .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0wVNoAyag .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0wVNoAyag .mbr-section-title {
  color: #ffffff;
}
.cid-v0wVNoAyag .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0wVNoLO52 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0wVNoLO52 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0wVNoLO52 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0wVNoY9kG {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-v0wVNoY9kG .content {
    text-align: center;
  }
  .cid-v0wVNoY9kG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v0wVNoY9kG .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-v0wVNoY9kG .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0wVNoY9kG .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-v0wVNoY9kG .google-map {
  height: 25rem;
  position: relative;
}
.cid-v0wVNoY9kG .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v0wVNoY9kG .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v0wVNoY9kG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v0wVNoY9kG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v0wVNoY9kG .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v0wVNoY9kG .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-v0wVNoY9kG .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-v0wVNoY9kG .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v0wVNoY9kG .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0wVNoY9kG .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v0wVNoY9kG .list {
  list-style-type: none;
  padding: 0;
}
.cid-v0x6vYsmnJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0x6vYsmnJ nav.navbar {
  position: fixed;
}
.cid-v0x6vYsmnJ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0x6vYsmnJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0x6vYsmnJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0x6vYsmnJ .dropdown-item:hover,
.cid-v0x6vYsmnJ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v0x6vYsmnJ .dropdown-item:hover span {
  color: white;
}
.cid-v0x6vYsmnJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0x6vYsmnJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0x6vYsmnJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0x6vYsmnJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0x6vYsmnJ .nav-link {
  position: relative;
}
.cid-v0x6vYsmnJ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v0x6vYsmnJ .container {
    flex-wrap: nowrap;
  }
}
.cid-v0x6vYsmnJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0x6vYsmnJ .dropdown-menu,
.cid-v0x6vYsmnJ .navbar.opened {
  background: #fafcee !important;
}
.cid-v0x6vYsmnJ .nav-item:focus,
.cid-v0x6vYsmnJ .nav-link:focus {
  outline: none;
}
.cid-v0x6vYsmnJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0x6vYsmnJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0x6vYsmnJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0x6vYsmnJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0x6vYsmnJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0x6vYsmnJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0x6vYsmnJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-v0x6vYsmnJ .navbar.opened {
  transition: all 0.3s;
}
.cid-v0x6vYsmnJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0x6vYsmnJ .navbar .navbar-logo img {
  width: auto;
}
.cid-v0x6vYsmnJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0x6vYsmnJ .navbar.collapsed {
  justify-content: center;
}
.cid-v0x6vYsmnJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0x6vYsmnJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0x6vYsmnJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v0x6vYsmnJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0x6vYsmnJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0x6vYsmnJ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0x6vYsmnJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0x6vYsmnJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0x6vYsmnJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0x6vYsmnJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0x6vYsmnJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0x6vYsmnJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0x6vYsmnJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0x6vYsmnJ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0x6vYsmnJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0x6vYsmnJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0x6vYsmnJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0x6vYsmnJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0x6vYsmnJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0x6vYsmnJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0x6vYsmnJ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0x6vYsmnJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0x6vYsmnJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0x6vYsmnJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0x6vYsmnJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0x6vYsmnJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0x6vYsmnJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0x6vYsmnJ .dropdown-item.active,
.cid-v0x6vYsmnJ .dropdown-item:active {
  background-color: transparent;
}
.cid-v0x6vYsmnJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0x6vYsmnJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0x6vYsmnJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0x6vYsmnJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-v0x6vYsmnJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0x6vYsmnJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0x6vYsmnJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0x6vYsmnJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0x6vYsmnJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0x6vYsmnJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-v0x6vYsmnJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0x6vYsmnJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0x6vYsmnJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0x6vYsmnJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0x6vYsmnJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0x6vYsmnJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0x6vYsmnJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0x6vYsmnJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0x6vYsmnJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0x6vYsmnJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0x6vYsmnJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0x6vYsmnJ .navbar {
    height: 70px;
  }
  .cid-v0x6vYsmnJ .navbar.opened {
    height: auto;
  }
  .cid-v0x6vYsmnJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0x6vYJ5k5 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0x6vYJ5k5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0x6vYJ5k5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0x6vYWHKe {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-v0x6vYWHKe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0x6vYWHKe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0x6vYWHKe .mbr-section-title {
  color: #ffffff;
}
.cid-v0x6vYWHKe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0x6vZ8Dmu {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0x6vZ8Dmu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0x6vZ8Dmu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0x6vZkMAy {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-v0x6vZkMAy .content {
    text-align: center;
  }
  .cid-v0x6vZkMAy .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v0x6vZkMAy .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-v0x6vZkMAy .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0x6vZkMAy .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-v0x6vZkMAy .google-map {
  height: 25rem;
  position: relative;
}
.cid-v0x6vZkMAy .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v0x6vZkMAy .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v0x6vZkMAy .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v0x6vZkMAy .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v0x6vZkMAy .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v0x6vZkMAy .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-v0x6vZkMAy .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-v0x6vZkMAy .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v0x6vZkMAy .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0x6vZkMAy .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v0x6vZkMAy .list {
  list-style-type: none;
  padding: 0;
}
.cid-v0x9MCwt3C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0x9MCwt3C nav.navbar {
  position: fixed;
}
.cid-v0x9MCwt3C .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0x9MCwt3C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0x9MCwt3C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0x9MCwt3C .dropdown-item:hover,
.cid-v0x9MCwt3C .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v0x9MCwt3C .dropdown-item:hover span {
  color: white;
}
.cid-v0x9MCwt3C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0x9MCwt3C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0x9MCwt3C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0x9MCwt3C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0x9MCwt3C .nav-link {
  position: relative;
}
.cid-v0x9MCwt3C .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v0x9MCwt3C .container {
    flex-wrap: nowrap;
  }
}
.cid-v0x9MCwt3C .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0x9MCwt3C .dropdown-menu,
.cid-v0x9MCwt3C .navbar.opened {
  background: #fafcee !important;
}
.cid-v0x9MCwt3C .nav-item:focus,
.cid-v0x9MCwt3C .nav-link:focus {
  outline: none;
}
.cid-v0x9MCwt3C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0x9MCwt3C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0x9MCwt3C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0x9MCwt3C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0x9MCwt3C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0x9MCwt3C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0x9MCwt3C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-v0x9MCwt3C .navbar.opened {
  transition: all 0.3s;
}
.cid-v0x9MCwt3C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0x9MCwt3C .navbar .navbar-logo img {
  width: auto;
}
.cid-v0x9MCwt3C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0x9MCwt3C .navbar.collapsed {
  justify-content: center;
}
.cid-v0x9MCwt3C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0x9MCwt3C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0x9MCwt3C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v0x9MCwt3C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0x9MCwt3C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0x9MCwt3C .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0x9MCwt3C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0x9MCwt3C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0x9MCwt3C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0x9MCwt3C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0x9MCwt3C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0x9MCwt3C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0x9MCwt3C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0x9MCwt3C .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0x9MCwt3C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0x9MCwt3C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0x9MCwt3C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0x9MCwt3C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0x9MCwt3C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0x9MCwt3C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0x9MCwt3C .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0x9MCwt3C .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0x9MCwt3C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0x9MCwt3C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0x9MCwt3C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0x9MCwt3C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0x9MCwt3C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0x9MCwt3C .dropdown-item.active,
.cid-v0x9MCwt3C .dropdown-item:active {
  background-color: transparent;
}
.cid-v0x9MCwt3C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0x9MCwt3C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0x9MCwt3C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0x9MCwt3C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-v0x9MCwt3C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0x9MCwt3C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0x9MCwt3C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0x9MCwt3C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0x9MCwt3C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0x9MCwt3C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-v0x9MCwt3C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0x9MCwt3C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0x9MCwt3C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0x9MCwt3C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0x9MCwt3C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0x9MCwt3C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0x9MCwt3C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0x9MCwt3C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0x9MCwt3C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0x9MCwt3C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0x9MCwt3C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0x9MCwt3C .navbar {
    height: 70px;
  }
  .cid-v0x9MCwt3C .navbar.opened {
    height: auto;
  }
  .cid-v0x9MCwt3C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0x9MCNtD3 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0x9MCNtD3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0x9MCNtD3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0x9MD0MxS {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-v0x9MD0MxS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0x9MD0MxS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0x9MD0MxS .mbr-section-title {
  color: #ffffff;
}
.cid-v0x9MD0MxS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0x9MDfDyn {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0x9MDfDyn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0x9MDfDyn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0x9MDr42I {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-v0x9MDr42I .content {
    text-align: center;
  }
  .cid-v0x9MDr42I .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v0x9MDr42I .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-v0x9MDr42I .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0x9MDr42I .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-v0x9MDr42I .google-map {
  height: 25rem;
  position: relative;
}
.cid-v0x9MDr42I .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v0x9MDr42I .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v0x9MDr42I .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v0x9MDr42I .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v0x9MDr42I .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v0x9MDr42I .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-v0x9MDr42I .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-v0x9MDr42I .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v0x9MDr42I .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0x9MDr42I .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v0x9MDr42I .list {
  list-style-type: none;
  padding: 0;
}
.cid-v0xoUlRh3L {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0xoUlRh3L nav.navbar {
  position: fixed;
}
.cid-v0xoUlRh3L .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0xoUlRh3L .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0xoUlRh3L .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0xoUlRh3L .dropdown-item:hover,
.cid-v0xoUlRh3L .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v0xoUlRh3L .dropdown-item:hover span {
  color: white;
}
.cid-v0xoUlRh3L .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0xoUlRh3L .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0xoUlRh3L .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0xoUlRh3L .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0xoUlRh3L .nav-link {
  position: relative;
}
.cid-v0xoUlRh3L .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v0xoUlRh3L .container {
    flex-wrap: nowrap;
  }
}
.cid-v0xoUlRh3L .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0xoUlRh3L .dropdown-menu,
.cid-v0xoUlRh3L .navbar.opened {
  background: #fafcee !important;
}
.cid-v0xoUlRh3L .nav-item:focus,
.cid-v0xoUlRh3L .nav-link:focus {
  outline: none;
}
.cid-v0xoUlRh3L .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0xoUlRh3L .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0xoUlRh3L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0xoUlRh3L .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0xoUlRh3L .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0xoUlRh3L .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0xoUlRh3L .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-v0xoUlRh3L .navbar.opened {
  transition: all 0.3s;
}
.cid-v0xoUlRh3L .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0xoUlRh3L .navbar .navbar-logo img {
  width: auto;
}
.cid-v0xoUlRh3L .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0xoUlRh3L .navbar.collapsed {
  justify-content: center;
}
.cid-v0xoUlRh3L .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0xoUlRh3L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0xoUlRh3L .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v0xoUlRh3L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0xoUlRh3L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0xoUlRh3L .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0xoUlRh3L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0xoUlRh3L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0xoUlRh3L .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0xoUlRh3L .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0xoUlRh3L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0xoUlRh3L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0xoUlRh3L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0xoUlRh3L .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0xoUlRh3L .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0xoUlRh3L .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0xoUlRh3L .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0xoUlRh3L .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0xoUlRh3L .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0xoUlRh3L .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0xoUlRh3L .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0xoUlRh3L .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0xoUlRh3L .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0xoUlRh3L .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0xoUlRh3L .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0xoUlRh3L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0xoUlRh3L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0xoUlRh3L .dropdown-item.active,
.cid-v0xoUlRh3L .dropdown-item:active {
  background-color: transparent;
}
.cid-v0xoUlRh3L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0xoUlRh3L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0xoUlRh3L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0xoUlRh3L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-v0xoUlRh3L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0xoUlRh3L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0xoUlRh3L ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0xoUlRh3L .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0xoUlRh3L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0xoUlRh3L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-v0xoUlRh3L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0xoUlRh3L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0xoUlRh3L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0xoUlRh3L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0xoUlRh3L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0xoUlRh3L nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0xoUlRh3L nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0xoUlRh3L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0xoUlRh3L .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0xoUlRh3L a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0xoUlRh3L .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0xoUlRh3L .navbar {
    height: 70px;
  }
  .cid-v0xoUlRh3L .navbar.opened {
    height: auto;
  }
  .cid-v0xoUlRh3L .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0xoUm8kdl {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0xoUm8kdl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0xoUm8kdl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0xoUmkrDe {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-v0xoUmkrDe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0xoUmkrDe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0xoUmkrDe .mbr-section-title {
  color: #ffffff;
}
.cid-v0xoUmkrDe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0xoUmzmAR {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0xoUmzmAR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0xoUmzmAR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0xoUmLtcl {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-v0xoUmLtcl .content {
    text-align: center;
  }
  .cid-v0xoUmLtcl .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v0xoUmLtcl .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-v0xoUmLtcl .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0xoUmLtcl .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-v0xoUmLtcl .google-map {
  height: 25rem;
  position: relative;
}
.cid-v0xoUmLtcl .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v0xoUmLtcl .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v0xoUmLtcl .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v0xoUmLtcl .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v0xoUmLtcl .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v0xoUmLtcl .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-v0xoUmLtcl .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-v0xoUmLtcl .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v0xoUmLtcl .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0xoUmLtcl .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v0xoUmLtcl .list {
  list-style-type: none;
  padding: 0;
}
.cid-v0xsptvTlo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0xsptvTlo nav.navbar {
  position: fixed;
}
.cid-v0xsptvTlo .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0xsptvTlo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0xsptvTlo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0xsptvTlo .dropdown-item:hover,
.cid-v0xsptvTlo .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v0xsptvTlo .dropdown-item:hover span {
  color: white;
}
.cid-v0xsptvTlo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0xsptvTlo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0xsptvTlo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0xsptvTlo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0xsptvTlo .nav-link {
  position: relative;
}
.cid-v0xsptvTlo .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v0xsptvTlo .container {
    flex-wrap: nowrap;
  }
}
.cid-v0xsptvTlo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0xsptvTlo .dropdown-menu,
.cid-v0xsptvTlo .navbar.opened {
  background: #fafcee !important;
}
.cid-v0xsptvTlo .nav-item:focus,
.cid-v0xsptvTlo .nav-link:focus {
  outline: none;
}
.cid-v0xsptvTlo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0xsptvTlo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0xsptvTlo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0xsptvTlo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0xsptvTlo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0xsptvTlo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0xsptvTlo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-v0xsptvTlo .navbar.opened {
  transition: all 0.3s;
}
.cid-v0xsptvTlo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0xsptvTlo .navbar .navbar-logo img {
  width: auto;
}
.cid-v0xsptvTlo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0xsptvTlo .navbar.collapsed {
  justify-content: center;
}
.cid-v0xsptvTlo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0xsptvTlo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0xsptvTlo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v0xsptvTlo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0xsptvTlo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0xsptvTlo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0xsptvTlo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0xsptvTlo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0xsptvTlo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0xsptvTlo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0xsptvTlo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0xsptvTlo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0xsptvTlo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0xsptvTlo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0xsptvTlo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0xsptvTlo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0xsptvTlo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0xsptvTlo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0xsptvTlo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0xsptvTlo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0xsptvTlo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0xsptvTlo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0xsptvTlo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0xsptvTlo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0xsptvTlo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0xsptvTlo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0xsptvTlo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0xsptvTlo .dropdown-item.active,
.cid-v0xsptvTlo .dropdown-item:active {
  background-color: transparent;
}
.cid-v0xsptvTlo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0xsptvTlo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0xsptvTlo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0xsptvTlo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-v0xsptvTlo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0xsptvTlo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0xsptvTlo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0xsptvTlo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0xsptvTlo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0xsptvTlo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-v0xsptvTlo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0xsptvTlo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0xsptvTlo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0xsptvTlo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0xsptvTlo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0xsptvTlo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0xsptvTlo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0xsptvTlo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0xsptvTlo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0xsptvTlo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0xsptvTlo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0xsptvTlo .navbar {
    height: 70px;
  }
  .cid-v0xsptvTlo .navbar.opened {
    height: auto;
  }
  .cid-v0xsptvTlo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0xsptLuQl {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0xsptLuQl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0xsptLuQl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0xspu15ru {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-v0xspu15ru .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0xspu15ru .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0xspu15ru .mbr-section-title {
  color: #ffffff;
}
.cid-v0xspu15ru .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0xspueWbq {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0xspueWbq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0xspueWbq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0xspuqR6N {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-v0xspuqR6N .content {
    text-align: center;
  }
  .cid-v0xspuqR6N .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v0xspuqR6N .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-v0xspuqR6N .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0xspuqR6N .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-v0xspuqR6N .google-map {
  height: 25rem;
  position: relative;
}
.cid-v0xspuqR6N .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v0xspuqR6N .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v0xspuqR6N .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v0xspuqR6N .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v0xspuqR6N .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v0xspuqR6N .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-v0xspuqR6N .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-v0xspuqR6N .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v0xspuqR6N .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0xspuqR6N .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v0xspuqR6N .list {
  list-style-type: none;
  padding: 0;
}
.cid-v0xvNyOocZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0xvNyOocZ nav.navbar {
  position: fixed;
}
.cid-v0xvNyOocZ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0xvNyOocZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0xvNyOocZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0xvNyOocZ .dropdown-item:hover,
.cid-v0xvNyOocZ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v0xvNyOocZ .dropdown-item:hover span {
  color: white;
}
.cid-v0xvNyOocZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0xvNyOocZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0xvNyOocZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0xvNyOocZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0xvNyOocZ .nav-link {
  position: relative;
}
.cid-v0xvNyOocZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v0xvNyOocZ .container {
    flex-wrap: nowrap;
  }
}
.cid-v0xvNyOocZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0xvNyOocZ .dropdown-menu,
.cid-v0xvNyOocZ .navbar.opened {
  background: #fafcee !important;
}
.cid-v0xvNyOocZ .nav-item:focus,
.cid-v0xvNyOocZ .nav-link:focus {
  outline: none;
}
.cid-v0xvNyOocZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0xvNyOocZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0xvNyOocZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0xvNyOocZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0xvNyOocZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0xvNyOocZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0xvNyOocZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-v0xvNyOocZ .navbar.opened {
  transition: all 0.3s;
}
.cid-v0xvNyOocZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0xvNyOocZ .navbar .navbar-logo img {
  width: auto;
}
.cid-v0xvNyOocZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0xvNyOocZ .navbar.collapsed {
  justify-content: center;
}
.cid-v0xvNyOocZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0xvNyOocZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0xvNyOocZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v0xvNyOocZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0xvNyOocZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0xvNyOocZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0xvNyOocZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0xvNyOocZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0xvNyOocZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0xvNyOocZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0xvNyOocZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0xvNyOocZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0xvNyOocZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0xvNyOocZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0xvNyOocZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0xvNyOocZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0xvNyOocZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0xvNyOocZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0xvNyOocZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0xvNyOocZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0xvNyOocZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0xvNyOocZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0xvNyOocZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0xvNyOocZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0xvNyOocZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0xvNyOocZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0xvNyOocZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0xvNyOocZ .dropdown-item.active,
.cid-v0xvNyOocZ .dropdown-item:active {
  background-color: transparent;
}
.cid-v0xvNyOocZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0xvNyOocZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0xvNyOocZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0xvNyOocZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-v0xvNyOocZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0xvNyOocZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0xvNyOocZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0xvNyOocZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0xvNyOocZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0xvNyOocZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-v0xvNyOocZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0xvNyOocZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0xvNyOocZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0xvNyOocZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0xvNyOocZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0xvNyOocZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0xvNyOocZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0xvNyOocZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0xvNyOocZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0xvNyOocZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0xvNyOocZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0xvNyOocZ .navbar {
    height: 70px;
  }
  .cid-v0xvNyOocZ .navbar.opened {
    height: auto;
  }
  .cid-v0xvNyOocZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0xvNz5sb6 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0xvNz5sb6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0xvNz5sb6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0xvNzigNq {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-v0xvNzigNq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0xvNzigNq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0xvNzigNq .mbr-section-title {
  color: #ffffff;
}
.cid-v0xvNzigNq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0xvNzvr81 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0xvNzvr81 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0xvNzvr81 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0xvNzIijA {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-v0xvNzIijA .content {
    text-align: center;
  }
  .cid-v0xvNzIijA .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v0xvNzIijA .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-v0xvNzIijA .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0xvNzIijA .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-v0xvNzIijA .google-map {
  height: 25rem;
  position: relative;
}
.cid-v0xvNzIijA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v0xvNzIijA .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v0xvNzIijA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v0xvNzIijA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v0xvNzIijA .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v0xvNzIijA .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-v0xvNzIijA .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-v0xvNzIijA .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v0xvNzIijA .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0xvNzIijA .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v0xvNzIijA .list {
  list-style-type: none;
  padding: 0;
}
.cid-v0xzgz1HP4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0xzgz1HP4 nav.navbar {
  position: fixed;
}
.cid-v0xzgz1HP4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0xzgz1HP4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0xzgz1HP4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0xzgz1HP4 .dropdown-item:hover,
.cid-v0xzgz1HP4 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v0xzgz1HP4 .dropdown-item:hover span {
  color: white;
}
.cid-v0xzgz1HP4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0xzgz1HP4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0xzgz1HP4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0xzgz1HP4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0xzgz1HP4 .nav-link {
  position: relative;
}
.cid-v0xzgz1HP4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v0xzgz1HP4 .container {
    flex-wrap: nowrap;
  }
}
.cid-v0xzgz1HP4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0xzgz1HP4 .dropdown-menu,
.cid-v0xzgz1HP4 .navbar.opened {
  background: #fafcee !important;
}
.cid-v0xzgz1HP4 .nav-item:focus,
.cid-v0xzgz1HP4 .nav-link:focus {
  outline: none;
}
.cid-v0xzgz1HP4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0xzgz1HP4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0xzgz1HP4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0xzgz1HP4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0xzgz1HP4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0xzgz1HP4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0xzgz1HP4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-v0xzgz1HP4 .navbar.opened {
  transition: all 0.3s;
}
.cid-v0xzgz1HP4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0xzgz1HP4 .navbar .navbar-logo img {
  width: auto;
}
.cid-v0xzgz1HP4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0xzgz1HP4 .navbar.collapsed {
  justify-content: center;
}
.cid-v0xzgz1HP4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0xzgz1HP4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0xzgz1HP4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v0xzgz1HP4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0xzgz1HP4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0xzgz1HP4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0xzgz1HP4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0xzgz1HP4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0xzgz1HP4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0xzgz1HP4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0xzgz1HP4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0xzgz1HP4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0xzgz1HP4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0xzgz1HP4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0xzgz1HP4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0xzgz1HP4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0xzgz1HP4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0xzgz1HP4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0xzgz1HP4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0xzgz1HP4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0xzgz1HP4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0xzgz1HP4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0xzgz1HP4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0xzgz1HP4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0xzgz1HP4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0xzgz1HP4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0xzgz1HP4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0xzgz1HP4 .dropdown-item.active,
.cid-v0xzgz1HP4 .dropdown-item:active {
  background-color: transparent;
}
.cid-v0xzgz1HP4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0xzgz1HP4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0xzgz1HP4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0xzgz1HP4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-v0xzgz1HP4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0xzgz1HP4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0xzgz1HP4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0xzgz1HP4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0xzgz1HP4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0xzgz1HP4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-v0xzgz1HP4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0xzgz1HP4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0xzgz1HP4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0xzgz1HP4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0xzgz1HP4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0xzgz1HP4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0xzgz1HP4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0xzgz1HP4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0xzgz1HP4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0xzgz1HP4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0xzgz1HP4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0xzgz1HP4 .navbar {
    height: 70px;
  }
  .cid-v0xzgz1HP4 .navbar.opened {
    height: auto;
  }
  .cid-v0xzgz1HP4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0xzgziFXk {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0xzgziFXk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0xzgziFXk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0xzgzvOSp {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-v0xzgzvOSp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0xzgzvOSp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0xzgzvOSp .mbr-section-title {
  color: #ffffff;
}
.cid-v0xzgzvOSp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0xzgzJhMX {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0xzgzJhMX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0xzgzJhMX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0xzgzVi88 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-v0xzgzVi88 .content {
    text-align: center;
  }
  .cid-v0xzgzVi88 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v0xzgzVi88 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-v0xzgzVi88 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0xzgzVi88 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-v0xzgzVi88 .google-map {
  height: 25rem;
  position: relative;
}
.cid-v0xzgzVi88 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v0xzgzVi88 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v0xzgzVi88 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v0xzgzVi88 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v0xzgzVi88 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v0xzgzVi88 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-v0xzgzVi88 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-v0xzgzVi88 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v0xzgzVi88 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0xzgzVi88 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v0xzgzVi88 .list {
  list-style-type: none;
  padding: 0;
}
.cid-v0xD0gNrvW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0xD0gNrvW nav.navbar {
  position: fixed;
}
.cid-v0xD0gNrvW .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0xD0gNrvW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0xD0gNrvW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0xD0gNrvW .dropdown-item:hover,
.cid-v0xD0gNrvW .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v0xD0gNrvW .dropdown-item:hover span {
  color: white;
}
.cid-v0xD0gNrvW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0xD0gNrvW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0xD0gNrvW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0xD0gNrvW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0xD0gNrvW .nav-link {
  position: relative;
}
.cid-v0xD0gNrvW .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v0xD0gNrvW .container {
    flex-wrap: nowrap;
  }
}
.cid-v0xD0gNrvW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0xD0gNrvW .dropdown-menu,
.cid-v0xD0gNrvW .navbar.opened {
  background: #fafcee !important;
}
.cid-v0xD0gNrvW .nav-item:focus,
.cid-v0xD0gNrvW .nav-link:focus {
  outline: none;
}
.cid-v0xD0gNrvW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0xD0gNrvW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0xD0gNrvW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0xD0gNrvW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0xD0gNrvW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0xD0gNrvW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0xD0gNrvW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-v0xD0gNrvW .navbar.opened {
  transition: all 0.3s;
}
.cid-v0xD0gNrvW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0xD0gNrvW .navbar .navbar-logo img {
  width: auto;
}
.cid-v0xD0gNrvW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0xD0gNrvW .navbar.collapsed {
  justify-content: center;
}
.cid-v0xD0gNrvW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0xD0gNrvW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0xD0gNrvW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v0xD0gNrvW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0xD0gNrvW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0xD0gNrvW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0xD0gNrvW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0xD0gNrvW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0xD0gNrvW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0xD0gNrvW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0xD0gNrvW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0xD0gNrvW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0xD0gNrvW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0xD0gNrvW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0xD0gNrvW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0xD0gNrvW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0xD0gNrvW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0xD0gNrvW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0xD0gNrvW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0xD0gNrvW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0xD0gNrvW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0xD0gNrvW .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0xD0gNrvW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0xD0gNrvW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0xD0gNrvW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0xD0gNrvW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0xD0gNrvW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0xD0gNrvW .dropdown-item.active,
.cid-v0xD0gNrvW .dropdown-item:active {
  background-color: transparent;
}
.cid-v0xD0gNrvW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0xD0gNrvW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0xD0gNrvW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0xD0gNrvW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-v0xD0gNrvW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0xD0gNrvW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0xD0gNrvW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0xD0gNrvW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0xD0gNrvW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0xD0gNrvW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-v0xD0gNrvW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0xD0gNrvW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0xD0gNrvW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0xD0gNrvW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0xD0gNrvW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0xD0gNrvW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0xD0gNrvW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0xD0gNrvW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0xD0gNrvW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0xD0gNrvW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0xD0gNrvW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0xD0gNrvW .navbar {
    height: 70px;
  }
  .cid-v0xD0gNrvW .navbar.opened {
    height: auto;
  }
  .cid-v0xD0gNrvW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0xD0h4QWU {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0xD0h4QWU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0xD0h4QWU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0xD0hgR7t {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-v0xD0hgR7t .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0xD0hgR7t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0xD0hgR7t .mbr-section-title {
  color: #ffffff;
}
.cid-v0xD0hgR7t .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0xD0hvyov {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0xD0hvyov .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0xD0hvyov .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0xD0hIMXG {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-v0xD0hIMXG .content {
    text-align: center;
  }
  .cid-v0xD0hIMXG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v0xD0hIMXG .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-v0xD0hIMXG .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0xD0hIMXG .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-v0xD0hIMXG .google-map {
  height: 25rem;
  position: relative;
}
.cid-v0xD0hIMXG .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v0xD0hIMXG .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v0xD0hIMXG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v0xD0hIMXG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v0xD0hIMXG .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v0xD0hIMXG .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-v0xD0hIMXG .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-v0xD0hIMXG .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v0xD0hIMXG .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0xD0hIMXG .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v0xD0hIMXG .list {
  list-style-type: none;
  padding: 0;
}
.cid-v0ITpGV3Ap {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0ITpGV3Ap nav.navbar {
  position: fixed;
}
.cid-v0ITpGV3Ap .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ITpGV3Ap .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0ITpGV3Ap .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0ITpGV3Ap .dropdown-item:hover,
.cid-v0ITpGV3Ap .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v0ITpGV3Ap .dropdown-item:hover span {
  color: white;
}
.cid-v0ITpGV3Ap .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0ITpGV3Ap .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0ITpGV3Ap .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0ITpGV3Ap .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0ITpGV3Ap .nav-link {
  position: relative;
}
.cid-v0ITpGV3Ap .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v0ITpGV3Ap .container {
    flex-wrap: nowrap;
  }
}
.cid-v0ITpGV3Ap .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0ITpGV3Ap .dropdown-menu,
.cid-v0ITpGV3Ap .navbar.opened {
  background: #fafcee !important;
}
.cid-v0ITpGV3Ap .nav-item:focus,
.cid-v0ITpGV3Ap .nav-link:focus {
  outline: none;
}
.cid-v0ITpGV3Ap .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0ITpGV3Ap .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0ITpGV3Ap .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0ITpGV3Ap .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0ITpGV3Ap .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0ITpGV3Ap .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0ITpGV3Ap .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-v0ITpGV3Ap .navbar.opened {
  transition: all 0.3s;
}
.cid-v0ITpGV3Ap .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0ITpGV3Ap .navbar .navbar-logo img {
  width: auto;
}
.cid-v0ITpGV3Ap .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0ITpGV3Ap .navbar.collapsed {
  justify-content: center;
}
.cid-v0ITpGV3Ap .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0ITpGV3Ap .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0ITpGV3Ap .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v0ITpGV3Ap .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0ITpGV3Ap .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0ITpGV3Ap .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0ITpGV3Ap .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0ITpGV3Ap .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0ITpGV3Ap .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0ITpGV3Ap .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0ITpGV3Ap .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0ITpGV3Ap .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0ITpGV3Ap .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0ITpGV3Ap .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0ITpGV3Ap .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0ITpGV3Ap .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0ITpGV3Ap .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0ITpGV3Ap .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0ITpGV3Ap .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0ITpGV3Ap .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0ITpGV3Ap .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0ITpGV3Ap .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0ITpGV3Ap .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0ITpGV3Ap .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0ITpGV3Ap .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0ITpGV3Ap .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0ITpGV3Ap .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0ITpGV3Ap .dropdown-item.active,
.cid-v0ITpGV3Ap .dropdown-item:active {
  background-color: transparent;
}
.cid-v0ITpGV3Ap .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0ITpGV3Ap .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0ITpGV3Ap .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0ITpGV3Ap .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-v0ITpGV3Ap .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0ITpGV3Ap .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0ITpGV3Ap ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0ITpGV3Ap .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0ITpGV3Ap button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0ITpGV3Ap button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-v0ITpGV3Ap button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0ITpGV3Ap button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ITpGV3Ap button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0ITpGV3Ap button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0ITpGV3Ap nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ITpGV3Ap nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0ITpGV3Ap nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0ITpGV3Ap nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0ITpGV3Ap .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0ITpGV3Ap a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0ITpGV3Ap .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0ITpGV3Ap .navbar {
    height: 70px;
  }
  .cid-v0ITpGV3Ap .navbar.opened {
    height: auto;
  }
  .cid-v0ITpGV3Ap .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0ITpHaJIV {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0ITpHaJIV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0ITpHaJIV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0ITpHoNcb {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-v0ITpHoNcb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0ITpHoNcb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0ITpHoNcb .mbr-section-title {
  color: #ffffff;
}
.cid-v0ITpHoNcb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0ITpHzlVZ {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0ITpHzlVZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0ITpHzlVZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0ITpHLNPJ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-v0ITpHLNPJ .content {
    text-align: center;
  }
  .cid-v0ITpHLNPJ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v0ITpHLNPJ .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-v0ITpHLNPJ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0ITpHLNPJ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-v0ITpHLNPJ .google-map {
  height: 25rem;
  position: relative;
}
.cid-v0ITpHLNPJ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v0ITpHLNPJ .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v0ITpHLNPJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v0ITpHLNPJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v0ITpHLNPJ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v0ITpHLNPJ .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-v0ITpHLNPJ .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-v0ITpHLNPJ .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v0ITpHLNPJ .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0ITpHLNPJ .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v0ITpHLNPJ .list {
  list-style-type: none;
  padding: 0;
}
.cid-v0J5v9mRrQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0J5v9mRrQ nav.navbar {
  position: fixed;
}
.cid-v0J5v9mRrQ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0J5v9mRrQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0J5v9mRrQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0J5v9mRrQ .dropdown-item:hover,
.cid-v0J5v9mRrQ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v0J5v9mRrQ .dropdown-item:hover span {
  color: white;
}
.cid-v0J5v9mRrQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0J5v9mRrQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0J5v9mRrQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0J5v9mRrQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0J5v9mRrQ .nav-link {
  position: relative;
}
.cid-v0J5v9mRrQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v0J5v9mRrQ .container {
    flex-wrap: nowrap;
  }
}
.cid-v0J5v9mRrQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0J5v9mRrQ .dropdown-menu,
.cid-v0J5v9mRrQ .navbar.opened {
  background: #fafcee !important;
}
.cid-v0J5v9mRrQ .nav-item:focus,
.cid-v0J5v9mRrQ .nav-link:focus {
  outline: none;
}
.cid-v0J5v9mRrQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0J5v9mRrQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0J5v9mRrQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0J5v9mRrQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0J5v9mRrQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0J5v9mRrQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0J5v9mRrQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-v0J5v9mRrQ .navbar.opened {
  transition: all 0.3s;
}
.cid-v0J5v9mRrQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0J5v9mRrQ .navbar .navbar-logo img {
  width: auto;
}
.cid-v0J5v9mRrQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0J5v9mRrQ .navbar.collapsed {
  justify-content: center;
}
.cid-v0J5v9mRrQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0J5v9mRrQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0J5v9mRrQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v0J5v9mRrQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0J5v9mRrQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0J5v9mRrQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0J5v9mRrQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0J5v9mRrQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0J5v9mRrQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0J5v9mRrQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0J5v9mRrQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0J5v9mRrQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0J5v9mRrQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0J5v9mRrQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0J5v9mRrQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0J5v9mRrQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0J5v9mRrQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0J5v9mRrQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0J5v9mRrQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0J5v9mRrQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0J5v9mRrQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0J5v9mRrQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0J5v9mRrQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0J5v9mRrQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0J5v9mRrQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0J5v9mRrQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0J5v9mRrQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0J5v9mRrQ .dropdown-item.active,
.cid-v0J5v9mRrQ .dropdown-item:active {
  background-color: transparent;
}
.cid-v0J5v9mRrQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0J5v9mRrQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0J5v9mRrQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0J5v9mRrQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-v0J5v9mRrQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0J5v9mRrQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0J5v9mRrQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0J5v9mRrQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0J5v9mRrQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0J5v9mRrQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-v0J5v9mRrQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0J5v9mRrQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0J5v9mRrQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0J5v9mRrQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0J5v9mRrQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0J5v9mRrQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0J5v9mRrQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0J5v9mRrQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0J5v9mRrQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0J5v9mRrQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0J5v9mRrQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0J5v9mRrQ .navbar {
    height: 70px;
  }
  .cid-v0J5v9mRrQ .navbar.opened {
    height: auto;
  }
  .cid-v0J5v9mRrQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0J5v9DnqZ {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0J5v9DnqZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0J5v9DnqZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0J5v9QQST {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-v0J5v9QQST .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0J5v9QQST .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0J5v9QQST .mbr-section-title {
  color: #ffffff;
}
.cid-v0J5v9QQST .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0J5va4oRx {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0J5va4oRx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0J5va4oRx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0J5vahKYg {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-v0J5vahKYg .content {
    text-align: center;
  }
  .cid-v0J5vahKYg .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v0J5vahKYg .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-v0J5vahKYg .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0J5vahKYg .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-v0J5vahKYg .google-map {
  height: 25rem;
  position: relative;
}
.cid-v0J5vahKYg .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v0J5vahKYg .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v0J5vahKYg .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v0J5vahKYg .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v0J5vahKYg .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v0J5vahKYg .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-v0J5vahKYg .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-v0J5vahKYg .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v0J5vahKYg .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0J5vahKYg .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v0J5vahKYg .list {
  list-style-type: none;
  padding: 0;
}
.cid-v0J87M3QpR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0J87M3QpR nav.navbar {
  position: fixed;
}
.cid-v0J87M3QpR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0J87M3QpR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0J87M3QpR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0J87M3QpR .dropdown-item:hover,
.cid-v0J87M3QpR .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-v0J87M3QpR .dropdown-item:hover span {
  color: white;
}
.cid-v0J87M3QpR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0J87M3QpR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0J87M3QpR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0J87M3QpR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0J87M3QpR .nav-link {
  position: relative;
}
.cid-v0J87M3QpR .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v0J87M3QpR .container {
    flex-wrap: nowrap;
  }
}
.cid-v0J87M3QpR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0J87M3QpR .dropdown-menu,
.cid-v0J87M3QpR .navbar.opened {
  background: #fafcee !important;
}
.cid-v0J87M3QpR .nav-item:focus,
.cid-v0J87M3QpR .nav-link:focus {
  outline: none;
}
.cid-v0J87M3QpR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0J87M3QpR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0J87M3QpR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0J87M3QpR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0J87M3QpR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0J87M3QpR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0J87M3QpR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafcee;
}
.cid-v0J87M3QpR .navbar.opened {
  transition: all 0.3s;
}
.cid-v0J87M3QpR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0J87M3QpR .navbar .navbar-logo img {
  width: auto;
}
.cid-v0J87M3QpR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0J87M3QpR .navbar.collapsed {
  justify-content: center;
}
.cid-v0J87M3QpR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0J87M3QpR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0J87M3QpR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v0J87M3QpR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0J87M3QpR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0J87M3QpR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0J87M3QpR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0J87M3QpR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0J87M3QpR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0J87M3QpR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0J87M3QpR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0J87M3QpR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0J87M3QpR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0J87M3QpR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0J87M3QpR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0J87M3QpR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0J87M3QpR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0J87M3QpR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0J87M3QpR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0J87M3QpR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0J87M3QpR .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0J87M3QpR .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0J87M3QpR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0J87M3QpR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0J87M3QpR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0J87M3QpR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0J87M3QpR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0J87M3QpR .dropdown-item.active,
.cid-v0J87M3QpR .dropdown-item:active {
  background-color: transparent;
}
.cid-v0J87M3QpR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0J87M3QpR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0J87M3QpR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0J87M3QpR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafcee;
}
.cid-v0J87M3QpR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0J87M3QpR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0J87M3QpR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0J87M3QpR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0J87M3QpR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0J87M3QpR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #898176;
}
.cid-v0J87M3QpR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0J87M3QpR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0J87M3QpR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0J87M3QpR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0J87M3QpR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0J87M3QpR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0J87M3QpR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0J87M3QpR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0J87M3QpR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0J87M3QpR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0J87M3QpR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0J87M3QpR .navbar {
    height: 70px;
  }
  .cid-v0J87M3QpR .navbar.opened {
    height: auto;
  }
  .cid-v0J87M3QpR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0J87MkR9B {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v0J87MkR9B .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0J87MkR9B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0J87Mz8TZ {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/fondo-peluqueria-y-estetica-en-huelva-3.jpg");
}
.cid-v0J87Mz8TZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0J87Mz8TZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0J87Mz8TZ .mbr-section-title {
  color: #ffffff;
}
.cid-v0J87Mz8TZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0J87MM4IW {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0J87MM4IW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0J87MM4IW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0J87MYOAW {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-v0J87MYOAW .content {
    text-align: center;
  }
  .cid-v0J87MYOAW .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-v0J87MYOAW .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-v0J87MYOAW .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-v0J87MYOAW .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-v0J87MYOAW .google-map {
  height: 25rem;
  position: relative;
}
.cid-v0J87MYOAW .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v0J87MYOAW .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v0J87MYOAW .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v0J87MYOAW .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v0J87MYOAW .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v0J87MYOAW .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-v0J87MYOAW .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-v0J87MYOAW .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-v0J87MYOAW .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0J87MYOAW .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v0J87MYOAW .list {
  list-style-type: none;
  padding: 0;
}
