*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  color: #333;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: arial, sans-serif;
  scroll-behavior: smooth;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}
#root, #__next {
  isolation: isolate;
}

body:before {
  content: '';
  background-image: linear-gradient(to right, #3B2552, #475BB2 34%, #870064 69%, #FFCD00);
  height: 10px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

header {
  padding: 40px 50px 0;
}
.flex {
  display: flex;
}
.space-between {
  justify-content: space-between;
}
.align-items-center {
  align-items: center;
}
.align-self-start {
  align-self: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  grid-auto-rows: minmax(100px, auto);
}

.container {
  max-width: 1232px;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  color: #001C71;
  font-size: 64px;
  font-weight: bold;
  line-height: 1;
  margin-top: 60px;
  margin-bottom: 20px;
}
h2 {
  color: #001C71;
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
}
p.xlarge {
  font-size: 24px;
  margin-bottom: 60px;
}
p.large {
  font-size: 20px;
  margin-bottom: 40px;
}
p.or {
  color: #001C71;
  font-weight: bold;
  margin-left: 20px;
  margin-right: 20px;
}

.btn-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.btn-list li {
  margin-right: 10px;
}

.btn {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  background: #7C1961;
  padding: 13px;
  min-width: 170px;
  text-align: center;
  font-weight: bold;
  border-radius: 3px;
}
.btn:hover {
  background: #B680B2;
}

.link-list a {
  display: block;
  padding: 25px;
  padding-right: 100px;
  background: #EEEEEE url(/assets/link-icon.svg) right 25px center no-repeat;
  border: 1px solid #7c19614f;
  text-decoration: none;
  margin-bottom: 8px;
  transition: border 300ms ease;
}
.link-list a:hover {
  border: 1px solid #7c1961;
}
.link-list a.download {
  background-image: url(/assets/download-icon.svg);
}
.link-list.link-list-white a {
  background-color: #fff;
}
.link-list a span {
  display: block;
}
.link-list a span:first-child {
  color: #666666;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 24px;
  text-transform: uppercase;
}
.link-list a span:last-child {
  font-size: 20px;
  color: #001c71;
}
.link-list p {
  font-size: 14px;
  margin: 0;
}

.select-all {
  display: inline-block;
  margin-bottom: 12px;
  color: #7C1961;
}
.select-all:hover {
  color: #B680B2;
}
.checkbox {
  position: relative;
  margin-bottom: 8px;
}
.checkbox > input {
  position: absolute;
  width: 0px;
  height: 0px;
  opacity: 0;
}
.checkbox > input + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  color: #53565A;
  font-size: 16px;
  line-height: 20px;
}
.checkbox > input + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1.54px solid #9f9f9f;
  z-index: 2;
}
.checkbox > input:checked + label:before {
  border: 1.54px solid #7C1961;
}
.checkbox > input + label:after {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #eee;
  z-index: 1;
  transition: all 300ms ease;
}
.checkbox > input:checked + label:after {
  left: 0px;
  top: 0px;
  width: 20px;
  height: 20px;
  background: #7C1961 url(/assets/check.svg) center center no-repeat;
}

input[type="email"] {
  background: #fff;
  border: 1px solid #7c19614f;
  padding: 12px 20px;
  border-radius: 3px;
  height: 43px;
}
input[type="email"]:focus {
  border: 1px solid #7c1961;
  outline: none;
}

input[type="submit"] {
  background: #7C1961;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border: none;
  border-radius: 3px;
  padding-left: 36px;
  padding-right: 36px;
  height: 43px;
}
input[type="submit"]:hover {
  background: #B680B2;
  cursor: pointer;
}
input + input {
  margin-left: 10px;
}
.flex > input[type="email"] {
  flex-grow: 1;
}

.success-message {
  color: #13A22D;
  font-size: 12px;
  margin: 4px 0 0;
}
.hide {
  display: none;
}

.mt-40 {
  margin-top: 40px;
}
.max-width-600 {
  max-width: 600px;
}
.max-width-920 {
  max-width: 920px;
}

section {
  padding: 50px;
}
section.gray {
  background: #eee;
}
section.min-h-vh {
  min-height: calc(100vh - 75px);
}
footer {
  color: #fff;
  background: #7C1961;
  padding: 25px 0;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer li {
  padding: 0 20px;
  border-left: 1px solid #fff;
}
footer li:first-child {
  border-left: none;
  padding-left: none;
}
footer li:last-child {
  padding-right: none;
}
footer a {
  color: #fff;
  text-decoration: none;
  display: block;
}
footer a:hover {
  text-decoration: underline;
}
footer p {
  margin: 0;
}
.mobile-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .mobile-only {
    display: block;
  }
  header {
    padding: 40px 20px 0;
  }
  h1 {
    margin-top: 0;
    font-size: 32px;
  }
  h2 {
    font-size: 24px;
  }
  p.xlarge,
  p.large {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .flex {
    flex-direction: column;
  }
  .grid-3 {
    grid-template-columns: auto;
  }
  .align-items-center {
    align-items: flex-start;
  }
  .mobile-divider-top {
    padding-top: 20px;
    border-top: 1px solid #66666626;
  }
  .btn-list li {
    margin-bottom: 10px;
  }
  .btn-list li a {
    display: block;
  }
  input + input {
    margin: 10px 0 0;
  }
  p.or {
    margin: 0 0 20px;
  }
  section {
    padding: 50px 20px;
  }
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  footer ul {
    padding-top: 20px;
  }
  footer li {
    padding: 10px 0;
    border: none;
  }
  footer img.mobile-only {
    width: 100%;
    max-width: 182px;
    height: auto;
    margin-bottom: 40px;
  }
}
