:root {
  --light_yellow: #fff7e9;
  --heading1size: 9rem;
  --heading2size: 3.5rem;
  --altblack: #121212;
}

body {
  background: var(--altblack);
}

header .container {
  padding: 0;
}
header .container .shopping-cart .label,
header .container .shopping-cart .icon {
  color: var(--black);
}
header .container .shopping-cart,
header .container .open-button {
  background: white;
  color: var(--black);
}

/* Adjusts position of menu button */
header .shopping-cart {
  position: absolute;
  right: 17rem;
  top: 3.4em;
}
header .shopping-cart.stuck {
  top: 1em;
}
header .open-button {
  position: absolute;
  right: calc(var(--menuposition) + 1em) !important;
  top: 3.4em;
}
header .open-button.stuck {
  top: 1em;
}

#line {
  position: absolute;
  top: 54px;
  width: 100%;
  border-bottom: 1px solid yellow;
  z-index: 10000;
}

#line-bottom {
  position: absolute;
  top: 94px;
  width: 100%;
  border-top: 1px solid cyan;
  z-index: 100000;
}

main {
  display: grid;
}
main.home {
  display: inherit;
  max-width: 100%;
  top: 0 !important;
}
main.home header {
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 2em 1fr 2em;
  min-height: 100vh;
  height: unset;
  width: 100%;
  padding: 2em 0;
}
main header {
  display: grid;
}
main header .background {
  border-radius: 0.4rem;
  position: relative;
}
main header .background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgb(231, 19, 33) 0%, rgb(150, 28, 85) 100%);
  filter: blur(20px);
  z-index: -1;
  width: 100%;
  height: 100%;
  background-size: 200% 200%;
  animation: backgroundpulse 2500ms ease-in-out infinite both alternate;
  opacity: 0.5;
  border-radius: 0.4rem;
}
main header .background video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.4rem;
}
main header .overlay {
  background: black;
  opacity: 0.66;
  pointer-events: none;
  border-radius: 0.4rem;
}
main header .logo {
  grid-area: 1/2/2/3;
  display: flex;
  padding: 1em 1em 0 1em;
}
main header .logo img {
  width: auto;
  height: 4rem;
}
main header .logo img:first-child {
  margin: 0 1rem 0 0;
}
main header .logo img:last-child {
  filter: saturate(0) brightness(100);
  display: none;
}
main header .content {
  grid-area: 3/2/4/3;
  z-index: 1;
  padding: 1em;
}
main header .content h1 {
  margin: 0;
  text-transform: uppercase;
  color: var(--light_yellow);
  position: relative;
  contain: paint;
  font-weight: 900;
  font-size: var(--heading1size);
  max-width: unset;
}
main header .content h1 span {
  position: relative;
  contain: paint;
  height: 82px;
  display: inline-block;
}
main header .content h1 span span {
  position: relative;
  top: 82px;
  animation: headingslide 1000ms 1250ms ease-in-out 1 forwards;
}
main header .content p {
  color: white;
}
main header .content p span {
  position: relative;
  contain: paint;
  height: 30px;
  display: inline-block;
}
main header .content p span span {
  position: relative;
  top: 30px;
  animation: descslide 1000ms 1000ms ease-out 1 forwards;
}
main header .content .button {
  background: linear-gradient(90deg, rgb(231, 19, 33) 0%, rgb(150, 28, 85) 100%);
  color: white;
  border: none;
  margin: 0 0 1.2rem 0;
  background-size: 200% 200%;
  animation: buttonbackground 5000ms ease-in-out infinite both, buttonopen 500ms 500ms ease-in-out 1 forwards, buttonround 500ms 1000ms ease-in-out 1 forwards;
  height: 75px;
  width: 75px;
  border-radius: 37.5px;
  padding: 0;
  display: flex;
  align-items: center;
}
main header .content .button span.label {
  display: none;
  padding: 1.2rem;
  width: 100%;
  text-align: center;
  text-wrap: balance;
}
main header .content .button:hover {
  box-shadow: none;
}
main header .content .button.visible span.label {
  display: block;
  height: auto;
  animation: buttonfade 500ms ease-out 1 forwards;
}
main header .content .call-to-actions p {
  font-size: 1.8rem;
  display: none;
  opacity: 0;
  margin: 0 !important;
  width: 100%;
  text-align: center;
  text-wrap: balance;
}
main header .content .call-to-actions p a {
  color: white;
}
main header .content .call-to-actions p.visible {
  display: block;
  animation: buttonfade 500ms 500ms ease-out 1 forwards;
}
main header .background,
main header .overlay {
  grid-area: 1/2/4/3;
}
main article {
  max-width: unset;
}
main article section {
  display: grid;
}
main article section#paths {
  display: block;
  padding: 0 3em;
  margin: 0 0 6em 0;
}
main article section#paths h2,
main article section#paths h3,
main article section#paths h4,
main article section#paths p,
main article section#paths a {
  color: white;
}
main article section#paths h2 {
  padding: 0;
  margin: 0 0 4.8rem 0;
  text-wrap: balance;
}
main article section#paths h4 {
  padding-top: 0;
}
main article section#paths .path {
  margin: 0 0 3em 0;
}
main article section#paths .path p:last-child {
  margin: 0;
}
main article section#paths .cta {
  padding: 0;
  contain: paint;
  position: relative;
}
main article section#paths .cta .cta-container span {
  display: flex;
  align-items: center;
  flex-direction: column;
}
main article section#paths .cta .cta-container span p {
  text-align: center;
  text-wrap: balance;
}
main article section#paths .cta .cta-container span a {
  margin: 0;
  text-align: center;
  text-wrap: balance;
}
main article section#secondary-feature {
  display: grid;
  grid-template-columns: 3em 1fr 3em;
}
main article section#secondary-feature .background {
  position: relative;
  grid-area: 1/1/2/4;
  z-index: -1;
}
main article section#secondary-feature .background::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% + 1px);
  background-color: black;
  opacity: 0.66;
  z-index: 10;
}
main article section#secondary-feature .background video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main article section#secondary-feature .content {
  grid-area: 1/2/2/3;
  padding: 3em 0;
}
main article section#secondary-feature .content h2 {
  color: var(--light_yellow);
  font-size: var(--heading2size);
  text-transform: uppercase;
  font-weight: 900;
  padding: 0;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
}
main article section#secondary-feature .content p {
  color: white;
}
main article section#secondary-feature .content .button {
  background: linear-gradient(90deg, rgb(231, 19, 33) 0%, rgb(150, 28, 85) 100%);
  color: white;
  border: none;
  margin: 0;
  background-size: 200% 200%;
  animation: buttonbackground 5000ms ease-in-out infinite both;
  text-align: center;
  text-wrap: balance;
}
main article section#value-statement {
  display: grid;
  grid-template-columns: repeat(2, 1.5em) repeat(7, 1fr) repeat(2, 1.5em);
  grid-template-rows: auto auto repeat(15, 3em) auto;
  row-gap: 1em;
}
main article section#value-statement .title {
  grid-area: 1/3/2/10;
}
main article section#value-statement .title h2 {
  color: var(--light_yellow);
  text-transform: uppercase;
  font-weight: 900;
  margin: 0;
  font-size: var(--heading2size);
}
main article section#value-statement .title p {
  color: white;
}
main article section#value-statement .title h2,
main article section#value-statement .title p {
  text-align: center;
}
main article section#value-statement .student {
  display: grid;
  grid-area: 8/1/15/13;
  grid-template-columns: subgrid;
  grid-template-rows: subgrid;
}
main article section#value-statement .student .foreground {
  grid-area: 1/1/13/13;
}
main article section#value-statement .student .foreground img {
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  -o-object-position: bottom;
     object-position: bottom;
  height: 100%;
  width: 100%;
}
main article section#value-statement .student .background {
  grid-area: 2/3/11/10;
  background: radial-gradient(circle, rgb(231, 19, 33) 0%, rgb(150, 28, 85) 100%);
  background-size: 400% 400%;
  animation: backgroundpulse 10s ease-in-out infinite both alternate;
  border-radius: 0.4rem;
}
main article section#value-statement .quotes {
  grid-area: 19/3/20/10;
}
main article section#value-statement .quotes .quote blockquote p {
  max-width: unset;
  color: white;
}
main article section#value-statement .quotes .quote blockquote cite {
  color: white;
}
main article section#value-statement .value {
  display: flex;
  align-items: center;
  justify-content: center;
}
main article section#value-statement .value.flexible {
  grid-area: 3/3/5/10;
}
main article section#value-statement .value.transfer {
  grid-area: 5/3/7/10;
}
main article section#value-statement .value.training {
  grid-area: 7/3/9/10;
}
main article section#value-statement .value.admissions {
  grid-area: 12/3/14/10;
  z-index: 1;
}
main article section#value-statement .value.career {
  grid-area: 14/3/16/10;
  z-index: 1;
}
main article section#value-statement .value.indigenous {
  grid-area: 16/3/18/10;
}
main article section#value-statement .value span {
  background-color: black;
  height: 6em;
  border-radius: 3em;
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 3.6rem;
}
main article section#value-statement .value span p {
  color: white;
  margin: 0;
  text-wrap: balance;
}
main article section#value-statement .value span p:first-child {
  font-size: 2rem;
  line-height: 1;
  margin: 0 0 0.8rem 0;
}
main article section#value-statement .value span p:last-child {
  font-size: 1.6rem;
}
main article section#student-services {
  display: grid;
  padding: 0 3em;
}
main article section#student-services .title h2 {
  color: var(--light_yellow);
  font-size: var(--heading2size);
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  padding: 0;
  line-height: 1.1;
  text-wrap: balance;
  font-weight: 900;
}
main article section#student-services .title p {
  color: white;
}
main article section#student-services .services p,
main article section#student-services .services a,
main article section#student-services .resources p,
main article section#student-services .resources a {
  color: white;
}
main article section#student-services .services ul {
  list-style: none;
  margin: 0;
}
main article section#student-services .resources {
  margin-top: 2.4rem;
}
main article section#student-services .resources h4,
main article section#student-services .resources li {
  color: white;
}
main article section#student-services .more-services,
main article section#student-services .more-resources {
  margin: 0;
}
main article section#student-services .more-services a,
main article section#student-services .more-resources a {
  color: white;
  text-align: center;
  margin: 2.4rem 0 0 0;
}
main article section#student-services .more-services {
  grid-area: 3/1/4/2;
}
main article section#media-centre .title h2 {
  color: var(--light_yellow);
}
main article section#media-centre .title h2,
main article section#media-centre .title p {
  color: white;
}
main article section#media-centre .item {
  background: white;
}

