@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;600&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: inherit;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

address {
  font-style: normal;
}

ul,
ol {
  list-style-type: none;
}

:root {
  --strong-cyan: hsl(171, 66%, 44%);
  --light-blue: hsl(233, 100%, 69%);
  --color-text-strong: hsl(210, 10%, 33%);
  --color-text-light: hsl(201, 11%, 66%);
  --white: #fff;
}

.screenreader {
  position: absolute !important;
  left: -100vw;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
}

.hero-section {
  padding-inline: 8.5333333%;
}
@media screen and (min-width: 75rem) {
  .hero-section {
    padding-inline: calc(50vw - 555px);
  }
}
.hero-section::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 363px;
  top: 0;
  left: 0;
  background-image: url(/images/bg-header-mobile.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 75rem) {
  .hero-section::before {
    background-image: url(/images/bg-header-desktop.png);
  }
}
.hero-section .logo {
  margin: 123px auto 0;
  display: block;
  width: 125px;
}
@media screen and (min-width: 75rem) {
  .hero-section .logo {
    margin-top: 128px;
  }
}
.hero-section .headline {
  margin-top: 64px;
  font-weight: 600;
  font-size: 2rem;
  line-height: 125%;
  text-align: center;
  letter-spacing: -0.521739px;
  color: var(--color-text-strong);
}
@media screen and (min-width: 75rem) {
  .hero-section .headline {
    margin-top: 56px;
    font-size: 2.875rem;
    line-height: 126.0869565%;
  }
}
.hero-section .subheadline {
  margin: 16px auto 0;
  max-width: 730px;
  font-size: 1rem;
  line-height: 162%;
  text-align: center;
  letter-spacing: 0.12px;
  color: var(--color-text-light);
}
@media screen and (min-width: 75rem) {
  .hero-section .subheadline {
    font-size: 20px;
    line-height: 150%;
  }
}
.hero-section .cta-component {
  margin-top: 3rem;
}

.header-component {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 75rem) {
  .header-component {
    gap: 19px;
  }
}
.header-component .section-title {
  max-width: 730px;
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 125%;
  text-align: center;
  letter-spacing: -0.456522px;
  color: var(--color-text-strong);
}
@media screen and (min-width: 75rem) {
  .header-component .section-title {
    font-size: 2.25rem;
  }
}
.header-component .section-subtitle {
  max-width: 730px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 162%;
  text-align: center;
  letter-spacing: 0.12px;
  color: var(--color-text-light);
}
@media screen and (min-width: 75rem) {
  .header-component .section-subtitle {
    font-size: 1.125rem;
  }
}

.cta-component {
  margin-inline: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 75rem) {
  .cta-component {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
}
.cta-component .cta-primary,
.cta-component .cta-secondary {
  display: grid;
  position: relative;
  overflow: hidden;
  width: min(100%, 19.4375rem);
  place-items: center;
  height: 3.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.5px;
  color: var(--white);
  border-radius: 999px;
}
.cta-component .cta-primary:hover::before,
.cta-component .cta-secondary:hover::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0 0 0 0;
  background: rgba(255, 255, 255, 0.248825);
}
@media screen and (min-width: 75rem) {
  .cta-component .cta-primary,
.cta-component .cta-secondary {
    width: 14.1875rem;
  }
}
.cta-component .cta-primary {
  background: var(--strong-cyan);
  box-shadow: 0px 10px 20px rgba(137, 229, 199, 0.503305), inset 0px -3px 0px rgba(0, 0, 0, 0.151333);
}
.cta-component .cta-secondary {
  background: var(--light-blue);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.0988035), inset 0px -3px 0px rgba(0, 0, 0, 0.151333);
}

