body section.section_destinos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto 2rem auto;
  padding-top: 3rem;
  flex: 1;
}

section.section_destinos hr {
  border: none;
  border-bottom: solid 1px #c5c5c5 ;
  width: 100%;
  margin: 2rem   0 !important;
  position: static;
  margin: 1rem auto;
  text-align: center;
  display: block;
}

.section_destinos .destino-container {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  min-width: 17rem;
  max-width: 25%;
  height: 100%;
  flex: 1;
}

.destino img,
.destino {
  border-radius: 0.5rem;
}

section.section_destinos h2.section_title {
  width: 100%;
  text-align: left;
  color: #444444;
  font-size: 2rem;
  /* font-family: roboto; */
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.section_destinos .destino h3.destino_title {
  margin: -2rem 0 0 0;
  height: 2rem !important;
  color: #fff;
  /* background: rgb(17 0 0); */
  /* background: linear-gradient(
    0deg,
    rgb(15 0 27 / 80%) 25%,
    rgba(255, 255, 255, 0) 100%
  ); */
  padding: 0 0.5rem;
  position: relative;
  padding-left: 2rem;
  font-weight: 600;
}

.destino {
  box-shadow: 0.25rem 0.25rem 1rem #dbdbdb;
  /* font-family: roboto, sans-serif; */
  padding-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}



.destino img,
.destino {
  border-radius: 0.5rem;
}

a.__pfs.destino-img-container {
  position: relative;
}

a.__pfs.destino-img-container:after {
 content: '';
 background: rgb(17 0 0);
 background: linear-gradient(0deg, rgb(15 0 27 / 65%) 25%, rgba(255, 255, 255, 0) 100%);
 position: absolute;
 width:100%;
 height: 100%;
 top: 0;
}



.section_destinos .destino p.destino_descripcion {
  padding: 0 1rem;
  font-size: 1rem;
  margin: 1rem 0;
  text-align: left;
  color: #636363;
  line-height: 1.6;
  display: flex;
  height: 10vh;
}

.destino h3.destino_title:before {
  content: ""; 
  position: absolute; 
  width: 100%;
  height: 16px;
  background-image: url(https://sky-cms-prod.s3.amazonaws.com/iso_sky_6af87a7d2a.svg);
  background-repeat: no-repeat;
  background-size: contain;
  left: 1rem;
  top: -0.4rem;
  bottom: 0;
  margin: auto 0;
}

.destino a.destino_link.btn,
.destino a.destino_link.btn:visited {
  font-weight: 600;
  background-color: #78028A;
  border-radius: 8px;
  text-align: right;
  display: flex;
  text-decoration: none !important;
  font-size: 1rem;
  justify-content: center;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  padding: 14px 16px;
  margin: 1rem;
}
.destino a.destino_link.btn:hover {
  background-color: #AB13C5; 
  color: #fff;

}
.navbar-destinos {
  display: flex;
  justify-content: space-evenly;
  margin: 1rem 0;
  padding: 1rem 0;
  border-bottom: solid 1px #dadada;
  overflow-x: auto;
}

div.navbar-destinos a.navbar-destinos_item,
div.navbar-destinos a.navbar-destinos_item:visited {
  font-weight: 600;
  font-size: 1rem;
  color: #671e75;
  text-align: center;
  width: 100%;
  margin: auto 1rem;
  white-space: nowrap;
}
div.navbar-destinos a.navbar-destinos_item:hover{
  color: #444444;
}

html {
  scroll-behavior: smooth !important;
}

.navbar-destino {
  position: relative;
  width: 100%;
  height: 60px;
}

.navbar-destinos.fixed {
  position: fixed;
  z-index: 10;
  width: 100%;
  margin: auto;
  background: #fff;
  top: 0;
  text-align: center;
  display: flex;
  justify-content: space-between;
  /* margin: 1rem 0; */
  /* padding: 2rem; */
  left: -50%;
  right: -50%;
  border-radius: 0 0 0.75rem 0.75rem;
  border: none;
  box-shadow: 0.25rem 0.25rem 1rem rgb(49 49 49 / 28%);
  animation: move 0.5s;
}

.destino-container .destino span.destino_bullet {
  background-color: #F8DCFD;
  display: flex;
  font-size: .75rem;
  color: #78028A;
  z-index: 2;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 5rem;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}

@keyframes move {
  from {
    top: -5rem;
  }
  to {
    top: 0;
  }
}

@media (max-width: 1024px) {
  .section_destinos .destino-container {
    min-width: 33%;
    max-width: 33%;
  }
}

@media (max-width: 768px) {
  .section_destinos .destino-container {
    min-width: 50%;
    max-width: 33%;
  }
  .section_destinos .destino p.destino_descripcion {
    height: 14vh;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .section_destinos .destino h3.destino_title {
    font-size: 1.1rem;
  }
}

@media (max-width: 400px) {

  .section_destinos .destino p.destino_descripcion {
    margin-bottom: 4rem;
  }

}

