.dynamic-font-size-s {
  font-size: 2vw;
}

.dynamic-font-size-m {
  font-size: 2.45vw;
}

.dynamic-font-size-l {
  font-size: 2.75vw;
}

.dynamic-font-size-xl {
  font-size: 3vw;
}

.dynamic-font-size-2xl {
  font-size: 3.6vw;
}

.dynamic-font-size-3xl {
  font-size: 4vw;
}


@media (min-width: 768px) {
  .dynamic-font-size-s {
    font-size: 0.4224em;
  }

  .dynamic-font-size-m {
    font-size: 0.528em;
  }

  .dynamic-font-size-l {
    font-size: 0.64em;
  }

  .dynamic-font-size-xl {
    font-size: 0.8em;
  }

  .dynamic-font-size-2xl {
    font-size: 1.064em;
  }

  .dynamic-font-size-3xl {
    font-size: 1.6em;
  }
}

@media (min-width: 1024px) {
  .dynamic-font-size-s {
    font-size: 0.5676em;
  }

  .dynamic-font-size-m {
    font-size: 0.7095em;
  }

  .dynamic-font-size-l {
    font-size: 0.86em;
  }

  .dynamic-font-size-xl {
    font-size: 1.075em;
  }

  .dynamic-font-size-2xl {
    font-size: 1.42975em;
  }

  .dynamic-font-size-3xl {
    font-size: 2.15em;
  }
}

@media (min-width: 1408px) {
  .dynamic-font-size-s {
    font-size: 0.8em;
  }

  .dynamic-font-size-m {
    font-size: 1em;
  }

  .dynamic-font-size-l {
    font-size: 1.2em;
  }

  .dynamic-font-size-xl {
    font-size: 1.5em;
  }

  .dynamic-font-size-2xl {
    font-size: 2em;
  }

  .dynamic-font-size-3xl {
    font-size: 3em;
  }
}


/*
    Block: Accordion Content
 */
.accordion-wrapper {
  border-top: 1px solid #21292F;
  border-bottom: 1px solid #21292F;
  overflow: hidden;
  transition: height 200ms ease-in-out;
  margin-top: -1px !important;
}

.accordion-trigger:hover {
  background: rgba(0, 0, 0, 0.04);
}

.accordion-trigger:hover + .accordion-content {
  background: rgba(0, 0, 0, 0.04);
}

.accordion-trigger {
  line-height: 20px;
  padding: 12px 0;
  display: flex;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  transition: 200ms ease-in-out;
}

.accordion-trigger .accordion-trigger-header-left picture {
  max-height: 48px;
  margin: -4px 0;
  margin-right: 0.5em;
}

.accordion-trigger .accordion-trigger-header-left .no-margin {
  max-height: 64px;
  margin: -12px 0;
  margin-right: 0.5em;
}

.accordion-trigger .accordion-trigger-header-left picture img {
  max-height: 48px;
}

.accordion-trigger .accordion-trigger-header-left .no-margin img {
  max-height: 64px;
}

.accordion-trigger .accordion-trigger-header-left,
.accordion-trigger .accordion-trigger-header-right {
  gap: 0.5em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.accordion-trigger svg,
.accordion-trigger .accordion-trigger-header-right svg {
  height: 1.5em;
  transition: transform 200ms ease-in-out;
}

.accordion-trigger .accordion-trigger-header-right.style-open svg {
  transform: rotate(-180deg);
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 200ms ease-in-out;
  overflow: hidden;
  margin-bottom: -1px !important;
}

.accordion-content .accordion-content-inner {
  min-height: 0;
}

.accordion-content.is-open {
  grid-template-rows: 1fr;
}

.accordion-content .container-fluid,
.accordion-content .container {
  padding-left: 0;
  padding-right: 0;
}

.nested-accordion-element {
  padding-left: 2rem;
}

.nested-accordion-element:first-child > .accordion-wrapper {
  margin-top: 0 !important;
}

/*
    Block:  imagewithtext
 */
.image-text-overlay {
  position: absolute;
  z-index: 1;
}

.image-text-overlay .image-text-overlay-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2em;
}

