#header {
  padding-bottom: 60px;
  padding-top: 50px;
}
#header h1 {
  font-size: 38px;
  word-break: break-word;
  max-width: 700px;
}
@media only screen and (min-width: 760px) {
  #header h1 {
    font-size: 42px;
  }
}
#header h1 + .subtitle-wrapper {
  display: flex;
  flex-flow: row wrap;
  margin-top: 15px;
  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: 50px;
  padding-bottom: 60px;
}
@media screen and (min-width: 600px) {
  #header > div h1 {
    font-size: 42px;
    max-width: 640px;
  }
}

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

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

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

#plan-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-gap: 20px;
}
#plan-wrapper .plan {
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
#plan-wrapper .plan:first-of-type {
  background: #eee;
}
#plan-wrapper .plan:not(:first-of-type) {
  background: rgb(230, 235, 238);
}
#plan-wrapper .plan .plan-header {
  display: flex;
  gap: 10px;
  flex-flow: row-reverse;
  justify-content: flex-end;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  height: 100px;
  box-sizing: border-box;
  line-height: 1;
}
#plan-wrapper .plan .plan-header .plan-price {
  font-size: 32px;
  font-weight: 500;
}
#plan-wrapper .plan .plan-header .plan-title {
  display: block;
  font-weight: 500;
  font-size: 18px;
}
#plan-wrapper .plan .plan-header .plan-unit {
  color: #767676;
}
#plan-wrapper .plan .plan-controls-wrapper {
  margin-top: 15px;
  display: flex;
  justify-content: start;
  gap: 15px;
}
#plan-wrapper .plan .plan-controls-wrapper .plan-controls-link {
  background: #0d70d3;
  display: inline-flex;
  align-items: center;
  padding: 4px 24px;
  border-radius: 6px;
  color: #fff;
  font-weight: 500;
  height: 38px;
  box-sizing: border-box;
}
#plan-wrapper .plan .plan-controls-wrapper .plan-controls-link.action-none, #plan-wrapper .plan .plan-controls-wrapper .plan-controls-link.action-downgrade {
  background: #496075;
}
#plan-wrapper .plan .plan-controls-wrapper .plan-controls-link:hover {
  opacity: 1 !important;
}
#plan-wrapper .plan .plan-controls-wrapper .plan-controls-link-announcement {
  background: rgb(246, 248, 249);
  padding: 4px 26px;
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  height: 38px;
  width: 100px;
  box-sizing: border-box;
}
#plan-wrapper .plan .plan-controls-wrapper #plan-controls-switch-left {
  background: #e3e3e3;
  width: 30px;
  border-radius: 6px;
  display: flex;
  padding: 13px 16px 0;
  gap: 2px;
}
#plan-wrapper .plan .plan-controls-wrapper #plan-controls-switch-center {
  background: #d8e0e6;
  width: 40px;
  border-radius: 6px;
  display: flex;
  padding: 13px 16px 0;
  gap: 2px;
}
#plan-wrapper .plan .plan-controls-wrapper #plan-controls-switch-right {
  background: #d8e0e6;
  border-radius: 6px;
  width: 20px;
  display: flex;
  padding: 13px 16px 0;
  gap: 2px;
}
#plan-wrapper .plan .plan-key-features {
  margin-top: 40px;
}
#plan-wrapper .plan .plan-key-features li:first-of-type {
  text-decoration: underline;
}
@media screen and (min-width: 1000px) {
  #plan-wrapper {
    height: 400px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
  }
}

#features-wrapper {
  margin-top: clamp(30px, 4vw, 40px);
  display: grid;
}
#features-wrapper [id^=features-title] {
  font-weight: 500;
  font-size: 18px;
  text-decoration: underline;
  display: flex;
  padding: 10px 0;
}
#features-wrapper #features-title-free, #features-wrapper #features-title-pro, #features-wrapper #features-title-team {
  justify-content: center;
  background: rgb(245, 245, 245);
  position: relative;
}
#features-wrapper #features-title-free {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  padding-top: 20px;
}
#features-wrapper #features-title-pro:before {
  content: "";
  display: block;
  position: absolute;
  left: 30px;
  right: 30px;
  top: -1px;
  background: #e6e6e6;
  height: 1px;
}
#features-wrapper #features-title-team {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-bottom: 20px;
}
#features-wrapper #features-title-team:before {
  content: "";
  display: block;
  position: absolute;
  left: 30px;
  right: 30px;
  top: -1px;
  background: #e6e6e6;
  height: 1px;
}
#features-wrapper .features-details {
  padding: 0;
  border-top: 1px solid #eee;
}
#features-wrapper .features-details details {
  width: 100%;
}
#features-wrapper .features-details details summary {
  list-style: revert !important;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
