/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: white;
  margin: auto;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
} */
.logo-box {
  width: 100%;

  border: 2px solid #bfbdbd;
  border-radius: 16px;
  position: relative;
  padding: 8px 10px 8px 10px;
  margin-top: 5%;
}
.logo-box h3 {
  padding-left: 24px;
  font-size: 26px;
  font-weight: 700;
  color: #646464;
}
.middle-logo-images {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
  height: 60%;
  margin: auto;
  padding: 10px;
  cursor: pointer;
  position: relative;
  gap: 20px;
  padding: 4px 6px 14rem 6px;
}
.middle-logo-images img {
  height: 100%;
  max-height: 100%;
  object-fit: cotain;
  width: auto;
  transition: opacity 0.3s ease;
  object-fit: contain;
  opacity: 1;
}

.logo-box-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  height: 10%;
  cursor: pointer;
  position: absolute;
  bottom: 30px;
  left: 50%; /* Move the footer 50% to the right */
  transform: translateX(-50%);
  gap: 20px;
  box-sizing: border-box;
}
.logo-box-footer-images {
  display: flex;
  align-items: center;
}
.footer-logo-image {
  border: 3px solid #ccc9c9;
  transition: border-color 0.3s ease;
}
.footer-logo-images img {
  height: 100%;
  width: auto;
  object-fit: contain;
  padding: 1px; /* 10px bigger than the button height (50px) */
}
.logo-box-footer button {
  background: #7db701;
  border: none;
  border-bottom: 3px solid #578307;
  color: #fff;
  font-size: 20px;
  display: inline-block;
  padding: 0 19px;
  height: 50px;
  white-space: nowrap;
  cursor: pointer;
}
.footer-logo-image.active {
  border-right: none;
  border: 3px solid black;
}
.middle-logo-images i {
  font-size: 30px;
  transform: rotate(180deg);
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5),
    /* Shadow at the top */ 0px 2px 11px rgba(0, 0, 0, 0.3);
  color: rgb(250, 249, 249);
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease; /* Smooth transition for icons */
}
.middle-logo-images:hover i {
  opacity: 1; /* Show icons on hover */
}
logo-box-footer:focus {
  outline: none; /* Remove outline when the footer gains focus */
}
