.has-fade {
  visibility: hidden;
}

.has-fades {
  visibility: hidden;
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
.fade-in {
  animation: fade-in 200ms ease-in-out forwards;
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.fade-out {
  animation: fade-out 200ms ease-in-out forwards;
}

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

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  font-size: 1rem;
}

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

body {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Optional: Prevent dragging of images or elements */
img, div {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Public Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: hsl(233, 8%, 62%);
  line-height: 1.3;
  overflow-x: hidden;
}
@media (min-width: 64em) {
  body {
    font-size: 1.125rem;
  }
}
body.noscroll {
  overflow: hidden;
}

h1,
h2,
h3 {
  font-weight: 300;
  line-height: 1.1;
  color: hsl(233, 26%, 24%);
  margin-top: 0px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1.3rem;
}
@media (min-width: 64em) {
  h1 {
    font-size: 2.3rem;
  }
}

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

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

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

.container {
  max-width: 69.375rem;
  margin: 0 auto;
}
.container--pall {
  padding-top: 4.375rem;
  padding-right: 1.5rem;
  padding-bottom: 4.375rem;
  padding-left: 1.5rem;
}
@media (min-width: 64em) {
  .container--pall {
    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-right: 1.5rem;
  padding-left: 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: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

button,
.button {
  position: relative;
  display: inline-block;
  padding: 0.875rem 2.1875rem;
  background-image: linear-gradient(to right, hsl(209, 84%, 33%), hsla(205, 63%, 46%, 0.851));
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  color: hsl(0, 0%, 100%);
  font-weight: 400;
  font-size: 0.875rem;
  transition: opacity 300ms ease-in-out;
  overflow: hidden;
}
button::before,
.button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.25);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
button:hover::before,
.button:hover::before {
  opacity: 0.5;
}

.sign_button {
  position: relative;
  display: inline-block;
  margin-right: -8rem;
  padding: 0.86rem 2.1875rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: hsl(233, 8%, 62%);
  border: 1px solid hsl(180, 63%, 46%);
  border-radius: 30px;
  cursor: pointer;
  overflow: hidden;
}
.sign_button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.sign_button:hover::before {
  opacity: 1;
  border: 0;
}
.sign_button:hover {
  transform: translateX(0.16rem);
}

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

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

.header {
  position: relative;
  z-index: 1;
}
.header.open .header__toggle > span:first-child {
  transform: rotate(45deg);
}
.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}
.header.open .header__toggle > span:last-child {
  transform: rotate(-45deg);
}
.header .overlay {
  opacity: 0;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(hsl(233, 26%, 24%), transparent);
}
@media (min-width: 64em) {
  .header .overlay {
    display: none;
  }
}
.header nav {
  position: relative;
  background-color: hsl(0, 0%, 100%);
  padding-top: 1.0625rem;
  padding-bottom: 1.0625rem;
}
.header__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.header__logo img {
  max-height: 2.5rem;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.header__logo .logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: hsl(209, 84%, 33%);
  line-height: 1;
  letter-spacing: 0.5px;
}
@media (max-width: 63.9375em) {
  .header__logo .logo-text .logo-text {
    font-size: 1.2rem;
  }
}
.header__toggle {
  cursor: pointer;
}
.header__toggle > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: hsl(233, 26%, 24%);
  transition: all 300ms ease-in-out;
  transform-origin: 3px 1px;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 5px;
}
.header__menu {
  position: absolute;
  width: calc(100% - 3rem);
  left: 50%;
  transform: translateX(-50%);
  background: hsl(0, 0%, 100%);
  margin-top: 1.5rem;
  padding: 1.625rem;
  border-radius: 5px;
}
@media (min-width: 64em) {
  .header__menu {
    display: none;
  }
}
.header__menu a {
  display: block;
  padding: 0.625rem;
  color: hsl(233, 26%, 24%);
  text-align: center;
  transition: all 0.2s ease-in-out;
}
.header__menu a:hover {
  color: hsl(209, 84%, 33%);
}
.header__menu a.bt:hover {
  color: hsl(0, 0%, 100%);
}
.header__links a {
  position: relative;
  font-size: 0.875rem;
  color: hsl(233, 8%, 62%);
  transition: color 300ms ease-in-out;
}
.header__links a:not(:last-child) {
  margin-right: 32px;
}
.header__links a::before {
  content: "";
  display: block;
  position: absolute;
  height: 5px;
  left: 0;
  right: 0;
  width: 0;
  bottom: -30px;
  background: linear-gradient(to right, hsl(209, 84%, 33%), hsla(205, 63%, 46%, 0.851));
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.header__links a:hover {
  color: hsl(209, 84%, 33%);
}
.header__links a:hover::before {
  opacity: 1;
  width: 100%;
}

.hero {
  background-color: hsl(0, 0%, 98%);
}
@media (min-width: 64em) {
  .hero .container {
    display: flex;
    align-items: center;
  }
}
.hero__cta {
  position: relative;
  display: inline-block;
  padding: 0.875rem 2.1875rem;
  background-image: linear-gradient(to right, hsl(209, 84%, 33%), hsla(205, 63%, 46%, 0.851));
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  color: hsl(0, 0%, 100%);
  font-weight: 400;
  font-size: 0.875rem;
  transition: opacity 300ms ease-in-out;
  overflow: hidden;
}
.hero__cta:hover {
  opacity: 0.8;
}
.hero__image {
  position: relative;
  background-image: url("./images/bg-image.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 17.5rem;
}
@media (min-width: 40em) {
  .hero__image {
    min-height: 35rem;
    background-position: center 70%;
  }
}
@media (min-width: 64em) {
  .hero__image {
    flex: 3;
    order: 2;
    height: 41rem;
    background-image: url("./images/bg-image.jpg");
    background-position: left center;
  }
}
@media (min-width: 64em) {
  .hero__image::before {
    content: "";
    position: absolute;
    height: 100%;
    background-image: url("./images/bg-image.jpg");
    background-repeat: no-repeat;
    background-position: center bottom;
    width: 130%;
    background-size: 122%;
    background-position: 0% 83%;
  }
}
.hero__text {
  text-align: center;
}
@media (min-width: 64em) {
  .hero__text {
    flex: 2;
    order: 1;
    text-align: left;
  }
}

.slide-container {
  position: fixed;
  top: 0;
  right: -25rem;
  width: 21.875rem;
  max-width: 90%;
  height: 100%;
  background: hsl(0, 0%, 98%);
  box-shadow: -0.25rem 0 0.625rem hsl(233, 8%, 62%);
  transition: right 0.4s ease;
  display: none;
  flex-direction: column;
  z-index: 1000;
}

.slide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid #eee;
}

.slide-header h2 {
  margin: 0;
  font-size: 1.25rem;
}

.close-btn {
  font-size: 1.5em;
  cursor: pointer;
  border: none;
  background: none;
  color: hsl(233, 8%, 62%);
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: hsla(205, 63%, 46%, 0.851);
}

.slide-body {
  flex: 1;
  padding: 1.875rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.slide-body .icon {
  font-size: 3.125rem;
  color: hsla(205, 63%, 46%, 0.851);
  margin-bottom: 1.25em;
}

.slide-body label {
  font-size: 1rem;
  margin-bottom: 0.625em;
}

.slide-body input {
  width: 100%;
  padding: 0.625em;
  margin-bottom: 1.25em;
  border: 0.125rem solid #ddd;
  border-radius: 5px;
  transition: border 0.3s ease;
  font-size: 0.655rem;
}

.slide-body input:focus {
  border-color: hsla(205, 63%, 46%, 0.851);
  outline: none;
}

.slide-body button.submit-btn {
  width: 100%;
  padding: 0.8em;
  background: linear-gradient(to right, hsl(209, 84%, 33%), hsla(205, 63%, 46%, 0.851));
  color: hsl(0, 0%, 100%);
  font-size: 0.95rem;
  border: none;
  border-radius: 0.15em;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.slide-body button.submit-btn:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* For smaller screens */
@media (max-width: 480px) {
  .slide-container {
    width: 100%;
  }
}
.underlay {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  z-index: 100;
  background-image: linear-gradient(to right, transparent, hsl(233, 26%, 24%));
}

.track {
  position: fixed;
  top: 0;
  right: 0;
  font-size: 14px;
  width: 100%;
  height: 100vh;
  background-color: hsl(0, 0%, 98%);
  display: none;
  transform: translateX(100%);
  z-index: 99;
}
.track__container {
  position: relative;
  padding: 0 0.5em;
  margin: auto;
  overflow-y: auto;
}
.track__content {
  display: grid;
  grid-template-areas: "top_header top_header" "order_display order_display" "order_status order_status" "progressbar progressbar" "shipping_info map";
  grid-template-columns: 1fr 2fr;
  /* sidebar fixed, main takes rest */
  grid-template-rows: 40px auto auto auto;
  height: 100vh;
}
@media (max-width: 39.9375em) {
  .track__content {
    grid-template-areas: "top_header" "order_display" "order_status" "progressbar" "map" "shipping_info";
    /* Move below map on mobile */
    grid-template-columns: 1fr;
    grid-template-rows: 2.875rem auto auto auto auto auto;
    overflow-y: visible;
  }
}
.track__content .content_header {
  grid-area: top_header;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  /* horizontal */
  padding: 0.5em 0.5em;
  margin: 0.5em 0;
  font-size: 0.875rem;
  color: hsl(233, 26%, 24%);
  position: relative;
  top: 0;
  right: 0;
}
@media (max-width: 39.9375em) {
  .track__content .content_header h3 {
    font-size: 0.655rem;
    font-weight: bold;
  }
}
.track__content .content_header .close-btn {
  display: flex;
  position: relative;
  font-size: 1.7rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.2em 0 0 0;
}
@media (max-width: 39.9375em) {
  .track__content .content_header {
    height: 2.857rem;
    flex-direction: row-reverse;
    align-items: flex-start;
    padding: 0.2em 0.2em;
  }
  .track__content .content_header .close-btn {
    align-self: flex-end;
  }
}
.track__content .order_display {
  grid-area: order_display;
  font-size: 0.875rem;
  color: hsl(233, 8%, 62%);
  justify-content: space-around;
}
.track__content .order_display .order_details {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0 0.8rem;
  padding: 1rem;
  font-size: 0.875rem;
  border: 0.071rem solid #ccc;
  background-color: hsl(220, 16%, 96%);
  flex-wrap: wrap;
}
@media (max-width: 39.9375em) {
  .track__content .order_display {
    font-size: 0.655rem;
  }
  .track__content .order_display .order_details {
    padding: 0.655rem;
    font-size: 0.655rem;
  }
  .track__content .order_display .order_details .total {
    display: none;
  }
}
.track__content .content_order_status {
  grid-area: order_status;
  color: hsl(233, 26%, 24%);
  justify-content: center;
  font-size: 0.875rem;
  padding: 1em;
  margin: 0 0.5em;
  text-align: center;
}
@media (max-width: 39.9375em) {
  .track__content .content_order_status {
    font-size: 0.655rem;
    padding: 0.7rem;
  }
  .track__content .content_order_status .status {
    font-size: 0.655rem;
  }
}
.track__content .content_order_status p {
  margin: 0;
  padding: 0;
}
.track__content .content_order_status .status {
  font-size: 0.875rem;
  color: green;
}
.track__content .status_progress {
  grid-area: progressbar;
}
.track__content .status_progress .progress-wrapper {
  margin: 0.5rem 0;
  position: relative;
  padding: 2rem 1rem;
}
@media (max-width: 39.9375em) {
  .track__content .status_progress .progress-wrapper {
    padding: 1rem 0.5rem;
  }
}
.track__content .status_progress .progress-wrapper .progress-line {
  position: absolute;
  top: 2.2rem;
  left: 8%;
  right: 8%;
  height: 0.4rem;
  background: #ccc;
  z-index: 0;
}
.track__content .status_progress .progress-wrapper .progress-fill {
  position: absolute;
  top: 2.2rem;
  left: 8%;
  height: 0.4rem;
  background: hsl(209, 84%, 33%);
  z-index: 1;
  transition: width 0.5s ease;
}
.track__content .status_progress .progress-wrapper .progress-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.track__content .status_progress .progress-wrapper .progress-bar .prog > strong {
  display: block;
  font-size: 0.875rem;
  color: hsl(233, 26%, 24%);
  margin-top: 0.2rem;
}
.track__content .status_progress .progress-wrapper .progress-bar div {
  text-align: center;
  width: 33%;
  position: relative;
}
.track__content .status_progress .progress-wrapper .progress-bar span {
  color: hsl(220, 16%, 96%);
  position: absolute;
  display: inline-block;
  width: 1em;
  height: 1em;
  /* padding: 1em; */
  background: #ccc;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}
.track__content .status_progress .progress-wrapper .progress-bar .active span {
  background: hsl(209, 84%, 33%);
}
@media (max-width: 39.9375em) {
  .track__content .status_progress .progress-wrapper .progress-fill,
  .track__content .status_progress .progress-wrapper .progress-line {
    left: 5%;
    right: 5%;
    top: 1.1rem;
    height: 0.2rem;
    position: absolute;
  }
  .track__content .status_progress .progress-wrapper .progress-bar {
    top: -0.4rem;
  }
  .track__content .status_progress .progress-wrapper .progress-bar span {
    margin-bottom: 0.1rem;
  }
  .track__content .status_progress .progress-wrapper .progress-bar .prog > strong {
    margin-top: 0.06rem;
    font-size: 0.655rem;
  }
  .track__content .status_progress .progress-wrapper .prog > strong {
    font-size: 0.655rem;
  }
}
.track__content .shipping_info_holder {
  grid-area: shipping_info;
  position: relative;
  padding: 0.8em;
  margin: 0.8;
  display: flex;
  justify-content: flex-start;
  font-size: 0.875rem;
}
.track__content .shipping_info_holder .shipping_info {
  margin: 1rem 0.3rem 0.5rem 0;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: normal;
}
.track__content .shipping_info_holder .shipping_info h3,
.track__content .shipping_info_holder .shipping_info p {
  font-size: 0.875rem;
}
@media (max-width: 39.9375em) {
  .track__content .shipping_info_holder {
    flex-direction: column;
  }
  .track__content .shipping_info_holder .shipping_info {
    padding: 0.5rem;
    font-size: 0.655rem;
  }
}
.track__content .map_frame {
  grid-area: map;
  position: relative;
  margin: 0.5rem 1rem 0.5rem 0.1rem;
  background-color: hsl(220, 16%, 96%);
}
.track__content .map_frame .mapIn {
  position: relative;
  max-width: 100%;
  height: 100%;
  padding: 0;
}
.track__content .map_frame .mapIn #map {
  width: 100%;
  height: 100%;
  min-height: 200px;
}
@media (max-width: 39.9375em) {
  .track__content .map_frame {
    margin: 0.5rem;
  }
  .track__content .map_frame #map {
    min-height: 200px;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
.slide-in {
  animation: slideIn 0.5s forwards ease-in-out;
  display: block;
}

.slide-out {
  animation: slideOut 0.5s forwards ease-in-out;
}

.slide-container.active {
  right: 0;
  animation: slideIn 0.5s forwards ease-in-out;
  display: flex;
}

.feature {
  background-color: hsl(220, 16%, 96%);
  text-align: center;
}
@media (min-width: 40em) {
  .feature {
    text-align: left;
  }
}
.feature__intro {
  margin-bottom: 3.75rem;
}
@media (min-width: 64em) {
  .feature__intro {
    width: 60%;
  }
}
@media (min-width: 40em) {
  .feature__grid {
    display: flex;
    flex-wrap: wrap;
  }
}
.feature__item {
  padding: 0.9375rem;
}
@media (min-width: 40em) {
  .feature__item {
    flex: 0 0 50%;
  }
}
@media (min-width: 64em) {
  .feature__item {
    flex: 1;
  }
}
.feature__icon {
  margin-bottom: 1.875rem;
}
@media (min-width: 64em) {
  .feature__icon {
    margin-bottom: 2.75rem;
  }
}
.feature__title {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.15;
  color: hsl(233, 26%, 24%);
  margin-bottom: 1rem;
}
@media (min-width: 64em) {
  .feature__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.feature__description {
  font-size: 0.875rem;
  line-height: 1.5;
}

.articles {
  background-color: hsl(0, 0%, 98%);
}

.article__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
}
@media (min-width: 40em) {
  .article__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64em) {
  .article__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.article__item {
  border-radius: 0.3125rem;
  overflow: hidden;
  background-color: hsl(0, 0%, 100%);
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.15);
  transition: all 150ms ease-in-out;
}
.article__item:hover {
  transform: scale(1.05);
}
.article__image {
  height: 12.5rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.article__text {
  padding: 1.875rem 1.875rem 2.5rem 1.875rem;
  color: hsl(233, 8%, 62%);
}
@media (min-width: 40em) {
  .article__text {
    padding: 1.875rem 1.5625rem;
  }
}
.article__author {
  font-size: 0.625rem;
  margin-bottom: 0.75rem;
}
.article__title {
  font-size: 1.0625rem;
  line-height: 1.2;
  color: hsl(233, 26%, 24%);
  margin-bottom: 0.5rem;
}
.article__description {
  font-size: 0.8125rem;
}

.footer {
  background-color: hsl(233, 26%, 24%);
  color: hsl(0, 0%, 100%);
  padding: 2.5rem;
  text-align: center;
}
@media (min-width: 64em) {
  .footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 3fr;
    grid-template-rows: 1fr auto;
    grid-template-areas: "logo links1 links2  cta" "social links1 links2  copyright";
    gap: 1rem;
    justify-items: start;
  }
}
.footer a {
  color: hsl(0, 0%, 100%);
}
.footer__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
@media (max-width: 63.9375em) {
  .footer__logo {
    margin-bottom: 1.875rem;
    display: inline-block;
  }
}
@media (min-width: 64em) {
  .footer__logo {
    grid-area: logo;
  }
}
.footer__logo img {
  max-height: 2.5rem;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.footer__logo .logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: hsl(209, 84%, 33%);
  line-height: 1;
  letter-spacing: 0.5px;
}
@media (max-width: 63.9375em) {
  .footer__logo .logo-text .logo-text {
    font-size: 1.2rem;
  }
}
@media (max-width: 63.9375em) {
  .footer__social {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 64em) {
  .footer__social {
    grid-area: social;
    align-self: end;
  }
}
.footer__social a {
  display: inline-block;
  height: 1.25rem;
}
.footer__social a svg path {
  transition: fill 150ms ease-in-out;
}
.footer__social a:hover svg path {
  fill: hsl(209, 84%, 33%);
}
.footer__social a:not(:last-child) {
  margin-right: 1rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.9375rem;
}
@media (min-width: 64em) {
  .footer__links {
    justify-content: space-between;
    align-items: start;
  }
}
@media (min-width: 64em) {
  .footer__links.col1 {
    grid-area: links1;
  }
}
@media (max-width: 63.9375em) {
  .footer__links.col2 {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 64em) {
  .footer__links.col2 {
    grid-area: links2;
  }
}
.footer__links a {
  line-height: 2.25;
  transition: color 150ms ease-in-out;
}
.footer__links a:hover {
  color: hsl(209, 84%, 33%);
}
@media (min-width: 64em) {
  .footer__cta {
    grid-area: cta;
    text-align: right;
    justify-self: end;
  }
}
@media (max-width: 63.9375em) {
  .footer__cta a.button {
    margin-bottom: 1.875rem;
  }
}
.footer__copyright {
  font-size: 0.8125rem;
  color: hsl(233, 8%, 62%);
}
@media (min-width: 64em) {
  .footer__copyright {
    grid-area: copyright;
    align-self: end;
    justify-self: end;
  }
}
.footer .attribution {
  margin-top: 4rem;
  font-size: 0.875rem;
}