.tourism-slider {
  position: relative;
  overflow: hidden;
}
.tourism-slider__track {
  display: flex;
  transition: transform 0.5s ease;
}
.tourism-slider__item {
  min-width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  height: 350px;
}
.tourism-slider__item .content-generic {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}
.tourism-slider__content {
  position: absolute;
  top: 20%;
  left: 5%;
  background: #fff;
  border-radius: 20px;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  margin-left: 70px;
}
.tourism-slider__title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #104596;
  margin-bottom: 1rem;
  font-family: var(--fonts-Norms);
}
.tourism-slider__rating {
  display: flex;
  gap: 4px;
  margin-bottom: 0.5rem;
}
.tourism-slider__rating img {
  width: 16px;
  height: 16px;
}
.tourism-slider__meta {
  font-size: 15px;
  color: #104596;
}
.tourism-slider__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.tourism-slider__control img {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(16%) sepia(98%) saturate(1342%) hue-rotate(206deg) brightness(96%) contrast(96%);
}
.tourism-slider__control--prev {
  left: 10px;
}
.tourism-slider__control--next {
  right: 10px;
}
.tourism-slider__text {
  font-size: 14px;
  line-height: 1.5;
}
.tourism-slider__text a {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .tourism-slider__item {
    height: 280px;
  }
  .tourism-slider__content {
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    max-width: 90%;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    margin: auto 0;
  }
  .tourism-slider__title {
    font-size: 18px;
    line-height: 20px;
  }
  .tourism-slider__rating img {
    width: 14px;
    height: 14px;
  }
  .tourism-slider__meta {
    font-size: 15px;
  }
  .tourism-slider__control {
    width: 42px;
    height: 42px;
  }
  .tourism-slider__control img {
    width: 16px;
    height: 16px;
  }
}
.tourism-gallery {
  max-width: 700px;
  margin: 0 auto;
}
.tourism-gallery__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .tourism-gallery__header {
    margin-top: 1rem;
  }
}
.tourism-gallery__title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #104596;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .tourism-gallery__title {
    font-size: 18px;
  }
}
.tourism-gallery__button {
  background: #104596;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  padding: 5px 36px;
  border-radius: 20px;
  text-decoration: none;
}
.tourism-gallery__main {
  display: block;
}
.tourism-gallery__main img {
  width: 100%;
  aspect-ratio: 1/0.4;
  object-fit: cover;
}
.tourism-gallery__text {
  font-size: 14px;
  line-height: 22px;
  color: #191c36;
  margin-top: 16px;
}
.tourism-gallery__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .tourism-gallery__text, .tourism-gallery__main {
    display: none;
  }
}

.tourism-thumbs {
  position: relative;
}
.tourism-thumbs__wrapper {
  overflow: hidden;
  width: calc(100% - 100px);
  margin: auto;
}
.tourism-thumbs__track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 12px;
}
.tourism-thumbs__item {
  flex: 0 0 110px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.tourism-thumbs__img {
  width: 100%;
}
.tourism-thumbs__img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.tourism-thumbs__txt {
  display: none;
  font-size: 14px;
}
.tourism-thumbs__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-primary);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.tourism-thumbs__control img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}
.tourism-thumbs__control--prev {
  left: 0;
}
.tourism-thumbs__control--next {
  right: 0;
}
@media (max-width: 768px) {
  .tourism-thumbs__track {
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .tourism-thumbs__track::-webkit-scrollbar {
    display: none;
  }
  .tourism-thumbs__control {
    display: none;
  }
  .tourism-thumbs__item {
    flex: 0 0 300px;
    scroll-snap-align: start;
  }
  .tourism-thumbs__wrapper {
    width: 100%;
  }
  .tourism-thumbs__img img {
    aspect-ratio: 3/2;
  }
  .tourism-thumbs__txt {
    display: block;
  }
}

.tourism-sites {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}
.tourism-sites__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.tourism-sites__title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #104596;
}
.tourism-sites__button {
  background: #104596;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  padding: 5px 36px;
  border-radius: 20px;
  text-decoration: none;
}
.tourism-sites__viewport {
  overflow: hidden;
  margin-bottom: 2rem;
}
.tourism-sites__track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 40px;
}
.tourism-sites__card {
  flex: 0 0 580px;
  max-width: 580px;
  box-sizing: border-box;
  border-radius: 30px;
  padding: 25px;
  background: #fff;
}
@media (max-width: 768px) {
  .tourism-sites__track {
    gap: 0;
  }
  .tourism-sites__card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.tourism-sites__image {
  position: relative;
}
.tourism-sites__image img {
  width: 460px;
  height: 165px;
  object-fit: cover;
  border-radius: 10px;
}
.tourism-sites__number {
  position: absolute;
  top: 20px;
  right: 0;
  font-size: 25px;
  line-height: 25px;
  font-weight: 700;
  color: #104596;
  background: #fff;
  border-radius: 50%;
  padding: 4px 10px;
}
.tourism-sites__number-mobile {
  display: none;
}
.tourism-sites__icons {
  position: absolute;
  top: 20px;
  right: 0;
  display: flex;
  justify-content: center;
  width: 45px;
}
.tourism-sites__icons img {
  width: 100%;
  height: auto;
}
.tourism-sites__body {
  margin-top: 1rem;
}
.tourism-sites__card-title {
  font-size: 25px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #191c36;
}
.tourism-sites__author {
  font-size: 9px;
  color: #191c36;
  margin-bottom: 1rem;
}
.tourism-sites__excerpt {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #191c36;
  max-width: 460px;
}
.tourism-sites__excerpt a {
  font-size: 12px;
  color: #104596;
  font-weight: 700;
  text-decoration: none;
}
.tourism-sites__progress {
  flex: 1;
  height: 4px;
  background: #e6ebf5;
  border-radius: 2px;
  margin-right: 1rem;
  position: relative;
}
.tourism-sites__progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  height: 11px;
  background: #104596;
  border-radius: 20px;
  transition: width 0.3s ease;
}
.tourism-sites__controls {
  display: flex;
  gap: 10px;
}
.tourism-sites__control {
  background: #104596;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.tourism-sites__control img {
  width: 10px;
  height: 10px;
  filter: brightness(0) invert(1);
}
.tourism-sites__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tourism-sites__dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 0.5rem;
}
.tourism-sites__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  display: block;
}
.tourism-sites__dots span.active {
  background: #104596;
}
@media (max-width: 768px) {
  .tourism-sites {
    padding: 1rem;
    position: relative;
  }
  .tourism-sites__header {
    justify-content: center;
    margin-bottom: 1rem;
  }
  .tourism-sites__header .tourism-sites__title {
    font-size: 18px;
    line-height: 25px;
  }
  .tourism-sites__header .tourism-sites__button {
    display: none;
  }
  .tourism-sites__card {
    padding: 15px 55px 25px 55px;
    border-radius: 10px;
  }
  .tourism-sites__card .tourism-sites__image {
    border-radius: 20px;
    margin: auto;
  }
  .tourism-sites__card .tourism-sites__number {
    display: none;
  }
  .tourism-sites__card .tourism-sites__body {
    margin-top: 2rem;
  }
  .tourism-sites__number-mobile {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 12px;
    color: #104596;
    display: block;
  }
  .tourism-sites__image img {
    width: 100%;
  }
  .tourism-sites__footer {
    display: none;
  }
  .tourism-sites__dots {
    display: flex;
    justify-content: center;
  }
  .tourism-sites__viewport {
    position: relative;
  }
  .tourism-sites__image {
    position: relative;
  }
}

.embassy-filter {
  display: flex;
  align-items: center;
  padding: 2rem 0;
  gap: 20px;
  flex-wrap: wrap;
}
.embassy-filter__title {
  color: #fff;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  margin-right: auto;
}
.embassy-filter__controls {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.embassy-filter__group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.embassy-filter__submit {
  background: #ffda54;
  border: none;
  margin-left: 30px;
  border-radius: 20px;
  padding: 8px 62px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  cursor: pointer;
  color: #104596;
}
@media (max-width: 768px) {
  .embassy-filter {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 1rem;
  }
  .embassy-filter__title {
    margin: 0 auto 1rem auto;
  }
  .embassy-filter__controls {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 368px;
    margin: 0 auto;
  }
  .embassy-filter__group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .embassy-filter__trigger {
    width: 100%;
  }
  .embassy-filter__submit {
    margin: 0;
    width: 100%;
    padding: 12px 0;
    border-radius: 50px;
  }
}

.tourism-fairs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}
.tourism-fairs__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .tourism-fairs__header {
    flex-direction: column;
    align-items: center;
  }
  .tourism-fairs__header .btn_hover {
    display: none;
  }
}
.tourism-fairs__title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #104596;
  margin-right: auto;
}
@media (max-width: 768px) {
  .tourism-fairs__title {
    margin: auto;
    font-size: 18px;
    text-transform: uppercase;
  }
}
.tourism-fairs__button {
  background: #104596;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  padding: 6px 24px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .tourism-fairs__button {
    display: none;
  }
}
.tourism-fairs__layout {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 255px;
}
@media (max-width: 768px) {
  .tourism-fairs__layout {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}
.tourism-fairs__featured {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  grid-column: span 2;
  grid-row: span 2;
}
.tourism-fairs__featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}
@media (max-width: 768px) {
  .tourism-fairs__featured {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: initial;
  }
  .tourism-fairs__featured img {
    height: auto;
    aspect-ratio: 3/2;
  }
}
.tourism-fairs__grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 20px;
}
@media (max-width: 768px) {
  .tourism-fairs__grid {
    grid-template-columns: 1fr;
  }
}
.tourism-fairs__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.tourism-fairs__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
@media (max-width: 768px) {
  .tourism-fairs__card {
    aspect-ratio: initial;
  }
  .tourism-fairs__card img {
    height: auto;
    aspect-ratio: 3/2;
  }
}
.tourism-fairs__base {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  padding: 0.5rem 1rem;
}
.tourism-fairs__base h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 768px) {
  .tourism-fairs__base {
    position: relative;
  }
  .tourism-fairs__base h3 {
    text-align: center;
    color: #191C36;
  }
}
.tourism-fairs .overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 28, 54, 0.6980392157);
  color: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}