.image-text-overlay .image-text-overlay-wrapper span {
  padding: 0 0.2em;
  white-space: nowrap;
}

/*
    Block: Shop Btn
 */
.tchibo-cc-blocks--ripple-button {
  position: relative;
  box-sizing: border-box;
  display: inline-flex;
  gap: 12px;
  flex-direction: row;
  align-items: center;
  line-height: 20px;
  overflow: hidden;
  border: 1px solid transparent;
  text-decoration: none !important;
  cursor: pointer;
  font-weight: 400;
  font-size: 15px;
}

.tchibo-cc-blocks--ripple-button.small {
  padding: 8px 24px;
  border-radius: 21px;
  min-height: 42px;
}

.tchibo-cc-blocks--ripple-button.medium {
  padding: 8px 24px;
  border-radius: 24px;
  min-height: 48px;
}

.tchibo-cc-blocks--ripple-button.large {
  padding: 8px 24px;
  border-radius: 28px;
  min-height: 56px;
}

.tchibo-cc-blocks--ripple-button svg {
  min-width: 1.3rem;
  height: 1.3rem;
}

span.ripple-dark {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 400ms linear;
  background-color: rgba(0, 0, 0, 0.2);
}

span.ripple-light {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 400ms linear;
  background-color: rgba(255, 255, 255, 0.3);
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/*
    Block: PDF Download Grid
 */
.pdf-download-grid-12 {
  --columns: 12;
}

.pdf-download-grid-6 {
  --columns: 6;
}

.pdf-download-grid-4 {
  --columns: 4;
}

.pdf-download-grid-3 {
  --columns: 3;
}

.pdf-download-grid-2 {
  --columns: 2;
}

@media (max-width: 1023px) {
  .pdf-download-grid-2 {
    --columns: 3;
  }
}

@media (max-width: 767px) {
  .pdf-download-grid-2 {
    --columns: 6;
  }
}

@media screen and (min-width: 320px) {
  .pdf-download-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .pdf-download-column {
    grid-column: span var(--columns);
  }
}

.pdf-download-grid {
  align-items: baseline;
}

.pdf-download-column {
  width: 100%;
  justify-content: flex-start !important;
  line-height: 1.3em;
}

.pdf-download-grid .pdf-download-column a picture img {
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.25);
}

.pdf-download-grid .pdf-download-column a {
  width: 100%;
  max-width: 100% !important;
  text-decoration: none !important;
  font-weight: 200;
  font-size: 0.9em;
  line-height: 1.4em;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5em;
  margin-top: 0.5rem;
}

@media (max-width: 1407px) {
  .pdf-download-grid .pdf-download-column a {
    font-size: 0.8em;
  }
}

.pdf-download-grid .pdf-download-column a:hover {
  text-decoration: underline !important;
}

.pdf-download-grid .pdf-download-column a svg {
  height: 1.2em;
}

.pdf-download-grid .pdf-download-column a picture {
  max-width: 100%;
}

.pdf-download-grid .pdf-download-column a picture figcaption {
  font-size: 1.1em !important;
  font-weight: 400;
}

.pdf-download-grid > .pdf-download-column {
  margin-bottom: unset !important;
}

.pdf-download-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pdf-download-list-item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.pdf-download-list-item-image {
  max-width: 100px;
  max-height: 100px;
  flex-grow: 0;
  flex-shrink: 0;
}

.pdf-download-list-item.small .pdf-download-list-item-image {
  max-width: 80px;
  max-height: 100px;
}

.pdf-download-list-item.medium .pdf-download-list-item-image {
  max-width: 120px;
  max-height: 150px;
}

.pdf-download-list-item.large .pdf-download-list-item-image {
  max-width: 160px;
  max-height: 200px;
}

