#header {
  padding-bottom: 70px;
  padding-top: 40px;
}
#header h1 {
  font-size: 40px;
  word-break: break-word;
  max-width: 700px;
}
@media only screen and (min-width: 760px) {
  #header h1 {
    font-size: 46px;
  }
}
#header h1 + .subtitle-wrapper {
  display: flex;
  flex-flow: row wrap;
  margin-top: 20px;
  padding-right: 50%;
  position: relative;
}
#header h1 + .subtitle-wrapper:before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #cbcbcb;
  margin-right: calc(100% - 50px);
  margin-top: 12px;
  margin-bottom: 30px;
}
@media screen and (min-width: 576px) {
  #header h1 + .subtitle-wrapper {
    padding-right: unset;
  }
  #header h1 + .subtitle-wrapper:before {
    margin-right: 40px;
    margin-bottom: unset;
  }
}
#header h1 + .subtitle-wrapper a:hover {
  opacity: 0.6;
}
#header h1::first-letter {
  text-transform: capitalize;
}

.underlined {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.new-line-divider {
  opacity: 0.3;
}

.h-p {
  position: absolute;
}

.bold {
  font-weight: 500;
}

.info-4 {
  color: rgba(26, 28, 30, 0.4);
}

.info-6 {
  color: rgba(26, 28, 30, 0.6);
}

.fluid {
  word-break: break-all;
}

.break-all {
  word-break: break-all;
}

.card-article-link article header {
  height: 190px;
  background: #f5f5f5;
  padding: clamp(10px, 3vw, 14px) clamp(20px, 5vw, 34px);
  box-sizing: border-box;
  display: flex;
  flex-flow: column-reverse;
  justify-content: flex-end;
  border-radius: 4px;
}
.card-article-link article header .initials {
  font-size: 28px;
  font-weight: 500;
  text-transform: capitalize;
}
@media screen and (min-width: 500px) {
  .card-article-link article header .initials {
    font-size: 32px;
  }
}
.card-article-link article header h1 {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.card-article-link article header h1:first-letter {
  text-transform: capitalize;
}
.card-article-link article .about {
  padding-top: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.card-article-link:hover article h1 {
  opacity: 0.6;
}

.feature-card {
  display: flex;
  flex-flow: column;
}
.feature-card .illustration {
  background: #f5f5f5;
  border-radius: 4px;
  order: 1;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-card .illustration .initials {
  font-size: 32px;
  font-weight: 500;
}
.feature-card h3 {
  order: 2;
  margin-top: 30px;
  margin-bottom: 10px;
}
.feature-card p {
  order: 3;
}

.button {
  border: 0;
  padding: 4px 26px;
  background: #f3f5f6;
  border-radius: 6px;
  height: 38px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.button span {
  pointer-events: none;
}
.button:active, .button:focus {
  outline: none;
}
.button:hover {
  cursor: pointer;
}
.button:not(.primary).progress .progress-indicator {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #f8f8fa;
  border-radius: 4px;
}
.button:not(.primary).progress .progress-indicator span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  animation: btn-progress-pulse-light 1s infinite ease-in-out both;
}
.button:not(.primary).progress .progress-indicator span:nth-of-type(2) {
  margin: 3px;
  animation-delay: 0.2s;
}
.button:not(.primary).progress .progress-indicator span:last-of-type {
  animation-delay: 0.4s;
}
.button.primary {
  background: #0d70d3;
  color: white;
  font-weight: 500;
}
.button.primary.progress .progress-indicator {
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #0d70d3;
  border-radius: 4px;
}
.button.primary.progress .progress-indicator span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  animation: btn-progress-pulse 1s infinite ease-in-out both;
}
.button.primary.progress .progress-indicator span:nth-of-type(2) {
  margin: 3px;
  animation-delay: 0.2s;
}
.button.primary.progress .progress-indicator span:last-of-type {
  animation-delay: 0.4s;
}
.button.alert {
  background: #db3434;
  color: white;
}
.button + .button, .button + .text-extension {
  margin-left: 15px;
}
.button[disabled].primary {
  color: rgba(255, 255, 255, 0.69);
}
.button .progress-indicator {
  display: none;
}

@keyframes btn-progress-pulse {
  0% {
    width: 3px;
    height: 3px;
    background: #ffffff;
  }
  50% {
    width: 6px;
    height: 6px;
  }
  100% {
    background: rgba(255, 255, 255, 0);
    width: 3px;
    height: 3px;
  }
}
@keyframes btn-progress-pulse-light {
  0% {
    width: 3px;
    height: 3px;
    background: #282828;
  }
  50% {
    width: 6px;
    height: 6px;
  }
  100% {
    background: rgba(255, 255, 255, 0);
    width: 3px;
    height: 3px;
  }
}
footer {
  border-top: 0 !important;
  background: rgb(37, 40, 43);
  color: rgba(255, 255, 255, 0.7);
}
footer a {
  color: rgba(255, 255, 255, 0.7);
}

#panel-shadow {
  height: 1px;
  background: #e4e4e4;
  position: sticky;
  top: clamp(54px, 10vw, 64px);
}
#panel-shadow + .section {
  border-top: 0;
}

#scroll-up {
  padding: 0;
  background: none;
  border: 0;
}
#scroll-up:hover {
  cursor: pointer;
  opacity: 0.6;
}

#header {
  padding-top: 40px;
  padding-bottom: 70px;
}
@media screen and (min-width: 1100px) {
  #header > div {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 600px) {
  #header > div h1 {
    font-size: 46px;
    max-width: 700px;
  }
}