@media (min-width: 23.6875em) {
  main.has-cart header .logo img:last-child {
    display: none;
  }
  main header .logo img:last-child {
    display: inherit;
  }
  main header .content .button {
    width: 50px;
    border-radius: 25px;
  }
}
@media (min-width: 28em) {
  main header .content .button {
    height: 50px;
  }
}
@media (min-width: 35em) {
  main.has-cart header .logo img:last-child {
    display: inherit;
  }
  header .shopping-cart {
    right: calc(var(--menuposition) + 2.25rem);
  }
}
@media (min-width: 40em) {
  main.home header {
    border-radius: 0.4rem;
  }
  main.home header .content p {
    font-size: 3.6rem;
    margin: 0 0 4rem 0;
  }
  main.home header .content p span {
    position: relative;
    contain: paint;
    height: 50px;
    display: inline-block;
  }
  main.home header .content p span span {
    position: relative;
    top: 50px;
    animation: descslide 500ms 1000ms ease-out 1 forwards;
  }
  main.home header .content .call-to-actions a {
    margin: 0;
  }
  main.home header .content .call-to-actions p {
    font-size: 1.8rem;
  }
  main.home article section {
    margin: 0 0 4em 0;
  }
  main.home article section#secondary-feature .content p {
    max-width: 66%;
  }
}
@media (min-width: 48em) {
  :root {
    --heading2size: 6rem;
  }
  header .shopping-cart,
  header .open-button {
    position: absolute;
    top: 4.5em;
  }
  main.home header .logo {
    padding: 2em;
  }
  main.home header .logo img {
    height: 9rem;
  }
  main.home header .logo img:first-child {
    margin: 0 2.4rem 0 0;
  }
  main.home header .content {
    padding: 0 2em 2em 2em;
  }
  main.home header .content h1 span {
    height: 90px;
  }
  main.home header .content h1 span span {
    top: 90px;
  }
  main.home header .content .call-to-actions {
    display: flex;
    -moz-column-gap: 1.2rem;
         column-gap: 1.2rem;
    align-items: center;
  }
  main.home header .content .call-to-actions p {
    width: unset;
  }
  main article section#paths {
    display: grid;
  }
  main article section#value-statement {
    grid-template-columns: 3em repeat(7, 1fr) 3em;
    grid-template-rows: auto auto repeat(11, 5em) auto;
    row-gap: 0;
  }
  main article section#value-statement .title {
    grid-area: 1/2/2/9;
  }
  main article section#value-statement .student {
    grid-area: 6/2/13/9;
  }
  main article section#value-statement .student .background {
    grid-area: 2/2/13/7;
  }
  main article section#value-statement .student .foreground img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: auto;
    margin: 0 auto;
  }
  main article section#value-statement .quotes {
    grid-area: 14/2/15/9;
  }
  main article section#value-statement .value.flexible {
    grid-area: 3/2/5/6;
  }
  main article section#value-statement .value.transfer {
    grid-area: 5/5/6/9;
  }
  main article section#value-statement .value.training {
    grid-area: 5/2/8/5;
    justify-content: left;
  }
  main article section#value-statement .value.admissions {
    grid-area: 9/5/11/9;
    justify-content: right;
    z-index: 1;
  }
  main article section#value-statement .value.career {
    grid-area: 11/2/12/6;
    justify-content: right;
    z-index: 1;
  }
  main article section#value-statement .value.indigenous {
    grid-area: 12/5/14/9;
    z-index: 1;
  }
}
@media (min-width: 53.75em) {
  main.home article section {
    padding: 0;
    margin: 0 0 6em 0;
  }
  main.home article section#paths {
    padding: 0 4em;
  }
  main.home article section#secondary-feature .content p {
    margin: 0 0 4rem 0;
  }
  main.home article section#student-services .resources ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 2em;
         column-gap: 2em;
  }
  main.home article section#student-services .more-services a,
  main.home article section#student-services .more-resources a {
    margin: 0;
  }
}
@media (min-width: 64em) {
  :root {
    --heading2size: 5rem;
  }
  header .shopping-cart,
  header .open-button {
    right: var(--menuposition) !important;
  }
  main.home header {
    grid-template-rows: 0em auto 1fr auto 2em;
    grid-template-columns: 0em 0em 1fr 0em 0em;
    grid-gap: 2em;
    min-height: unset;
    padding: 0;
  }
  main.home header .background,
  main.home header .overlay {
    grid-area: 2/2/5/5;
  }
  main.home header .logo {
    grid-area: 2/3/3/4;
    padding: 2em 0 0 0;
  }
  main.home header .content {
    grid-area: 3/3/4/4;
    padding: 0;
  }
  main.home article section {
    margin: 0;
  }
  main.home article section#paths {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2em;
    -moz-column-gap: 2em;
         column-gap: 2em;
    margin: 0 auto 4em auto;
  }
  main.home article section#paths h2 {
    grid-area: 1/1/2/5;
    margin: 0;
  }
  main.home article section#paths .path {
    margin: 0;
  }
  main.home article section#paths .cta {
    grid-area: 3/1/4/5;
  }
  main.home article section#secondary-feature {
    grid-template-columns: 4em 1fr 4em;
    margin: 0 0 4em 0;
  }
  main.home article section#secondary-feature .background {
    grid-area: 1/1/2/4;
  }
  main.home article section#secondary-feature .content {
    grid-area: 1/2/2/3;
    z-index: 10;
    padding: 4em 0;
  }
  main.home article section#student-services .resources {
    margin-top: 0;
  }
  main.home article section#value-statement {
    grid-template-columns: 4em repeat(18, 1fr) 4em;
    grid-template-rows: auto auto repeat(10, 3em) auto;
    margin: 0 0 4em 0;
  }
  main.home article section#value-statement .title {
    grid-area: 1/2/2/20;
  }
  main.home article section#value-statement .title h2 {
    margin: 0 0 4.8rem 0;
  }
  main.home article section#value-statement .quotes {
    grid-area: 17/3/18/20;
  }
  main.home article section#value-statement .student {
    grid-area: 2/6/13/16;
    grid-template-columns: subgrid;
    grid-template-rows: subgrid;
  }
  main.home article section#value-statement .student .background {
    grid-area: 2/1/13/16;
    border-radius: 0.4rem;
  }
  main.home article section#value-statement .student .foreground {
    grid-area: 1/1/13/16;
    z-index: 10;
  }
  main.home article section#value-statement .student .foreground img {
    height: 100%;
  }
  main.home article section#value-statement .value {
    z-index: 10;
  }
  main.home article section#value-statement .value.flexible {
    grid-area: 3/2/6/8;
    justify-content: left;
  }
  main.home article section#value-statement .value.transfer {
    grid-area: 3/13/6/19;
    z-index: 1;
  }
  main.home article section#value-statement .value.training {
    grid-area: 5/13/11/20;
  }
  main.home article section#value-statement .value.admissions {
    grid-area: 5/2/11/8;
  }
  main.home article section#value-statement .value.career {
    grid-area: 10/2/13/10;
  }
  main.home article section#value-statement .value.indigenous {
    grid-area: 10/12/13/19;
  }
  p main.home article section#value-statement .value span:first-child {
    font-size: 2.4rem;
    line-height: 1;
  }
  main.home article section#value-statement .value span:last-child {
    font-size: 2rem;
  }
  main.home article section#student-services {
    grid-template-columns: 4em 1fr 4em;
    row-gap: 1em;
    padding: 0;
  }
  main.home article section#student-services .title {
    grid-area: 1/2/2/3;
  }
  main.home article section#student-services .services {
    grid-area: 2/2/3/3;
  }
  main.home article section#student-services .services ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 2em;
         column-gap: 2em;
  }
  main.home article section#student-services .more-services {
    grid-area: 3/2/4/3;
  }
  main.home article section#student-services .resources {
    grid-area: 4/2/5/3;
  }
  main.home article section#student-services .more-resources {
    grid-area: 5/2/6/3;
  }
  main.home article section#media-centre {
    padding: 0 4em;
  }
}
@media (min-width: 75em) {
  :root {
    --heading2size: 6rem;
  }
  header .container {
    max-width: unset;
  }
  header .shopping-cart,
  header .open-button {
    top: 6.75em;
  }
  main.home header {
    grid-template-rows: 0rem auto 1fr auto 6em;
    grid-template-columns: minmax(2em, 1fr) 3em minmax(54em, 64em) 3em minmax(2em, 1fr) !important;
    grid-row-gap: 3em;
    grid-column-gap: 0em;
  }
  main.home header .background,
  main.home header .overlay {
    grid-area: 2/2/5/5;
  }
  main.home header .logo {
    grid-area: 2/3/3/4;
    padding: 3em 0 0 0;
  }
  main.home header .logo img {
    height: 8rem;
  }
  main.home header .content {
    grid-area: 4/3/5/4;
    padding: 0 0 3em 0;
  }
  main.home header .content p {
    max-width: 75%;
  }
  main.home article section {
    padding: 0;
  }
  main.home article section#paths {
    max-width: 64em;
    margin: 0 auto 6em auto;
    row-gap: 4em;
    -moz-column-gap: 3em;
         column-gap: 3em;
    padding: 0;
  }
  main.home article section#paths .cta {
    height: 5rem;
  }
  main.home article section#paths .cta .cta-container span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    -moz-column-gap: 2.4rem;
         column-gap: 2.4rem;
    width: 100%;
  }
  main.home article section#paths .cta .cta-container span .button {
    margin: 0;
  }
  main.home article section#paths .cta .cta-container span p {
    margin: 0;
    font-weight: 600;
  }
  main.home article section#secondary-feature {
    grid-template-columns: 1fr 64em 1fr;
    margin: 0 0 8em 0;
  }
  main.home article section#secondary-feature .background {
    height: 100%;
  }
  main.home article section#secondary-feature .content {
    height: 100%;
    padding: 6em 0;
  }
  main.home article section#secondary-feature .content h2 {
    font-size: var(--heading2size);
  }
  main.home article section#secondary-feature .content p {
    max-width: 66%;
  }
  main.home article section#value-statement {
    grid-template-columns: 1fr repeat(13, 4.92em) 1fr;
    grid-template-rows: auto auto repeat(5, 6em) auto auto;
    margin: 0 0 8em 0;
  }
  main.home article section#value-statement .title {
    grid-area: 1/2/2/15;
  }
  main.home article section#value-statement .quotes {
    grid-area: 13/4/14/14;
  }
  main.home article section#value-statement .student {
    grid-area: 3/5/9/12;
    grid-template-columns: subgrid;
    grid-template-rows: subgrid;
  }
  main.home article section#value-statement .student .background {
    grid-area: 2/1/9/9;
    border-radius: 0.4rem;
  }
  main.home article section#value-statement .student .foreground {
    grid-area: 1/2/9/7;
  }
  main.home article section#value-statement .student .foreground img {
    height: 100%;
  }
  main.home article section#value-statement .value.flexible {
    grid-area: 3/3/5/7;
  }
  main.home article section#value-statement .value.transfer {
    grid-area: 3/10/5/15;
  }
  main.home article section#value-statement .value.training {
    grid-area: 4/11/7/15;
  }
  main.home article section#value-statement .value.admissions {
    grid-area: 4/1/7/6;
  }
  main.home article section#value-statement .value.career {
    grid-area: 6/1/9/6;
  }
  main.home article section#value-statement .value.indigenous {
    grid-area: 6/10/9/15;
  }
  main.home article section#student-services {
    grid-template-columns: 1fr repeat(3, 21.33em) 1fr;
    margin: 0 0 8em 0;
  }
  main.home article section#student-services .title {
    grid-area: 1/2/2/5;
    margin: 0 0 3em 0;
  }
  main.home article section#student-services .services {
    grid-area: 2/2/3/4;
    margin: 0 0 1em 0;
  }
  main.home article section#student-services .services ul li {
    padding: 0 4em 0 0;
  }
  main.home article section#student-services .resources {
    grid-area: 2/4/3/5;
  }
  main.home article section#student-services .resources ul {
    display: inherit;
  }
  main.home article section#student-services .more-services {
    grid-area: 3/2/4/4;
  }
  main.home article section#student-services .more-resources {
    grid-area: 3/4/4/5;
  }
  main.home article section#media-centre {
    max-width: 64em;
    margin: 0 auto;
    padding: 0;
  }
}
/* Button Background Moving Animation */
/*
@media (min-width: 80em) {
	main {
		&.home {
			header {
				grid-template-rows: 0rem auto 1fr auto 6em;
				grid-template-columns: 1fr 3em 64em 3em 1fr !important;
			}
		}
	}
}
	*/
