@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
body {
  font-family: "Poppins", sans-serif;
  font-style: normal;
}
.wittgenstein-font {
  font-family: "Wittgenstein", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.btn-theme {
  background-color: #800000;
  color: white;
  border-radius: 25px;
}
.btn-theme-outline {
  background-color: white;
  border: 2px solid #800000;
  border-radius: 25px;
}
.btn-theme-outline:hover {
  background-color: #80000072;
  border: 2px solid #800000;
  border-radius: 25px;
}
.btn-theme:hover {
  background-color: #800000e2;
  color: white;
  border-radius: 25px;
  text-decoration: none;
}
.bg-theme {
  background-color: #800000;
}
.bg-rate {
  background-color: #b22222;
}
.btn-rate {
  background-color: #b22222;
  border: 1px solid transparent;
}
.text-theme {
  color: #800000;
}
.nav-link {
  color: black;
  font-weight: 500;
}
.nav-link:hover {
  color: #800000;
  font-weight: 600;
}

.nav-hover:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* remove the gap so it doesn't close */
}
.dropdown-menu {
  border-radius: 0 !important;
  --bs-dropdown-link-active-bg: #e9ecef !important;
}

.fw-600 {
  font-weight: 600;
}
.fw-500 {
  font-weight: 500;
}
.border-none {
  border: 1px solid transparent !important;
}

.form-control {
  border-radius: 0 !important;
}

.carousel-control-next,
.carousel-control-prev {
  transition: none !important;
  opacity: 1 !important;
  width: 5% !important;
}

.carousel-control-next-icon {
  background-image: url(../../images/arrow-right.png);
  height: 2.5rem;
  width: 2.5rem;
}

.carousel-control-prev-icon {
  background-image: url(../../images/arrow-left.png);
  height: 2.5rem;
  width: 2.5rem;
}

.bx-wrapper {
  max-width: 100% !important;
  border-left: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
}

/* Image Gallery */
.slide-container {
  display: flex;
  position: relative;
}

.li-none {
  list-style: none;
}

.thumbnails {
  display: flex;
  flex-direction: column;
  line-height: 0;
  width: 25%;

  li {
    flex: auto;
  }

  a {
    display: block;
  }

  img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
  }
}

.slides {
  position: relative;
  overflow: hidden;
  width: 75%;
  display: flex;
  justify-content: center;

  li {
    height: 100%;
    position: absolute;
    z-index: 1;
  }

  img {
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
}

.slides li:target {
  z-index: 9;
  -webkit-animation: slide 1s 1;
}

.slides li:not(:target) {
  -webkit-animation: hidden 1s 1;
}

@keyframes slide {
  0% {
    transform: translateY(-10%);
  }

  100% {
    transform: translateY(0%);
  }
}

@keyframes hidden {
  0% {
    z-index: 2;
  }

  100% {
    z-index: 2;
  }
}