.tourism-fairs__featured:hover .overlay, .tourism-fairs__card:hover .overlay {
  opacity: 1;
  visibility: visible;
}
.tourism-fairs__featured:hover .tourism-fairs__base, .tourism-fairs__card:hover .tourism-fairs__base {
  opacity: 0;
  visibility: hidden;
}
.tourism-fairs__card-title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.tourism-fairs__meta {
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.tourism-fairs__excerpt {
  font-size: 14px;
  margin-bottom: 1rem;
}
.tourism-fairs__btn {
  background: #104596;
  color: #fff;
  padding: 6px 37px;
  border-radius: 20px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  text-align: center;
  align-self: flex-start;
}

.fairs__dropdown {
  position: relative;
}

.fairs__trigger {
  background: #fff;
  color: #104596;
  border: none;
  width: 180px;
  height: 34px;
  border-radius: 50px;
  padding: 6px 35px 6px 16px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  position: relative;
}
.fairs__trigger img {
  width: 12px;
  height: 12px;
  position: absolute;
  right: 16px;
}

.fairs__menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  min-width: 180px;
  z-index: 20;
}

.fairs__dropdown[data-open=true] .fairs__menu {
  display: flex;
}

.fairs__option {
  padding: 10px 16px;
  font-size: 14px;
  color: #104596;
  cursor: pointer;
}
.fairs__option:hover {
  background: #f0f4ff;
}
.fairs__option.active {
  background: #e6edff;
  font-weight: 600;
}

.visa-carousel {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 2rem 0 4rem 0;
}
.visa-carousel__title {
  font-weight: 700;
  color: #104596;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-size: 25px;
}
.visa-carousel__viewport {
  overflow: hidden;
  max-width: 1020px;
  margin: 0 auto;
}
.visa-carousel__track {
  display: flex;
  transition: transform 0.5s ease;
  align-items: center;
  height: 540px;
  gap: 30px;
}
.visa-carousel__card {
  flex: 0 0 300px;
  background: #f3f8ff;
  padding: 1rem;
  text-align: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
  height: 450px;
}
.visa-carousel__card .visa-carousel__image {
  margin-bottom: 1rem;
}
.visa-carousel__card .visa-carousel__image img {
  width: 267px;
  height: 243px;
  object-fit: cover;
}
.visa-carousel__card.is-active {
  flex: 0 0 360px;
  height: 537px;
  opacity: 1;
  z-index: 2;
}
.visa-carousel__card.is-active .visa-carousel__image {
  margin-bottom: 1rem;
}
.visa-carousel__card.is-active .visa-carousel__image img {
  width: 326px;
  height: 326px;
  object-fit: cover;
}
.visa-carousel__card-title {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #191c36;
  margin-bottom: 0.5rem;
}
.visa-carousel__excerpt {
  font-size: 14px;
  color: #191c36;
  margin-bottom: 1rem;
}
.visa-carousel__btn {
  display: inline-block;
  background: #104596;
  color: #fff;
  padding: 3px 30px;
  border-radius: 20px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: none;
}
.visa-carousel__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.visa-carousel__control--prev {
  left: -60px;
}
.visa-carousel__control--next {
  right: -60px;
}
.visa-carousel__detail {
  margin: 0 auto;
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  border-bottom: 1px solid #104596;
  padding: 0 4.2rem 2rem 4.2rem;
}
.visa-carousel__detail-icon {
  flex: 0 0 100px;
}
.visa-carousel__detail-icon img {
  width: 75px;
  height: 115px;
  object-fit: contain;
}
.visa-carousel__detail-body {
  border-left: 1px solid #104596;
  padding-left: 40px;
  height: 150px;
}
.visa-carousel__detail-body h3 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #191c36;
}
.visa-carousel__detail-body .visa-carousel__subtitle {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #191c36;
}
.visa-carousel__detail-body .visa-carousel__description {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #191c36;
  margin-bottom: 0.5rem;
}
.visa-carousel__detail-body .visa-carousel__link {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #104596;
  text-decoration: underline;
}
.visa-carousel__dots {
  justify-content: center;
  gap: 8px;
  margin-top: -2rem;
  display: none;
}
.visa-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}
.visa-carousel__dot.is-active {
  background: #104596;
}
@media (max-width: 768px) {
  .visa-carousel__control {
    display: none;
  }
}
@media (max-width: 768px) {
  .visa-carousel {
    padding: 0 0 2rem 0;
  }
  .visa-carousel__title {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 1rem;
  }
  .visa-carousel__track {
    height: auto;
  }
  .visa-carousel__card, .visa-carousel__card.is-active {
    flex: 0 0 100%;
    height: auto;
  }
  .visa-carousel__card .visa-carousel__image img, .visa-carousel__card.is-active .visa-carousel__image img {
    width: 100%;
    height: 260px;
  }
  .visa-carousel__btn {
    padding: 5px 37px;
  }
  .visa-carousel__detail {
    flex-direction: row;
    align-items: self-start;
    text-align: left;
    padding: 1.5rem 1rem 4rem 1rem;
    margin-top: 0;
  }
  .visa-carousel__detail-icon {
    flex: none;
    margin-bottom: 1rem;
  }
  .visa-carousel__detail-icon img {
    width: 60px;
    height: auto;
  }
  .visa-carousel__detail-body {
    padding-left: 20px;
    height: 200px;
  }
  .visa-carousel__detail-body h3,
  .visa-carousel__detail-body .visa-carousel__subtitle,
  .visa-carousel__detail-body .visa-carousel__description {
    text-align: left;
  }
  .visa-carousel__dots {
    display: flex;
  }
}

.travel-guide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}
.travel-guide__title {
  font-size: 25px;
  font-weight: 700;
  color: #104596;
  margin-bottom: 2rem;
}
.travel-guide__viewport {
  overflow: hidden;
  margin-bottom: 2rem;
}
.travel-guide__track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 16px;
}
.travel-guide__card {
  flex: 0 0 225px;
  background: #f3f8ff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.travel-guide__card .travel-guide__image {
  width: 100%;
  height: 140px;
}
.travel-guide__card .travel-guide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 30px 0;
}
.travel-guide__card .travel-guide__content {
  padding: 1rem;
  text-align: left;
}
.travel-guide__icon img {
  width: 23px;
  height: 32px;
}
.travel-guide__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #104596;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.travel-guide__excerpt {
  font-size: 14px;
  color: #191c36;
  margin-bottom: 0.5rem;
}
.travel-guide__link {
  font-size: 14px;
  font-weight: 700;
  color: #104596;
  text-decoration: none;
}
.travel-guide__progress {
  flex: 1;
  height: 4px;
  background: #e6ebf5;
  border-radius: 2px;
  margin-right: 1rem;
  position: relative;
}
.travel-guide__progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  height: 11px;
  background: #104596;
  border-radius: 20px;
  transition: width 0.3s ease;
}
.travel-guide__desktop {
  display: block;
}
.travel-guide__mobile {
  display: none;
}
@media (max-width: 768px) {
  .travel-guide__title {
    text-align: center;
  }
  .travel-guide__desktop {
    display: none;
  }
  .travel-guide__mobile {
    display: block;
  }
  .travel-guide__mobile .travel-guide__track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
  }
  .travel-guide__mobile .travel-guide__card {
    background: #f9fafe;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
}

.restaurants {
  margin: 2rem 0;
}
.restaurants__title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #104596;
  margin-bottom: 2rem;
}
.restaurants__container {
  display: flex;
  gap: 2rem;
}
.restaurants__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 200px;
  gap: 1rem;
}
.restaurants__main {
  grid-row: span 2;
}
.restaurants__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}
.restaurants__card {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.restaurants__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.restaurants__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(25, 28, 54, 0.6980392157);
  color: #fff;
}
.restaurants__card-title {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
}
.restaurants__btn {
  font-size: 12px;
  line-height: 20px;
  background: #104596;
  color: #fff;
  padding: 0.4rem 1.3rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
}
.restaurants__sidebar {
  flex: 1;
  background: #f3f8ff;
  padding: 1.5rem;
  border-radius: 20px;
  height: 330px;
}
.restaurants__sidebar-title {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  margin: 0 auto 1.5rem auto;
  color: #104596;
  text-align: center;
}
.restaurants__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.restaurants__list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  width: 350px;
  height: 42px;
  border-radius: 20px;
  background: #fff;
  font-size: 14px;
  line-height: 20px;
  color: #104596;
  cursor: pointer;
}
.restaurants__list-item img {
  background: #fff;
  border: 1px solid #104596;
  border-radius: 50%;
  padding: 5px;
  width: 34px;
  height: 34px;
}
.restaurants__list-item:hover, .restaurants__list-item.is-active {
  background: #104596;
  color: #fff;
}