@keyframes buttonbackground {
  0% {
    background-position: top left;
  }
  50% {
    background-position: bottom right;
  }
  100% {
    background-position: top left;
  }
}
/* Button Round Aninmations */
@keyframes buttonround {
  from {
    border-radius: 37.5px;
  }
  to {
    border-radius: 0.4rem;
  }
}
@media (min-width: 23.6875em) {
  @keyframes buttonround {
    from {
      border-radius: 25px;
    }
    to {
      border-radius: 0.4rem;
    }
  }
}
/* Button Opening Aninmations */
@keyframes buttonopen {
  0% {
    width: 75px;
  }
  80% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}
@media (min-width: 23.6875em) {
  @keyframes buttonopen {
    0% {
      width: 50px;
    }
    80% {
      width: 100%;
    }
    100% {
      width: 100%;
    }
  }
}
@media (min-width: 48em) {
  @keyframes buttonopen {
    0% {
      width: 50px;
    }
    80% {
      width: 292px;
    }
    100% {
      width: 292px;
    }
  }
}
/* Fades in label on button */
@keyframes buttonfade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Animations incoming text */
@keyframes headingslide {
  from {
    top: 100px;
  }
  to {
    top: 0;
  }
}
@keyframes descslide {
  from {
    top: 50px;
  }
  to {
    top: 0;
  }
}
@keyframes backgroundpulse {
  0% {
    background-position: top right;
  }
  25% {
    background-position: top left;
  }
  50% {
    background-position: bottom left;
  }
  100% {
    background-position: bottom right;
  }
}
@keyframes ctaslideup {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-50px);
  }
}