* {
  box-sizing: border-box;
}
body {
  padding: 0;
  margin: 0;
  background: url("../img/bg.webp");
  min-height: 100vh;
  padding-top: 60px;
  position: relative;
  font-family: "Golos Text", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #fff;
}

body::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(
    0deg,
    rgba(78, 0, 0, 0.5) 0%,
    rgba(78, 0, 0, 0.5) 100%
  );
}

.container {
  max-width: calc(100% - 40px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.logo {
  display: block;
  margin: auto;
}

.main-btn,
.search-wrapper button {
  border-radius: 8px;
  background: linear-gradient(92deg, #ffb331 1.1%, #fffcd1 100%);
  color: #4e0000;
  text-align: center;
  font-family: "Golos Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  text-transform: uppercase;
  width: 100%;
  outline: none;
  border: 1px solid #ffb331;
  padding: 10px;
  position: relative;
  margin-top: 48px;
  transition: all 0.3s;
}

.main-btn.active {
  background: #4e0000;
  color: #fff;
}

.main-btn svg {
  position: absolute;
  top: 20px;
  right: 20px;
  transition: all 0.3s;
}

.main-btn.active svg path {
  transition: all 0.3s;
}
.main-btn.active svg {
  transform: rotate(180deg);
}

.main-btn.active svg path {
  fill: #fff;
}

.search-wrapper {
  display: none;
  gap: 4px;
  margin-top: 4px;
}

.search-wrapper.active {
  display: flex;
}

input {
  border-radius: 8px;
  border: 1px solid #ffb331;
  background: #fff;
  color: #4e0000;
  padding: 8px;
  font-size: 16px;
  width: 100%;
  outline: none;
}

.search-wrapper button {
  margin-top: 0;
  max-width: 87px;
  font-size: 14px;
}

.search-results {
  margin-top: 8px;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  display: none;
  max-height: 300px;
  overflow: auto;
  padding: 8px;
}

.search-results.active {
  display: block;
}

.search-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #a36e6e;
}