.pdf-download-list-item-image picture {
  max-width: 100%;
  max-height: 100%;
}

.pdf-download-list-item-image picture img {
  margin-left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.25);
}

.pdf-download-list-item-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  align-items: flex-start;
}

.pdf-download-list-item-title {
  font-size: 1.3em;
}

.pdf-download-list-item-info a svg {
  height: 1.2em;
}

.pdf-download-list-item-info a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4em;
}

.pdf-download-list-item.small .pdf-download-list-item-info {
  font-size: 0.8em;
  gap: 0.3rem;
}

.pdf-download-list-item.medium .pdf-download-list-item-info {
  font-size: 0.9em;
  gap: 0.5rem;
}

.pdf-download-list-item.large .pdf-download-list-item-info {
}


/*
    BLOCK: Gallery Slider
 */
.gallery-slider {
  position: relative;
  overflow: hidden;
}

.gallery-navigation-arrows {
  position: absolute;
  z-index: 5;
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.gallery-navigation-arrows .gallery-prev-button,
.gallery-navigation-arrows .gallery-next-button {
  cursor: pointer;
  width: 5%;
  height: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  color: #000;
  transition: background 100ms ease;
}

.gallery-navigation-arrows .gallery-prev-button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.gallery-navigation-arrows .gallery-next-button {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.gallery-navigation-arrows .gallery-prev-button:hover,
.gallery-navigation-arrows .gallery-next-button:hover {
  background: rgba(255, 255, 255, 0.6);
}

.gallery-navigation-arrows .gallery-prev-button svg,
.gallery-navigation-arrows .gallery-next-button svg {
  transition: margin 150ms ease, opacity 150ms ease;
  width: 70%;
  fill: #000;
  opacity: 0.6;
}

.gallery-navigation-arrows .gallery-prev-button svg {
  transform: scaleX(-1);
}

.gallery-navigation-arrows .gallery-prev-button:hover > svg {
  opacity: 0.8;
  margin-right: 15%;
}

.gallery-navigation-arrows .gallery-next-button:hover > svg {
  opacity: 0.8;
  margin-left: 15%;
}

.gallery-slider-image-number {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.gallery-slider-image-number div {
  padding: 0 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8);
  line-height: 20px;
  backdrop-filter: blur(4px);
  font-size: 12px;
}

.gallery-navigation-dots {
  position: relative;
  width: 100%;
  display: flex;
  padding: 8px 0;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  margin: 0 !important;
}

.gallery-navigation-dots .gallery-navigation-dot {
  list-style: none;
  width: 14px;
  transform: scale(0);
  opacity: 0.5;
  height: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: scale 100ms ease, opacity 100ms ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-navigation-dots .gallery-navigation-dot:after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #000;
}

.gallery-navigation-dots + .img-caption {
  padding-top: 0;
}

.gallery-slider-image-list {
  z-index: 1;
  position: absolute;
  display: flex;
  height: 100%;
  width: 100%;
}

.gallery-slider-image-wrapper {
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  width: 100%;
  height: 100%;
  margin-right: 2px;
}

/**
NESTED LAYOUT
 */
.nested-columns > .container-fluid,
.nested-columns > .container-fluid > .container {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}


/*
    Timeline
*/
.timeline-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline {
  display: flex;
  max-width: 100%;
  gap: 1em;
}

.timeline-navigation {
  flex-grow: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-navigation button {
  display: inline-block;
  width: 1.7em;
  height: 1.7em;
  background-color: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  outline: none;
  border-radius: 50%;
  transform: translateY(-41%);
}

.timeline-navigation svg {
  width: 1.5em;
  height: 1.5em;
  fill: var(--timeline-accent-color);
}

.timeline-scroll {
  max-width: 100%;
  overflow-y: hidden;
  overflow-x: auto;
  padding: 1em 0 2em 0;
}

.timeline-scroll::-webkit-scrollbar {
  height: 0.2em;
}

.timeline-scroll::-webkit-scrollbar-track {
  background: #dadada;
  border-radius: 0.1em;
}

.timeline-scroll::-webkit-scrollbar-thumb {
  background: var(--timeline-accent-color);
  border-radius: 0.1em;
}

.timeline-structure {
  display: inline-flex;
  flex-direction: column;
}

.timeline-top {
  align-items: flex-end;
  padding: 0 2em 0 2em;
  border-bottom: 2px solid;
}

.timeline-top .timeline-element {
  padding-bottom: 1em;
}

.timeline-bottom {
  align-items: flex-start;
  padding: 0em 2em 0em;
  border-top: 2px solid color-mix(in srgb, var(--timeline-accent-color) 35%, white);
  margin-top: -2px;
}

.timeline-bottom.small {
  padding-left: 8.5em;
}

.timeline-bottom.medium {
  padding-left: 11em;
}

.timeline-bottom.large {
  padding-left: 13.5em;
}

.timeline-bottom .timeline-element {
  padding-top: 1em;
}

.timeline-list {
  overflow: visible;
  display: inline-flex;
  flex: 0;
  gap: 2em;
}

.timeline-element {
  position: relative;
  padding-left: 0.5em;
  flex-shrink: 0;
  border-left: 2px solid var(--timeline-accent-color);
}

.timeline-element.small {
  width: 10em;
}

.timeline-element.medium {
  width: 15em;
}

.timeline-element.large {
  width: 20em;
}

.timeline-element::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--timeline-accent-color);
  left: 0;
  top: 0;
  transform: translate(calc(-50% - 1px), calc(-50% - 1px));
}

.timeline-element::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--timeline-accent-color);
  left: 0;
  bottom: 0;
  transform: translate(calc(-50% - 1px), calc(50% + 1px));
}

