*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  scroll-behavior: smooth;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  color: inherit;
}

ul,
ol {
  list-style: none;
}

body {
  overflow-x: hidden;
  background-color: #fff;
  color: #333;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-left: 34px;
  padding-right: 34px;
}
header {
  padding-top: 20px;
  padding-bottom: 20px;
}
section {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-header {
  max-width: 250px;
}
.link-wrapper {
  display: flex;
  gap: 20%;
  width: 100%;
}
.link-btn {
  color: #fff;
  background-color: rgb(6, 62, 159);
  border-radius: 6px;
  padding: 15px 27px;
  margin-top: 50px;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
}
.link-btn:hover {
  background-color: rgb(2, 3, 110);
}
.support-wrapper {
  background-color: rgb(6, 62, 159);
}
.support-content {
  color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
}
.text-strong {
  font-weight: 800;
  margin-left: 15%;
}
.text-hero {
  max-width: 900px;
  margin: 28px auto;
  font-size: 18px;
  text-align: center;
}
.text-details {
  text-align: left;
}
footer {
  background-color: #dec000;
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer-copyright {
  margin-top: 20px;
  margin-bottom: 40px;
}
.no-wrap {
  white-space: nowrap;
}
.img-footer {
  max-width: 80px;
  margin-top: 10px;
}
.footer-wrapper,
.footer-copyright {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.nav-footer {
  display: flex;
  gap: 18px;
}
.copyright-text {
  text-transform: uppercase;
  max-width: 500px;
}
.footer-copyright {
  border-top: 2px solid rgb(6, 62, 159);
}

@media screen and (max-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .link-wrapper {
    flex-direction: column;
    gap: 26px;
  }
  .footer-copyright {
    font-size: 12px;
  }
}
