.saveforlater-container {
  margin-top: calc(var(--navbar-height) + 1rem);
  padding-bottom: 1rem;
}
.page-title {
  margin: 1rem 0;
}
.row-panel {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  color: #2d2d2d;
  font-family: var(--secondary-demi-font), georgia, serif;
  flex-wrap: wrap;
}

.into-text {
  display: grid;
  gap: 0.5rem;
  align-self: start;
}

.row-text-block {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  padding-top: 1.5rem;
  padding-left: 0.65rem;
}

.intro-title {
  font-size: 2.5rem;
  /* font-weight: bold; */
  font-family: var(--secondary-font);
  color: var(--grey-color);
  text-align: center;
}

.intro2 {
  font-family: var(--secondary-demi-font);
}

.contact-profile-img {
  padding: 20px;
}
.contact-info-text {
  text-align: center;
  display: grid;
  -webkit-box-align: center;
  align-items: stretch;
}

.contact-info ul li {
  vertical-align: top;
  max-width: 180px;
  width: auto;
  padding: 0 5px;
}

.bookmarkContent {
  max-width: 768px;
  display: grid;
  -webkit-box-align: center;
}

.contact-info ul li img {
  max-width: 32px;
  height: auto;
}
.contact-info ul li p {
  display: inline;
  font-weight: 600;
  font-size: 14px;
}

.bookmarkContent .row:nth-child(odd) ul.numbered-list {
  display: none;
}
.bookmarkContent .row:nth-child(even) h2 {
  display: none;
}

.bookmarkContent h2 {
  font-size: 1.6rem;
  font-family: var(--secondary-demi-font);
}

ul.numbered-list {
  counter-reset: li;
  list-style-type: none;
  font-size: 14px;
  line-height: 18px;
  margin-left: 40px;
}

ul.numbered-list li {
  position: relative;
  padding: 5px 0 5px 60px;
  margin-bottom: 20px;
}
ul.numbered-list li::before {
  content: counter(li);
  counter-increment: li;
  height: 40px;
  width: 40px;
  background: var(--primary-light-color);
  border-radius: 50%;
  color: var(--secondary-light-color);
  display: inline-block;
  text-align: center;
  position: absolute;
  left: -1em;
  top: -2px;
  padding-top: 10px;
  font-weight: 600;
}
.desktop-container h2 {
  font-family: var(--secondary-demi-font);
}

@media only screen and (max-width: 600px) {
  .desktop-container {
    display: none;
  }
  .mobile-container {
    display: block;
    -webkit-box-align: center;
  }

  .mobile-container ul.numbered-list {
    margin: 0 auto;
    padding: 0;
    max-width: 300px;
  }
  .mobile-container ul.numbered-list li {
    max-width: 100%;
    width: 100%;
    text-align: left;
    padding: 5px 0 5px 40px;
  }
  .mobile-container ul.numbered-list li p {
    font-size: 21px;
  }
  .mobile-container .imagePosLeft {
    width: 100%;
    text-align: center;
    position: relative;
    left: -8%;
    top: 15px;
  }
  .mobile-container .imagePosLeft img {
    max-width: 100%;
    height: auto;
  }
}

.mobile-container h2 {
  text-align: center;
  font-size: var(--heading-2-size);
  font-family: var(--secondary-demi-font);
}

@media only screen and (min-width: 601px) {
  .desktop-container {
    display: block;
  }
  .mobile-container {
    display: none;
  }
}