@media (max-width: 768px) {
  .restaurants {
    margin: 0;
  }
  .restaurants__title {
    text-align: center;
    font-size: 18px;
    line-height: 20px;
  }
  .restaurants__container {
    flex-direction: column;
  }
  .restaurants__grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .restaurants__grid img {
    width: 100%;
    height: 400px;
  }
  .restaurants__main, .restaurants__side {
    grid-row: auto;
    grid-template-columns: none;
    grid-auto-rows: none;
    display: block;
    height: auto;
  }
  .restaurants__card {
    width: 100%;
    height: auto;
  }
  .restaurants__overlay {
    padding: 0.75rem;
  }
  .restaurants__sidebar {
    border-radius: 12px;
    margin: 0 -20px 0 -20px;
    padding: 1.5rem 2rem;
  }
  .restaurants__sidebar-title {
    text-align: center;
    font-size: 18px;
    margin: 0 auto 1rem auto;
  }
  .restaurants__list {
    gap: 10px;
  }
  .restaurants__list-item {
    width: 100%;
    max-width: 100%;
  }
}
.banner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .banner {
    display: none;
  }
}
.banner__poster {
  max-width: 300px;
  flex: 1;
  background: #000;
  border-radius: 5px;
  overflow: hidden;
}
.banner__image {
  max-width: 300px;
  width: 100%;
  display: block;
  border-radius: 5px;
}
.banner__title {
  font-size: 7px;
  line-height: 20px;
  font-weight: 700;
  color: #104596;
}
.banner__subtitle {
  font-size: 20px;
  font-weight: 700;
  color: #e33;
  margin-top: 4px;
}
.banner__tagline {
  font-size: 14px;
  margin-top: 8px;
}
.banner__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.banner__social-title {
  font-size: 10px;
  font-weight: 700;
  color: #104596;
}
.banner__chevron {
  width: 20px;
  height: 20px;
}
.banner__chevron img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(16%) sepia(98%) saturate(1342%) hue-rotate(206deg) brightness(96%) contrast(96%);
}
.banner__social-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.banner__social-item {
  position: relative;
}
.banner__social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid #104596;
  border-radius: 50%;
  position: relative;
  transition: background 0.3s;
  background: #f3f8ff;
}
.banner__icon img {
  width: 20px;
  height: 20px;
  fill: #104596;
  filter: brightness(0) saturate(100%) invert(16%) sepia(98%) saturate(1342%) hue-rotate(206deg) brightness(96%) contrast(96%);
}
.banner__tooltip {
  position: absolute;
  top: -27%;
  left: 64%;
  transform: translateY(-50%);
  background: #e74c3c;
  color: #fff;
  font-size: 7px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  width: 69px;
  height: 17px;
}
.banner__tooltip::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: -4px;
  width: 15px;
  height: 13px;
  background: inherit;
  clip-path: polygon(0 100%, 0 33%, 100% 100%);
  transform: rotate(-27deg);
}
.banner__social-link:hover .banner__tooltip {
  opacity: 1;
}

.more-news {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.more-news__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.more-news__featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.more-news__lower {
  display: grid;
  grid-template-columns: 225px 1fr;
  gap: 24px;
  align-items: start;
}
.more-news__small-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.more-news__cta {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 0;
}
.more-news__cta::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background: #e3e8f2;
}
.more-news__btn {
  position: relative;
  z-index: 1;
  height: 34px;
  padding: 0 18px;
  border-radius: 9999px;
  background: #2b459b;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.col-news-card {
  background: transparent;
  border: none;
  border-radius: 0;
  display: grid;
}
.col-news-card__image {
  display: block;
}
.col-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.col-news-card__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  background: transparent;
}
.col-news-card__category {
  font-size: 14px;
  color: #104596;
  text-transform: uppercase;
  display: block;
}
.col-news-card__headline {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  font-family: var(--fonts-Norms);
}
.col-news-card__headline a {
  color: #0c1b3a;
  text-decoration: none;
}
.col-news-card__more {
  font-size: 12px;
  font-weight: 700;
  color: #2b459b;
  text-decoration: none;
}
.col-news-card__author {
  font-size: 9px;
  color: #6b7280;
}
.col-news-card--featured {
  grid-template-columns: 450px 1fr;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid #e3e8f2;
}
.col-news-card--vertical {
  grid-template-columns: 1fr;
  padding-right: 18px;
  border-right: 1px solid #e3e8f2;
}
.col-news-card--vertical-exception {
  display: none;
}
.col-news-card--vertical .col-news-card__image {
  width: 201px;
  height: 325px;
}
.col-news-card--small {
  grid-template-columns: 201px 1fr;
  padding-bottom: 16px;
  border-bottom: 1px solid #e3e8f2;
}
.col-news-card--small-exception {
  display: none;
}
.col-news-card--small .col-news-card__image {
  width: 201px;
  height: 138px;
}
.more-news__small-grid > .col-news-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .shared-btn {
    display: none;
  }
  .more-news {
    gap: 20px;
  }
  .more-news__header {
    justify-content: center;
    text-align: center;
  }
  .more-news__header .shared-section-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 0;
  }
  .more-news__header .shared-button {
    display: none;
  }
  .more-news__featured {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .more-news__featured .col-news-card--featured {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
    border-bottom: 1px solid #104596;
  }
  .more-news__featured .col-news-card--featured .col-news-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 6px;
    overflow: hidden;
  }
  .more-news__featured .col-news-card--featured .col-news-card__content {
    padding: 10px 0 0 0;
    gap: 4px;
  }
  .more-news__featured .col-news-card--featured .col-news-card__headline {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
  }
  .more-news__featured .col-news-card--featured:nth-child(n+2) {
    display: none;
  }
  .more-news__lower {
    grid-template-columns: 1fr;
  }
  .col-news-card--vertical {
    display: none;
  }
  .col-news-card--small-exception,
  .col-news-card--small {
    display: grid;
    grid-template-columns: 1fr;
    border: none;
    padding: 0;
  }
  .col-news-card--small-exception .col-news-card__image,
  .col-news-card--small .col-news-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 6px;
    overflow: hidden;
  }
  .col-news-card--small-exception .col-news-card__content,
  .col-news-card--small .col-news-card__content {
    padding: 6px 0 0 0;
    gap: 4px;
  }
  .col-news-card--small-exception .col-news-card__headline,
  .col-news-card--small .col-news-card__headline {
    font-size: 13px;
    line-height: 1.25;
  }
  .more-news__small-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .more-news__cta {
    padding: 16px 0;
  }
  .more-news__cta::before {
    display: none;
  }
  .more-news__btn {
    width: 100%;
    max-width: 280px;
    height: 36px;
    font-size: 13px;
    border-radius: 9999px;
    background: #104596;
  }
}
.cinetrailers {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 0;
}
.cinetrailers__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.cinetrailers__title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #104596;
}
.cinetrailers__more {
  background: #104596;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  padding: 6.5px 37px;
  border-radius: 20px;
  text-decoration: none;
}
.cinetrailers__featured {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cinetrailers__video iframe {
  width: 100%;
  height: 336px;
}
.cinetrailers__info {
  display: grid;
  gap: 4px;
}
.cinetrailers__category {
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: #104596;
  text-transform: uppercase;
}
.cinetrailers__headline {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #191c36;
  font-family: var(--fonts-Norms);
}
.cinetrailers__desc {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #191c36;
}
.cinetrailers__desc a {
  color: #104596;
  font-weight: 700;
}
.cinetrailers__list {
  max-height: 480px;
  overflow-y: auto;
  padding-right: 12px;
  scrollbar-gutter: stable;
}
.cinetrailers__list::-webkit-scrollbar {
  width: 6px;
}
.cinetrailers__list::-webkit-scrollbar-thumb {
  background-color: #104596;
  border-radius: 3px;
}
.cinetrailers__list::-webkit-scrollbar-track {
  background-color: #f5f7fc;
}
.cinetrailers__list::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.cinetrailers__item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
}
.cinetrailers__thumb {
  position: relative;
  flex: 0 0 150px;
  height: 100px;
  overflow: hidden;
}
.cinetrailers__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cinetrailers__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cinetrailers__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cinetrailers__title-item {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: #191c36;
  font-family: var(--fonts-Norms);
}
.cinetrailers__title-item a {
  color: #104596;
  font-size: 14px;
  font-weight: 700;
}
.cinetrailers__divider {
  border: 0;
  border-bottom: 1px solid #104596;
  margin: 0 0 0 108px;
}
.cinetrailers__divider--top {
  margin: 14px 0;
}
@media (max-width: 768px) {
  .cinetrailers {
    gap: 10px;
    padding: 10px 0;
  }
  .cinetrailers__title {
    font-size: 20px;
    line-height: 24px;
  }
  .cinetrailers__more {
    font-size: 11px;
    padding: 5px 20px;
  }
  .cinetrailers__video iframe {
    height: 200px;
  }
  .cinetrailers__headline {
    font-size: 16px;
    line-height: 22px;
  }
  .cinetrailers__desc {
    font-size: 13px;
    line-height: 18px;
  }
  .cinetrailers__item {
    flex-direction: row;
    gap: 8px;
    align-items: flex-start;
  }
  .cinetrailers__thumb {
    flex: 0 0 100px;
    height: 70px;
  }
  .cinetrailers__title-item {
    font-size: 14px;
    line-height: 18px;
  }
  .cinetrailers__divider {
    margin-left: 0;
  }
}