.keep-track-section {
  margin-top: 160px;
  padding-inline: 8.5333333%;
}
@media screen and (min-width: 75rem) {
  .keep-track-section {
    padding-inline: calc(50vw - 555px);
  }
}
@media screen and (min-width: 75rem) {
  .keep-track-section {
    margin: 150px auto 0;
    padding: 0;
  }
}
.keep-track-section .features-list {
  margin: 4.0625rem auto 0;
  width: min(460px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media screen and (min-width: 75rem) {
  .keep-track-section .features-list {
    width: min(100%, 1440px);
    margin: 5rem auto 0;
    grid-template-columns: 1fr 350px;
    gap: 56px 110px;
    align-content: center;
    align-items: center;
    padding-inline: 0px min(18.0555556%, 260px);
    overflow: hidden;
  }
  .keep-track-section .features-list li:nth-of-type(1) {
    margin-top: 68px;
  }
}
.keep-track-section .features-list::before {
  content: "";
  width: 100%;
  padding-bottom: 76.2820513%;
  background-image: url(/images/image-computer.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 75rem) {
  .keep-track-section .features-list::before {
    margin-left: -32px;
    width: 104.4444444%;
    padding-bottom: 79.45%;
    grid-area: 1/1/span 5/auto;
  }
}
.keep-track-section .feature-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 75rem) {
  .keep-track-section .feature-card {
    gap: 8px;
  }
}
.keep-track-section .card-title {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 125%;
  text-align: center;
  letter-spacing: -0.391304px;
  color: var(--color-text-strong);
}
@media screen and (min-width: 75rem) {
  .keep-track-section .card-title {
    text-align: left;
  }
}
.keep-track-section .card-description {
  font-weight: 400;
  font-size: 1rem;
  line-height: 162%;
  text-align: center;
  letter-spacing: 0.12px;
  color: var(--color-text-light);
}
@media screen and (min-width: 75rem) {
  .keep-track-section .card-description {
    text-align: left;
  }
}

.access-anywhere-section {
  margin-top: 11.625rem;
  padding-inline: 8.5333333%;
}
@media screen and (min-width: 75rem) {
  .access-anywhere-section {
    padding-inline: calc(50vw - 555px);
  }
}
@media screen and (min-width: 75rem) {
  .access-anywhere-section {
    margin-top: 9.375rem;
  }
}
.access-anywhere-section::after {
  content: "";
  display: block;
  margin: 4rem auto 0;
  width: min(100%, 812px);
  padding-bottom: min(58.4975369%, 475px);
  background-image: url(/images/image-devices.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (min-width: 75rem) {
  .access-anywhere-section::after {
    margin-top: 6.875rem;
  }
}

.supercharge-section {
  margin-top: 8.125rem;
  padding-inline: 8.5333333%;
}
@media screen and (min-width: 75rem) {
  .supercharge-section {
    padding-inline: calc(50vw - 555px);
  }
}
@media screen and (min-width: 75rem) {
  .supercharge-section {
    margin-top: 10.0625rem;
  }
}
.supercharge-section .card-list {
  margin-top: 5.625rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media screen and (min-width: 75rem) {
  .supercharge-section .card-list {
    margin-top: 4.5rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
.supercharge-section .card {
  width: min(100%, 460px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.supercharge-section .card-title {
  margin-top: 2.5rem;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 125%;
  text-align: center;
  letter-spacing: -0.391304px;
  color: var(--color-text-strong);
}
.supercharge-section .card-description {
  margin-top: 1.125rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 162%;
  text-align: center;
  letter-spacing: 0.12px;
  color: var(--color-text-light);
}
@media screen and (min-width: 75rem) {
  .supercharge-section .card-description {
    margin-top: 1rem;
    line-height: 188%;
  }
}

.brands-section {
  margin-top: 8.1875rem;
  padding-inline: 8.5333333%;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  align-items: center;
}
@media screen and (min-width: 75rem) {
  .brands-section {
    padding-inline: calc(50vw - 555px);
  }
}
@media screen and (min-width: 75rem) {
  .brands-section {
    margin-top: 9.375rem;
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
  }
}

.call-to-action-section {
  margin-top: 10.625rem;
  padding-inline: 8.5333333%;
}
@media screen and (min-width: 75rem) {
  .call-to-action-section {
    padding-inline: calc(50vw - 555px);
  }
}
@media screen and (min-width: 75rem) {
  .call-to-action-section {
    margin-top: 9.375rem;
  }
}
.call-to-action-section .cta-component {
  margin-top: 3rem;
}

.footer-section {
  margin-top: 4.375rem;
  padding-inline: 8.5333333%;
  background-color: rgba(158, 171, 178, 0.1);
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}
@media screen and (min-width: 75rem) {
  .footer-section {
    padding-inline: calc(50vw - 555px);
  }
}
@media screen and (min-width: 75rem) {
  .footer-section {
    margin-top: 9.375rem;
    padding-top: 2.4375rem;
    padding-bottom: 2.4375rem;
    grid-template-columns: 3.4375rem 1fr 7.5rem;
    align-items: center;
    gap: 8.4375rem;
  }
}
.footer-section .logo {
  width: 3.4375rem;
  height: 3.4375rem;
}
.footer-section .navlink-list {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 1.25rem;
}
@media screen and (min-width: 75rem) {
  .footer-section .navlink-list {
    margin-top: 0;
    grid-template-rows: repeat(2, auto);
    gap: 0.75rem 3.75rem;
    justify-items: start;
    justify-self: start;
    grid-auto-flow: column;
  }
}
.footer-section .navlink {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 167%;
  text-align: center;
  letter-spacing: 0.135px;
  color: var(--color-text-strong);
}
@media screen and (min-width: 75rem) {
  .footer-section .navlink {
    text-align: left;
  }
}
.footer-section .social-media-links {
  margin-top: 3rem;
  width: 10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 75rem) {
  .footer-section .social-media-links {
    margin-top: 0;
    width: 7.5rem;
  }
}
.footer-section .social-link {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  background-color: var(--color-text-strong);
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.footer-section .social-link:hover {
  background-color: var(--strong-cyan);
}
.footer-section .social-link[aria-label=facebook] {
  mask-image: url(/images/icon-facebook.svg);
  -webkit-mask-image: url(/images/icon-facebook.svg);
}
.footer-section .social-link[aria-label=twitter] {
  mask-image: url(/images/icon-twitter.svg);
  -webkit-mask-image: url(/images/icon-twitter.svg);
}
.footer-section .social-link[aria-label=instagram] {
  mask-image: url(/images/icon-instagram.svg);
  -webkit-mask-image: url(/images/icon-instagram.svg);
}

/*# sourceMappingURL=styles.css.map */