.timeline-mobile-popup {
  display: none;
}

@media (max-width: 767px) {
  .timeline-scroll {
    overflow: visible;
    padding: 0 0.5em 0;
  }

  .timeline-structure {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
  }

  .timeline-top {
    padding: 2em 0 2em 1em;
    border-bottom: 0;
    border-right: 2px solid #f5ede5;
    margin-bottom: 2em;
  }

  .timeline-top .timeline-element {
    padding-bottom: 0;
    padding-right: 1em;
    text-align: left;
  }

  .timeline-bottom {
    padding: 10.5em 1em 2em 0;
    border-top: 0;
    border-left: 2px solid #f5ede5;
    margin-left: -2px;
  }

  .timeline-bottom.small {
    padding-top: 8.5em;
    padding-left: 0;
  }

  .timeline-bottom.medium {
    padding-top: 10.5em;
    padding-left: 0;
  }

  .timeline-bottom.large {
    padding-top: 12.5em;
    padding-left: 0;
  }

  .timeline-bottom .timeline-element {
    padding-top: 0.5em;
    padding-left: 1em;
  }

  .timeline-list {
    overflow: visible;
    display: flex;
    flex: 1;
    gap: 2em;
    flex-direction: column;
  }

  .timeline-element {
    position: relative;
    padding-left: 0;
    padding-top: 0.5em;
    border-left: 0;
    border-top: 2px solid var(--timeline-accent-color);
  }

  .timeline-element h4,
  .timeline-element p {
    word-wrap: anywhere;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }

  .timeline-element h4 {
    font-size: 1.3em;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .timeline-element.small p {
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .timeline-element.small {
    width: 100%;
    height: 10em;
  }

  .timeline-element.medium p {
    -webkit-line-clamp: 5;
    line-clamp: 5;
  }

  .timeline-element.medium {
    width: 100%;
    height: 14em;
  }

  .timeline-element.large p {
    -webkit-line-clamp: 7;
    line-clamp: 7;
  }

  .timeline-element.large {
    width: 100%;
    height: 18em;
  }

  .timeline-element::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--timeline-accent-color);
    left: 0;
    top: 0;
    transform: translate(calc(-50% - 1px), calc(-50% - 1px));
  }

  .timeline-element::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--timeline-accent-color);
    left: auto;
    bottom: auto;
    right: 0;
    top: 0;
    transform: translate(calc(50% + 1px), calc(-50% - 1px));
  }

  .timeline-mobile-popup {
    position: absolute;
    top: 0.5em;
    width: calc(100vw - 4.8em);
    background-color: #F8F6F2;
    padding: 1em;
    border-radius: 0.25em;
    box-shadow: 1px 2px 5px 0 rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 90;
    text-align: left;
    line-clamp: unset;
    -webkit-line-clamp: unset;
    white-space: normal;
    overflow: visible;
    min-height: calc(100% - 1em);
  }

  .timeline-mobile-popup h4,
  .timeline-mobile-popup p {
    line-clamp: unset !important;
    -webkit-line-clamp: unset !important;
  }

  .timeline-top .timeline-mobile-popup {
    left: -1px;
  }

  .timeline-bottom .timeline-mobile-popup {
    right: -1px;
    /*left: calc(-100% - 3px);*/
  }
}