.weather {
  margin: 2rem 0 0 0;
}
.weather__title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #104596;
  margin-bottom: 2rem;
  margin-left: 4rem;
}
.weather__main {
  background: url("/assets/img/tourism/weather.jpg") no-repeat;
  background-size: 100% 100%;
  padding: 5% 2.5% 4% 2.5%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  aspect-ratio: 2/1;
}
.weather__info {
  margin-bottom: 1.5rem;
  padding: 0 50px;
}
.weather__info .weather__location {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}
.weather__info .weather__temp {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
}
.weather__forecast {
  justify-content: space-between;
  gap: 4%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.weather__day {
  flex: 1;
  border-radius: 8px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
}
.weather__day-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.weather__day-temp {
  font-weight: 700;
}

@media (max-width: 768px) {
  .weather__title {
    font-size: 18px;
    line-height: 24px;
    margin-left: 1rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  .weather__info {
    padding: 1rem 2rem;
    margin-bottom: 0;
  }
  .weather__info .weather__location {
    font-size: 16px;
  }
  .weather__info .weather__temp {
    font-size: 48px;
  }
  .weather__forecast::-webkit-scrollbar {
    display: none;
  }
  .weather__day {
    flex: 0 0 auto;
    border-radius: 8px;
    padding: 0.5rem;
    text-align: center;
    font-size: 12px;
    line-height: 10px;
  }
  .weather__day-name {
    font-size: 12px;
  }
  .weather__day-temp {
    font-size: 12px;
    font-weight: 400;
  }
}
@media (max-width: 480px) {
  .weather__day {
    padding: 8px 4px;
  }
}
.pika-lendar {
  width: 100%;
  margin: 0;
}

.pika-table abbr {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-primary);
  text-transform: none;
  text-decoration: none;
}

.calendar {
  color: var(--color-primary);
  position: relative;
  z-index: 0;
}
.calendar__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}
.calendar .pika-label {
  background: transparent;
  font-size: 20px;
  line-height: 20px;
  color: var(--color-primary);
}
.calendar .pika-single {
  display: block;
  background: transparent;
  border: none;
  box-shadow: none;
  font-family: inherit;
  color: var(--color-primary);
  width: 100%;
  text-align: center;
}
.calendar .pika-title {
  position: relative;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  width: 100%;
  justify-content: center;
  display: flex;
}
.calendar .pika-title select {
  display: none;
}
.calendar .pika-prev,
.calendar .pika-next {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  text-align: center;
  font-size: 25px;
  text-indent: 0;
}
.calendar .pika-prev {
  left: 0;
}
.calendar .pika-next {
  right: 0;
}
.calendar .pika-table {
  width: 100%;
  border-collapse: collapse;
}
.calendar .pika-table th {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 14px;
  padding-bottom: 0.75rem;
}
.calendar .pika-table td {
  text-align: center;
  padding: 0.3rem;
}
.calendar .pika-table td .pika-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 14px;
  cursor: pointer;
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .calendar .pika-table td .pika-button {
    width: 30px;
    height: 30px;
  }
}
.calendar .pika-table td .pika-button:hover {
  background: rgba(16, 69, 150, 0.15);
}
.calendar .pika-table td.is-today .pika-button {
  border: 1px solid var(--color-primary);
}
.calendar .pika-table td.is-selected .pika-button {
  background: var(--color-primary);
  color: #fff;
}
.calendar .pika-table td.is-outside-current-month .pika-button {
  color: #c0c8dc;
}

@media (max-width: 768px) {
  .pika-table th,
  .pika-table td {
    width: 10%;
  }
}
.timezone-calendar {
  background: #fff;
  padding: 2rem;
  color: #104596;
}
.timezone-calendar__title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 800;
  color: #104596;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.timezone-calendar__content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) {
  .timezone-calendar__content {
    grid-template-columns: 1fr;
  }
}
.timezone-calendar__info {
  font-size: 14px;
  line-height: 20px;
  color: #191c36;
}
.timezone-calendar__info p {
  margin-bottom: 1rem;
}
.timezone-calendar__info p strong {
  font-weight: 700;
}
.timezone-calendar__link {
  color: #104596;
  font-weight: 700;
  text-decoration: none;
}
.timezone-calendar__link:hover {
  text-decoration: underline;
}
.timezone-calendar__calendar {
  width: 400px;
  max-width: 100%;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .timezone-calendar__calendar {
    width: 100%;
    padding: 0;
    margin-top: 1.5rem;
  }
}
@media (max-width: 768px) {
  .timezone-calendar {
    padding: 24px 20px;
  }
}

.currency {
  background: #104596;
  border-radius: 20px;
  padding: 1.5rem 16px;
  color: #fff;
  width: 300px;
  position: relative;
}
.currency__title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}
.currency__form {
  display: grid;
  gap: 0.5rem;
  position: relative;
}
.currency__label {
  font-size: 9px;
  line-height: 1;
  font-weight: 700;
  display: block;
  padding-left: 8px;
}
.currency__input {
  background: #fff;
  border: none;
  border-radius: 20px;
  height: 34px;
  padding: 0 1.5rem;
  font-size: 12px;
  line-height: 9px;
  font-weight: 700;
  color: #191c36;
  outline: none;
}
.currency__dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.currency__dropdown select {
  display: block;
  background: #fff;
  width: 100%;
  height: 34px;
  color: #191C36;
  font-size: 12px;
  font-weight: 700;
  padding: 0 1.5rem;
  border-radius: 16px;
}
.currency__button {
  background: #fff;
  border: none;
  border-radius: 20px;
  height: 34px;
  width: 80%;
  font-size: 12px;
  line-height: 9px;
  font-weight: 700;
  color: #191c36;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  cursor: pointer;
}
.currency__button img {
  width: 16px;
}
.currency__submit {
  background: #f3d96f;
  border: none;
  border-radius: 50px;
  height: 35px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  color: #104596;
  cursor: pointer;
  margin-top: 1rem;
  transition: 0.2s ease;
  width: 100%;
}
.currency__submit:hover {
  opacity: 0.9;
}
.currency__switch {
  padding: 12px 0;
  position: relative;
  top: 6px;
}
.currency__switch-circle {
  display: block;
  cursor: pointer;
}
.currency__switch-circle img {
  position: relative;
  z-index: 2;
}
.currency__switch-circle::before {
  content: "";
  position: absolute;
  border: 1px solid #fff;
  border-left: 0;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
}
.currency__grid {
  display: grid;
  grid-template-columns: auto 44px;
  gap: 12px;
  align-items: center;
}
.currency__selects {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .currency {
    margin: auto;
  }
}
@media (max-width: 480px) {
  .currency {
    width: 100%;
  }
}

.tourism-exchange {
  background: #fff;
  padding: 2rem;
  color: #191c36;
}
.tourism-exchange__title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #104596;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.tourism-exchange__image {
  margin-bottom: 2rem;
}
.tourism-exchange__image img {
  width: 100%;
  height: 300px;
  display: block;
}
.tourism-exchange__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 1rem 0.5rem;
  margin-bottom: 2rem;
}
.tourism-exchange__card {
  background: #f3f8ff;
  padding: 1.5rem;
  border-radius: 6px;
}
.tourism-exchange__card-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  color: #104596;
  margin-bottom: 0.5rem;
}
.tourism-exchange__card-text {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0.75rem;
  color: #191c36;
}
.tourism-exchange__card-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #104596;
  text-decoration: none;
}
.tourism-exchange__card-link:hover {
  text-decoration: underline;
}
.tourism-exchange__footer {
  position: relative;
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
}
.tourism-exchange__footer::before {
  content: "";
  position: absolute;
  top: 65%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #104596;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.4;
}
.tourism-exchange__button {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: #104596;
  color: #fff;
  font-weight: 700;
  padding: 0.3rem 2.35rem;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s;
  font-size: 12px;
  line-height: 20px;
}
.tourism-exchange__button:hover {
  background: #0b3573;
}
@media (max-width: 768px) {
  .tourism-exchange {
    padding: 1.5rem;
  }
  .tourism-exchange__title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 1.5rem;
  }
  .tourism-exchange__image img {
    height: 220px;
    object-fit: cover;
  }
  .tourism-exchange__grid {
    gap: 0.75rem;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
  }
  .tourism-exchange__grid::-webkit-scrollbar-thumb {
    background: #104596;
    border-radius: 3px;
  }
  .tourism-exchange__grid::-webkit-scrollbar-thumb:hover {
    background: #083270;
  }
  .tourism-exchange__grid::-webkit-scrollbar {
    height: 6px;
  }
  .tourism-exchange__card {
    padding: 1rem;
    padding-top: 3rem;
    flex: 0 0 225px;
  }
  .tourism-exchange__card-link {
    font-size: 12px;
    line-height: 18px;
  }
  .tourism-exchange__footer {
    margin-top: 0;
    padding-top: 0;
  }
  .tourism-exchange__button {
    font-size: 11px;
    padding: 0.25rem 1.5rem;
  }
}
@media (max-width: 380px) {
  .tourism-exchange {
    padding: 24px 0;
  }
}