.wrapper {
  padding: 0 clamp(20px, 6vw, 46px);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: auto;
}

.section {
  border-top: 1px solid rgba(187, 187, 187, 0.2392156863);
  padding: clamp(30px, 6vw, 60px) clamp(20px, 6vw, 46px);
}
.section.small {
  padding: clamp(30px, 6vw, 40px) clamp(20px, 6vw, 46px);
}

#search-widget-wrapper {
  position: relative;
}
#search-widget-wrapper #search-widget {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
#search-widget-wrapper #search-widget > div {
  position: relative;
}
#search-widget-wrapper #search-widget > div:last-of-type {
  background: rgb(230, 235, 238);
}
#search-widget-wrapper #search-widget #search-widget-img {
  display: block;
  width: 100%;
  object-fit: cover;
  height: 300px;
  background: #3d5a6e;
}
#search-widget-wrapper #search-widget #search-widget-link {
  position: absolute;
  background: #0d70d3;
  left: 20px;
  bottom: 0;
  color: white;
  padding: 20px;
  box-sizing: border-box;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: underline;
}
#search-widget-wrapper #search-widget #search-widget-link a {
  color: white;
}
#search-widget-wrapper #search-widget #search-widget-overlay {
  box-sizing: border-box;
  padding: 15px;
  display: flex;
  flex-flow: column;
  gap: 15px;
  justify-content: space-between;
}
#search-widget-wrapper #search-widget #search-widget-overlay > div {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
#search-widget-wrapper #search-widget #search-widget-overlay .search-widget-overlay-pointer {
  background: white;
  padding: 16px 20px;
  border-radius: 8px;
  flex: 1;
}
#search-widget-wrapper #search-widget #search-widget-overlay .search-widget-overlay-pointer a {
  line-height: 1;
  font-weight: 500;
}
#search-widget-wrapper #search-widget #search-widget-overlay .search-widget-overlay-pointer:first-of-type {
  flex: 2;
}
#search-widget-wrapper #search-widget #search-widget-overlay #search-widget-overlay-abstract {
  width: 100%;
  display: flex;
  justify-content: start;
  gap: 15px;
}
#search-widget-wrapper #search-widget #search-widget-overlay #search-widget-overlay-abstract .search-widget-overlay-abstract-pointer {
  background: rgba(255, 255, 255, 0.6901960784);
  padding: 18px;
  box-sizing: border-box;
  border-radius: 6px;
  width: 60px;
}
#search-widget-wrapper #search-widget #search-widget-overlay #search-widget-overlay-abstract .search-widget-overlay-abstract-pointer:nth-of-type(2) {
  background: #d8e0e6;
  padding: 18px;
  box-sizing: border-box;
  border-radius: 6px;
  display: flex;
  flex-flow: column;
  align-items: center;
  width: unset;
}
@media screen and (min-width: 700px) {
  #search-widget-wrapper #search-widget {
    display: grid;
    grid-template-columns: 2fr 1fr;
    height: 380px;
    grid-template-rows: 100%;
  }
  #search-widget-wrapper #search-widget #search-widget-img {
    height: 100%;
  }
  #search-widget-wrapper #search-widget #search-widget-overlay .search-widget-overlay-pointer {
    height: 48px;
    padding: 16px 24px;
  }
  #search-widget-wrapper #search-widget #search-widget-link {
    position: absolute;
    height: 100px;
    width: 90px;
    right: 0;
    top: 15px;
    bottom: unset;
    left: unset;
    color: white;
    padding: 20px;
    box-sizing: border-box;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: underline;
  }
  #search-widget-wrapper #search-widget #search-widget-overlay {
    grid-column: 2;
    gap: unset;
  }
}
@media screen and (min-width: 1000px) {
  #search-widget-wrapper #search-widget {
    height: 440px;
  }
}

.package-preview:hover {
  opacity: 1 !important;
}
.package-preview:hover .package-title {
  color: #006dce;
  text-decoration: underline;
}
.package-preview.placeholder .package-identifier > span {
  text-decoration: line-through;
}
.package-preview.placeholder:hover .package-title {
  color: #222;
}
.package-preview .package-header {
  display: grid;
  grid-template-columns: 48px 20px auto;
  align-items: start;
  justify-content: start;
}
.package-preview .package-header .package-title {
  font-size: 18px;
  grid-column: 3;
  line-height: 1.4;
}
.package-preview .package-header .package-identifier {
  opacity: 0.6;
  grid-column: 3;
}
.package-preview .package-icon-initials {
  grid-column: 1;
  grid-row: 1/3;
  text-transform: capitalize;
  background: #eee;
  height: 48px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.package-preview .avatar-custom {
  grid-column: 1;
  grid-row: 1/3;
  width: 44px;
  height: 44px;
  margin-top: 2px;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(168, 168, 168, 0.3294117647);
}
.package-preview .package-banner {
  border-radius: 10px;
  aspect-ratio: 1.91;
  width: 100%;
  object-fit: cover;
  background: #eee;
  margin-bottom: 20px;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(168, 168, 168, 0.3294117647);
}

@media screen and (min-width: 1000px) {
  body .grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
  }
}
@media screen and (min-width: 1000px) {
  body .grid-text h2 {
    max-width: 300px;
  }
}
body .grid-text > div {
  display: flex;
  flex-flow: column;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
body .grid-text > div .text:first-of-type {
  font-size: 18px;
}
@media screen and (min-width: 1000px) {
  body .grid-text {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
  }
  body .grid-text > div {
    grid-column: 2/-1;
  }
}