.has-fade {
  visibility: hidden;
}

@-webkit-keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

@-webkit-keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

.fade-in {
  -webkit-animation: fade-in 250ms ease-in-out forwards;
          animation: fade-in 250ms ease-in-out forwards;
}

.fade-out {
  -webkit-animation: fade-out 250ms ease-in-out forwards;
          animation: fade-out 250ms ease-in-out forwards;
}

@-webkit-keyframes wipe-enter {
  0% {
    -webkit-transform: scale(0, 0.025);
            transform: scale(0, 0.025);
  }
  50% {
    -webkit-transform: scale(1, 0.025);
            transform: scale(1, 0.025);
  }
}

@keyframes wipe-enter {
  0% {
    -webkit-transform: scale(0, 0.025);
            transform: scale(0, 0.025);
  }
  50% {
    -webkit-transform: scale(1, 0.025);
            transform: scale(1, 0.025);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .expand-animation {
    -webkit-animation: wipe-enter 3s 1;
            animation: wipe-enter 3s 1;
  }
}

@-webkit-keyframes shake-animation {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  1.78571% {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  3.57143% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  5.35714% {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  7.14286% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  8.92857% {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  10.71429% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes shake-animation {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  1.78571% {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  3.57143% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  5.35714% {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  7.14286% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  8.92857% {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  10.71429% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.shake {
  -webkit-animation: shake-animation 4.72s ease infinite;
          animation: shake-animation 4.72s ease infinite;
}

html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Public Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  background-color: #0D0D0D;
  color: white;
  line-height: 1.3;
  overflow-x: hidden;
}

@media (min-width: 64em) {
  body {
    font-size: 1.25rem;
  }
}

body.no-scroll {
  overflow: hidden;
}

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

h1,
h2,
h3 {
  font-weight: 400;
  line-height: 1.15;
  color: #B40027;
  margin-top: 0px;
}

h1 {
  font-size: 2.31rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 64em) {
  h1 {
    font-size: 3.25rem;
  }
}

h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5625rem;
}

@media (min-width: 64em) {
  h2 {
    font-size: 2.25rem;
    margin-bottom: 2.25rem;
  }
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

.container {
  max-width: 85.375rem;
  margin: 0 auto;
  border: 0;
}

.container--pxy {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 64em) {
  .container--pxy {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.container--py {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}

@media (min-width: 64em) {
  .container--py {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.container--px {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container--pt {
  padding-top: 4.375rem;
}

@media (min-width: 64em) {
  .container--pt {
    padding-top: 6rem;
  }
}

.container--pr {
  padding-right: 1.5rem;
}

.container--pb {
  padding-bottom: 4.375rem;
}

@media (min-width: 64em) {
  .container--pb {
    padding-bottom: 6rem;
  }
}

.container--pl {
  padding-left: 1.5rem;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-jc-se {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.flex-jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-fr-n {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

button,
.button {
  display: inline-block;
  padding: 0.775rem 1.7875rem;
  background: #B40027;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  color: white;
  font-weight: 400;
  font-size: 0.875rem;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}

button:hover,
.button:hover {
  opacity: 0.75;
  color: white;
  -webkit-box-shadow: 0 5px 15px rgba(255, 34, 53, 0.4);
          box-shadow: 0 5px 15px rgba(255, 34, 53, 0.4);
}

.divider {
  border-bottom: 1px solid #B40027;
  margin-top: 25px;
}

.center-link {
  text-align: center;
}

.center-link a {
  display: inline-block;
  text-align: center;
}

.scrollup-btn {
  width: 100px;
  background: #B40027;
  border: 0;
  border-radius: 20px;
  cursor: pointer;
  color: white;
  font-weight: 400;
  font-size: 0.875rem;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}

.scrollup-btn:hover {
  opacity: 0.75;
  color: white;
  -webkit-box-shadow: 0 5px 15px rgba(255, 34, 53, 0.4);
          box-shadow: 0 5px 15px rgba(255, 34, 53, 0.4);
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

ion-icon {
  font-size: 18px;
  vertical-align: middle;
}

.loading {
  z-index: 9;
  position: fixed;
  margin: auto;
  width: 100%;
  height: 100%;
  -webkit-animation: backGround 5s ease infinite;
          animation: backGround 5s ease infinite;
}

.loading .loadingWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loading .loadingWrapper #loading {
  margin: auto;
  height: 100px;
  width: 100px;
  border: transparent;
  border-top: 3px solid #B40027;
  border-radius: 50%;
  -webkit-animation: round 2s linear infinite;
          animation: round 2s linear infinite;
}

.loading .loadingWrapper h1 {
  color: #fff;
  position: relative;
  margin: auto;
  top: 50%;
}

@-webkit-keyframes round {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes round {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes backGround {
  0% {
    background-color: #1C1D1E;
  }
  50% {
    background-color: #1C1D1E;
  }
  75% {
    background-color: #0D0D0D;
  }
  100% {
    background-color: #111111;
  }
}

@keyframes backGround {
  0% {
    background-color: #1C1D1E;
  }
  50% {
    background-color: #1C1D1E;
  }
  75% {
    background-color: #0D0D0D;
  }
  100% {
    background-color: #111111;
  }
}

.header.open .overlay {
  display: block;
}

.header.open .header__toggle > span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}

.header.open .header__toggle > span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header .overlay {
  z-index: 1;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#2d314d), to(transparent));
  background-image: linear-gradient(to bottom, #2d314d, transparent);
}

.header nav {
  z-index: 3;
  position: relative;
  padding-top: 1.0625rem;
  padding-bottom: 1.0625rem;
}

.header__logo img {
  width: 11.5rem;
  height: 3.750rem;
}

.header__toggle > span {
  z-index: 2;
  display: block;
  width: 26px;
  height: 2px;
  background-color: white;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform-origin: 2px;
          transform-origin: 2px;
}

.header__toggle > span:not(:last-child) {
  margin-bottom: 6px;
}

.header__menu {
  z-index: 4;
  background: #0D0D0D;
  padding: 1.625rem;
  border-radius: 5px;
  position: absolute;
  width: calc(100% - 3rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 1.5rem;
}

.header__menu a {
  display: block;
  padding: 0.625rem;
  color: white;
  text-align: center;
}

.header__links a {
  position: relative;
  font-size: 0.875rem;
  color: #f3f4f6;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
}

.header__links a::before {
  content: "";
  display: block;
  position: absolute;
  height: 3px;
  left: 0;
  right: 0;
  bottom: -30px;
  background: #BE3F3F;
  opacity: 0;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}

.header__links a:not(:last-child) {
  margin-right: 32px;
}

.header__links a:hover {
  color: #BE3F3F;
}

.header__links a:hover::before {
  opacity: 1;
}

.hero {
  background-color: #1C1D1E;
  padding-bottom: 3rem;
}

@media (min-width: 64em) {
  .hero {
    padding-bottom: 7rem;
    padding-top: 7rem;
  }
}

@media (min-width: 64em) {
  .hero .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hero__image {
  position: relative;
  background-image: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 17.5rem;
}

@media (min-width: 40em) {
  .hero__image {
    min-height: 25rem;
    background-position: center 75%;
  }
}

@media (min-width: 64em) {
  .hero__image {
    -webkit-box-flex: 2.5;
        -ms-flex: 2.5;
            flex: 2.5;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    min-height: 40rem;
  }
}

@media (min-width: 64em) {
  .hero__image::before {
    content: "";
    position: absolute;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    width: 100%;
    background-size: 100%;
    background-position: 0% 85%;
  }
}

.hero__image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../images/client.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
}

@media (min-width: 40em) {
  .hero__image::after {
    background-size: 100%;
    background-position: center center;
  }
}

@media (min-width: 64em) {
  .hero__image::after {
    width: 100%;
    height: 100%;
    background-size: 93%;
    background-position: center 50%;
  }
}

.hero__text {
  text-align: center;
}

@media (min-width: 64em) {
  .hero__text {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: left;
  }
}

.feature {
  background-color: #1C1D1E;
  text-align: center;
}

@media (min-width: 40em) {
  .feature {
    text-align: left;
  }
}

.feature__intro {
  margin-bottom: 3.75rem;
}

@media (min-width: 64em) {
  .feature__intro {
    width: 70%;
  }
}

.feature__outro {
  margin-top: 3.75rem;
  margin-bottom: 7.75rem;
}

@media (min-width: 64em) {
  .feature__outro {
    width: 70%;
  }
}

@media (min-width: 40em) {
  .feature__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.feature__item {
  border: solid 2px #B40027;
  border-radius: 10px;
  background: rgba(20, 20, 20, 0.2);
  padding: 0.9375rem;
}

@media (max-width: 39.9375em) {
  .feature__item {
    margin-bottom: 3.125rem;
  }
}

@media (min-width: 40em) {
  .feature__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

@media (min-width: 64em) {
  .feature__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 300px;
    max-width: 300px;
  }
  .feature__item:not(:last-child) {
    margin-right: 3.125rem;
    margin-bottom: 3.125rem;
  }
}

.feature__icon {
  margin-bottom: 1.175rem;
}

.feature__icon ion-icon {
  color: #fafafa;
  font-size: 3.25rem;
}

.feature__title {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.15;
  color: #fafafa;
  margin-bottom: 1rem;
}

@media (min-width: 40em) {
  .feature__title {
    font-size: 3.25rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.feature__description {
  font-size: 0.875rem;
  line-height: 1;
  color: #fafafa;
}

@media (min-width: 40em) {
  .feature__description {
    font-size: 1.25rem;
  }
}

.benefit {
  background-color: #1C1D1E;
  text-align: center;
  padding-bottom: 1.995rem;
}

@media (min-width: 40em) {
  .benefit {
    text-align: left;
  }
}

.benefit a {
  -webkit-transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
}

.benefit__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.benefit__heading {
  text-align: center;
  width: 100%;
}

.benefit__pricing {
  text-align: center;
  background: rgba(20, 20, 20, 0.2);
  color: white;
  margin: 10px;
  border-radius: 10px;
  border: 2px solid #64051A;
  min-width: 275px;
}

@media (max-width: 63.9375em) {
  .benefit__pricing {
    min-height: 500px;
  }
}

@media (min-width: 64em) {
  .benefit__pricing {
    min-height: 550px;
  }
}

.benefit__pricing .button {
  display: inline-block;
  padding: 0.775rem 1.7875rem;
  background: #B40027;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  font-weight: 400;
  font-size: 0.875rem;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}

.benefit__pricing .button:hover {
  opacity: 0.75;
}

.benefit__pricing ul {
  list-style-type: none;
  padding: 0;
  margin: 40px 0;
}

.benefit__pricing ul li {
  text-align: center;
  margin: 20px 30px;
}

.benefit__pricing h1 {
  letter-spacing: 1px;
  margin: 15px 0 0;
}

.benefit__pricing h4 {
  margin: 20px 0 0;
}

.benefit__pricing .vip {
  font-size: 1.25rem;
}

.benefit__pricing .sponsor {
  color: #3BBFC1;
}

.benefit__pricing .popular {
  color: #B40027;
  margin: 0;
  text-shadow: 0 5px 15px rgba(245, 107, 107, 0.4);
}

.benefit__pricing button {
  margin-bottom: 30px;
}

.benefit__list {
  -webkit-transform-style: preserve-3d;
  -moz-transform-stle: preserve-3d;
  transform-style: preserve-3d;
  text-transform: uppercase;
}

.benefit__list a {
  display: block;
  color: #fff;
}

.benefit__list a:hover {
  text-indent: 20px;
}

.benefit__list dt,
.benefit__list dd {
  text-indent: 10px;
  line-height: 55px;
  background: #E0FBAC;
  margin: 0;
  height: 55px;
  width: 270px;
  color: #fff;
}

.benefit__list dt {
  /* Since we're hiding elements behind here, we need it in 3d */
  -webkit-transform: translateZ(0.3px);
  transform: translateZ(0.3px);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  font-size: 0.875rem;
}

.benefit__list dd {
  border-top: 1px dashed rgba(255, 255, 255, 0.3);
  line-height: 35px;
  font-size: 11px;
  height: 35px;
  margin: 0;
}

.benefit__toggle {
  -webkit-transform: translateZ(100px);
  transform: translateZ(100px);
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 50px;
  margin-left: -70px;
  margin-top: -20px;
  background: #2b2b2b;
  text-align: center;
  font-size: 12px;
  position: absolute;
  z-index: 1;
  height: 50px;
  width: 140px;
  color: #fff;
  left: 50%;
}

.benefit__toggle:hover {
  background: #E42692;
}

.benefit__nigiri dt {
  background: #7500A0;
  background-image: url("../images/vip.png");
  background-repeat: no-repeat;
  background-position: center center;
}

@media (min-width: 40em) {
  .benefit__nigiri dt {
    background-size: 65%;
  }
}

.benefit__nigiri a:hover {
  background: #7500A0;
}

.benefit__nigiri dd,
.benefit__nigiri a {
  text-align: center;
  background: #8255A9;
}

.benefit__maki dt {
  background: #00D2FF;
  background-image: url("../images/sponsor.png");
  background-repeat: no-repeat;
  background-position: center center;
}

@media (min-width: 40em) {
  .benefit__maki dt {
    background-size: 65%;
  }
}

.benefit__maki a:hover {
  background: #00D2FF;
}

.benefit__maki dd,
.benefit__maki a {
  text-align: center;
  background: #00BBE3;
}

.benefit__sashimi dt {
  background: #3BBFC1;
  background-image: url("../images/lifetimesponsor.png");
  background-repeat: no-repeat;
  background-position: center center;
}

@media (min-width: 40em) {
  .benefit__sashimi dt {
    background-size: 65%;
  }
}

.benefit__sashimi a:hover {
  background: #3BBFC1;
}

.benefit__sashimi dd,
.benefit__sashimi a {
  text-align: center;
  background: #009597;
}

.benefit__bottom-text {
  color: #fafafa;
  font-size: 0.875rem;
  font-weight: bold;
}

.benefit ion-icon {
  color: #fafafa;
  vertical-align: middle;
  font-size: 1.25rem;
}

.stats {
  padding-bottom: 10rem;
  padding-top: 10rem;
}

.stats h2,
.stats h3 {
  text-align: center;
}

.stats__grid {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 40em) {
  .stats__grid {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

.stats__title {
  font-size: 1.25rem;
  margin: 0px 0px 1.25rem;
  letter-spacing: 0.1px;
  text-align: left;
  color: #fafafa;
}

@media (max-width: 39.9375em) {
  .stats__title {
    font-size: 0.875rem;
  }
}

.stats__number {
  margin: 0;
  text-align: left;
  font-size: 3.25rem;
  color: #ce002d;
}

@media (max-width: 39.9375em) {
  .stats__number {
    font-size: 32px;
  }
}

.faq {
  background-color: #1C1D1E;
  text-align: center;
  padding-bottom: 6.25rem;
}

@media (min-width: 40em) {
  .faq {
    text-align: left;
  }
}

.accordion .accordion-item {
  border-bottom: 1px solid #2d314d;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #B40027;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: white;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #BE3F3F;
}

.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #2d314d;
  border: 1px solid #B40027;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #fafafa;
}

.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}

.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 9em;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: auto;
  -webkit-transition: opacity 200ms linear, max-height 200ms linear;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

@media (min-width: 64em) {
  .accordion .accordion-content {
    overflow: hidden;
  }
}

.accordion .accordion-content p {
  font-size: 1.125rem;
  font-weight: 300;
  margin: 2em 0;
}

.footer {
  background-color: #0D0D0D;
  color: white;
  padding: 1rem .5rem 2rem;
  text-align: center;
}

@media (min-width: 64em) {
  .footer .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 1fr 1fr 3fr;
        grid-template-columns: 2fr 1fr 1fr 3fr;
    -ms-grid-rows: 1fr auto;
        grid-template-rows: 1fr auto;
        grid-template-areas: "logo links1 links2 cta" "social links1 links2 copyright";
    gap: 1rem;
    justify-items: start;
  }
}

.footer a {
  color: white;
}

.footer__logo {
  display: inline-block;
}

@media (max-width: 63.9375em) {
  .footer__logo {
    margin-bottom: 1.875rem;
  }
}

@media (min-width: 64em) {
  .footer__logo {
    grid-area: logo;
  }
}

@media (max-width: 63.9375em) {
  .footer__social {
    margin-bottom: 1.875rem;
  }
}

@media (min-width: 64em) {
  .footer__social {
    grid-area: social;
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
  }
}

.footer__social a {
  display: inline-block;
  height: 1.25rem;
}

.footer__social a svg path {
  -webkit-transition: fill 150ms ease-in-out;
  transition: fill 150ms ease-in-out;
}

.footer__social a:hover svg path {
  fill: #B40027;
}

.footer__social a:not(:last-child) {
  margin-right: 1rem;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9375rem;
}

@media (min-width: 64em) {
  .footer__links {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

@media (max-width: 63.9375em) {
  .footer__links.col2 {
    margin-bottom: 1.875rem;
  }
}

.footer__links a {
  line-height: 2.25;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
}

.footer__links a:hover {
  color: #B40027;
}

@media (min-width: 64em) {
  .footer__cta {
    grid-area: cta;
    text-align: right;
    -ms-grid-column-align: end;
        justify-self: end;
  }
}

@media (max-width: 63.9375em) {
  .footer__cta a.button {
    margin-bottom: 1.875rem;
  }
}

.footer__copyright {
  font-size: 0.8125rem;
  color: #f3f4f6;
}

@media (min-width: 64em) {
  .footer__copyright {
    grid-area: copyright;
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
    -ms-grid-column-align: end;
        justify-self: end;
  }
}
/*# sourceMappingURL=style.css.map */