.tourism-phones {
  background: #fff;
  padding: 2rem 0;
  color: #191c36;
}
.tourism-phones__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.tourism-phones__title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #104596;
  text-transform: uppercase;
}
.tourism-phones__button {
  display: inline-block;
  width: 120px;
  height: 30px;
  line-height: 30px;
  background: #104596;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
}
.tourism-phones__button:hover {
  background: #0b3573;
}
.tourism-phones__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-bottom: 2rem;
}
.tourism-phones__card {
  background: #f7f9ff;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tourism-phones__image img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  display: block;
  border-radius: 0 0 30px 0;
}
.tourism-phones__content {
  padding: 1.2rem;
  text-align: center;
}
.tourism-phones__card-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #104596;
  margin-bottom: 0.5rem;
}
.tourism-phones__card-text {
  font-size: 14px;
  line-height: 20px;
  color: #191c36;
  margin-bottom: 1rem;
}
.tourism-phones__card-link {
  display: inline-block;
  width: 120px;
  height: 30px;
  line-height: 30px;
  background: #104596;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
}
.tourism-phones__card-link:hover {
  background: #0b3573;
}
.tourism-phones__footer {
  text-align: right;
  margin-bottom: 2rem;
}
.tourism-phones__horizontal {
  display: grid;
  grid-template-columns: 34% 66%;
  align-items: stretch;
  background: #f7f9ff;
  border-radius: 8px;
  overflow: hidden;
}
.tourism-phones__horizontal-image {
  border-radius: 0 30px 30px 0;
  overflow: hidden;
}
.tourism-phones__horizontal-image img {
  width: 100%;
  height: 325px;
  object-fit: contain;
}
.tourism-phones__horizontal-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tourism-phones__horizontal-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #104596;
  margin-bottom: 0.75rem;
}
.tourism-phones__horizontal-text {
  font-size: 14px;
  line-height: 20px;
  color: #191c36;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .tourism-phones {
    padding: 1.5rem;
  }
  .tourism-phones__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .tourism-phones__header .btn_hover {
    display: none;
  }
  .tourism-phones__title {
    font-size: 18px;
    line-height: 20px;
    margin: auto;
    text-align: center;
    margin-bottom: 1rem;
  }
  .tourism-phones__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .tourism-phones__image img {
    height: 180px;
  }
  .tourism-phones__horizontal {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
  .tourism-phones__horizontal-image {
    border-radius: 0 0 30px 0;
  }
  .tourism-phones__horizontal-image img {
    height: 180px;
    object-fit: cover;
  }
  .tourism-phones__horizontal-content {
    padding: 1rem;
    text-align: center;
  }
  .tourism-phones__horizontal-content .d_flex_left {
    justify-content: center;
  }
  .tourism-phones__horizontal-content .btn_hover {
    width: 90%;
    max-width: 304px;
    height: 38px;
    font-size: 12px;
  }
  .tourism-phones__footer {
    display: none;
  }
  .tourism-phones__button {
    display: none;
  }
  .tourism-phones__card {
    border-radius: 8px;
  }
  .tourism-phones__content {
    padding: 1rem;
    text-align: center;
  }
  .tourism-phones__content .btn_hover {
    width: 90%;
    max-width: 304px;
    height: 38px;
    font-size: 12px;
  }
  .tourism-phones__card-title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0.5rem;
  }
  .tourism-phones__card-text {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 0.75rem;
  }
  .tourism-phones__card-link {
    width: 305px;
    height: 38px;
    line-height: 38px;
    font-size: 12px;
    margin: auto;
  }
  .tourism-phones__horizontal-title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0.5rem;
  }
  .tourism-phones__horizontal-text {
    font-size: 13px;
    line-height: 18px;
  }
}

.tourism-embassies {
  background: #fff;
  padding: 2rem;
  color: #191c36;
}
.tourism-embassies__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.tourism-embassies__title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #104596;
  text-transform: uppercase;
}
.tourism-embassies__button {
  display: inline-block;
  width: 120px;
  height: 30px;
  line-height: 30px;
  background: #104596;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
}
.tourism-embassies__button:hover {
  background: #0b3573;
}
.tourism-embassies__map {
  width: 100%;
  height: 840px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .tourism-embassies {
    padding: 1.5rem;
  }
  .tourism-embassies__title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 1rem;
  }
  .tourism-embassies__button {
    width: 100px;
    height: 28px;
    line-height: 28px;
    font-size: 11px;
  }
  .tourism-embassies__map {
    height: 400px;
  }
}

.tourism-places {
  background: #fff;
  padding: 2rem;
  color: #191c36;
}
.tourism-places__headline {
  font-size: 26px;
  line-height: 32px;
  font-weight: 800;
  color: #191c36;
  margin-bottom: 0.5rem;
}
.tourism-places__author {
  font-size: 9px;
  line-height: 20px;
  color: #191c36;
  margin-bottom: 1.5rem;
}
.tourism-places__author strong {
  font-weight: 700;
}
.tourism-places__vid_image {
  display: block;
  position: relative;
}
.tourism-places__image {
  position: relative;
  margin-bottom: 1.5rem;
}
.tourism-places__image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.tourism-places__photo {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 11px;
  color: #fff;
}
.tourism-places__caption {
  display: block;
  font-size: 9px;
  color: #104596;
  font-weight: 500;
  text-align: center;
}
.tourism-places__caption-container {
  background: #f3f8ff;
  height: 30px;
  border-radius: 0 0 10px 10px;
  padding-top: 5px;
}
.tourism-places__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tourism-places__list li + li {
  margin-top: 1.5rem;
}
.tourism-places__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.tourism-places__number {
  font-size: 22px;
  font-weight: 800;
  color: #191c36;
  line-height: 1;
  min-width: 20px;
}
.tourism-places__text {
  font-size: 14px;
  line-height: 1.5;
  color: #191c36;
}
.tourism-places__text strong {
  font-weight: 700;
}
@media (max-width: 768px) {
  .tourism-places {
    padding: 1.5rem;
  }
  .tourism-places__headline {
    font-size: 22px;
    line-height: 28px;
  }
  .tourism-places__author {
    font-size: 13px;
    margin-bottom: 1rem;
  }
  .tourism-places__photo {
    font-size: 10px;
  }
  .tourism-places__caption {
    font-size: 12px;
  }
  .tourism-places__number {
    font-size: 18px;
  }
  .tourism-places__text {
    font-size: 14px;
    line-height: 22px;
  }
}

.tourism-destinations {
  background: #fff;
  padding: 2rem;
  margin-bottom: 2rem;
  color: #191c36;
}
.tourism-destinations__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.tourism-destinations__title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 800;
  color: #104596;
  text-transform: uppercase;
}
.tourism-destinations__search {
  position: relative;
  flex: 1;
  max-width: 300px;
}
.tourism-destinations__search input {
  width: 100%;
  height: 36px;
  border: 1px solid #104596;
  border-radius: 20px;
  padding: 0 2.5rem 0 1rem;
  font-size: 14px;
  outline: none;
}
.tourism-destinations__search__icon,
.tourism-destinations__search .tourism-destinations__icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.tourism-destinations__search__icon img,
.tourism-destinations__search .tourism-destinations__icon img {
  width: 18px;
  height: 18px;
}
.tourism-destinations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 115px));
  justify-content: space-between;
  gap: 1.5rem 2rem;
}
.tourism-destinations__card {
  text-align: center;
}
.tourism-destinations__image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.tourism-destinations__image img {
  width: 100%;
  aspect-ratio: 1/1.05;
  object-fit: cover;
  display: block;
}
.tourism-destinations__fav {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}
.tourism-destinations__fav img {
  width: 18px;
  height: 17px;
}
.tourism-destinations__fav:hover {
  transform: scale(1.1);
}
.tourism-destinations__name {
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  color: #104596;
  margin-bottom: 0.5rem;
  height: 40px;
}
.tourism-destinations__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.tourism-destinations__stars {
  display: flex;
  gap: 2px;
}
.tourism-destinations__stars img {
  width: 19px;
  height: 17px;
}
.tourism-destinations__votes {
  font-size: 11px;
  line-height: 18px;
  color: #104596;
}
@media (max-width: 768px) {
  .tourism-destinations {
    padding: 1.5rem;
  }
  .tourism-destinations__title {
    font-size: 20px;
    line-height: 26px;
  }
  .tourism-destinations__grid {
    grid-template-columns: repeat(auto-fit, 115px);
    gap: 1rem;
    margin-bottom: 16px;
  }
  .tourism-destinations__fav {
    width: 28px;
    height: 28px;
  }
  .tourism-destinations__fav img {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  .tourism-destinations {
    padding: 12px 20px;
    margin: 0 -20px;
  }
  .tourism-destinations__header {
    flex-direction: column;
  }
  .tourism-destinations__search {
    width: 100%;
    max-width: 100%;
  }
  .tourism-destinations__grid {
    gap: 12px;
  }
}

.tourism-location {
  background: #fff;
  color: #191c36;
  position: relative;
}
.tourism-location__title {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  color: #191c36;
  margin-bottom: 1rem;
  position: absolute;
  width: 276px;
  height: 73px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 20px 20px;
  z-index: 888;
  top: 0;
  left: 100px;
  background: #fff;
  display: none;
}
.tourism-location__title span {
  color: #191c36;
}
.tourism-location__map {
  width: 100%;
  height: 500px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
}
.tourism-location__map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.tourism-location__info {
  background: #f3f8ff;
  border-radius: 0 0 8px 8px;
  padding: 1.5rem;
}
.tourism-location__text {
  font-size: 14px;
  line-height: 20px;
  color: #104596;
  max-width: 1200px;
  margin: auto;
}
.tourism-location__text strong {
  color: #104596;
  font-weight: 700;
}
@media (max-width: 768px) {
  .tourism-location__title {
    font-size: 18px;
    line-height: 22px;
  }
  .tourism-location__map {
    height: 350px;
  }
  .tourism-location__text {
    font-size: 13px;
    line-height: 20px;
  }
}

.no_text {
  margin-top: 16px;
}
.no_text .tourism-location__info {
  display: none;
}

.tourism-interest {
  background: #fff;
  padding: 1.5rem;
  border-radius: 20px;
  margin: 0 auto;
}
.tourism-interest__title {
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  color: #104596;
  text-align: center;
  margin-bottom: 1.5rem;
}
.tourism-interest__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tourism-interest__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  height: 42px;
  border-radius: 20px;
  background: #fff;
  font-size: 14px;
  line-height: 20px;
  color: #104596;
  cursor: pointer;
  transition: all 0.2s ease;
}
.tourism-interest__item img {
  background: #fff;
  border: 1px solid #104596;
  border-radius: 50%;
  padding: 5px;
  width: 34px;
  height: 34px;
}
.tourism-interest__item:hover, .tourism-interest__item.is-active {
  background: #104596;
  color: #fff;
}
.tourism-interest__item:hover img, .tourism-interest__item.is-active img {
  background: #fff;
  border-color: #fff;
}
@media (max-width: 768px) {
  .tourism-interest {
    padding: 1.25rem;
    border-radius: 15px;
    max-width: 100%;
  }
  .tourism-interest__title {
    font-size: 18px;
    margin-bottom: 1rem;
  }
  .tourism-interest__item {
    font-size: 13px;
    height: 40px;
  }
}

