@font-face {
  font-family: 'My Font';
  src: url('../lib/font/1FTV-HF-Gesco.ttf') format('truetype');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'My Font', serif;
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background-color: #FFEFD6;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  font-family: "My Font", serif;
}

.head-section {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: visible;
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 80vh;
  object-fit: cover;
  z-index: -1;
}

.overlay {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  margin-top: 200px;
}

.title h1 {
  color: #C70E1C;
  font-size: 4rem;
  font-weight: bold;
  text-align: right;
  line-height: 1.2;
  text-shadow: 0 0 0.625rem #2f2f2f, 0 0 1.25rem #252525;
}

.title h1 .highlight {
  color: #C70E1C;
  font-size: 6rem;
  font-weight: bold;
  text-align: right;
  line-height: 1.2;
  text-shadow: 0 0 0.625rem #2f2f2f, 0 0 1.25rem #252525;
}

.title h1 .small-text {
  margin-top: 2rem;
  font-size: 3rem;
  color: #C70E1C;
  text-shadow: 0 0 0.625rem #2f2f2f, 0 0 1.25rem #252525;
}

.vietnam {
  margin-top: -8rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.vietnam img {
  height: 3.125rem;
}

.viet-nam {
  margin-top: 13rem;
  margin-left: -8.7rem;
  display: flex;
  flex-direction: column;
  font-weight: bold;
  font-size: 4.125rem;
  text-shadow: 0 0 0.625rem #2f2f2f, 0 0 1.25rem #252525;
}

.viet,
.nam {
  color: #FCB92C;
  font-size: 4rem;
}

.search-bar {
  background-color: #0A4D3C;
  padding: 0.625rem 1rem;
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
  box-shadow: 0 0 0 0.1875rem #096B50 inset;
  width: 100%;
  height: 60px;
  transform: translateY(50%);
  z-index: 3;
  position: relative;
}

.search-bar input {
  border: none;
  outline: none;
  background: transparent;
  color: #FFEFD6;
  font-weight: bold;
  font-size: 1.2rem;
  width: 100%;
  flex: 1;
}

.search-bar input::placeholder {
  color: #FFEFD6;
}
.search-popup-show {
  left: 1rem;
}

.search-bar .search-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.search-bar .search-btn img {
  height: 40px;
  width: 40px;
}

@keyframes glow {

  0%,
  100% {
    text-shadow: 0 0 0.625rem #2f2f2f, 0 0 1.25rem #252525;
  }

  50% {
    text-shadow: 0 0 0.625rem #2f2f2f, 0 0 1.25rem #252525;
  }
}

.viet-nam,
.title h1,
.title h1 small {
  animation: glow 2s ease-in-out infinite;
}

.title-con {
  font-size: 2rem;
}
.contain-section .content .right {
  font-size: 1.1rem;
}

@media screen and (max-width: 767px) {

  .head-section,
  #bg-video,
  .overlay {
    height: 90vh;
  }

  .title {
    height: 60vh;
    margin-top: 100px;
  }

  .title {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .title h1 .highlight {
    font-size: 3.5rem;
    text-align: center;
  }

  .title h1 .small-text {
    font-size: 2rem;
  }

  .vietnam {
    /*margin-top: -4rem;*/
    margin-top: -8rem;
  }

  .vietnam img {
    height: 2rem;
  }

  .viet-nam {
    margin-top: 13rem;
    margin-left: -6.5rem;
    font-size: 2rem;
    text-align: center;
  }

  .search-bar {
    max-width: 90%;
    padding: 0.5rem 1rem;
  }

  .search-bar input {
    font-size: 0.9rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

  .head-section,
  #bg-video,
  .overlay {
    height: 90vh;
  }

  .title {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .title h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .title h1 small {
    font-size: 1.25rem;
  }

  .vietnam {
    flex-direction: column;
    margin-top: -6rem;
  }

  .vietnam img {
    margin-top: 6rem;
    height: 2.5rem;
  }

  .viet-nam {
    margin-top: 0;
    margin-left: 0;
    font-size: 2.5rem;
    text-align: center;
  }

  .search-bar {
    max-width: 80%;
  }
}

@media screen and (min-width: 1024px) {

  .head-section,
  #bg-video,
  .overlay {
    height: 80vh;
  }

  .title h1 {
    font-size: 3rem;
  }

  .title h1 small {
    font-size: 1.5rem;
  }

  .viet-nam {
    font-size: 3.125rem;
    margin-left: -8.7rem;
    margin-top: 13rem;
  }

  .search-bar {
    max-width: 25rem;
  }
}

/* .map-container {
    position: relative;
    width: 100%;
    min-height: 100rem;
    z-index: 2;
    overflow: auto;
}

.map-background {
    background-image: url('../IMG/discover/3.JPG');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100rem;
    filter: brightness(0.8);
}

.map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border: none;
} */

/* P2 */
.contain-section {
  width: 80%;
  margin: 2.5rem auto;
  padding: 1.25rem;
  background-color: #FFEFD6;
  position: relative;
  z-index: 2;
  margin-top: 5rem;
}

.center-border {
  width: 50%;
  margin: 1.25rem auto 0 auto;
  border-bottom: 0.3125rem solid #FCB92C;
}

.title-con {
  color: #0A4D3C;
  font-weight: bold;
  text-align: justify;
  margin-bottom: 0.3125rem;
  margin-top: 3rem;
  margin-left: 20rem;
}

.subtitle {
  text-align: justify;
  margin-bottom: 1.875rem;
  color: #333;
  font-size: 1.125rem;
  margin-left: 10rem;
}

.content-text {
  display: flex;
  gap: 1.25rem;
  color: #333;
}

.left img {
  width: 30%;
  border: 0.125rem solid #0A4D3C;
  background-color: #FFEFD6;
  padding: 0.25rem;
  margin-left: 7rem;
}

.right {
  flex: 1;
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
  margin-left: -45rem;
  margin-right: 8rem;
}

.right b {
  color: #C70E1C;
}

.bottom-img {
  margin-top: -13rem;
  text-align: right;
  margin-right: 8rem;
}

.bottom-img img {
  width: 25%;
  border: none;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .title-con {
    text-align: center;
    margin-left: 0;
    margin-top: 1rem;
    font-size: 1.25rem;
  }

  .subtitle {
    margin-left: 0;
    font-size: 1rem;
    text-align: justify;
  }

  .content-text {
    flex-direction: column;
    align-items: center;
  }

  .left img {
    width: 80%;
    margin-left: 2.5rem;
    text-align: center;
  }

  .right {
    margin-left: 0;
    margin-right: 0;
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .bottom-img {
    margin-top: 2rem;
    margin-right: 0;
    text-align: center;
  }

  .bottom-img img {
    width: 70%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .title-con {
    margin-left: 5rem;
    font-size: 1.5rem;
  }

  .subtitle {
    margin-left: 3rem;
    font-size: 1.0625rem;
  }

  .content-text {
    flex-direction: column;
    align-items: center;
  }

  .left img {
    width: 60%;
    margin-left: 0;
  }

  .right {
    margin-left: 0;
    margin-right: 2rem;
    font-size: 1rem;
    padding: 0 2rem;
  }

  .bottom-img {
    margin-top: 1rem;
    margin-right: 2rem;
    text-align: center;
  }

  .bottom-img img {
    width: 50%;
  }
}

/* P3 */
.card-section {
  padding: 2.5rem 1.25rem;
}

.card-section h2 {
  margin-left: 38rem;
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  margin-top: -4rem;
  color: #0A4D3C;
}

.card-section h3 {
  font-size: 2.5rem;
  font-weight: normal;
  margin-bottom: 2.5rem;
  color: #0A4D3C;
  text-align: center;
}

.ember {
  color: #C70E1C;
  font-weight: bold;
}

.cards {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background-color: #FFEFD6;
  width: 25%;
  border-radius: 0.625rem;
  transition: transform 0.3s ease, opacity 0.8s ease-out, transform 0.8s ease-out;
  position: relative;
  height: 25rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(-50px);
}

.card.show {
  opacity: 1;
  transform: translateX(0);
}

.card:hover {
  transform: scale(1.05);
}

.card:hover img {
  display: none;
}

.card:hover video.hover-video {
  display: block;
}

.card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.caption-overlay {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 12.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.caption-box {
  background-color: #FFEFD6;
  border: 0.1875rem double #0A4D3C;
  padding: 10px;
  text-align: center;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  /*margin-top: -20rem;*/
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.caption-box .caption-text-inbox {
  display: flex;
  font-size: 1.5rem;
  margin: 0;
  color: #0A4D3C;
  font-weight: 800;
  letter-spacing: 0.125rem;
  width: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.caption-box p {
  font-size: 0.8125rem;
  margin: 0.25rem 0 0 0;
  color: #0A4D3C;
  font-style: italic;
}

.caption-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  display: flex;
  align-items: flex-end;
  /*padding: 0.625rem;*/
  color: #FFEFD6;
  z-index: 2;
}

.card video.hover-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  z-index: 0;
  border-radius: 0.625rem;
}

@media screen and (max-width: 767px) {
  .card-section {
    margin-top: -4rem;
  }

  .card-section h2 {
    margin-left: 0;
    font-size: 1.4rem;
    text-align: center;
    margin-top: 0;
  }

  .card-section h3 {
    font-size: 1.75rem;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    height: 20rem;
  }

  .caption-box {
    margin-top: -15rem;
    padding: 0.5rem 1rem;
  }

  .caption-box h2 {
    font-size: 1.25rem;
  }

  .caption-box p {
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .card-section h2 {
    margin-left: 0;
    font-size: 1.125rem;
    text-align: center;
  }

  h3 {
    font-size: 2rem;
  }

  .cards {
    justify-content: center;
    flex-wrap: wrap;
  }

  .card {
    width: 45%;
    height: 22rem;
  }

  .caption-box {
    margin-top: -18rem;
  }

  .caption-box h2 {
    font-size: 1.375rem;
  }

  .caption-box p {
    font-size: 0.8125rem;
  }
}

@media screen and (min-width: 1024px) {
  .card-section h2 {
    margin-left: 38rem;
    font-size: 1.25rem;
  }

  h3 {
    font-size: 2.5rem;
  }

  .cards {
    gap: 1.25rem;
  }

  .card {
    width: 25%;
    height: 25rem;
  }

  .caption-box {
    margin-top: -20rem;
  }
}

/* P5 */
.vid-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.content-vid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  padding: 2.5rem;
}

.text-box {
  /*text-shadow: 0 0 0.3125rem #FFEFD6, 0 0 0.3125rem #FFEFD6;*/
  position: absolute;
  width: 100%;
  max-width: 40%;
  z-index: 2;
  color: #FCB92C;
  left: 2rem;
}

.text-box p {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  line-height: 1.6;
}

.text-box a {
  font-size: 1.25rem;
  color: #FCB92C;
  text-decoration: none;
  border-bottom: 0.0625rem solid #FFEFD6;
  transition: 0.3s;
}

.text-box a:hover {
  color: #FCB92C;
  border-bottom: 0.0625rem solid #FCB92C;
}

.location-list {
  /*text-shadow: 0 0 0.3125rem #FFEFD6, 0 0 0.3125rem #FFEFD6;*/
  position: absolute;
  text-align: right;
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 0.625rem;
  z-index: 2;
  color: #FCB92C;
  right: 2rem;
}

.location-list h4 {
  text-transform: uppercase;
  font-size: 0.625rem;
  letter-spacing: 0.0625rem;
  margin-bottom: 0.625rem;
  color: #FCB92C;
}

.location-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-list li {
  margin: 0.375rem 0;
  font-size: 1.25rem;
  cursor: pointer;
  transition: 0.3s;
}

.location-list li a {
  color: #FCB92C;
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.3s ease-in-out;
}

.location-list li:hover a {
  color: #FFD700;
  text-decoration: none;
  font-size: 1.4rem;
  transform: translateX(-20px);
}

/* Scrollbar */
.location-list::-webkit-scrollbar {
  width: 0.375rem;
}

.location-list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 0.1875rem;
}

.location-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Ẩn scrollbar */
.location-list {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.location-list::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.choice-session {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: auto;
  margin-bottom: 80px;
}

.choice-top {
  width: 70%;
}

.choice-top .search {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 40px;
  padding: 5px 10px;
  margin-bottom: 15px;
  width: 100%;
  box-sizing: border-box;
  background: #ff5733;
}
.choice-top .search input {
  border: none;
  outline: none;
  flex: 1;
  padding: 5px;
  font-size: 20px;
  background: none;
  color: #ffffff;
}
.choice-top .search input::placeholder {
  color: #e0e0e0;
}
.choice-top .search .icon {
  width: 20px;
  height: 20px;
  background-color: #ff5733;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}

/* Nút lọc */
.filter-section {
  margin-bottom: 15px;
}
.filter-section button {
  padding: 8px 15px;
  margin: 5px 5px 5px 0;
  border: none;
  border-radius: 20px;
  background-color: #f0f0f0;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}
.filter-section button.active {
  background-color: #ff5733;
  color: white;
}
.filter-section button:hover {
  background-color: #ddd;
}

/* Kết quả và sắp xếp */
.results-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}
.sort-options {
  display: flex;
  align-items: center;
}
.sort-options select {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px;
  font-size: 14px;
  margin-left: 10px;
}
.view-options {
  display: flex;
  align-items: center;
}
.view-options span {
  margin-left: 10px;
  cursor: pointer;
}
.view-options .icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-color: #ccc;
  margin-left: 5px;
}

.item-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.item-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  background-color: white;
}
.item-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.item-card .content-ingrid {
  padding: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 10px;
}
.item-card .region {
  background-color: #ff5733;
  color: white;
  padding: 2px 10px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 5px;
  width: fit-content;
}
.item-card h3 {
  margin: 5px 0;
  font-size: 18px;
}
.item-card .rating {
  color: #ff5733;
  font-size: 14px;
}
.item-card .details {
  font-size: 14px;
  color: #666;
}
.item-card .price {
  color: #ff5733;
  margin: 5px 0;
}
.item-card .tags button {
  background-color: #f0f0f0;
  border: none;
  padding: 5px 10px;
  border-radius: 10px;
  margin-right: 5px;
  cursor: pointer;
  font-size: 12px;
}
.item-card .tags button:hover {
  background-color: #ddd;
}
.item-card .view-more {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #ff5733;
  color: white;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.item-card .view-more:hover {
  background-color: #e64a19;
}
.item-card .favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #ccc;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: none;
  border: #ff5733 solid 1px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-content: center;
}
.item-card .favorite:hover {
  color: #ff5733;
}
.choice-session .btn-seemore {
  padding: 5px 30px;
  border-radius: 50px;
  height: 50px;
  width: fit-content;
  cursor: pointer;
  border: 0;
  background: #ff5733;
  color: #FFFFFF;
  font-weight: bold;
  box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1vw;
  transition: all 0.5s ease;
  margin-top: 20px;
}

.choice-session .btn-seemore:hover {
  letter-spacing: 3px;
  background-color: #0A4D3C;
  color: #FCB92C;
  box-shadow: #0A4D3C 0 7px 29px 0;
}

.choice-session .btn-seemore:active {
  letter-spacing: 3px;
  background-color: #ffe9ab;
  color: #ff5733;
  box-shadow: #FCB92C 0 0 0 0;
  transform: translateY(10px);
  transition: 100ms;
}

/*reponsive*/
@media (max-width: 1024px) {
  .item-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .choice-top {
    width: 90%;
  }

  .item-container {
    grid-template-columns: 1fr;
  }

  .results-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .sort-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .filter-section button {
    font-size: 13px;
    padding: 6px 10px;
  }

  .choice-session .btn-seemore {
    font-size: 13px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .choice-top .search input {
    font-size: 16px;
  }

  .item-card h3 {
    font-size: 16px;
  }

  .item-card .details, .item-card .price, .item-card .rating {
    font-size: 13px;
  }

  .item-card .tags button {
    font-size: 11px;
    padding: 4px 8px;
  }
}

/*maybe*/

.maybe-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px auto;
  width: 70%;
  /*max-width: 1200px;*/
  border-radius: 20px;
  background: #FFFFFF;
  padding: 20px;
}

.maybe-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.maybe-contain {
  display: flex;
  align-items: center;
  width: 100%;
  object-fit: none;
}

.item-list-wrapper {
  /*overflow: hidden;*/
  /*flex: 1;*/
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: fit-content;
  max-width: 100%;
  overflow-x: scroll;
  gap: 20px;
  scroll-behavior: smooth;
  padding: 24px;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overflow-y: hidden;
}

.item-list {
  display: flex;
  gap: 15px;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.maybe-item-card {
  flex: 0 0 auto;
  width: 300px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.maybe-item-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.content-maybe {
  padding: 10px;
}

.region {
  background-color: #ff5733;
  color: white;
  padding: 2px 10px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 5px;
}

.maybe-item-card h3 {
  margin: 5px 0;
  font-size: 16px;
}

.details {
  font-size: 12px;
  color: #666;
}

.rating {
  color: #ff5733;
  font-size: 14px;
  margin: 5px 0;
}

.maybe-btn {
  background-color: #ff5733;
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  /*padding: 10px;*/
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1;
  width: 40px;
  height: 40px;
  object-fit: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.maybe-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/*maybe reponsive*/
@media screen and (max-width: 768px) {
  .maybe-container {
    width: 95%;
    margin: 20px 0;
    padding: 5p;
  }

}


@media screen and (max-width: 1024px) {
  .content-vid {
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: 2rem 1.5rem;
  }

  .text-box {
    position: static;
    max-width: 90%;
    margin-bottom: 2rem;
    text-align: center;
  }

  .location-list {
    position: static;
    max-height: none;
    padding-right: 0;
    text-align: center;
  }

  .location-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .location-list li {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .content-vid {
    padding: 1.5rem 1rem;
    height: 20rem;
  }

  .text-box {
    max-width: 100%;
    text-align: center;
  }

  .text-box p,
  .text-box a {
    font-size: 1rem;
  }

  .location-list {
    text-align: center;
  }

  .location-list h4 {
    font-size: 0.75rem;
  }

  .location-list ul {
    flex-direction: column;
    align-items: center;
  }

  .location-list li {
    font-size: 1rem;
  }
}

@media screen and (max-width: 479px) {
  .content-vid {
    padding: 1rem 0.75rem;
  }

  .text-box p,
  .text-box a {
    font-size: 0.9rem;
  }

  .location-list li {
    font-size: 0.9rem;
  }
}
