.top-header {
  background-color: #df2919;
}
.top-header p {
  font-size: 16px;
  color: white;
}
.verification {
  display: none;
}
.verification--open {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
  top: 0px;
  background-color: #171717a1;
  overflow: hidden;
  position: fixed;
  z-index: 10000;
}
.verification__area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 802px;
  padding: 62px 78px 80px;
  background-color: #121212;
  border-radius: 5px;
}
.verification__text {
  margin-bottom: 30px;
  font-size: 2em;
  line-height: 130%;
  text-align: center;
}
.verification__btn {
  min-width: 262px;
  margin-bottom: 20px;
  border-radius: 5px;
}
.verification__btn:active {
  opacity: 0.5;
}
@media screen and (max-width: 991.98px) {
  .verification__area {
    width: 600px;
    padding: 32px 48px;
    background-size: contain;
  }
}
@media screen and (max-width: 767.98px) {
  .verification__area {
    width: 400px;
    padding: 32px;
    background-position: center center;
  }
  .verification__text {
    font-size: 1em;
  }
}
@media screen and (max-width: 575.98px) {
  .verification__area {
    width: 280px;
    padding: 16px;
  }
}
.copyright-wrap .text-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 150px 0;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.thanks img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.thanks p {
  text-align: center;
  font-size: 18px;
  color: white;
}
.thanks p.thanks-text {
  font-weight: bold;
  color: #df2919;
}
.docs {
  word-break: break-word;
  padding: 100px 0;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 60px;
}
.docs ul {
  list-style-type: disc !important;
  padding-left: 30px;
}
.docs li {
  list-style-type: disc;
}
.docs li,
.docs p {
  color: inherit;
  line-height: 1.5;
  margin-bottom: 16px;
}
.docs a {
  text-decoration: none !important;
  color: #df2919;
}
.docs a:hover {
  color: white;
}
@media screen and (max-width: 767.98px) {
  .docs h1 {
    font-size: 44px;
  }
  h2 {
    font-size: 32px;
  }
}