.services-slider {
  position: relative;
  overflow: hidden;
}
.services-slider__track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}
.services-slider__slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem 3rem;
  color: #fff;
}
.services-slider__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.services-slider__content {
  position: relative;
  z-index: 2;
  max-width: 450px;
  text-align: left;
}
@media (max-width: 768px) {
  .services-slider__content {
    text-align: center;
    margin: 0 auto;
  }
}
.services-slider__title {
  font-size: 42px;
  line-height: 48px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .services-slider__title {
    font-size: 28px;
    line-height: 34px;
  }
}
.services-slider__desc {
  font-size: 15px;
  line-height: 22px;
  color: #fff;
  max-width: 400px;
}
@media (max-width: 768px) {
  .services-slider__desc {
    max-width: 100%;
  }
}
.services-slider__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 0.25rem;
}
.services-slider__stars img {
  width: 20px;
  height: 20px;
}
.services-slider__meta {
  font-size: 13px;
  color: #fff;
  margin-bottom: 1.5rem;
}
.services-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.3s ease;
}
.services-slider__arrow img {
  width: 10px;
  height: 10px;
  filter: brightness(0) saturate(100%) invert(16%) sepia(98%) saturate(1342%) hue-rotate(206deg) brightness(96%) contrast(96%);
}
.services-slider__arrow--prev {
  left: 20px;
}
.services-slider__arrow--next {
  right: 20px;
}
.services-slider__dots {
  padding: 16px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.services-slider__dot {
  width: 4px;
  aspect-ratio: 1;
  background: #0B2957;
  border-radius: 50%;
}
.services-slider__dot.is-active {
  width: 6px;
  background: var(--color-primary);
}
@media (max-width: 480px) {
  .services-slider__stars, .services-slider__meta, .services-slider__desc, .services-slider__arrow {
    display: none;
  }
  .services-slider__content {
    width: 75%;
    margin: 0;
  }
  .services-slider__title {
    font-size: 25px;
    line-height: 1.2;
  }
  .services-slider__slide {
    align-items: flex-end;
    padding: 20px;
    padding-bottom: 10%;
    min-height: auto;
    aspect-ratio: 1/0.6;
    max-width: 100%;
  }
}

.tourism-rentals {
  background: #fff;
  padding: 2rem;
  color: #191c36;
}
.tourism-rentals__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.tourism-rentals__title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 800;
  color: #104596;
  text-transform: uppercase;
  max-width: 430px;
}
.tourism-rentals__button {
  display: inline-block;
  background: #104596;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  padding: 0.4rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.tourism-rentals__button:hover {
  background: #0b3573;
}
.tourism-rentals__main {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.tourism-rentals__main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.tourism-rentals__credits {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 6px;
  border-radius: 3px;
}
.tourism-rentals__caption {
  font-size: 9px;
  text-align: center;
  color: #104596;
  margin-bottom: 2rem;
  background-color: #f3f8ff;
  border-radius: 0 0 10px 10px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tourism-rentals__slider {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.tourism-rentals__viewport {
  overflow: hidden;
  width: 530px;
}
.tourism-rentals__track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 0.5rem;
  max-width: 500px;
}
.tourism-rentals__item {
  flex: 0 0 187px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}
.tourism-rentals__item img {
  width: 187px;
  height: 98px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}
.tourism-rentals__arrow {
  background: #104596;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 2;
}
.tourism-rentals__arrow img {
  width: 10px;
  height: 10px;
}
.tourism-rentals__arrow:hover {
  background: #0b3573;
}
.tourism-rentals__arrow--prev {
  margin-right: 1rem;
}
.tourism-rentals__arrow--next {
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .tourism-rentals {
    padding: 1.5rem;
  }
  .tourism-rentals__item {
    flex: 0 0 70%;
  }
  .tourism-rentals__main img {
    height: 260px;
  }
  .tourism-rentals__title {
    font-size: 20px;
    text-align: center;
    width: 100%;
  }
  .tourism-rentals__button {
    margin: 0 auto;
  }
  .tourism-rentals__slider {
    justify-content: center;
  }
}

.tourism-rentals--mobile {
  display: none;
}

@media (max-width: 768px) {
  .tourism-rentals--desktop {
    display: none;
  }
  .tourism-rentals--mobile {
    display: block;
    padding: 1.5rem 0;
  }
  .tourism-rentals--mobile .tourism-rentals__title {
    font-size: 20px;
    font-weight: 800;
    color: #104596;
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
  }
  .tourism-rentals--mobile .tourism-rentals__mobile-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .tourism-rentals--mobile .tourism-rentals__mobile-track::-webkit-scrollbar {
    display: none;
  }
  .tourism-rentals--mobile .tourism-rentals__mobile-card {
    flex: 0 0 85%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    scroll-snap-align: start;
  }
  .tourism-rentals--mobile .tourism-rentals__mobile-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }
  .tourism-rentals--mobile .tourism-rentals__mobile-card .tourism-rentals__mobile-caption {
    font-size: 13px;
    color: #104596;
    background: #f3f8ff;
    padding: 0.6rem 0;
    border-radius: 0 0 10px 10px;
  }
}
.tourism-concessions {
  padding: 2rem;
  color: #191c36;
}
.tourism-concessions__title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #104596;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.tourism-concessions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.tourism-concessions__card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.tourism-concessions__card img {
  width: 100%;
  height: 295px;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}
.tourism-concessions__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  color: #fff;
  border-radius: 0 0 15px 15px;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
}
@media (max-width: 768px) {
  .tourism-concessions {
    padding: 1.5rem;
  }
  .tourism-concessions__title {
    text-align: center;
    font-size: 18px;
    line-height: 20px;
  }
  .tourism-concessions__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 16px;
  }
  .tourism-concessions__card img {
    height: 180px;
  }
  .tourism-concessions__overlay {
    font-size: 13px;
    padding: 0.75rem;
  }
}
@media (max-width: 480px) {
  .tourism-concessions__grid {
    grid-template-columns: 100%;
  }
  .tourism-concessions__card img {
    height: auto;
  }
  .tourism-concessions__overlay {
    font-size: 18px;
    text-align: center;
    padding: 12px;
    padding-bottom: 24px;
  }
}

.tourism-compensation {
  background: #104596;
  padding: 1rem 2rem;
}
.tourism-compensation__content {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 100px;
}
.tourism-compensation__title {
  color: #fff;
  font-weight: 700;
  font-size: 25px;
  line-height: 30px;
  margin: 0;
}
.tourism-compensation__button {
  background: #ffda54;
  color: #104596;
  font-weight: 700;
  font-size: 14px;
  line-height: 25px;
  text-decoration: none;
  padding: 0.4rem 1.5rem;
  border-radius: 20px;
  transition: background 0.2s;
  width: 171px;
  height: 38px;
  text-align: center;
}
.tourism-compensation__button:hover {
  background: #e6c94d;
}
@media (max-width: 768px) {
  .tourism-compensation {
    padding: 1rem 0;
  }
  .tourism-compensation__content {
    text-align: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .tourism-compensation__title {
    font-size: 16px;
  }
  .tourism-compensation__button {
    font-size: 12px;
    padding: 0.4rem 1.2rem;
  }
}

.restaurants-simple {
  margin: 2rem 0;
}
.restaurants-simple__title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #104596;
  margin-bottom: 2rem;
}
.restaurants-simple__container {
  display: flex;
  gap: 2rem;
}
.restaurants-simple__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 1rem;
  flex: 1;
}
.restaurants-simple__main {
  grid-row: span 2;
}
.restaurants-simple__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 405px;
}
.restaurants-simple__card {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.restaurants-simple__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.restaurants-simple__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(25, 28, 54, 0.6980392157);
  color: #fff;
}
.restaurants-simple__card-title {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
}
.restaurants-simple__btn {
  font-size: 12px;
  line-height: 20px;
  background: #104596;
  color: #fff;
  padding: 0.4rem 1.3rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 768px) {
  .restaurants-simple {
    margin: 0;
  }
  .restaurants-simple__title {
    text-align: center;
  }
  .restaurants-simple__container {
    flex-direction: column;
  }
  .restaurants-simple__grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .restaurants-simple__grid img {
    width: 100%;
    height: 400px;
  }
  .restaurants-simple__main, .restaurants-simple__side {
    height: auto;
    display: block;
  }
  .restaurants-simple__card {
    width: 100%;
    height: auto;
  }
  .restaurants-simple__overlay {
    padding: 0.75rem;
  }
}
.tourism-providers {
  background: #f3f8ff;
  padding: 2rem 0;
  border-radius: 10px;
}
.tourism-providers__title {
  font-size: 25px;
  font-weight: 800;
  color: #104596;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.tourism-providers__subtitle {
  color: #191c36;
  font-size: 15px;
  margin-bottom: 2rem;
}
.tourism-providers__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 0;
}
.tourism-providers__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .tourism-providers__row {
    grid-template-columns: 1fr;
  }
}
.tourism-providers__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tourism-providers__field label {
  color: #104596;
  font-weight: 600;
  font-size: 15px;
}
.tourism-providers__field input {
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 0.8rem 1rem;
  font-size: 15px;
  color: #191c36;
  font-weight: 500;
}
.tourism-providers__field input:focus {
  outline: 2px solid #104596;
}
.tourism-providers__actions {
  display: flex;
  justify-content: flex-end;
}
.tourism-providers__button {
  background: #104596;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 20px;
  padding: 0.6rem 2rem;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}
