:root {
  --first-color: #ef3300;
  --second-color: #fe6a16;
}
html {
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
}
a {
  transition: 0.3s;
}
header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
}
header img {
  width: 200px;
}

#one {
  position: relative;
  background: url(../images/1.webp) no-repeat center/cover;
  padding-top: 100px;
}
#one::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
#one input {
  outline: none !important;
  box-shadow: none;
}
#one input:focus {
  border-color: var(--second-color);
}
#five {
  background: url(../images/12.webp) no-repeat center/cover;
}
#footer {
  padding: 40px 0 20px;
  border-top: 1px solid var(--second-color);
}
#footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footer h3 {
  font-family: inherit;
  font-size: 22px !important;
  line-height: normal !important;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
  color: inherit;
  text-align: center;
}
#footer p, #footer a {
  font-size: 16px;
  line-height: normal;
  margin-bottom: 6px;
  color: #4b5563;
  text-align: center;
}
#footer a {
  text-decoration: none !important;
  transition: 0.3s;
  color: var(--first-color);
}
#footer a:hover {
  color: var(--second-color);
}
#footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-bottom: 30px;
  list-style-type: none;
}
#footer .footer-doc {
  font-size: 16px;
  margin-bottom: 8px;
}
#footer img {
  width: 250px;
  margin-bottom: 30px;
}
.copyright {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width:767.98px) {
  header {
    padding: 16px 1.25rem;
  }
  #one {
    background: #15151a;
  }
  .footer-info {
    grid-template-columns: 1fr;
  }
}
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 200px 0 150px;
}
.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: inherit;
}
.thanks p.thanks-text {
  color: var(--first-color);
}
@media screen and (max-width: 767.98px) {
  .thanks {
    padding: 150px 0 100px;
  }
  .thanks p {
    font-size: 14px;
  }
}
.docs {
  word-break: break-word;
  padding: 120px 20px 100px;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
}
.docs h2 {
  margin-bottom: 10px;
  font-size: 32px;
}
.docs h3 {
  margin-bottom: 10px;
  font-size: 26px;
}
.docs li, .docs p {
  color: inherit;
  line-height: 1.929;
}
.docs a {
  text-decoration: none !important;
  color: var(--first-color);
}
.docs a:hover {
  color: var(--second-color);
}
@media screen and (max-width: 767.98px) {
  .docs {
    padding: 100px 0px 50px;
  }
  .docs h1 {
    font-size: 32px;
  }
  .docs h2 {
    font-size: 28px;
  }
}