#hero {
  padding: 150px 0 100px;
}
footer {
  background: linear-gradient(94.16deg, var(--primary) -32.52%, var(--secondary) 134.52%);
}
/*footer*/
#footer {
  padding: 40px 0 20px;
  color: #fff;
}
#footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footer .container::before,
#footer .container::after {
  display: none !important;
}
#footer .footer-info {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#footer img {
  max-width: 250px;
  height: auto;
  margin: 0 0 15px;
}
#footer h3 {
  font-size: 22px !important;
  line-height: normal !important;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
}
#footer p,
#footer a {
  font-size: 14px;
  line-height: normal;
  margin-bottom: 6px;
}
#footer a {
  text-decoration: none !important;
  transition: 0.3s;
  color: var(--black-2);
}
#footer a:hover {
  color: #fff;
}
#footer ul {
  padding-left: 0;
}
#footer li {
  display: flex;
}
#footer .footer-doc {
  font-size: 16px;
  margin-bottom: 8px;
}
.copyright {
  border-top: 2px solid var(--primary);
  padding-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  #footer .footer-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px 0px;
    margin-bottom: 30px;
  }
}

.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;
}
.thanks p.thanks-text {
  color: var(--primary);
}
@media screen and (max-width: 767.98px) {
  .thanks {
    padding: 150px 0 100px;
  }
  .thanks p {
    font-size: 14px;
  }
}
.docs {
  word-break: break-word;
  padding: 140px 20px 100px;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  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(--primary);
}
.docs a:hover {
  color: var(--black-2);
}
@media screen and (max-width: 767.98px) {
  .docs {
    padding: 170px 0px 50px;
  }
}

#cookPopup {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0px 0px 20px rgba(255, 164, 192, 0.4);
  z-index: 9999
}
#cookPopup p {
  margin: 0;
  text-align: center;
}
#cookPopup a {
  transition: 0.3s;
  color: var(--primary);
}
#cookPopup a:hover {
  color: var(--black-2);
}
.cookPopup_btn {
  padding: 7px 15px;
  cursor: pointer;
  border: 0;
  background: var(--primary);
  border-radius: 4px;
  font-weight: 500;
  color: white;
  transition: 0.3s;
}
.cookPopup_btn:hover {
  background: var(--secondary);
}
@media(min-width:576px) {
  #cookPopup.show {
    display: flex;
    align-items: center
  }
}
@media(max-width:575px) {
  #cookPopup.show {
    display: block;
    text-align: left
  }
  .cookPopup_btn {
    margin: 10px 0 0 0
  }
}
.cookPopup_title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: var(--black-2);
}
.cookPopup_desc {
  font-size: 16px;
}
.show {
  display: flex !important
}