.tourism-providers__button:hover {
  background: #0b3573;
}
.tourism-providers__dropdown {
  position: relative;
}
.tourism-providers__dropdown-toggle {
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 0.8rem 1rem;
  font-size: 15px;
  color: #104596;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.tourism-providers__dropdown-toggle img {
  width: 14px;
  height: 14px;
}
.tourism-providers__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  max-height: 180px;
  overflow-y: auto;
}
.tourism-providers__dropdown-menu li {
  padding: 0.6rem 1rem;
  color: #191c36;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}
.tourism-providers__dropdown-menu li:hover {
  background: #f3f8ff;
  color: #104596;
}
.tourism-providers__dropdown.is-open .tourism-providers__dropdown-menu {
  display: block;
}
@media (max-width: 768px) {
  .tourism-providers__title {
    font-size: 18px;
    line-height: 20px;
    text-align: center;
  }
  .tourism-providers__actions {
    justify-content: center;
  }
  .tourism-providers__button {
    width: 90%;
    max-width: 304px;
    height: 38px;
    font-size: 12px;
  }
}

.search-results {
  background: #f5f8ff;
  padding: 2rem 0;
}
.search-results__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.search-results__title {
  font-size: 25px;
  font-weight: 800;
  color: #27408b;
  margin: 0;
}
.search-results__pagination {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.search-results__pagination-footer {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35px 0 0 0;
}
.search-results__arrow {
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem;
}
.search-results__arrow img {
  width: 12px;
  height: 12px;
}
.search-results__arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.search-results__pages {
  display: flex;
  gap: 0.5rem;
}
.search-results__pages button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: transparent;
  font-weight: 700;
  color: #27408b;
  cursor: pointer;
  transition: background 0.3s ease;
}
.search-results__pages button.is-active {
  background: #fff;
}
.search-results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.search-results__card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.search-results__card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #27408b;
  margin-bottom: 1rem;
}
.search-results__card h3 a {
  color: inherit;
  text-decoration: underline;
}
.search-results__card p {
  font-size: 14px;
  color: #27408b;
  margin-bottom: 0.5rem;
}
.search-results__card p span {
  font-weight: 700;
}
.search-results__card .search-results__btn {
  display: inline-block;
  margin-top: 1rem;
  background: #27408b;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
}
@media (max-width: 768px) {
  .search-results__header {
    flex-direction: column;
    gap: 1rem;
  }
  .search-results__grid {
    grid-template-columns: 1fr;
  }
}

.city-article {
  background: #f5f8ff;
  padding: 2rem;
  border-radius: 10px;
  color: #191c36;
}
.city-article__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.city-article__city {
  font-size: 25px;
  line-height: 30px;
  font-weight: 800;
  color: #104596;
  text-transform: uppercase;
  margin-left: 2rem;
}
.city-article__rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.city-article__stars {
  display: flex;
  gap: 3px;
}
.city-article__stars img {
  width: 18px;
  height: 18px;
}
.city-article__meta {
  font-size: 14px;
  font-weight: 500;
  color: #191c36;
}
.city-article__content {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
}
.city-article__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #191c36;
}
.city-article__author {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #191c36;
}
.city-article__figure {
  position: relative;
  margin-bottom: 1.5rem;
}
.city-article__figure img {
  width: 100%;
  display: block;
}
.city-article__caption {
  text-align: center;
  font-size: 12px;
  color: #104596;
  background: #f3f8ff;
  border-radius: 0 0 10px 10px;
  padding: 0.5rem 0;
}
.city-article__photo {
  position: absolute;
  right: 1rem;
  bottom: 0.5rem;
  font-size: 11px;
  color: #fff;
}
.city-article__text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.city-article__text strong {
  font-weight: 700;
}
.city-article__images-duo {
  float: right;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: 1rem;
  margin-bottom: 1rem;
  width: 288px;
}
.city-article__images-duo img {
  width: 100%;
  height: 226px;
  display: block;
}
@media (max-width: 768px) {
  .city-article__images-duo {
    float: none;
    width: 100%;
    margin: 1rem 0;
    flex-direction: row;
  }
  .city-article__images-duo img {
    width: 48%;
  }
}
.city-article .tourism-rentals {
  padding: 2rem 0;
}
.city-article .tourism-rentals__caption,
.city-article .tourism-rentals__header {
  display: none;
}
.city-article .tourism-rentals__title,
.city-article .no_mostrar {
  display: none !important;
}

@media (max-width: 768px) {
  .city-article {
    padding: 1rem 0;
  }
  .city-article__content {
    padding: 1.2rem;
  }
  .city-article__title {
    font-size: 18px;
  }
  .city-article__city {
    font-size: 20px;
    margin: 0;
  }
}
.more-info {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.more-info__title {
  font-size: 20px;
  font-weight: 700;
  color: #243c84;
  margin-bottom: 1rem;
}
.more-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.more-info__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f3f8ff;
  border-radius: 999px;
  height: 45px;
  padding: 0 1rem;
  color: #243c84;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}
.more-info__item img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #243c84;
  padding: 4px;
}
.more-info__item:hover, .more-info__item.is-active {
  background: #243c84;
  color: #fff;
}
.more-info__item:hover img, .more-info__item.is-active img {
  background: #fff;
  border-color: #fff;
}

.tourism-hotels {
  background: #fff;
  padding: 1.5rem;
  text-align: center;
  width: 100%;
  margin: 2rem auto;
}
.tourism-hotels__title {
  color: #104596;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.tourism-hotels__viewport {
  overflow: hidden;
  position: relative;
}
.tourism-hotels__track {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
}
.tourism-hotels__slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tourism-hotels__image-wrapper {
  position: relative;
  width: 100%;
}
.tourism-hotels__image {
  width: 100%;
  height: 261px;
  object-fit: cover;
  display: block;
}
.tourism-hotels__dots {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.tourism-hotels__dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #c7cde0;
  transition: background 0.3s ease;
}
.tourism-hotels__dots .dot.is-active {
  background: #104596;
}
.tourism-hotels__name {
  font-size: 18px;
  font-weight: 800;
  color: #191c36;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.tourism-hotels__rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}
.tourism-hotels__stars {
  display: flex;
  gap: 3px;
}
.tourism-hotels__stars img {
  width: 18px;
  height: 18px;
}
.tourism-hotels__meta {
  font-size: 13px;
  color: #104596;
}
.tourism-hotels__address {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  line-height: 18px;
  color: #191c36;
  margin-bottom: 1rem;
}
.tourism-hotels__address img {
  width: 14px;
  height: 14px;
}
.tourism-hotels__btn {
  display: inline-block;
  background: #104596;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 20px;
  padding: 0.4rem 2rem;
  text-decoration: none;
  transition: background 0.3s;
}
.tourism-hotels__btn:hover {
  background: #0c367e;
}

.tourism-announcement {
  background: #fff;
  border-radius: 12px;
  padding: 0 0 1.5rem;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
.tourism-announcement__card {
  background: #fff;
  border-radius: 12px;
  padding: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tourism-announcement__image {
  width: 100%;
  border-radius: 0 0 30px 30px;
  margin-bottom: 1rem;
  object-fit: cover;
  display: block;
}
.tourism-announcement__title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 800;
  color: #191c36;
  margin-bottom: 0.75rem;
}
.tourism-announcement__description {
  font-size: 14px;
  line-height: 20px;
  color: #191c36;
  margin-bottom: 1.25rem;
  padding: 0 1rem;
  text-align: center;
}
.tourism-announcement__btn {
  display: inline-block;
  background: #104596;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 20px;
  padding: 0.4rem 2rem;
  text-decoration: none;
  transition: background 0.3s ease;
}
.tourism-announcement__btn:hover {
  background: #0d3d88;
}

.tourism-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  background: #f7f9ff;
  padding: 1.5rem;
  border-radius: 50px;
  width: 100%;
  margin: 0 auto;
  margin-top: 2rem;
}
.tourism-rating__stars {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tourism-rating__star {
  width: 27px;
  height: 27px;
  cursor: pointer;
  transition: transform 0.2s ease;
  filter: grayscale(100%);
}
.tourism-rating__star:hover {
  transform: scale(1.1);
}
.tourism-rating__star.is-active {
  filter: none;
  content: url("/assets/img/icons/star-filled.svg");
}
.tourism-rating__btn {
  background: #104596;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 12px;
  border: none;
  border-radius: 20px;
  width: 120px;
  height: 30px;
  padding: 0.6rem 2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.tourism-rating__btn:hover {
  background: #0d3d88;
}

.tourism-attractions {
  padding: 2rem 0;
}
.tourism-attractions__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.tourism-attractions__title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #1d2e75;
}
.tourism-attractions__button {
  background: #1d2e75;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  border-radius: 25px;
  padding: 0.4rem 1.5rem;
  text-decoration: none;
  transition: background 0.3s ease;
  width: 120px;
  height: 30px;
  text-align: center;
}
.tourism-attractions__button:hover {
  background: #153070;
}
.tourism-attractions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .tourism-attractions__grid {
    grid-template-columns: 1fr;
  }
}
.tourism-attractions__card {
  background: #f3f8ff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tourism-attractions__card:hover {
  transform: translateY(-4px);
}
.tourism-attractions__image {
  width: 100%;
  height: 159px;
  object-fit: cover;
  border-radius: 0 0 30px 0;
}
.tourism-attractions__content {
  padding: 1rem;
}
.tourism-attractions__card-title {
  font-size: 20px;
  line-height: 25px;
  font-weight: 800;
  color: #104596;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}
.tourism-attractions__description {
  font-size: 14px;
  line-height: 20px;
  color: #191c36;
}
.tourism-attractions__description a {
  color: #104596;
  font-weight: 700;
  text-decoration: none;
}
.tourism-attractions__description a:hover {
  text-decoration: underline;
}

.festivals {
  padding: 1rem 0;
}
.festivals__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}
.festivals__title {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #1d3484;
}
.festivals__controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.festivals__search {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  width: 250px;
}
.festivals__search img {
  width: 14px;
  margin-right: 0.5rem;
}
.festivals__search input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 100%;
  color: #7c7c7c;
}
.festivals__sort {
  background: #ffda52;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.festivals__accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.festivals__month {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.festivals__month-header {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  font-weight: 700;
  color: #191c36;
  font-size: 18px;
  line-height: 30px;
  background: #fff;
  cursor: pointer;
  border: none;
}
.festivals__month-header img {
  background: #f3f8ff;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  padding: 12px;
}
.festivals__month-header .icon-minus {
  display: none;
}
.festivals__month.is-open .icon-plus {
  display: none;
}
.festivals__month.is-open .icon-minus {
  display: inline;
}
.festivals__month.is-open .festivals__month-content {
  display: block;
}
.festivals__month-content {
  display: none;
  padding: 0 1.5rem 1rem 1.5rem;
}
.festivals__event {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.festivals__event::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #104596;
}
.festivals__event-title {
  font-weight: 400;
  color: #104596;
  text-decoration: underline;
  font-size: 14px;
}
.festivals__event-date {
  font-size: 14px;
  color: #191c36;
}
@media (max-width: 768px) {
  .festivals__title {
    font-size: 18px;
    line-height: 20px;
  }
  .festivals__search {
    width: 100%;
  }
  .festivals__header {
    flex-direction: column;
  }
  .festivals__controls {
    width: 100%;
  }
}

