:root {
  --primary-color: #fad325;
  --secondary-color: rgb(255, 135, 70);
  --check: #bfe2f0;
  --link-color: #fff;
  --text-color: #e0e0e0;
  --text-color-dark: #727272;
  --sidebar-card-bg: #f4ffec;
  --sidebar-widget-border: #d6d6d6;
  --black-shade: #2a2a2e;
}

.secondary-color {
  background-color: var(--secondary-color) !important;
}
.primary-color {
  background-color: var(--primary-color) !important;
}
.secondary-color-text {
  color: var(--secondary-color) !important;
}
.primary-color-text {
  color: var(--primary-color) !important;
}
.black-shade {
  background-color: var(--black-shade);
}

.wp-fixed {
  position: fixed;
  bottom: 1vw;
  left: 1vw;
  z-index: 1111111;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}
.wp-fixed-title {
  font-size: 0.8vw;
  z-index: 111;
  /* display: none; */
  transform: translateX(-5vw);
  opacity: 0;
  color: #fff;
  padding: 0.3vw 1vw;
  transition: all 0.5s ease-in-out;
  border-radius: 1vw;
  background-color: #3bc04c;
}
.wp-fixed:hover .wp-fixed-title {
  /* display: block; */
  opacity: 1;
  transform: translateX(0);
}

.wp-fixed img {
  width: 70px;
  height: 70px;
}

.checked-list-items li::before {
  content: "✅";
  margin-right: 8px;
}
.unchecked-list-items li::before {
  content: "❌";
  margin-right: 8px;
}

#scrollTopbtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: var(--primary-color);
  color: black;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#scrollTopbtn:hover {
  background-color: #555;
}

.footer-link {
  color: var(--secondary-color);
}
.custom-link {
  text-decoration: none;
  font-weight: bold;
  color: var(--secondary-color);
}

.footer-link:hover {
  color: var(--primary-color);
}

.header-tape-link {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.nav-link.active {
  color: var(--secondary-color) !important;
}
.custom-aspect-ratio {
  aspect-ratio: 5 / 3;
  object-fit: cover;
}
.custom-caption-slider {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: linear-gradient(
    to bottom,
    rgb(255 255 255 / 0%),
    rgb(0 0 0 / 70%)
  );
  text-shadow: -4px 2px 20px #000000;
}
.custom-caption-slider h5 {
  font-size: 5rem;
  font-weight: bold;
}

@media only screen and (max-width: 600px) and (min-width: 374px) {
  .custom-caption-slider h5 {
    font-size: 2rem;
  }
  .taxi-fixed {
    bottom: 5rem !important;
  }
  .head-tape-links {
    font-size: 0.7rem;
  }
  .head-tape-links a:nth-child(2){
    display: none;
  }
}
.taxi-fixed {
  position: fixed;
  bottom: 7vw;
  left: 1vw;
  z-index: 1111111;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}
.taxi-fixed-title {
  font-size: 0.8vw;
  z-index: 111;
  /* display: none; */
  transform: translateX(-5vw);
  opacity: 0;
  color: #fff;
  padding: 0.3vw 1vw;
  transition: all 0.5s ease-in-out;
  border-radius: 1vw;
  background-color: var(--primary-color);
}
.taxi-fixed:hover .taxi-fixed-title {
  /* display: block; */
  opacity: 1;
  transform: translateX(0);
}

.taxi-fixed img {
  width: 60px;
  height: 60px;
}
