:root {
  --white: #fff;
  --green-light: #e4fcb8;
  --green: #95c861;
  --blue: #0087b8;

  font-size: 16px;
}

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

* {
  margin: 0;
}

html,
body {
  overflow-x: hidden;
}

body {
  min-width: 320px;
  line-height: 150%;
  font-family: Ubuntu, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

strong {
  line-height: inherit;
}

input,
button,
textarea,
select {
  font: inherit;
}

a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
  text-decoration: none;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 120%;
}

p {
  line-height: 150%;
  margin-bottom: 1.5rem;
}

.wrapper-container {
  max-width: 60rem;
  margin: 0 auto;
}

.button,
.button__green,
.button__blue {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-align: center;
  max-width: max-content;
  cursor: pointer;
}

.button__green {
  color: var(--white);
  background-color: var(--green);
}

.button__blue {
  color: var(--white);
  background-color: var(--blue);
}

@media screen and (max-width: 960px) {
  .wrapper-container {
    margin: 0 1.875rem;
  }

  .button {
    font-size: 1rem;
  }
}

.hero-section {
  background-color: hsla(197, 58%, 40%, 1);
  background-image: radial-gradient(
      at 95% 6%,
      hsla(198, 67%, 23%, 1) 0px,
      transparent 50%
    ),
    radial-gradient(at 94% 99%, hsla(198, 58%, 34%, 1) 0px, transparent 50%),
    radial-gradient(at 12% 19%, hsla(198, 64%, 54%, 1) 0px, transparent 50%);
}

.hero-section__content {
  padding: 3.125rem 0;
}

.hero-section header {
  padding: 2rem 1.875rem 1rem;
}

.hero-section .logo-img {
  width: 160px;
}

@media screen and (max-width: 960px) {
  .hero-section .logo-img {
    width: 160px;
    margin: 0 auto;
  }
}

.hero-section h1 {
  font-size: 5rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 4rem;
}

.hero-section h1 strong {
  color: var(--green);
}

@media screen and (max-width: 960px) {
  .hero-section h1 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
}

.hero-section .video-wrapper {
  position: relative;
  max-width: 40rem;
  width: 100%;
  padding-bottom: 37.5%;
  line-height: 0;
  margin: 0 auto 2rem;
}

@media screen and (max-width: 960px) {
  .hero-section .video-wrapper {
    padding-bottom: 43.125%;
  }
}

@media screen and (max-width: 480px) {
  .hero-section .video-wrapper {
    padding-bottom: 56%;
  }
}

.hero-section iframe {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

.hero-section .button {
  display: block;
  max-width: 18.75rem;
  margin: 0 auto;
}

/* Pitch */
.download-pitch {
  background-color: var(--green-light);
}

.download-pitch .wrapper-container {
  max-width: 43.75rem;
  padding: 3.125rem 0;
}

@media screen and (min-width: 701px) {
  .download-pitch .wrapper-container {
    margin: 0 auto;
  }
}

.download-pitch p {
  font-size: 1.5rem;
  text-align: center;
  color: var(--blue);
}

.download-pitch strong {
  font-weight: 500;
}

.download-pitch .button {
  margin: 0 auto;
}

/* More About */
.more-about {
  background-image: linear-gradient(
      to bottom,
      rgba(74, 144, 226, 0.25) 0%,
      rgba(74, 144, 226, 0.25) 100%
    ),
    url(https://d335luupugsy2.cloudfront.net/cms/files/102725/1682710805/$io4mo0r0zd);
  background-repeat: no-repeat;
  background-size: cover;
}

.more-about .wrapper-container {
  display: flex;
  justify-content: flex-end;
  padding: 1.875rem 0;
}

.more-about__card {
  max-width: 25rem;
  border-radius: 1.25rem;
  padding: 1rem 1.875rem 1.5rem;
  text-align: center;
  background-color: var(--white);
}

.more-about__card h2 {
  font-size: 3rem;
  color: var(--blue);
  margin: 0.675rem 0 2rem;
}

@media screen and (max-width: 960px) {
  .more-about__card {
    margin: 0 auto;
  }

  .more-about__card h2 {
    font-size: 2rem;
  }
}

.more-about__card p {
  color: var(--blue);
}

.more-about__card p strong {
  color: var(--green);
}

.more-about__card .button {
  margin: 0.875rem auto 1.25rem;
}

.more-about__social-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.more-about__social-media a {
  width: 1.5rem;
  height: 1.5rem;
}

.more-about__social-media svg {
  display: block;
  max-width: unset;
}

/* Footer */
footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.25rem 0;
}

footer a,
footer p {
  font-size: 0.8125rem;
  color: var(--blue);
}

footer p {
  margin-bottom: 0;
}

footer a:hover {
  text-decoration: underline;
}