.events-calendar {
  background: #fff;
  border-radius: 20px;
  padding: 1rem;
  width: 415px;
  text-align: center;
}
.events-calendar__events {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}
.events-calendar__event {
  border: 1px solid #104596;
  border-radius: 30px;
  background: #fff;
  color: #104596;
  padding: 0.6rem 1rem;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  height: 62px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.events-calendar__event:hover {
  background: #104596;
  color: #fff;
}
.events-calendar__event.is-active {
  background: #104596;
  color: #fff;
}

.latest-colombia-news {
  background: #fff;
  border-radius: 20px;
  max-width: 457px;
  padding: 15px 25px;
  margin: 2rem auto !important;
}
.latest-colombia-news .shared-section-title {
  display: flex;
  justify-content: center;
  text-transform: initial;
}
.latest-colombia-news__main {
  margin-bottom: 1.5rem;
}
.latest-colombia-news__main .latest-colombia-news__item--main {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.latest-colombia-news__main .latest-colombia-news__item--main .latest-colombia-news__image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}
.latest-colombia-news__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.latest-colombia-news__item--secondary {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 1rem;
}
.latest-colombia-news__item--secondary:last-child {
  border-bottom: none;
}
.latest-colombia-news__item--secondary .latest-colombia-news__image {
  flex: 0 0 200px;
}
.latest-colombia-news__item--secondary .latest-colombia-news__image img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  aspect-ratio: 3/2;
}
@media (max-width: 768px) {
  .latest-colombia-news__item--secondary .latest-colombia-news__image {
    flex: 0 0 150px;
  }
}
.latest-colombia-news__item--secondary .latest-colombia-news__content {
  flex: 1;
}
.latest-colombia-news__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  font-family: var(--fonts-Norms);
}
.latest-colombia-news__title a {
  color: #191c36;
  text-decoration: none;
}
.latest-colombia-news__author {
  font-size: 9px;
  font-weight: 400;
  color: #191c36;
}
.latest-colombia-news__readmore {
  font-size: 0.75rem;
  font-weight: 700;
  color: #104596;
  text-decoration: none;
  display: block;
}
.latest-colombia-news__readmore:hover {
  text-decoration: underline;
}
.latest-colombia-news__footer {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .latest-colombia-news__footer .btn_hover {
    width: 90%;
    max-width: 304px;
    height: 38px;
    font-size: 12px;
  }
  .latest-colombia-news__title {
    font-size: 16px;
  }
}
.cinema-premieres {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cinema-premieres__card {
  display: grid;
  grid-template-columns: 215px auto;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  position: relative;
}
.cinema-premieres__badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #e53935;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  width: 100%;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cinema-premieres__poster {
  display: block;
}
.cinema-premieres__poster_div {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1/1.39;
}
@media (max-width: 768px) {
  .cinema-premieres__poster_div {
    aspect-ratio: 1/1.5;
  }
}
.cinema-premieres__poster_div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cinema-premieres__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}
.cinema-premieres__title {
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  color: #191c36;
  margin-bottom: 5px;
}
.cinema-premieres__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cinema-premieres__chip {
  background: #eef2fa;
  color: var(--color-primary);
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  padding: 1px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.cinema-premieres__chip img {
  width: 12px;
  height: 10px;
}
.cinema-premieres__director, .cinema-premieres__actors {
  font-size: 10px;
  color: #333;
}
.cinema-premieres__director span, .cinema-premieres__actors span {
  font-weight: 700;
  color: var(--color-primary);
  display: block;
}
.cinema-premieres__trailer {
  align-self: start;
  background: var(--color-primary);
  color: #fff;
  font-size: 10px;
  line-height: 20px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-flex;
  justify-content: flex-start;
  gap: 6px;
  width: 112px;
  height: 30px;
}
.cinema-premieres__divider {
  grid-column: 1/-1;
  height: 1px;
  background: #e0e6f6;
}
.cinema-premieres__divider--mobile {
  display: none;
}
.cinema-premieres__divider--desktop {
  display: block;
}

@media (max-width: 768px) {
  .cinema-premieres {
    grid-template-columns: 100%;
  }
  .cinema-premieres__card {
    grid-template-columns: 200px auto;
    gap: 20px;
  }
  .cinema-premieres__title {
    font-size: 14px;
  }
  .cinema-premieres__chip {
    font-size: 10px;
    padding: 2px 8px;
  }
  .cinema-premieres__divider--desktop {
    display: none;
  }
  .cinema-premieres__divider--mobile {
    display: block;
  }
  .cinemov__title {
    display: block;
    font-size: 18px;
    line-height: 20px;
  }
  .cinemov__filters {
    display: none;
  }
}
.cinemov__select-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 174px;
  height: 38px;
  padding: 0 16px 0 16px;
  background: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 20px;
  color: var(--color-primary);
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 768px) {
  .cinemov__select-btn {
    display: none;
  }
}

.cinemov__select.is-open .cinemov__chev {
  transform: rotate(180deg);
}

.cinemov__select--movies {
  display: none;
}
@media (max-width: 768px) {
  .cinemov__select--movies {
    display: block;
  }
}

@media (max-width: 380px) {
  .cinema-premieres__card {
    grid-template-columns: 160px auto;
  }
  .cinema-premieres__card .cinema-premieres__poster img {
    max-width: 160px;
    margin: 0 auto;
  }
  .latest-colombia-news {
    padding: 0;
  }
  .latest-colombia-news__item--secondary .latest-colombia-news__image {
    flex: 0 0 120px;
  }
}
.shared-menu {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0;
}
.shared-menu__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  list-style: none;
  padding: 0 1rem;
  margin: 0;
}
.shared-menu__item {
  flex-shrink: 0;
}
.shared-menu__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #104596;
  background: #f5f8fe;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
.shared-menu__link:hover {
  background: #eaf1fd;
}
.shared-menu__link--active {
  background: #fff;
  border-color: #104596;
  color: #104596;
  font-weight: 700;
}

@media (max-width: 768px) {
  .shared-menu__list {
    gap: 0.6rem;
    padding: 0 0.8rem;
    justify-content: flex-start;
  }
  .shared-menu__link {
    font-size: 0.85rem;
    padding: 0.35rem 0.8rem;
  }
}
.layout-2col {
  display: grid;
  grid-template-columns: 2fr 430px;
  gap: 40px;
  padding-top: 30px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .layout-2col {
    grid-template-columns: 100%;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .layout-2col {
    grid-template-columns: 100%;
    gap: 20px;
    padding-top: 10px;
  }
}

.genres-block {
  margin: 2rem 0;
}

.shared-section-title {
  text-align: left !important;
}

.latest-colombia-news {
  margin: 1rem auto !important;
}

.divider {
  width: 100%;
  height: 1px;
  background: #104596;
  margin: 1rem 0;
}

.sitios_title {
  padding: 0 0 1rem 2rem;
}

/*# sourceMappingURL=tourism.css.map */