#features-wrapper .features-details details summary:hover {
  cursor: pointer;
}
#features-wrapper .features-details details summary:hover span {
  text-decoration: underline;
  color: #0d70d3;
}
#features-wrapper .features-details details summary::after {
  content: "+";
  font-weight: normal;
  color: #767676;
}
#features-wrapper .features-details details p {
  margin: 4px 0 24px;
}
#features-wrapper .features-details details[open] summary span {
  text-decoration: underline;
  color: #0d70d3;
}
#features-wrapper .features-details details[open] summary::after {
  content: "-";
}
#features-wrapper .features-details-team, #features-wrapper .features-details-free, #features-wrapper .features-details-pro {
  justify-content: center;
  display: flex;
  padding: 10px 0;
}
@media screen and (max-width: 999px) {
  #features-wrapper .features-details {
    grid-column: 1/-1;
    margin-top: 20px;
  }
  #features-wrapper .features-details-team, #features-wrapper .features-details-free, #features-wrapper .features-details-pro {
    background: rgb(245, 245, 245) !important;
    border: 0 !important;
    position: relative;
  }
  #features-wrapper .features-details-team:before, #features-wrapper .features-details-free:before, #features-wrapper .features-details-pro:before {
    content: "";
    display: block;
    position: absolute;
    left: 30px;
    right: 30px;
    top: -1px;
    background: #e6e6e6;
    height: 1px;
  }
  #features-wrapper .features-details-free {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    padding-top: 20px;
  }
  #features-wrapper .features-details-free:before {
    display: none !important;
  }
  #features-wrapper .features-details-team {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 700px) {
  #features-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
  #features-wrapper #features-title {
    grid-column: 1/-1;
  }
  #features-wrapper [class^=features-details-] {
    padding: 20px 0;
    border-radius: unset;
  }
  #features-wrapper .features-details-free {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  #features-wrapper .features-details-pro::before {
    width: 1px;
    height: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  #features-wrapper .features-details-team {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  #features-wrapper .features-details-team::before {
    width: 1px;
    height: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  #features-wrapper #features-title-free {
    border-bottom-left-radius: 10px;
    border-top-right-radius: unset;
    padding: 20px 0;
  }
  #features-wrapper #features-title-team {
    border-bottom-left-radius: unset;
    border-top-right-radius: 10px;
    padding: 20px 0;
  }
  #features-wrapper #features-title-team::before {
    width: 1px;
    height: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  #features-wrapper #features-title-pro {
    padding: 20px 0;
  }
  #features-wrapper #features-title-pro::before {
    width: 1px;
    height: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
}
@media screen and (min-width: 1000px) {
  #features-wrapper {
    grid-column-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  #features-wrapper #features-title {
    grid-column: 1;
    padding-top: 80px;
  }
  #features-wrapper .features-details {
    padding: 0;
  }
  #features-wrapper [class^=features-details-] {
    padding: 10px 0;
    border-radius: unset;
  }
  #features-wrapper #features-title, #features-wrapper #features-title-free, #features-wrapper #features-title-pro, #features-wrapper #features-title-team {
    border: none;
  }
  #features-wrapper #features-title::before, #features-wrapper #features-title-free::before, #features-wrapper #features-title-pro::before, #features-wrapper #features-title-team::before {
    display: none;
  }
  #features-wrapper #features-title-free {
    border-bottom-left-radius: unset;
    border-top-right-radius: 10px;
  }
  #features-wrapper #features-title-pro {
    background: #fff;
  }
  #features-wrapper #features-title-team {
    border-bottom-right-radius: unset;
    border-top-left-radius: 10px;
  }
  #features-wrapper .features-details-team, #features-wrapper .features-details-free {
    position: relative;
  }
  #features-wrapper .features-details-team:before, #features-wrapper .features-details-free:before {
    content: "";
    display: block;
    position: absolute;
    left: 30px;
    right: 30px;
    width: auto;
    top: -1px;
    background: #e6e6e6;
    height: 1px;
    bottom: unset;
  }
  #features-wrapper > div {
    display: flex;
    border-top: 1px solid #e6e6e6;
  }
  #features-wrapper > div:nth-of-type(even) {
    background: rgb(245, 245, 245);
    border-top: 1px solid rgb(245, 247, 249);
    position: relative;
  }
  #features-wrapper > div:nth-of-type(even):before {
    content: "";
    display: block;
    position: absolute;
    left: 30px;
    right: 30px;
    top: -1px;
    background: #e6e6e6;
    height: 1px;
  }
  #features-wrapper > div:nth-of-type(odd) {
    background: #fff;
  }
  #features-wrapper > div:nth-last-of-type(-n+3) {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding-bottom: 20px;
  }
}
#features-wrapper .features-icon {
  height: 26px;
}

@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;
  }
}