:root {
  --first-color: #03b987;
  --second-color: #04523d;
}
img {
  max-width: 100%;
}
main img {
  margin: 10px 0 20px !important;
}
a {
  transition: 0.3s;
}
body {
  word-break: break-word;
}

.main-content .row {
  justify-content: center;
}
.sponsored-links {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  list-style-type: none;
  padding: 10px 0 20px;
}
.sponsored-links li {
  display: flex;
}
.sponsored-links a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 24px 30px;
  border-radius: 20px;
  gap: 10px;
  background-color: var(--first-color);
  color: white;
}
.sponsored-links a:hover {
  background-color: var(--second-color);
}
.sponsored-links a::before, .sponsored-links a::after {
  content: "\00BB";
  font-size: 24px;
  margin-bottom: 2px;
}
.sponsored-links a::after {
  margin-left: auto;
}
h2 {
  padding: 20px 0 10px;
}
@media screen and (max-width:767.98px) {
  .sponsored-links {
    padding: 0;
  }
  .sponsored-links a {
    padding: 16px 20px;
  }
}

/*footer*/
#footer {
  padding: 40px 0 20px;
  background-color: #000;
  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: 1fr 1fr 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: 18px !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(--first-color);
}
#footer a:hover {
  color: #fff;
}
#footer ul {
  padding-left: 0;
  margin-bottom: 0;
}
#footer li {
  display: flex;
}
#footer .footer-doc {
  font-size: 16px;
  margin-bottom: 8px;
}
.copyright {
  border-top: 2px solid var(--first-color);
  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: 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: #000;
}
.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: 80px 20px;
}
.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(--first-color);
}
.docs a:hover {
  color: var(--second-color);
}
@media screen and (max-width: 767.98px) {
  .docs {
    padding: 50px 0px;
  }
}