body  {
	margin: 0;
	height: 5%;
    background: url(/res/bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    font-family: Arial, sans-serif;
}
.wrapper {
  position: relative;
  width: 100%;
}

.scroll-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 40px;

  scrollbar-width: none;
}

.scroll-row::-webkit-scrollbar {
  display: none;
}

.card {
  min-width: 180px;
  background: rgba(0,0,0,0.45);
  overflow: hidden;
  flex-shrink: 0;
  text-decoration: none;
  transition:
  transform 0.2s,
  box-shadow 0.2s;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 12px 12px;
  font-size: 14px;
}

.card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;

  transition:
    filter 0.25s,
    transform 0.25s;
}

.card:hover {
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.card:hover img {
  filter: brightness(0.7);
  transform: scale(1.03);
}

.card p {
  margin: 0;
  padding: 12px;
  font-size: 14px;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;

  background: rgba(0,0,0,0.45);
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.scroll-btn:hover {
  background: rgba(0,0,0,0.7);
}

.left {
  left: 5px;
}

.right {
  right: 5px;
}

.leftC,
.centerC,
.rightC {
  display: flex;
  align-items: center;
  gap: 4px;
}

.material-symbols-outlined {
  font-size: 18px;
}

.header {
  width: 94%;
  margin-left: 1%;
  padding-left: 4%;
  text-align: center;
  background: black;
  color: white;
  opacity: 0.5;
}

.footer {
  width: 94%;
  margin-left: 1%;
  padding: 4%;
  text-align: center;
  background: black;
  color: white;
  opacity: 0.5;
}

.navbar {
  width: 98%;
  margin-left: 1%;
  overflow: hidden;
  background-color: rgba(20, 20, 20, .5);
}

.cont {
  width: 94%;
  margin-left: 1%;
  padding: 2%;
  background:  rgba(0, 0, 0, .5);
  color: white;
}

p {
  color: white;
  font-weight: bold;
}

a {
  color: white;
  font-weight: bold;
}

h3 {
  color: white;
}

.navbarbutton {
  float: left;
  display: block;
  color: white;
  background-color: rgba(0, 0, 0, .3);
  padding: 14px 20px;
  text-decoration: none;
  font-weight: bold;
}

.navbarbutton2 {
  min-width: 100%;
  float: left;
  display: block;
  color: white;
  background-color: rgba(0, 0, 0, .8);
  padding: 14px 20px;
  text-decoration: none;
}

.navbarbutton:hover {
  background-color: white;
  color: black;
}

.navbarbutton2:hover {
  background-color: white;
  color: black;
}

.dropdown-content3 {
  display: none;
  position: absolute;
  z-index: 1;
  right: 80px;
}

.drop3:hover .dropdown-content3 {
  display: block;
}

.dropdown-content2 {
  display: none;
  position: absolute;
  z-index: 1;
}

.drop2:hover .dropdown-content2 {
  display: block;
}

.dropdown-content1 {
  display: none;
  position: absolute;
  z-index: 1;
}

.drop1:hover .dropdown-content1 {
  display: block;
}