/*
Custom sized image
 */
.custom-sized-image {
  display: flex;
}

.custom-sized-image img {
  width: auto;
  height: auto;
}

/*
Tchibo Icon
 */
.tchibo-icon-block {
  display: inline-block;
}

.tchibo-icon-block.size-s svg {
  height: 1.3em;
  width: 1.3em;
}

.tchibo-icon-block.size-m svg {
  height: 1.6em;
  width: 1.6em;
}

.tchibo-icon-block.size-l svg {
  height: 2em;
  width: 2em;
}

.tchibo-icon-block.size-xl svg {
  height: 3em;
  width: 3em;
}

.tchibo-icon-block.size-xxl svg {
  height: 4.5em;
  width: 4.5em;
}

/**
PROGRESS BAR BLOCK
 */
.progress-bar-block + .progress-bar-block {
  margin-top: 0.5rem;
}

.progress-bar-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.progress-bar-block .progress-bar {
  border-radius: 0.5rem;
  position: relative;
  display: flex;
}

.progress-bar-block .progress-bar-text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 1rem;
  z-index: 2;
  width: 100%;
}

.progress-bar-block .progress-bar-color {
  border-radius: calc(0.5rem);
  position: absolute;
  height: 100%;
  z-index: 1;
}

.progress-bar-block .progress-bar .progress-bar-label {
  flex-grow: 1;
  padding: 0.5rem 1rem;
  line-height: 1.0em;
}

.progress-bar-block .progress-bar .progress-bar-label .progress-bar-subline {
  display: inline-block;
  text-decoration: none;
  font-weight: normal;
  font-size: 0.85em;
  margin-top: 0.2rem;
}

.progress-bar-block .progress-bar .progress-bar-value {
  flex-grow: 0;
  white-space: nowrap;
  padding: 0.5rem 1rem;
}

/**
FEATURE IMAGE
 */
