html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

html {
  font-size: 10px;
}

body {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  background: #212121;
  color: #FFF;
  overflow-x: hidden;
}

.mobileOnly {
  display: none;
}
@media (max-width: 900px) {
  .mobileOnly {
    display: inherit;
  }
}

.container {
  max-width: 324px;
  width: 85%;
  margin: 0 auto;
}

.aguia {
  position: absolute;
  top: 0;
  left: 41%;
  z-index: -1;
}
@media (max-width: 900px) {
  .aguia {
    width: 100%;
    top: 0;
    left: 0;
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  max-width: 324px;
  margin: 0 auto;
}
.header a {
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #797979;
  text-decoration: none;
  transition: 0.2s;
}
.header a:hover {
  filter: brightness(120%);
}

.items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.items a {
  transition: 0.5s;
}
.items a:hover {
  transform: scale(1.05);
}
.items h3 {
  color: #7D7D7D;
  font-feature-settings: "clig" off, "liga" off;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14.882px; /* 106.297% */
  letter-spacing: 0.149px;
  margin-top: 13px;
}
.items .button {
  width: 100%;
  background: #202020;
  border: 1px solid #999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  gap: 15px;
  font-size: 14px;
  color: #FFF;
  text-decoration: none;
}

.social {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.4rem;
}
.social a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-feature-settings: "clig" off, "liga" off;
  font-family: "Lexend", sans-serif;
  text-align: center;
  min-width: 92px;
  padding: 1.15rem 0;
  background: #333333;
  color: #797979;
  text-decoration: none;
  font-size: 12px;
}

a.support-btn {
  display: flex;
  width: 300px;
  padding: 15px 25px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 55px;
  background: #C66827;
  color: #FEFDE9;
  text-align: center;
  font-feature-settings: "clig" off, "liga" off;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 102%;
  letter-spacing: 0.149px;
  text-decoration: none;
  transition: 0.2s;
}
a.support-btn:hover {
  filter: brightness(120%);
}

.section-title {
  width: 95%;
  margin: 2.5rem auto;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  color: #FFF;
  padding: 10px;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #212121;
}
.section-title::before {
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(255, 107, 0, 0.25);
  position: absolute;
  z-index: -1;
}
@media (max-width: 600px) {
  .section-title {
    width: 73%;
  }
}

.logo {
  margin: 10px 0;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 36px 50px;
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  font-style: normal;
  color: #949494;
}
footer a {
  text-decoration: none;
  color: #949494;
  transition: 0.2s;
  text-transform: uppercase;
  z-index: 1;
}
footer a:hover {
  color: #b9b9b9;
}
footer .links {
  display: flex;
  padding: 10px 15px;
  align-items: center;
  gap: 10px;
  background: black;
}
footer::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #333333;
  position: absolute;
  z-index: -1;
}
@media (max-width: 900px) {
  footer {
    font-size: 10px;
  }
}

/*# sourceMappingURL=style.min.css.map */
