.tcb-banner {
  position: relative;
  width: 100%;
  height: clamp(360px, 58.59375vw, 750px);
  margin: 0 auto 90px;
  overflow: visible;
  background: #000;
}

.tcb-banner .splide__track,
.tcb-banner .splide__list,
.tcb-banner .splide__slide {
  height: 100%;
}

.tcb-banner .splide__track {
  overflow: hidden;
}

.tcb-banner__slide {
  position: relative;
  overflow: hidden;
}

.tcb-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center;
}

.tcb-banner__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(215, 215, 215, 0) 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
}

.tcb-banner__dotted {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAE0lEQVQIW2NkYGBwAOIDjEACDAALLQED6a5A2wAAABBkZUJHMTA2NkJGM0I0MTZGQUJBOJQ4Ly0AAAAASUVORK5CYII=");
  background-repeat: repeat;
  opacity: 1;
  pointer-events: none;
}

.tcb-banner__content {
  transform: translateX(-50%);
  left: 50%;
  z-index: 4;
  position: absolute;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  box-sizing: border-box;
  pointer-events: none;
}

.tcb-banner__intro,
.tcb-banner__title,
.tcb-banner__button,
.tcb-banner__badge {
  opacity: 0; 
}

.tcb-banner__intro { 
  color: #fff;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 42px;
  margin-bottom: 0px;
}

.tcb-banner__badge {
  width: 180px;
  height: auto;
  margin-top: -160px;
}

.tcb-banner__title {  
  color: #fff;
  font-family: "Anton", Impact, sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 77px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tcb-banner__button {
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 25px;
  padding: 0 36px;
  border-radius: 25px;
  background: #f68b1e;
  color: #fff;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 16px;
  line-height: 50px;
  text-decoration: none;
  text-transform: uppercase;
  pointer-events: auto;
  transition: background-color 0.3s ease;
}

.tcb-banner__button:hover,
.tcb-banner__button:focus {
  background: #5e5c5c;
  color: #fff;
}

.tcb-banner .splide__arrow {
  width: 50px;
  height: 50px;
  background: transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tcb-banner:hover .splide__arrow {
  opacity: 1;
}

.tcb-banner .splide__arrow svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}

.tcb-banner .splide__arrow:hover svg {
  opacity: 0.75;
}

.tcb-banner .splide__arrow--prev {
  left: 35px;
  top: calc(50% + 50px);
}

.tcb-banner .splide__arrow--next {
  right: 35px;
  top: calc(50% + 50px);
}

.tcb-banner .splide__pagination {
  display: none;
}

.subintro__tripadvisor {
  position: absolute;
  left: 50%;
  bottom: -58px;
  z-index: 8;
  width: 150px;
  transform: translateX(-50%);
  text-align: center;
}

.tripadvisor-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.tripadvisor-pin:hover,
.tripadvisor-pin:focus {
  color: #000;
  text-decoration: none;
}

.tripadvisor-pin__img {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.tripadvisor-pin__img img {
  display: block;  
  max-width: 75%;
  height: auto;
}

.tripadvisor-pin__text {
  margin-top: 8px;  
  font-size: 16px;
  line-height: 1.2;
}

.tcb-banner .splide__pagination li {
  width: 15px;
  height: 15px;
}

.tcb-banner .splide__pagination__page {
  position: relative;
  width: 15px;
  height: 15px;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.tcb-banner .splide__pagination__page.is-active,
.tcb-banner .splide__pagination__page:hover {
  transform: none;
  background: transparent;
  box-shadow: 0 0 0 2px #fff;
}

.tcb-banner .splide__pagination__page.is-active::after,
.tcb-banner .splide__pagination__page:hover::after {
  content: "";
  position: absolute;
  inset: 4.5px;
  border-radius: 50%;
  background: #fff;
}

.tcb-banner .splide__slide.is-active .tcb-banner__image {
  animation: tcbBannerZoom 10000ms linear both;
}

.tcb-banner .splide__slide.is-active .tcb-banner__badge {
  animation: tcbLayerFade 1500ms cubic-bezier(0.77, 0, 0.175, 1) 180ms both;
}

.tcb-banner .splide__slide.is-active .tcb-banner__intro {
  animation: tcbLayerRise 2480ms cubic-bezier(0.77, 0, 0.175, 1) 280ms both;
}

.tcb-banner .splide__slide.is-active .tcb-banner__title {
  animation: tcbLayerFade 900ms cubic-bezier(0.77, 0, 0.175, 1) 2130ms both;
}

.tcb-banner .splide__slide.is-active .tcb-banner__button {
  animation: tcbLayerFade 700ms ease 2440ms both;
}

@keyframes tcbBannerZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}

@keyframes tcbLayerRise {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tcbLayerFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1023px) {
  .tcb-banner .splide__arrows {
    display: none;
  }
}

@media (max-width: 778px) {
  .tcb-banner {
   height: calc(100svh - 130px);
    margin-bottom: 54px;
  }

  .tcb-banner__content {
    width: 100%;
    bottom: 75px;
  }

  .tcb-banner__badge {
    width: 90px;
    margin-top: -124px;
  }

  .tcb-banner__intro {
    width: 95%;
    font-size: 30px;
    line-height: 38px;
    white-space: normal;
    margin-bottom: 0;
  }

  .tcb-banner__title {
    font-size: 50px;
    line-height: 58px;
    letter-spacing: 0;
    margin-bottom: 0;
  }

  .tcb-banner__button {
    min-height: 48px;
    margin-top: 25px;
    padding: 0 24px;
    font-size: 16px;
    line-height: 48px;
  }

  .tcb-banner .splide__pagination {
    bottom: 128px;
  }

  .subintro__tripadvisor {
    bottom: -54px;
    width: 100px;
  }

  .tripadvisor-pin__img {
    width: 88px;
    height: 88px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  }

  .tripadvisor-pin__img img {
    width: auto;
    max-width: 74%;
  }

  .tripadvisor-pin__text {
    margin-top: 7px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {

  
  .tcb-banner {
    margin-bottom: 70px;
  }

  .tcb-banner__content {
    padding-right: 14px;
    padding-left: 14px;
    bottom: 70px;
  }

  .tcb-banner__intro {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 5px;
     margin-top: 0;
  }

  .tcb-banner__title {
    font-size: 30px;
    line-height: 1;
    
    margin-top: 0;
  }

  .tcb-banner__button {
    max-width: 95%;
    min-height: 36px;
    margin-top: 20px;
    padding: 0 18px;
    font-size: 14px;
    line-height: 36px;
    white-space: normal;
  }

  .tcb-banner .splide__pagination {
    bottom: 108px;
  }

  .subintro__tripadvisor {
    bottom: -48px;
    width: 116px;
  }

  .tripadvisor-pin__img {
    width: 70px;
    height: 70px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  }

  .tripadvisor-pin__img img {
    width: auto;
    max-width: 72%;
  }

  .tripadvisor-pin__text {
    margin-top: 6px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tcb-banner .splide__slide.is-active .tcb-banner__image,
  .tcb-banner .splide__slide.is-active .tcb-banner__badge,
  .tcb-banner .splide__slide.is-active .tcb-banner__intro,
  .tcb-banner .splide__slide.is-active .tcb-banner__title,
  .tcb-banner .splide__slide.is-active .tcb-banner__button {
    animation: none;
    opacity: 1;
  }
}