.feature-image-block {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.feature-image-spacing-before {
  margin-top: 1.5rem;
}

.feature-image-spacing-after {
  margin-bottom: 1.5rem;
}

.feature-image-block figure {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.feature-image-block figcaption {
  padding-top: 0.25rem;
  line-height: 1.5rem;
  text-align: center;
}

.feature-image-block .feature-image-wrapper {
  position: relative;
}

.feature-image-block img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.feature-image-block .feature-image-overlay {
  position: absolute;
  line-height: 1.5rem;
}

.feature-image-block .feature-image-overlay .image-text-overlay-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2em;
}

.feature-image-block .feature-image-overlay .image-text-overlay-wrapper span {
  padding: 0 0.2em;
  white-space: nowrap;
}


.image-repeat-block {
  width: 100%;
  display: flex;
}

.image-repeat-block div {
  width: 100%;
}

/*
HEADING BLOCK
 */
.h1-heading-block {
  width: calc(100% + 6rem);
  text-align: center;
  margin: 0 -3rem;
  padding: 1.5rem 0;
}

.h1-heading-block div {
  font-weight: bold;
}


.h1, h1 {
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: 1px
}

@media (min-width: 668px) {
  .h1, h1 {
    font-size: 37px;
    line-height: 1.3;
    letter-spacing: 1.2px
  }
}

@media (min-width: 1024px) {
  .h1, h1 {
    font-size: 43px;
    line-height: 1.3;
    letter-spacing: 1.4px
  }
}

@media (min-width: 1440px) {
  .h1, h1 {
    font-size: 49px;
    line-height: 1.3;
    letter-spacing: 1.5px
  }
}

@media (min-width: 1920px) {
  .h1, h1 {
    font-size: 59px;
    line-height: 1.3;
    letter-spacing: 1.9px
  }
}

.h2, h2 {
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 0.9px
}

@media (min-width: 668px) {
  .h2, h2 {
    font-size: 31px;
    line-height: 1.3;
    letter-spacing: 1px
  }
}

@media (min-width: 1024px) {
  .h2, h2 {
    font-size: 35px;
    line-height: 1.3;
    letter-spacing: 1.1px
  }
}

@media (min-width: 1440px) {
  .h2, h2 {
    font-size: 39px;
    line-height: 1.3;
    letter-spacing: 1.2px
  }
}

@media (min-width: 1920px) {
  .h2, h2 {
    font-size: 46px;
    line-height: 1.3;
    letter-spacing: 1.4px
  }
}

.h3, h3 {
  font-size: 23px;
  line-height: 1.4;
  letter-spacing: 0.8px
}

@media (min-width: 668px) {
  .h3, h3 {
    font-size: 26px;
    letter-spacing: 0.9px
  }
}

@media (min-width: 1024px) {
  .h3, h3 {
    font-size: 29px;
    letter-spacing: 0.9px
  }
}

@media (min-width: 1440px) {
  .h3, h3 {
    font-size: 31px;
    letter-spacing: 1px
  }
}

@media (min-width: 1920px) {
  .h3, h3 {
    font-size: 35px;
    letter-spacing: 1.1px
  }
}

.h4, h4 {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.7px
}

@media (min-width: 668px) {
  .h4, h4 {
    font-size: 22px;
    letter-spacing: 0.7px
  }
}

@media (min-width: 1024px) {
  .h4, h4 {
    font-size: 24px;
    letter-spacing: 0.7px
  }
}

@media (min-width: 1440px) {
  .h4, h4 {
    font-size: 25px;
    letter-spacing: 0.8px
  }
}

@media (min-width: 1920px) {
  .h4, h4 {
    font-size: 27px;
    letter-spacing: 0.8px
  }
}

.h5, h5 {
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0.6px
}

@media (min-width: 668px) {
  .h5, h5 {
    font-size: 18px;
    letter-spacing: 0.6px
  }
}

@media (min-width: 1024px) {
  .h5, h5 {
    font-size: 20px;
    letter-spacing: 0.6px
  }
}

@media (min-width: 1440px) {
  .h5, h5 {
    font-size: 20px;
    letter-spacing: 0.6px
  }
}

@media (min-width: 1920px) {
  .h5, h5 {
    font-size: 21px;
    letter-spacing: 0.7px
  }
}

.h5, h5-regular {
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0.6px
}

@media (min-width: 668px) {
  .h5, h5-regular {
    font-size: 18px;
    letter-spacing: 0.6px
  }
}

@media (min-width: 1024px) {
  .h5, h5-regular {
    font-size: 20px;
    letter-spacing: 0.6px
  }
}

@media (min-width: 1440px) {
  .h5, h5-regular {
    font-size: 20px;
    letter-spacing: 0.6px
  }
}

@media (min-width: 1920px) {
  .h5, h5-regular {
    font-size: 21px;
    letter-spacing: 0.7px
  }
}

.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}
