* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.flex {
  display: flex;
}
.container__logo {
  /*border:#f00 1px solid;*/
}
#logo {
  margin: 1rem 0;
  height: 4.5rem;
  /* border:#0f0 1px solid;*/
}
.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}
.btn,
.btn:link,
.btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.5rem;
  display: inline-block;
  border-radius: 10rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}
@media only screen and (max-width: 37.5em) {
  .btn,
  .btn:link,
  .btn:visited {
    font-size: 0.8rem;
    padding: 0.8rem 1.5rem;
    color: #111;
  }
}

.btn:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.btn:hover::after {
  -webkit-transform: scaleX(1.4) scaleY(1.6);
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn:active,
.btn:focus {
  outline: none;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.btn--white {
  background-color: #fff;
  color: #777;
}
.btn--white::after {
  background-color: #fff;
}

.btn--red {
  background-color: #e2001a;
  color: #fff;
}
.btn--red::after {
  background-color: #e2001a;
  color: #fff;
}
.btn--red:hover {
  color: #fff;
}

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn--animated {
  -webkit-animation: moveInBottom 0.5s ease-out 0.75s;
  animation: moveInBottom 0.5s ease-out 0.75s;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

.btn-text:link,
.btn-text:visited {
  font-size: 1.6rem;
  color: #eb2f64;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #eb2f64;
  padding: 3px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media (max-width: 991.98px) {
  #logo {
    margin: 0;
    margin-top: 0.7rem;
    height: 4rem;
  }
}
@media (max-width: 430px) {
  #logo {
    height: 3rem;
  }
}
#logosvg {
  background-size: 50px auto;
}
.social-media {
  margin-top: -0.2rem;
  margin-left: 1rem;
}
@media only screen and (max-width: 75em) {
  .social-media {
    margin-left: 0rem;
  }
}
.locales-horas,
.rider {
  background-color: #222;
}
.home-page-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
}
@media only screen and (max-width: 75em) {
  .home-page-cards {
    width: 90%;
  }
}
@media only screen and (max-width: 56.25em) {
  .home-page-cards {
    width: 90%;
  }
}
@media only screen and (max-width: 37.5em) {
  .home-page-cards {
    width: 100%;
    display: inline-block;
  }
}
.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  -webkit-perspective: 150rem;
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  height: 40rem;
  background-color: transparent;
}
@media only screen and (max-width: 75em) {
  .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 56.25em) {
  .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
}
.card:not(:last-child) {
  margin-right: 4rem;
}
@media only screen and (max-width: 75em) {
  .card:not(:last-child) {
    margin-right: 3rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .card:not(:last-child) {
    margin-right: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .card:not(:last-child) {
    width: 90%;
    margin: 2rem auto;
  }
}
@media only screen and (max-width: 37.5em) {
  .card {
    width: 90%;
    margin: 2rem auto;
  }
  .card:last-child {
    margin-bottom: 3rem;
  }
}
.card__side {
  height: 35rem;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 3px;
  overflow: hidden;
  -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}
.card__side--front {
  background-color: #fff;
}
.card__side--back {
  display: flex;
  justify-content: center;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgb(168, 2, 22)),
    to(#e2001a)
  );
  background-image: linear-gradient(
    to right bottom,
    rgb(134, 2, 18),
    rgb(255, 0, 0)
  );
}
.card__cta{
  position: relative;
}

.card__side--back .precio {
  position: relative;
  font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 100;
  font-size: 4rem;
  margin: 0 auto;
  color: #fff;
}
@media only screen and (max-width: 56.25em), only screen and (hover: none) {
  .card__side--back .precio {
    font-size: 3rem;
  }
}
.card__side--back .porHora {
  position: relative;
  font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 100;
  font-size: 1rem;
  margin: 0 auto;
  color: #fff;
}

.card__side--back .oferta{
  position: absolute;
  width:60px;
  height: 60px;
  right:4.5rem;
  bottom:2.5rem;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.2rem;
  padding-top: 1.2rem;
  color: #444;
  
}
.card__side--back .oferta::before{
  position: absolute;
  left:-5px;
  top:-5px;
  content:'';
  background-color: transparent;
  border: 3px solid #fff;
  width:70px;
  height: 70px;
  border-radius: 50%;
  z-index: -1;

}
.card__side--back .wifi{
  display: flex;
  align-content: center;
  position: absolute;
  width:60px;
  height: 60px;
  left:4.5rem;
  bottom:2.5rem;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  font-weight: 900;
  font-size: .8rem;
  line-height: .8rem;
  padding-top: 1rem;
  
  
}
@media only screen and (min-width: 667px) and (max-width:1024px){
  .card__side--back .wifi{
    display:block;
    left:15px;
    top:50px;
  }
  .card__side--back .oferta{
    display:block;
    right:15px;
    top:50px;
  }
  .card__side--back .precio {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .card__side--back .porHora {
    font-size: .7rem;
  }
  
}
@media only screen and (min-width: 667px) and (max-width:900px){
  .card__side--back .wifi{
    display:block;
    left:3px;
    top:160px;
    width: 50px;
    height:50px;
    font-size:.7rem;
    padding-top:.8rem
  }
  .card__side--back .wifi::before{
    display:none
  }
  .card__side--back .oferta{
    display:block;
    right:3px;
    top:160px;
    width: 50px;
    height:50px;
    font-size:1rem;
    padding-top:.8rem
  }
  .card__side--back .oferta::before{
    display: none;
  }
  .card__cta .btn{
    padding:.5rem .8rem;
    font-size: .8rem;
    color:#000;
  }
}
@media only screen and (min-width: 600px) and (max-width: 667px) {
  .card__side--back .precio {
    font-size: 2rem;
  }
  .card__cta .btn{
    padding:.5rem .8rem;
    font-size: .8rem;
  }
  .card__side--back .wifi{
    display:none
  }
  .card__side--back .oferta{
    display:none
  }
  .card__heading-span{
    font-size: 1.4rem;
  }
  .card__details{
    padding: 0;
  }
}
@media only screen and (max-width: 415px) {
  .card__side--back .wifi{
    display:block;
    left:15px;
    top:80px;
  }
  .card__side--back .oferta{
    display:block;
    right:15px;
    top:80px;
  }
  
}

.card__side--back .wifi::before{
  position: absolute;
  left:-5px;
  top:-5px;
  content:'';
  background-color: transparent;
  border: 3px solid #fff;
  width:70px;
  height: 70px;
  border-radius: 50%;
  z-index: -1;
  
}

.card:hover .card__side--front {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.card:hover .card__side--back {
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
}
.card__picture {
  background-size: cover;
  height: 10rem;
  background-blend-mode: screen;

  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.card__picture--1 {
  background-image: url(../gallery/local6.jpg);
  background-position: 0 -20px;
}
.card__picture--2 {
  background-image: url(../gallery/local7.jpg);
  background-position: 0 -35px;
}
.card__picture--3 {
  background-image: url(../gallery/local10.jpg);
  background-position: 0 -15px;
}
.card__heading {
  font-size: 1.8rem;
  font-weight: 300;
  text-transform: uppercase;
  text-align: left;
  color: #fff;
  position: absolute;
  top: 9rem;
  left: 1rem;
  width: 75%;
}
@media only screen and (max-width: 75em) {
  .card__heading {
    width: 95%;
  }
}
@media only screen and (max-width: 56.25em) {
  .card__heading {
    width: 95%;
  }
}
@media only screen and (max-width: 37.5em) {
  .card__heading {
    font-size: 1.5rem;
  }
}
.card__heading-span {
  padding: 1rem 1.5rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(226, 0, 26, 0.85)),
    to(rgba(226, 0, 26, 0.85))
  );
  background-image: linear-gradient(
    to right bottom,
    rgba(226, 0, 26, 0.85),
    rgba(226, 0, 26, 0.85)
  );
}

.card__details {
  padding: 3rem;
}
.card__details ul {
  list-style: none;
  width: 90%;
  margin: 0 auto;
  padding: 0;
}
.card__details ul li {
  text-align: center;
  font-size: 0.8rem;
  padding: 0.5rem;
}

@media only screen and (max-width: 1440px) {
  .card__details ul {
    margin-top: 1rem;
  }
  .card__details ul li {
    font-size: 0.8rem;
  }
}
.card__details ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.card__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}
@media only screen and (max-width: 56.25em), only screen and (hover: none) {
  .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
    height: auto;
    border-radius: 3px;
    background-color: #fff;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  }
}
@media only screen and (max-width: 56.25em) and (max-width: 56.25em),
  only screen and (hover: none) and (max-width: 56.25em) {
  .card {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 56.25em), only screen and (hover: none) {
  .card__side {
    height: auto;
    position: relative;
    align-items: space-between;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .card__side--back {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }

  .card:hover .card__side--front {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
  .card__details {
    padding: 1rem .2rem;
  }
  .card__cta {
    position: relative;
    top: 0%;
    left: 0;
    -webkit-transform: translate(0);
    transform: translate(0);
    width: 100%;
    padding: 1rem 1rem 1.5rem 1rem;
  }
}

.contactar {
  background-color: var(--tabladared);
  background: linear-gradient( to right bottom, rgb(134, 2, 18), rgb(255, 0, 0) );
}
.border-white{
  border-color: #fff;
}


}

.form__group:not(:last-child) {
  margin-bottom: 2rem;
}

.form__input {
  font-size: 0.8rem;
  font-family: inherit;
  color: inherit;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 1);
  border: none;
  border-bottom: 3px solid transparent;
  width: 90%;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form__input:focus {
  outline: none;
  -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #eb2f64;
}
.form__input:focus:invalid {
  border-bottom: 3px solid #ff7730;
}
.form__input::-webkit-input-placeholder {
  color: #999;
}

.form__label {
  font-size: 0.8rem;
  color: #fff;
  font-weight: 700;
  margin-left: 0.2rem;
  margin-top: 0.7rem;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-4rem);
  transform: translateY(-4rem);
}

.form__radio-group {
  width: 49%;
  display: inline-block;
}

.form__radio-input {
  display: none;
}

.form__radio-label {
  font-size: 1.6rem;
  cursor: pointer;
  position: relative;
  padding-left: 4.5rem;
}

.form__radio-button {
  height: 3rem;
  width: 3rem;
  border: 5px solid #eb2f64;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: -0.4rem;
}
.form__radio-button::after {
  content: "";
  display: block;
  height: 1.3rem;
  width: 1.3rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #eb2f64;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.form__radio-input:checked ~ .form__radio-label .form__radio-button::after {
  opacity: 1;
}

.white-left-border {
  border-left: #fff 2px solid;
}

.about {
  margin: 0 auto;
  /*-webkit-box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);*/
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  padding: 1, 2rem;
  padding-left: 9rem;
  font-size: 0.9rem;

  /*@include respond(tab-port) {
        width: 100%;
        padding: 4rem;
        padding-left: 7rem;
    }

    @include respond(phone) {
        transform: skewX(0);
    }*/
  /* &__text {
       

       @include respond(phone) {
            transform: skewX(0);
        }
    }*/
}
@media only screen and (max-width: 37.5em) {
  .about {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 75em) {
  .about {
    width: 85%;
  }
}
@media only screen and (max-width: 37.5em) {
  .about {
    width: 90%;
    padding: 2rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .about {
    width: 90%;
    padding: 2rem;
  }
}
.about__shape {
  width: 10rem;
  height: 10rem;
  float: left;
  -webkit-transform: translateX(-3rem);
  transform: translateX(-3rem);
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  /*
        @include respond(phone) {
            transform: translateX(-3rem) skewX(0);
        }*/
}
@media only screen and (max-width: 56.25em) {
  .about__shape {
    width: 5rem;
    height: 5rem;
    -webkit-transform: translateX(-1rem);
    transform: translateX(-1rem);
  }
}
@media only screen and (max-width: 37.5em) {
  .about__shape {
    width: 5rem;
    height: 5rem;
    -webkit-transform: translateX(-1rem);
    transform: translateX(-1rem);
  }
}
@supports ((-webkit-clip-path: polygon(0 0)) or (clip-path: polygon(0 0))) or
  (-webkit-clip-path: polygon(0 0)) {
  .about__shape {
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    shape-outside: circle(50% at 50% 50%);
    border-radius: none;
  }
}
.about__img {
  height: 100%;
  -webkit-transform: translateX(-.5rem) translateY(1rem) scale(1.3);
  transform: translateX(-.5rem) translateY(1rem) scale(1.3);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.about__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 20%);
  transform: translate(-50%, 20%);
  color: #fff;
  text-transform: uppercase;
  font-size: 0, 8rem;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.about:hover .about__caption {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.about:hover .about__img {
  -webkit-transform: translateX(1.5rem) translateY(1rem) scale(1.1);
  transform: translateX(1.5rem) translateY(1rem) scale(1.1);
  -webkit-filter: blur(3px) brightness(80%);
  filter: blur(3px) brightness(80%);
}

.rider ul {
  margin-top: 1rem;
}
.rider li {
  list-style: none;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/*----gallery---*/

@media only screen and (max-width: 770px) {
  .masthead.gallery {
    padding-top: 2rem;
    visibility: hidden;
  }
}

@media only screen and (max-width: 380px) {
  .masthead.gallery {
    padding-top: 0;
    visibility: hidden;
  }
}
.bgrd-sqrs {
  background-image: linear-gradient(
      135deg,
      rgba(107, 107, 107, 0.06) 0%,
      rgba(107, 107, 107, 0.06) 50%,
      rgba(202, 202, 202, 0.06) 50%,
      rgba(202, 202, 202, 0.06) 100%
    ),
    linear-gradient(90deg, rgb(20, 20, 20), rgb(20, 20, 20));
  background-size: 30px 30px;
}

section.gallery {
  padding: 20px;
  width: 90%;
  margin: 40px auto;
}

section.gallery ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  position: relative;
}
section.gallery ul li {
  position: relative;
  list-style: none;
  background: #eee;
  padding: 8px 20px;
  margin: 5px;
  letter-spacing: 1px;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Merriweather Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  cursor: pointer;
  color: #111;
}
section.gallery ul li::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  border-radius: 5px;
  background: var(--tabladared);
  transform: scaleY(0);
  transition: transform 0.2s, width 0.4s cubic-bezier(1, 0, 0, 1) 0.2s,
    background-color 0.1s;
}
section.gallery ul li:hover::before {
  transform: scaleY(1);
  width: 100%;
}
section.gallery ul li .span {
  position: relative;
  z-index: 10;
  color: #111;
  transition: all 1s;
}
section.gallery ul li:hover .span {
  color: #fff;
}
/*
.item-link:hover > span {
  background: #fff;
  color: #fff;
}*/

section.gallery ul li.active {
  background: var(--tabladared);
}
section.gallery ul li.active .span {
  color: #fff;
}
.photos {
  display: flex;
  flex-wrap: wrap;
  min-height: 50vh;
}
.photos .photobox {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 5px;
  border: #fff 1px solid;
}
.photos  .video{
  width: 300px;
  height: 300px;
  border: #f00 0px solid;
}
.photos .photobox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* video*/
.YTiframe { width: 100%; height:300px; margin: 0 0 20px 0; border: #fff 1px solid;}
.video--container{
    padding:0 20rem ;
    
    
}
@media only screen and (min-width: 112.5em){
   .YTiframe { width: 100%; height:300px; margin: 0 0 20px 0; }
   .video--container{
       padding:0  ;
       

   }
}

@media only screen and (max-width: 87.5em){
   .YTiframe { width: 100%; height:300px; margin: 0 0 20px 0; }
   .video--container{
       padding:0  ;
       

   }
}
@media only screen and (max-width: 56.25em){
   .YTiframe { width: 100%; height:300px; margin: 0 0 20px 0; }
   .video--container{
       padding:0  ;
       

   }
}
@media only screen and (max-width: 37.5em){
   .YTiframe { width: 100%; height:300px; margin: 0 0 20px 0; }
   .video--container{
       padding:0  ;
       

   }
}

/* SLIDER */
.slider {
  max-width: 32rem;
  height: 30rem;
  margin: 0 auto;
  position: relative;

  /* IN THE END */
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .slider {
    height: 30rem;
  }
}
@media screen and (max-width: 450px) {
  .slider {
    width: 20rem;
    height: 20rem;
  }
}
.slide {
  position: absolute;
  top: 0;
  width: 32rem;
  height: 30rem;
  display: flex;
  align-items: center;
  justify-content: center;

  /* THIS creates the animation! */
  transition: transform 1s;
}
@media screen and (max-width: 450px) {
  .slide {
    width: 20rem;
    height:20rem;
  }
}
.caption{
  position: absolute;
  bottom:0;
  left:0;
  width: 100%;
  height: 10rem;
  
  background-color: rgba(0,0,0,0.5);
  padding-left: 2rem;
  padding-top: 1.5rem;
}
@media screen and (max-width: 450px) {
  .caption{
    height: 7rem;
  }
  .caption h3{
    font-size: 1rem;
  }
}
.listen{
  position: absolute;
  top:1.2rem;
  right:.5rem;
  
  padding: .5rem 1rem ;
}
.listen-icon{
  fill:#fff;
  width:1.5rem;
}

.slide > img {
  /* Only for images that have different size than slide */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider__btn {
  position: absolute;
  top: 50%;
  z-index: 10;

  border: none;
  /*background: rgba(255, 255, 255, 0.7);*/
  background: rgba(226, 0, 26, 0.85);
  font-family: inherit;
  color: #fff;
  border-radius: 50%;
  height: 3rem;
  width: 3rem;
  font-size: 1.25rem;
  cursor: pointer;
}

.slider__btn--left {
  left: 8%;
  transform: translate(-50%, -50%);
}

.slider__btn--right {
  right: 8%;
  transform: translate(50%, -50%);
}

.dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.dots__dot {
  border: none;
  background-color: #b9b9b9;
  opacity: 0.7;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  margin-right: 1.75rem;
  cursor: pointer;
  transition: all 0.5s;

  /* Only necessary when overlying images */
  /* box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.7); */
}

.dots__dot:last-child {
  margin: 0;
}

.dots__dot--active {
  /* background-color: #fff; */
  background-color: #fff;
  opacity: 1;
}
.show-modal{
  cursor:pointer;
  
}
.mymodal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 90vw;
  background-color: #f3f3f3;
  padding: 3rem 3rem;
  box-shadow: 0 4rem 6rem rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transition: all 0.5s;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 100;
  transition: all 0.5s;
}
.hidden {
  visibility: hidden;
  opacity: 0;
  width: 0;
  height: 0;
}
.close-modal {
  position: absolute;
  top: -.5rem;
  right: 0.5rem;
  font-size: 3rem;
  color: #333;
  cursor: pointer;
  border: none;
  background: none;
  z-index:1000;
}
#map {
  height: 400px;
  /* The height is 400 pixels */
  width: 100%;
  /* The width is the width of the web page */
}

.aviso{
  background-color: #eee;
  width: 90vw;
  height:20vh;
  margin: auto 0;
  position:fixed;
  bottom:0;
  left:calc((100vw - 90vw)/2);
  display:flex;
  justify-content: space-around;
  align-items: center;
  padding:1rem;
  
  
}
@media screen and (max-width: 450px) {
  .aviso{
  width:100vw;
  left:0;
  font-size: 0.8rem;
  }
}

.remove{
  display:none;
}
.store-container{
  margin-top:120px;
}

.contact{
  display: flex;
  justify-content: space-around;
  
}

.contact-item{
  display: flex;
  gap:8px;
  align-items: center;
  margin-bottom: 16px;
}
@media screen and (max-width:775px){
  .contact{
    flex-direction: column;
    align-items: center;
  }
  .contact-item{
    flex-direction: column;
    gap:0;
  }
}