.border-subtle {
  --bs-border-color: var(--bs-border-color-subtle);
}

.custom-vr {
  height: 75px;
  background-color: var(--bs-border-color-subtle);
}

@media (max-width: 479.98px) {
  .h3 {
    font-size: 1.125rem;
    line-height: 1.111111;
    letter-spacing: -0.0125rem;
  }
}

.icons-sm {
  width: 2.5rem;
  height: 2.5rem;
}

.icons-md {
  width: 3.125rem;
  height: 3.125rem;
}

.icons-lg {
  width: 4.375rem;
  height: 4.375rem;
}

@media (min-width: 768px) {
  .icons-sm {
    width: 3.125rem;
    height: 3.125rem;
  }

  .icons-md {
    width: 3.75rem;
    height: 3.75rem;
  }

  .icons-lg {
    width: 6.25rem;
    height: 6.25rem;
  }
}

.out-of-grid {
  position: static;
}

.out-of-grid img {
  width: 100%;
  min-width: 100%;
  min-height: 165px;
}

@media (min-width: 1024px) {
  .out-of-grid {
    position: absolute;
  }

  .out-of-grid img {
    width: auto;
  }
}

[data-bs-theme="light"] .dark-show {
  display: none;
}

[data-bs-theme="dark"] .dark-show + * {
  display: none;
}

iframe {
  min-height: 10.625rem;
}

.carousel-inner.showcase-images {
  min-height: calc(216vw - 208px);
}

.showcase-images img {
  border-radius: 12% / 5%;
  box-shadow: 10px 15px 50px -5px rgba(var(--bs-secondary-rgb), 0.2);
  transition: transform 0.3s ease-in-out;
  transform-origin: center;
}

@media (min-width: 768px) {
  .showcase-images.active > :hover img {
    transform: scale(1.2);
  }
}

@media (prefers-reduced-motion) {
  .showcase-images.active > :hover img {
    transform: none;
  }
}

@media (min-width: 768px) {
  .showcase-images > .col {
    transform: translateY(-50px);
  }

  .showcase-images.active > .col {
    animation: enter 0.75s 4 alternate,
      enter-smooth 1.25s 1 forwards ease-in-out;
  }
}

@media (prefers-reduced-motion) {
  .showcase-images > .col {
    transform: none;
  }

  .showcase-images.active > .col {
    animation: none;
  }
}

@keyframes enter {
  0% {
    transform: translateY(-50px);
    animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
  }
  100% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
  }
}

@keyframes enter-smooth {
  0% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
  }
}

.showcase-images.active > :nth-child(1) {
  animation-delay: 0ms, 3000ms;
}

.showcase-images.active > :nth-child(2) {
  animation-delay: 100ms, 3100ms;
}

.showcase-images.active > :nth-child(3) {
  animation-delay: 200ms, 3200ms;
}

.showcase-images.active > :nth-child(4) {
  animation-delay: 300ms, 3300ms;
}

.showcase-images.active > :nth-child(5) {
  animation-delay: 400ms, 3400ms;
}

.showcase-images.active > :nth-child(6) {
  animation-delay: 500ms, 3500ms;
}

.ticks-list > li {
  opacity: 0;
}

.ticks-list.active > li {
  animation: enter-start-smooth 0.75s 1 forwards ease-in-out;
}

@media (prefers-reduced-motion) {
  .ticks-list > li {
    opacity: 1;
  }

  .ticks-list.active > li {
    animation: none;
  }
}

@keyframes enter-start-smooth {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.ticks-list.active > :nth-child(2) {
  animation-delay: 250ms;
}

.ticks-list.active > :nth-child(3) {
  animation-delay: 500ms;
}

.ticks-list.active > :nth-child(4) {
  animation-delay: 750ms;
}

.ticks-list.active > :nth-child(5) {
  animation-delay: 1000ms;
}

.ticks-list.active > :nth-child(6) {
  animation-delay: 1250ms;
}

.mobile-steps > * {
  opacity: 0;
}

.mobile-steps.active > * {
  animation: enter-bottom-smooth 0.75s 1 forwards ease-in-out;
}

@media (prefers-reduced-motion) {
  .mobile-steps > * {
    opacity: 1;
  }

  .mobile-steps.active > * {
    animation: none;
  }
}

@keyframes enter-bottom-smooth {
  0% {
    opacity: 0;
    transform: translateY(75px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-steps.active > :nth-child(2) {
  animation-delay: 0.75s;
}

.mobile-steps.active > :nth-child(3) {
  animation-delay: 2s;
}

.heads {
  margin: 0 10px;
}

.highlight {
  color: #fff; /* Example greyish text color */
}

.sub-heading {
  color: #616161;
}
.nav-icon {
  padding: 1rem;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}

/* Apply the animation to the button when hovered */

.custom-image-container {
  width: 100%;
  height: 400px; /* Adjust height as needed */
  overflow: hidden;
}

.custom-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.content {
  display: flex;
  align-items: center;
}
.text {
  flex: 1;
  padding-left: 20px;
}
.content img {
  max-width: 100%;
  height: auto;
}
.icon {
  width: 250px;
  height: 250px;
}

@media (max-width: 768px) {
  .icon {
    width: 500px;
    height: 300px;
  }
}

.feedback-btn {
  position: fixed;
  right: -35px;
  top: 80%;
  transform: translateY(-50%) rotate(90deg);
  background-color: #ff7900;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 1000;
}

.rating-btn {
  width: 40px;
  height: 40px;
  margin: 2px;
  border: solid 1px;
  border-radius: 50%;
  cursor: pointer;
}
.btn-red,
.btn-orange,
.btn-yellow,
.btn-lightgreen,
.btn-green {
  background-color: transparent;
}
.btn-red.active,
.rating-btn:hover .btn-red {
  background-color: #f44336;
}

.btn-yellow.active,
.rating-btn:hover .btn-yellow {
  background-color: #f57c00;
}

.btn-green.active,
.rating-btn:hover .btn-green {
  background-color: #4caf50;
}

.modal-dialog {
  width: 50%;
  max-width: none;
}
.success-dialog {
  width: 30%;
  max-width: none;
}
@media (max-width: 768px) {
  .modal-dialog {
    width: 90%; /* Width for tablets and small screens */
  }
}

/* Custom modal width for mobile */
@media (max-width: 480px) {
  .modal-dialog {
    width: 95%; /* Width for mobile devices */
  }
}
