* {
  padding: 0;
  margin: 0;
  box-sizing: border-box; /* Added to ensure padding and border are included in the element's total width and height */
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}
.top-header {
  width: screen;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  height: 4rem;
  background-color: white;
}
@media (max-width: 768px) {
  .top-header {
    flex-direction: row;
    gap: 1rem;
    height: fit-content;
    width: 100%;
  }
}

.top-header-img {
  width: fit-content;
  height: 2rem;
}
.top-header-box {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.top-header-box-btn {
  width: fit-content;
  padding: 1rem;
  height: 2.5rem;
  background-color: #d30000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: medium;
  color: white;
  border: none !important;
}
.top-header-box-btn-2 {
  width: fit-content;
  padding: 1rem;
  height: 2.5rem;
  background-color: #d30000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: medium;
  color: white;
  border: none !important;
}
@media (max-width: 568px) {
  .top-header-img {
    width: fit-content;
    height: 1.5rem;
  }
  .top-header-box-btn {
    font-size: 14px;
  }
  .top-header-box {
    gap: 0.5rem;
  }
  .top-header-box-btn-2 {
    display: none;
  }
  .top-header-box-btn {
    display: none;
  }
}
