/* ==========================================================================
   Components / MIXINS
   ========================================================================== */
/*********************
  BREAKPOINTS RESPONSIVE LAYOUT
  *********************/
/* ==========================================================================
   Layout / Block Destinations
   ========================================================================== */
.blockdestination-title {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 576px) {
  .blockdestination-title {
    flex-direction: row;
  }
}
@media (min-width: 760px) {
  .blockdestination-title {
    gap: 2rem;
  }
}
.blockdestination-title .subtitle {
  margin-bottom: 0.375rem;
}
.blockdestination-title .h1-title {
  margin-bottom: 2rem;
}
@media (min-width: 760px) {
  .blockdestination-title .h1-title {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1360px) {
  .blockdestination-title .h1-title {
    margin-bottom: 64px;
  }
}
.blockdestination-title img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  flex-shrink: 0;
}
.blockdestination-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 760px) {
  .blockdestination-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
@media (min-width: 1000px) {
  .blockdestination-content {
    gap: 2rem;
  }
}
.blockdestination .thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 760px) {
  .blockdestination .thumbnails {
    flex-basis: 95px;
  }
}
.blockdestination .thumbnails-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
}
.blockdestination .thumbnails-item .image {
  display: block;
  width: 95px;
  height: 95px;
  flex-shrink: 0;
  background: #293363;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1000px) {
  .blockdestination .thumbnails-item .image {
    width: 140px;
    height: 140px;
  }
}
.blockdestination .thumbnails-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  position: relative;
  z-index: 1;
}
.blockdestination .thumbnails-item .image .icon {
  display: block;
  width: 50px;
  height: 50px;
  fill: #ffffff;
  transform: rotate(180deg);
  position: absolute;
  top: calc(50% - 25px);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 0;
}
.blockdestination .thumbnails-item .title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-weight: bold;
  font-size: 14px;
  color: #18174A;
  transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media (min-width: 1000px) {
  .blockdestination .thumbnails-item:hover img {
    opacity: 0.5;
  }
}
.blockdestination .thumbnails-item.active .image:before {
  content: " ";
  width: 100%;
  height: calc(100% - 4px);
  border-radius: 4px;
  border-bottom: 4px solid #EF4F07;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
@media (min-width: 1200px) {
  .blockdestination .selectedcontent {
    display: flex;
    gap: 2rem;
  }
}
.blockdestination .mainimage {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}
@media (min-width: 760px) {
  .blockdestination .mainimage {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1200px) {
  .blockdestination .mainimage {
    width: 60%;
    flex-basis: 60%;
    max-width: 855px;
  }
}
@media (min-width: 1500px) {
  .blockdestination .mainimage {
    width: 65%;
    flex-basis: 65%;
  }
}
.blockdestination .mainimage img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
}
@media (min-width: 760px) {
  .blockdestination .mainimage img {
    height: 450px;
  }
}
@media (min-width: 1200px) {
  .blockdestination .mainimage img {
    height: 640px;
  }
}
@media (min-width: 1200px) {
  .blockdestination .maintext {
    width: 40%;
    flex-basis: 40%;
  }
}
@media (min-width: 1500px) {
  .blockdestination .maintext {
    width: 35%;
    flex-basis: 35%;
  }
}
.blockdestination .maintext .intro {
  margin-bottom: 2rem;
}
.blockdestination .maintext .intro:after {
  content: " ";
  display: block;
  width: 64px;
  height: 2px;
  background: #EF4F07;
  margin-top: 2rem;
}
.blockdestination .maintext .h2-title {
  margin-bottom: 1rem;
}
/*# sourceMappingURL=blockdestination.css.map */
