body {
  font-family: "Raleway", sans-serif;
  background-color: #fefefe;
  color: #2b2b2b;
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

a {
  color: #777;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

header {
  background-color: #fefefe;
  padding: 20px 20px 10px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
header h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin: 20px 0;
  color: rgb(17.5, 17.5, 17.5);
}

.navbar {
  padding: 0;
}
.navbar .navbar-brand {
  font-size: 1.5rem;
  font-family: "Playfair Display", serif;
  color: #2b2b2b;
}
.navbar .navbar-nav .nav-link {
  color: #2b2b2b;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
}

.hero {
  position: relative;
  height: 350px;
  background: linear-gradient(to bottom, #fefefe, hsl(0, 0%, 104.6078431373%));
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.hero h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #2b2b2b;
  margin: 20px 0;
}

.card {
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
.card img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #2b2b2b rgb(221.5, 221.5, 221.5);
}
.card:hover {
  transform: translateY(-5px);
}
.card .card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: #2b2b2b;
  margin: 15px 0;
}

.sidebar {
  background-color: #fefefe;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

footer {
  text-align: center;
  padding: 20px 0;
  background-color: #f7f7f7;
  font-size: 0.875rem;
  color: #777;
  margin-top: 10px;
}

.breadcrumb {
  margin-top: 10px;
  margin-bottom: 20px;
}

.ribbon {
  position: absolute;
  top: 100px;
  left: -30px;
  width: 190px;
  background: red;
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 15px;
  text-align: center;
  transform: rotate(-45deg);
  transform-origin: top left;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.row .seealso {
  height: 100px;
}

.carousel img {
  border: 1px solid gray;
  padding: 0px;
  aspect-ratio: 3/4;
  object-fit: contain;
  vertical-align: top;
  display: inline-block;
  vertical-align: top;
}

.carousel-thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  aspect-ratio: 1/1;
  border: 2px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.carousel-thumbnails img.active {
  border-color: #007bff;
}

.carousel-thumbnails img.active {
  border-color: #007bff;
}

.carousel-thumbnails img:hover {
  transform: scale(1.5);
}

.pagination {
  justify-content: center;
  padding: 10px 0;
  font-family: "Playfair Display", serif;
  border-radius: 0;
}

.pagination .page-item {
  margin: 0 5px;
  border-radius: 10px;
}

.page-item:first-child .page-link {
  border-radius: 100%;
}

.page-item:last-child .page-link {
  border-radius: 100%;
}

.pagination .page-link {
  color: #2b2b2b;
  background-color: #fefefe;
  border: 1px solid #ddd;
  font-weight: 400;
  transition: all 0.3s ease;
  border: 0;
  border-radius: 100%;
  display: inline-block;
  vertical-align: center;
  height: 32px;
  line-height: 15px;
}

.pagination .page-link:hover {
  color: #fff;
  background-color: #464646;
  text-decoration: none;
}

.pagination .page-item.active .page-link {
  color: #525252;
  background-color: #d4d4d5;
  border: 0px;
  font-weight: 500;
}

.pagination .page-item.disabled .page-link {
  color: #ccc;
  border-color: #ddd;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination .page-link:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/*# sourceMappingURL=main.css.map */