@charset "UTF-8";
.branch-bar {
  position: fixed;
  bottom: 0;
  right: 0;
  min-width: 200px;
  z-index: 20000;
  z-index: var(--branch-bar-z-index, 20000);
  background-color: #00b2a9;
  background-color: var(--branch-bar-bg-color, #00b2a9);
  color: #fff;
  color: var(--branch-bar-color-light, #fff);
  padding: 10px;
  padding-top: 30px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 10px var(--branch-bar-shadow-color, rgba(0, 0, 0, 0.4));
          box-shadow: 0 0 10px var(--branch-bar-shadow-color, rgba(0, 0, 0, 0.4));
  opacity: 1;
  -webkit-transition: opacity 500ms ease-out;
  transition: opacity 500ms ease-out;
  visibility: visible;
}
.branch-bar--minified {
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
  opacity: 0.3;
  min-width: 0;
  min-height: 0;
  padding-top: 10px;
  border-top-left-radius: 3px;
}
.branch-bar--minified .branch-bar__content-col {
  height: 0;
  width: 0;
  opacity: 0;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  visibility: hidden;
}
.branch-bar--minified .branch-bar__toggle {
  display: none;
}
.branch-bar--minified .branch-bar__toggle::before {
  content: "▲";
}
.branch-bar--minified .branch-bar__preview {
  text-align: left;
}
.branch-bar--minified .branch-bar__preview-icon {
  display: inline-block;
}
.branch-bar--minified .branch-bar__branch-selector-label {
  display: none;
}
.branch-bar--minified .branch-bar__branch-selector-text {
  display: block;
}
.branch-bar--minified .branch-bar__branch-selector {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0;
}
.branch-bar--hidden {
  opacity: 1;
  visibility: hidden;
}
.branch-bar:hover {
  opacity: 1;
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
}
.branch-bar__label {
  font-weight: bold;
  display: block;
  margin: 0.2em 0;
}
.branch-bar__toggle {
  height: 26px;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 3px;
  padding-bottom: 3px;
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.branch-bar__toggle:hover {
  background: rgba(#fff, 0.2);
  background: rgba(var(--branch-bar-color-light, #fff), 0.2);
}
.branch-bar__toggle::before {
  content: "▼";
}
.branch-bar__content-col {
  height: auto;
  width: auto;
  visibility: visible;
  opacity: 1;
  overflow: hidden;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
  border-top: 1px solid rgba(#fff, 0.2);
  border-top: 1px solid rgba(var(--branch-bar-color-light, #fff), 0.2);
}
.branch-bar__select {
  color: #000;
  color: var(--branch-bar-color-dark, #000);
  width: 100%;
  max-width: 300px;
}
.branch-bar__button {
  color: #000;
  color: var(--branch-bar-color-dark, #000);
  border: 1px solid #fff;
  border: 1px solid var(--branch-bar-color-light, #fff);
  border-radius: 2px;
}
.branch-bar__preview {
  text-align: left;
  display: -ms-flexbox;
  display: flex;
}
.branch-bar__preview-title {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
}
.branch-bar__preview-icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
  vertical-align: middle;
  margin-left: 20px;
  margin-top: auto;
  margin-bottom: auto;
  display: none;
  cursor: pointer;
  -webkit-filter: drop-shadow(0 0 1px rgba(#fff, 0));
          filter: drop-shadow(0 0 1px rgba(#fff, 0));
  -webkit-filter: drop-shadow(0 0 1px rgba(var(--branch-bar-color-light, #fff), 0));
          filter: drop-shadow(0 0 1px rgba(var(--branch-bar-color-light, #fff), 0));
  -webkit-transition: fill 200ms ease-out, -webkit-filter 200ms ease-out;
  transition: fill 200ms ease-out, -webkit-filter 200ms ease-out;
  transition: filter 200ms ease-out, fill 200ms ease-out;
  transition: filter 200ms ease-out, fill 200ms ease-out, -webkit-filter 200ms ease-out;
}
.branch-bar__preview-icon:hover {
  -webkit-filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff);
          filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff);
  -webkit-filter: drop-shadow(0 0 2px var(--branch-bar-color-light, #fff)) drop-shadow(0 0 2px var(--branch-bar-color-light, #fff)) drop-shadow(0 0 2px var(--branch-bar-color-light, #fff)) drop-shadow(0 0 2px var(--branch-bar-color-light, #fff));
          filter: drop-shadow(0 0 2px var(--branch-bar-color-light, #fff)) drop-shadow(0 0 2px var(--branch-bar-color-light, #fff)) drop-shadow(0 0 2px var(--branch-bar-color-light, #fff)) drop-shadow(0 0 2px var(--branch-bar-color-light, #fff));
  fill: #00b2a9;
  fill: var(--branch-bar-bg-color, #00b2a9);
}
.branch-bar__preview-icon svg {
  max-width: 100%;
  height: auto;
}
.branch-bar__selector-form {
  display: inline;
}
.branch-bar__branch-selector-text {
  position: relative;
  z-index: 1;
  display: none;
}
.branch-bar__branch-selector-label {
  display: block;
}
.branch-bar__branch-selector {
  width: 100%;
  cursor: pointer;
  color: #000;
  color: var(--branch-bar-color-dark, #000);
}
/*# sourceMappingURL=styles.css.map */

/* Variables */
/* Variables */
/* Tailwind */
.relative {
  position: relative;
}
.block {
  display: block;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
/* components */
.lower-header ul.first-level {
  display: -ms-flexbox;
  display: flex;
}
.lower-header ul.first-level > li {
    -ms-flex: fit-content;
        flex: fit-content;
  }
@supports not (flex: fit-content) {
    .lower-header ul.first-level > li {
      -ms-flex: auto;
          flex: auto;
    }
  }
.lower-header ul.first-level > li:first-child > a {
    border-bottom-color: #6e90cb;
  }
.lower-header ul.first-level > li:first-child > a.active, .lower-header ul.first-level > li:first-child > ul {
    background-color: #6e90cb;
  }
/* force override old repo style to fix navigation */
.header-nav__top-row {
  display: -ms-flexbox;
  display: flex;
}
.header-nav__top-row {
  -ms-flex-align: center;
      align-items: center;
}
.header-nav__top-row {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.header-nav__top-row .additional-nav ul.aux {
      position: relative !important;
      top: unset !important;
    }
.header-nav__top-row .logo-bar {
  display: -ms-flexbox;
  display: flex;
}
.header-nav__top-row .logo-bar {
  width: 100%;
}
.header-nav__top-row .logo-bar {
  -ms-flex-align: center;
      align-items: center;
}
.header-nav__top-row .logo-bar {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media (min-width: 768px) {
  .header-nav__top-row .logo-bar {
    width: auto;
  }
}
/* force override old repo style to fix navigation */
.row.mobile-nav {
  margin: 0 !important;
}
.header-search-button-mobile {
  background: unset;
  position: absolute;
  right: 90px;
  top: 15px;
  display: block;
  background-image: none;
  padding-right: 1.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
  text-transform: uppercase
}
@media (min-width: 768px) {
  .header-search-button-mobile {
    display: none;
  }
}
.header-search-button-mobile::before {
    content: '';
    width: 40px;
    height: 50px;
    top: 0;
    left: 30px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAOCAYAAAD0f5bSAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpDMThFQjg0QTUwOUMxMUU0QTNDMURGNEI1NERFNUYzOSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpDMThFQjg0QjUwOUMxMUU0QTNDMURGNEI1NERFNUYzOSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkMxOEVCODQ4NTA5QzExRTRBM0MxREY0QjU0REU1RjM5IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkMxOEVCODQ5NTA5QzExRTRBM0MxREY0QjU0REU1RjM5Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U63qhAAAASBJREFUeNp80k8og3Ecx/EHo8hykYsbB8WVkpSTcnRiysyJHByUs54DJcqBi5wcKCkOqxWhtetErZX7DktqWkMRzbx/9flqPWzfevWt59fn9/z+Nfi+76lasIQo+vGJNPZx7lVVSL0LCQxWjbViXI4wj7IbaEQTzhTIYgJt6MQiCpjFus3mQhGMIoMRXOIdzzjAGF6wih4LzWmCFbx5f+sBO9rKjIWGUELKq11x9WELhVHEd51QUb3dQo/otg81qlc9b6EbNCNWJ7SgnrTQHirY1OkFaxlTeMWJhe6xoeW5wzjURbrXcY1dhcM69t8XsYYP9VhgqQV1d9nuzT1ZqKK/uecyjQF84Q7H6MMVOrAdCqw/h61/9nWLSZzi4keAAQC4tjtqdrh92QAAAABJRU5ErkJggg==) no-repeat 50% 50%;
  }
.header-search-button-mobile::before {
  position: absolute;
}
.header-search-button-mobile::before {
  z-index: 10;
}
.header-search-button-mobile::before {
  display: block;
}
.header-search-button-mobile::before {
  height: 100%;
}
.header-search-button-desktop {
  background-color: unset;
  position: relative;
  text-transform: uppercase;
  color: #000000b3;
}
.header-search-button-desktop img {
  padding-left: 0.5rem;
}
.header-search-button-desktop::before {
    content: '';
    width: 1px;
    top: 0;
    left: -10px;
  }
.header-search-button-desktop::before {
  position: absolute;
}
.header-search-button-desktop::before {
  display: inline-block;
}
.header-search-button-desktop::before {
  height: 100%;
}
.header-search-button-desktop::before {
  background-color: #00000040;
}
.header-search-button-desktop-wrapper {
  position: relative;
}
.header-search-button-desktop-wrapper {
  display: none;
}
@media (min-width: 768px) {
  .header-search-button-desktop-wrapper {
    display: block;
  }
}
.header-search__results-container {
  position: absolute;
}
.header-search__results-container {
  top: 60px;
}
.header-search__results-container {
  z-index: 50;
}
.header-search__results-container {
  width: 100%;
}
.header-search__results-container {
  --tw-bg-opacity: 1;
  background-color: rgba(238, 243, 251, var(--tw-bg-opacity));
}
.header-search__results-container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .header-search__results-container {
    top: 110px;
  }
}
.header-search__input-container {
  position: relative;
}
.header-search__input-container {
  display: -ms-flexbox;
  display: flex;
}
.header-search__input-container {
  width: 100%;
}
.header-search__input-container::before {
      content: '';
      width: 40px;
      top: 0;
      left: 0;
      background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAOCAYAAAD0f5bSAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpDMThFQjg0QTUwOUMxMUU0QTNDMURGNEI1NERFNUYzOSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpDMThFQjg0QjUwOUMxMUU0QTNDMURGNEI1NERFNUYzOSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkMxOEVCODQ4NTA5QzExRTRBM0MxREY0QjU0REU1RjM5IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkMxOEVCODQ5NTA5QzExRTRBM0MxREY0QjU0REU1RjM5Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U63qhAAAASBJREFUeNp80k8og3Ecx/EHo8hykYsbB8WVkpSTcnRiysyJHByUs54DJcqBi5wcKCkOqxWhtetErZX7DktqWkMRzbx/9flqPWzfevWt59fn9/z+Nfi+76lasIQo+vGJNPZx7lVVSL0LCQxWjbViXI4wj7IbaEQTzhTIYgJt6MQiCpjFus3mQhGMIoMRXOIdzzjAGF6wih4LzWmCFbx5f+sBO9rKjIWGUELKq11x9WELhVHEd51QUb3dQo/otg81qlc9b6EbNCNWJ7SgnrTQHirY1OkFaxlTeMWJhe6xoeW5wzjURbrXcY1dhcM69t8XsYYP9VhgqQV1d9nuzT1ZqKK/uecyjQF84Q7H6MMVOrAdCqw/h61/9nWLSZzi4keAAQC4tjtqdrh92QAAAABJRU5ErkJggg==) no-repeat 50% 50%;
    }
.header-search__input-container::before {
  position: absolute;
}
.header-search__input-container::before {
  z-index: 10;
}
.header-search__input-container::before {
  display: block;
}
.header-search__input-container::before {
  height: 100%;
}
.header-search__input-wrapper {
  position: relative;
}
.header-search__input-wrapper {
  display: -ms-flexbox;
  display: flex;
}
.header-search__input-wrapper {
  width: 100%;
}
.header-search__input-wrapper {
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.header-search__btn {
  margin-left: 1.5rem;
}
.header-search__btn {
  border-radius: 0.375rem;
}
.header-search__btn {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}
.header-search__btn {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.header-search__btn {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.header-search__btn {
  font-weight: 700;
}
.header-search__btn {
  text-transform: uppercase;
}
.header-search__btn {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.header-search__input-close {
    background: unset;
  }
.header-search__input-close {
  position: absolute;
}
.header-search__input-close {
  right: 5px;
}
.header-search__input-close {
  top: 6px;
}
.header-search__input-close {
  height: 100%;
}
.header-search__input-close {
  height: 30px;
}
.header-search__input-close {
  width: 30px;
}
.header-search__input {
  position: relative;
}
.header-search__input {
  display: block;
}
.header-search__input {
  width: 100%;
}
.header-search__input {
  border-width: 1px;
}
.header-search__input {
  --tw-border-opacity: 1;
  border-color: rgba(217, 222, 232, var(--tw-border-opacity));
}
.header-search__input {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.header-search__input {
  padding-left: 3.5rem;
}
.header-search__input {
  padding-right: 1.5rem;
}
.header-search__results-item a {
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}
.header-search__results-item a:hover {
  --tw-text-opacity: 1;
  color: rgba(35, 83, 158, var(--tw-text-opacity));
}
.header-search__results-item-icon {
      width: 45px;
      height: 45px;
    }
.header-search__results-item-icon {
  margin-right: 1.5rem;
}
.header-search__results-item-material-icon {
  display: -ms-flexbox;
  display: flex;
}
.header-search__results-item-material-icon {
  -ms-flex-align: center;
      align-items: center;
}
.header-search__results-item-material-icon {
  padding-bottom: 2rem;
}
.header-search__results-item-material-icon {
  padding-top: 1rem;
}
.header-search__results-item h4 {
      font-weight: 600;
    }
.header-search__results-item h2 {
  position: relative;
}
.header-search__results-item h2 {
  margin-bottom: 2.5rem;
}
.header-search__results-item h2 {
  padding-bottom: 2rem;
}
.header-search__results-item h2 {
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}
.header-search__results-item h2::after {
        content: '';
        bottom: 0px;
      }
.header-search__results-item h2::after {
  position: absolute;
}
.header-search__results-item h2::after {
  display: block;
}
.header-search__results-item h2::after {
  width: 100%;
}
.header-search__results-item h2::after {
  border-width: 1px;
}
.header-search__results-item h2::after {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}
.header-search__results-item ul {
  margin: 0px;
}
.header-search__results-item ul {
  list-style-type: none;
}
.header-search__results-item ul {
  padding: 0px;
}
.header-search__results-item li {
  position: relative;
}
.header-search__results-item li::after {
        content: '';
      }
.header-search__results-item li::after {
  position: relative;
}
.header-search__results-item li::after {
  margin-bottom: 2rem;
}
.header-search__results-item li::after {
  display: block;
}
.header-search__results-item li::after {
  width: 100%;
}
.header-search__results-item li::after {
  border-width: 1px;
}
.header-search__results-item li::after {
  --tw-border-opacity: 1;
  border-color: rgba(217, 222, 232, var(--tw-border-opacity));
}
.header-search__results-item-wrapper {
  margin-top: 1.5rem;
}
.header-search__results-item-wrapper {
  display: grid;
}
.header-search__results-item-wrapper {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.header-search__results-item-wrapper {
  grid-gap: 4rem;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .header-search__results-item-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 420px) {
  .forms-page .forms-left .vh a, .forms-page .forms-right .ja a {
    font-size: 1.4rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    margin: 20px auto 0 auto;
  }
}
.default-form.form-gray {
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-bottom: 4rem;
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
  padding: 3.5rem;
}
*, ::after, ::before {
  border: 0 solid;
}
h1, .h1, .main-content-area h1 {
  margin-bottom: 3.5rem;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgba(35, 83, 158, var(--tw-text-opacity));
}
h2, .h2, .main-content-area h2 {
  --tw-text-opacity: 1;
  color: rgba(35, 83, 158, var(--tw-text-opacity));
}
.main-content-area h3 {
  --tw-text-opacity: 1;
  color: rgba(35, 83, 158, var(--tw-text-opacity));
}
.main-content-area p, p {
  margin-bottom: 2rem;
  line-height: 1.25;
}
.main-content-area ul > li, .main-content-area ol > li {
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1.5rem;
  line-height: 2rem;
}
.container {
  width: 91.666667%;
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
.buttons-container {
  margin-top: 2rem;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 640px) {
  .buttons-container {
    -ms-flex-direction: row;
        flex-direction: row;
  }
}
@media (min-width: 768px) {
  .buttons-container {
    -ms-flex-direction: row;
        flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .buttons-container {
    width: 80%;
  }
  .buttons-container {
    -ms-flex-direction: row;
        flex-direction: row;
  }
}
@media (min-width: 1280px) {
  .buttons-container {
    width: 80%;
  }
}
@media (min-width: 1536px) {
  .buttons-container {
    width: 80%;
  }
}
.quicklink-container {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}
@media (min-width: 640px) {
  .quicklink-container {
    justify-items: center;
  }
}
@media (min-width: 768px) {
  .quicklink-container {
    margin-left: 5rem;
    margin-right: 5rem;
  }
}
@media (min-width: 1280px) {
  .quicklink-container {
    justify-items: start;
  }
}
.quicklinks {
  padding: 0px;
}
.quicklinks .quicklinks-container {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}
.quicklinks .quicklink-item {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 640px) {
  .quicklinks .quicklink-item {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 768px) {
  .quicklinks .quicklink-item {
    padding: 0px;
  }
  .quicklinks .quicklink-item {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (min-width: 1280px) {
  .quicklinks .quicklink-item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (min-width: 1536px) {
  .quicklinks .quicklink-item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
.quicklink-item img {
    width: 51px;
    height: 51px;
  }
.hero-container {
  margin-top: 4rem;
}
.desktop-image {
  position: relative;
  margin: -0.5rem;
  display: none;
  padding: 3rem;
}
@media (min-width: 640px) {
  .desktop-image {
    display: -ms-flexbox;
    display: flex;
  }
  .desktop-image {
    -ms-flex-direction: row;
        flex-direction: row;
  }
}
@media (min-width: 768px) {
  .desktop-image {
    display: -ms-flexbox;
    display: flex;
  }
  .desktop-image {
    -ms-flex-direction: row;
        flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .desktop-image {
    display: -ms-flexbox;
    display: flex;
  }
  .desktop-image {
    -ms-flex-direction: row;
        flex-direction: row;
  }
}
@media (min-width: 1280px) {
  .desktop-image {
    display: -ms-flexbox;
    display: flex;
  }
  .desktop-image {
    -ms-flex-direction: row;
        flex-direction: row;
  }
}
.desktop-image {
  max-width: 1280px;
  max-height: 433px;
}
.mobile-image {
  position: relative;
  margin: -2.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
}
@media (min-width: 640px) {
  .mobile-image {
    display: none;
  }
}
@media (min-width: 768px) {
  .mobile-image {
    display: none;
  }
}
@media (min-width: 1024px) {
  .mobile-image {
    display: none;
  }
}
@media (min-width: 1280px) {
  .mobile-image {
    display: none;
  }
}
.hero-text-container {
  width: 60%;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-top: 1rem;
}
@media (min-width: 640px) {
  .hero-text-container {
    width: 50%;
  }
  .hero-text-container {
    padding-bottom: 1rem;
  }
  .hero-text-container {
    padding-left: 1.5rem;
  }
  .hero-text-container {
    padding-right: 2rem;
  }
}
@media (min-width: 768px) {
  .hero-text-container {
    width: 60%;
  }
  .hero-text-container {
    padding-left: 4rem;
  }
  .hero-text-container {
    padding-right: 2rem;
  }
  .hero-text-container {
    padding-top: 2rem;
  }
}
@media (min-width: 1024px) {
  .hero-text-container {
    margin-top: 3rem;
  }
  .hero-text-container {
    margin-right: 3.5rem;
  }
  .hero-text-container {
    width: 58.333333%;
  }
  .hero-text-container {
    padding-left: 3rem;
  }
  .hero-text-container {
    padding-top: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .hero-text-container {
    margin-top: 3.5rem;
  }
  .hero-text-container {
    margin-right: 0px;
  }
  .hero-text-container {
    width: 60%;
  }
  .hero-text-container {
    padding-left: 0px;
  }
}
.hero-timer-container {
  margin-bottom: 7rem;
  width: 40%;
}
@media (min-width: 640px) {
  .hero-timer-container {
    margin-bottom: 2.5rem;
  }
  .hero-timer-container {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .hero-timer-container {
    margin-bottom: 5rem;
  }
  .hero-timer-container {
    margin-left: 2.5rem;
  }
  .hero-timer-container {
    width: 40%;
  }
}
@media (min-width: 1024px) {
  .hero-timer-container {
    margin-left: 5rem;
  }
  .hero-timer-container {
    width: 33.333333%;
  }
}
@media (min-width: 1280px) {
  .hero-timer-container {
    margin-left: 2.5rem;
  }
  .hero-timer-container {
    width: 33.333333%;
  }
}
.hero-h2 {
  margin-top: 0px;
  width: 24rem;
  padding-top: 1rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
@media (min-width: 640px) {
  .hero-h2 {
    width: 100%;
  }
  .hero-h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
@media (min-width: 768px) {
  .hero-h2 {
    margin-bottom: 1.5rem;
  }
  .hero-h2 {
    width: 100%;
  }
  .hero-h2 {
    padding-top: 0px;
  }
  .hero-h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-h2 {
    margin-bottom: 3rem;
  }
  .hero-h2 {
    width: 100%;
  }
  .hero-h2 {
    font-size: 3rem;
    line-height: 1;
  }
}
@media (min-width: 1280px) {
  .hero-h2 {
    margin-bottom: 3rem;
  }
  .hero-h2 {
    width: 100%;
  }
  .hero-h2 {
    font-size: 3.75rem;
    line-height: 1;
  }
}
.hero-h3 {
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-bottom: 0px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  text-transform: none;
}
@media (min-width: 640px) {
  .hero-h3 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .hero-h3 {
    margin-bottom: 0.5rem;
  }
  .hero-h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 768px) {
  .hero-h3 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .hero-h3 {
    margin-bottom: 0.5rem;
  }
  .hero-h3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (min-width: 1024px) {
  .hero-h3 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .hero-h3 {
    margin-bottom: 1rem;
  }
  .hero-h3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (min-width: 1280px) {
  .hero-h3 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .hero-h3 {
    margin-bottom: 1rem;
  }
  .hero-h3 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.hero-buttons {
  display: grid;
  width: 12rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  text-align: center;
}
@media (min-width: 640px) {
  .hero-buttons {
    width: 100%;
  }
  .hero-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .hero-buttons {
    width: 80%;
  }
  .hero-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .hero-buttons {
    margin-bottom: 3rem;
  }
  .hero-buttons {
    width: 80%;
  }
  .hero-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .hero-buttons {
    margin-bottom: 3.5rem;
  }
  .hero-buttons {
    width: 50%;
  }
  .hero-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.button-hero.light {
  margin-bottom: 0.5rem;
  margin-right: 2.5rem;
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.button-hero.light:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
  text-decoration: none;
}
@media (min-width: 640px) {
  .button-hero.light {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 768px) {
  .button-hero.light {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (min-width: 1024px) {
  .button-hero.light {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
@media (min-width: 1280px) {
  .button-hero.light {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .button-hero.light {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.button-hero.dark {
  margin-bottom: 0.5rem;
  margin-right: 2.5rem;
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.button-hero.dark:hover {
  --tw-border-opacity: 1;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  text-decoration: none;
}
@media (min-width: 640px) {
  .button-hero.dark {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 768px) {
  .button-hero.dark {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (min-width: 1024px) {
  .button-hero.dark {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
@media (min-width: 1280px) {
  .button-hero.dark {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .button-hero.dark {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.bottleText {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-bottom: 0px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--tw-gradient-stops)));
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
  --tw-gradient-from: #fff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
  --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0));
  --tw-gradient-to: #fff;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.1em;
}
@media (min-width: 640px) {
  .bottleText {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (min-width: 768px) {
  .bottleText {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .bottleText {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
.heroBottleTimer {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  --tw-bg-opacity: 1;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  --tw-text-opacity: 1;
  color: rgba(35, 83, 158, var(--tw-text-opacity));
}
@media (min-width: 640px) {
  .heroBottleTimer {
    bottom: 5rem;
  }
  .heroBottleTimer {
    left: 2.5rem;
  }
  .heroBottleTimer {
    margin-left: 3.5rem;
  }
  .heroBottleTimer {
    width: 33.333333%;
  }
  .heroBottleTimer {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .heroBottleTimer {
    bottom: 6rem;
  }
  .heroBottleTimer {
    left: 6rem;
  }
  .heroBottleTimer {
    margin-left: 0px;
  }
  .heroBottleTimer {
    width: 20rem;
  }
  .heroBottleTimer {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media (min-width: 1024px) {
  .heroBottleTimer {
    bottom: 5rem;
  }
  .heroBottleTimer {
    left: 8rem;
  }
  .heroBottleTimer {
    margin-left: 0px;
  }
  .heroBottleTimer {
    width: 25%;
  }
  .heroBottleTimer {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media (min-width: 1280px) {
  .heroBottleTimer {
    bottom: 6rem;
  }
  .heroBottleTimer {
    left: 8rem;
  }
  .heroBottleTimer {
    width: 20%;
  }
  .heroBottleTimer {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.hero-ingress {
  padding-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
@media (min-width: 640px) {
  .hero-ingress {
    width: 100%;
  }
  .hero-ingress {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (min-width: 768px) {
  .hero-ingress {
    margin-bottom: 2.5rem;
  }
  .hero-ingress {
    width: 100%;
  }
  .hero-ingress {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .hero-ingress {
    line-height: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-ingress {
    margin-bottom: 2.5rem;
  }
  .hero-ingress {
    width: 100%;
  }
  .hero-ingress {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .hero-ingress {
    line-height: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .hero-ingress {
    margin-bottom: 4rem;
  }
  .hero-ingress {
    width: 100%;
  }
  .hero-ingress {
    padding-right: 1rem;
  }
  .hero-ingress {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .hero-ingress {
    line-height: 2.5rem;
  }
}
.blog-hero {
  margin-top: 10rem;
  margin-bottom: 10rem;
  display: grid;
  grid-gap: 2.5rem;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .blog-hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.blog-hero__content {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.blog-hero__content {
  line-height: 1.5;
}
.blog-hero__content h1, .blog-hero__content .h1 {
  margin-bottom: 2.5rem;
}
.blog-hero__content h1, .blog-hero__content .h1 {
  text-transform: uppercase;
}
.blog-hero__content h1, .blog-hero__content .h1 {
  --tw-text-opacity: 1;
  color: rgba(35, 83, 158, var(--tw-text-opacity));
}
.blog-hero__image {
  background-size: cover;
}
.blog-hero__image {
  background-position: center;
}
.blog-hero__image {
    min-height: 260px;
  }
.knowledge-test, .app-quiz {
  margin-bottom: 2.5rem;
}
.knowledge-test ul, .app-quiz ul {
  padding-left: 2rem;
}
.knowledge-test ul li, .app-quiz ul li {
  margin: 0px;
}
.knowledge-test ul li, .app-quiz ul li {
  list-style-type: none;
}
.knowledge-test ul li, .app-quiz ul li {
  padding-left: 1rem;
}
.knowledge-test ul li, .app-quiz ul li {
      list-style: upper-alpha outside;
      padding: 0 !important;
    }
.knowledge-test ul li input, .app-quiz ul li input {
  position: absolute;
}
.knowledge-test ul li input, .app-quiz ul li input {
  height: 0px;
}
.knowledge-test ul li input, .app-quiz ul li input {
  width: 0px;
}
.knowledge-test ul li input, .app-quiz ul li input {
  overflow: hidden;
}
.knowledge-test ul li input:focus ~ label, .app-quiz ul li input:focus ~ label {
  outline: 2px dotted black;
  outline-offset: 2px;
}
.knowledge-test ul li input:checked ~ label, .app-quiz ul li input:checked ~ label {
  font-weight: 700;
}
.knowledge-test .question, .app-quiz .question {
  margin-bottom: 2rem;
}
.knowledge-test .question h4, .app-quiz .question h4 {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.knowledge-test .question h4, .app-quiz .question h4 {
  --tw-text-opacity: 1;
  color: rgba(35, 83, 158, var(--tw-text-opacity));
}
.knowledge-test .question.wrong .description, .app-quiz .question.wrong .description {
        background-color: #f1c2c2;
      }
.knowledge-test .result, .app-quiz .result {
  display: none;
}
.knowledge-test .result, .app-quiz .result {
  font-weight: 700;
}
.knowledge-test .result.show, .app-quiz .result.show {
  display: block;
}
.knowledge-test .final-result, .knowledge-test .description, .app-quiz .final-result, .app-quiz .description {
    display: none;
    background-color: #c3e4a0;
    padding: 10px 15px;
    margin: 5px 0 0;
    -webkit-box-shadow: 0 0 2px #888;
            box-shadow: 0 0 2px #888;
    border-radius: 3px;
  }
.knowledge-test .description, .app-quiz .description {
  display: none;
}
.knowledge-test .description.show, .app-quiz .description.show {
  display: block;
}
.knowledge-test .final-result, .app-quiz .final-result {
  display: none;
}
.knowledge-test .final-result.show, .app-quiz .final-result.show {
  display: block;
}
.knowledge-test label, .app-quiz label {
  display: block;
}
.knowledge-test label, .app-quiz label {
  cursor: pointer;
}
.knowledge-test label, .app-quiz label {
  padding-left: 1rem;
}
.knowledge-test__final-heading, .app-quiz__final-heading {
  --tw-text-opacity: 1;
  color: rgba(111, 152, 0, var(--tw-text-opacity));
}
.app-quiz__question input:checked ~ span {
  font-weight: 700;
}
.app-quiz__result {
  display: none;
}
.image-and-text {
  margin-bottom: 4rem;
}
.image-and-text > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgba(35, 83, 158, var(--tw-divide-opacity));
}
.image-and-text__item {
  margin-top: 4rem;
}
.image-and-text__item {
  display: grid;
}
.image-and-text__item {
  grid-gap: 2rem;
  gap: 2rem;
}
.image-and-text__item {
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .image-and-text__item {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
.image-and-text__item {
    border-style: solid;
  }
@media (min-width: 768px) {
  .image-and-text__image {
    grid-column: span 2 / span 2;
  }
}
.image-and-text__image img {
  max-height: 24rem;
}
@media (min-width: 768px) {
  .image-and-text__text {
    grid-column: span 10 / span 10;
  }
}
.image-and-text__text h2, .image-and-text__text .h2 {
  margin-top: 0px;
}
.image-and-text__text h2, .image-and-text__text .h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.image-and-text__text h2, .image-and-text__text .h2 {
  --tw-text-opacity: 1;
  color: rgba(35, 83, 158, var(--tw-text-opacity));
}
.desktop-bg {
  position: relative;
  display: none;
  padding: 0.5rem;
}
@media (min-width: 640px) {
  .desktop-bg {
    display: block;
  }
}
@media (min-width: 768px) {
  .desktop-bg {
    padding: 0px;
  }
}
@media (min-width: 1024px) {
  .desktop-bg {
    height: 75%;
  }
}
@media (min-width: 1280px) {
  .desktop-bg {
    height: 83.333333%;
  }
}
.desktop-bg h2 {
  margin: 0px;
}
.desktop-bg h2 {
  padding-left: 5rem;
  padding-right: 5rem;
}
.desktop-bg h2 {
  text-transform: uppercase;
}
.desktop-bg h2 {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
@media (min-width: 640px) {
  .desktop-bg h2 {
    padding-top: 1rem;
  }
}
@media (min-width: 640px) {
  .desktop-bg h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
@media (min-width: 768px) {
  .desktop-bg h2 {
    top: 14rem;
  }
}
@media (min-width: 768px) {
  .desktop-bg h2 {
    padding-top: 2.5rem;
  }
}
@media (min-width: 768px) {
  .desktop-bg h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .desktop-bg h2 {
    top: 16rem;
  }
}
@media (min-width: 1024px) {
  .desktop-bg h2 {
    padding-top: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .desktop-bg h2 {
    font-size: 3rem;
    line-height: 1;
  }
}
@media (min-width: 1280px) {
  .desktop-bg h2 {
    top: 16rem;
  }
}
@media (min-width: 1280px) {
  .desktop-bg h2 {
    padding-left: 7rem;
    padding-right: 7rem;
  }
}
@media (min-width: 1280px) {
  .desktop-bg h2 {
    padding-top: 5rem;
  }
}
@media (min-width: 1280px) {
  .desktop-bg h2 {
    font-size: 3.75rem;
    line-height: 1;
  }
}
.bottle-card {
  margin-top: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: end;
      align-items: flex-end;
  padding: 2rem;
}
@media (min-width: 640px) {
  .bottle-card {
    margin-top: 0px;
  }
  .bottle-card {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .bottle-card {
    padding-top: 0.5rem;
  }
}
@media (min-width: 1024px) {
  .bottle-card {
    padding: 4rem;
  }
  .bottle-card {
    padding-top: 0.5rem;
  }
}
@media (min-width: 1280px) {
  .bottle-card {
    padding: 5rem;
  }
  .bottle-card {
    padding-top: 0.5rem;
  }
}
.bottle-card__item {
  margin: 1rem;
}
.bottle-card__item {
  text-align: center;
}
@media (min-width: 640px) {
  .bottle-card__item {
    width: 15rem;
  }
}
@media (min-width: 768px) {
  .bottle-card__item {
    margin-top: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .bottle-card__item {
    margin-top: 5rem;
  }
}
@media (min-width: 1024px) {
  .bottle-card__item {
    width: 20%;
  }
}
.bottle-card__image {
  padding: 0.5rem;
}
@media (min-width: 640px) {
  .bottle-card__image {
    width: 33.333333%;
  }
}
@media (min-width: 1024px) {
  .bottle-card__image {
    width: 25%;
  }
}
.bottle-card__timer-text {
  margin: 0.5rem;
}
.bottle-card__timer-text {
  margin-top: 0px;
  margin-bottom: 0px;
}
.bottle-card__timer-text {
  margin-bottom: 0px;
}
.bottle-card__timer-text {
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--tw-gradient-stops)));
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bottle-card__timer-text {
  --tw-gradient-from: #fff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}
.bottle-card__timer-text {
  --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0));
}
.bottle-card__timer-text {
  --tw-gradient-to: #fff;
}
.bottle-card__timer-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.bottle-card__timer-text {
  text-align: center;
}
.bottle-card__timer-text {
  font-size: 1rem;
  line-height: 1.5rem;
}
.bottle-card__timer-text {
  letter-spacing: 0.1em;
}
.bottle-card__timer-text {
  --tw-text-opacity: 1;
  color: rgba(35, 83, 158, var(--tw-text-opacity));
}
@media (min-width: 640px) {
  .bottle-card__timer-text {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 768px) {
  .bottle-card__timer-text {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (min-width: 1024px) {
  .bottle-card__timer-text {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
@media (min-width: 1280px) {
  .bottle-card__timer-text {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
.bottle-card__figcaption {
  padding: 0.5rem;
}
.bottle-card__figcaption {
  padding-bottom: 0.5rem;
}
.bottle-card__figcaption {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
@media (min-width: 1024px) {
  .bottle-card__figcaption {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (min-width: 1280px) {
  .bottle-card__figcaption {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.bottle-card__item-all-bottles {
  margin: 1rem;
}
.bottle-card__item-all-bottles {
  padding: 0.5rem;
}
.bottle-card__item-all-bottles {
  text-align: center;
}
@media (min-width: 768px) {
  .bottle-card__item-all-bottles {
    width: 33.333333%;
  }
}
@media (min-width: 1024px) {
  .bottle-card__item-all-bottles {
    width: 25%;
  }
}
.bottle-card__image-all-bottles {
  position: absolute;
}
.bottle-card__image-all-bottles {
  bottom: 9rem;
}
.bottle-card__image-all-bottles {
  right: 9rem;
}
.bottle-card__image-all-bottles {
  width: 20%;
}
.bottle-card__image-all-bottles {
  position: absolute;
}
.bottle-card__image-all-bottles {
  padding: 0.5rem;
}
@media (min-width: 640px) {
  .bottle-card__image-all-bottles {
    bottom: 7rem;
  }
}
@media (min-width: 640px) {
  .bottle-card__image-all-bottles {
    right: 3rem;
  }
}
@media (min-width: 640px) {
  .bottle-card__image-all-bottles {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .bottle-card__image-all-bottles {
    bottom: 8rem;
  }
}
@media (min-width: 1024px) {
  .bottle-card__image-all-bottles {
    bottom: 11rem;
  }
}
@media (min-width: 1024px) {
  .bottle-card__image-all-bottles {
    right: 5rem;
  }
}
@media (min-width: 1280px) {
  .bottle-card__image-all-bottles {
    bottom: 12rem;
  }
}
@media (min-width: 1280px) {
  .bottle-card__image-all-bottles {
    right: 11rem;
  }
}
.bottle-card__timer-text-all-bottles {
  margin: 0.5rem;
}
.bottle-card__timer-text-all-bottles {
  margin-top: 0px;
  margin-bottom: 0px;
}
.bottle-card__timer-text-all-bottles {
  margin-bottom: 0px;
}
.bottle-card__timer-text-all-bottles {
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--tw-gradient-stops)));
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bottle-card__timer-text-all-bottles {
  --tw-gradient-from: #fff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}
.bottle-card__timer-text-all-bottles {
  --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0));
}
.bottle-card__timer-text-all-bottles {
  --tw-gradient-to: #fff;
}
.bottle-card__timer-text-all-bottles {
  padding: 1rem;
}
.bottle-card__timer-text-all-bottles {
  text-align: center;
}
.bottle-card__timer-text-all-bottles {
  font-size: 1rem;
  line-height: 1.5rem;
}
.bottle-card__timer-text-all-bottles {
  letter-spacing: 0.1em;
}
.bottle-card__timer-text-all-bottles {
  --tw-text-opacity: 1;
  color: rgba(35, 83, 158, var(--tw-text-opacity));
}
@media (min-width: 640px) {
  .bottle-card__timer-text-all-bottles {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 640px) {
  .bottle-card__timer-text-all-bottles {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 640px) {
  .bottle-card__timer-text-all-bottles {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (min-width: 768px) {
  .bottle-card__timer-text-all-bottles {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 768px) {
  .bottle-card__timer-text-all-bottles {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .bottle-card__timer-text-all-bottles {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (min-width: 768px) {
  .bottle-card__timer-text-all-bottles {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .bottle-card__timer-text-all-bottles {
    margin-left: 4rem;
  }
}
@media (min-width: 1024px) {
  .bottle-card__timer-text-all-bottles {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .bottle-card__timer-text-all-bottles {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .bottle-card__timer-text-all-bottles {
    padding: 1rem;
  }
}
@media (min-width: 1024px) {
  .bottle-card__timer-text-all-bottles {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .bottle-card__timer-text-all-bottles {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .bottle-card__timer-text-all-bottles {
    font-size: 3rem;
    line-height: 1;
  }
}
.mobile-bg {
  position: relative;
  margin: -2.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
}
@media (min-width: 640px) {
  .mobile-bg {
    display: none;
  }
}
.bottle-card-mobile {
  width: 100%;
  padding: 0.5rem;
  text-align: center;
}
.bottle-card-mobile h2 {
  padding-left: 5rem;
  padding-right: 5rem;
}
.bottle-card-mobile h2 {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.bottle-card-mobile__image {
  position: absolute;
}
.bottle-card-mobile__image {
  bottom: 6rem;
}
.bottle-card-mobile__image {
  right: 6rem;
}
.bottle-card-mobile__image {
  width: 66.666667%;
}
.bottle-card-mobile__image {
  padding: 2.5rem;
}
.bottle-card-mobile__timer-text {
  margin-left: 4rem;
  margin-right: 4rem;
}
.bottle-card-mobile__timer-text {
  margin-top: 0px;
  margin-bottom: 0px;
}
.bottle-card-mobile__timer-text {
  margin-top: 15rem;
}
.bottle-card-mobile__timer-text {
  margin-bottom: 4rem;
}
.bottle-card-mobile__timer-text {
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--tw-gradient-stops)));
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bottle-card-mobile__timer-text {
  --tw-gradient-from: #fff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}
.bottle-card-mobile__timer-text {
  --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0));
}
.bottle-card-mobile__timer-text {
  --tw-gradient-to: #fff;
}
.bottle-card-mobile__timer-text {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.bottle-card-mobile__timer-text {
  text-align: center;
}
.bottle-card-mobile__timer-text {
  font-size: 3rem;
  line-height: 1;
}
.bottle-card-mobile__timer-text {
  letter-spacing: 0.1em;
}
.bottle-card-mobile__timer-text {
  --tw-text-opacity: 1;
  color: rgba(35, 83, 158, var(--tw-text-opacity));
}
@media screen and (min-width: 420px) {
  .bottle-card-mobile {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .bottle-card-mobile {
    height: 400px;
  }

    .bottle-card-mobile__image {
    position: absolute;
  }

    .bottle-card-mobile__image {
    bottom: 8rem;
  }

    .bottle-card-mobile__image {
    right: 12rem;
  }

    .bottle-card-mobile__image {
      width: 30rem;
    }

    .bottle-card-mobile__timer-text {
    margin-top: 20rem;
  }
}
.infobox {
  padding-left: 4rem;
  padding-right: 4rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #e6f7ff;
}
.infobox h2 {
  margin-top: 1rem;
}
.infobox h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.infobox h2 {
  font-weight: 600;
}
.infobox h2 {
  text-transform: uppercase;
}
.infobox h2 {
  --tw-text-opacity: 1;
  color: rgba(35, 83, 158, var(--tw-text-opacity));
}
.infobox h3 {
  --tw-text-opacity: 1;
  color: rgba(35, 83, 158, var(--tw-text-opacity));
}
.button.lightblue {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.button.lightblue {
    border: 1px solid #a5add8;
    background-color: #f5f9ff;
    color: #1511c1;
  }
.button.palpablue {
  --tw-bg-opacity: 1;
  background-color: rgba(35, 83, 158, var(--tw-bg-opacity));
}
.button.palpablue {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
/* Use ID to override palpa default styles */
#blog .blog__list {
  display: grid;
}
#blog .blog__list {
  grid-column-gap: 2rem;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
#blog .blog__list {
  grid-row-gap: 4rem;
  row-gap: 4rem;
}
#blog .blog__list {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  #blog .blog__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
#blog .blog__item:hover .blog__image {
  opacity: 1;
}
@media (min-width: 768px) {
        @media (min-width: 768px) {
    #blog .blog__item:not(.no-wide):nth-child(4n+1) {
      grid-column: span 3 / span 3;
    }
  }

          #blog .blog__item:not(.no-wide):nth-child(4n+1) .blog__link {
    display: grid;
  }

          #blog .blog__item:not(.no-wide):nth-child(4n+1) .blog__link {
    grid-column-gap: 2rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }

          @media (min-width: 768px) {
    #blog .blog__item:not(.no-wide):nth-child(4n+1) .blog__link {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

            #blog .blog__item:not(.no-wide):nth-child(4n+1) .blog__link .blog__image {
    grid-column-start: 1;
  }

            @media (min-width: 768px) {
    #blog .blog__item:not(.no-wide):nth-child(4n+1) .blog__link .blog__image {
      grid-column: span 2 / span 2;
    }
  }

            #blog .blog__item:not(.no-wide):nth-child(4n+1) .blog__link .blog__image {
              height: 400px;
            }

            #blog .blog__item:not(.no-wide):nth-child(4n+1) .blog__link .blog__title {
    font-size: 3rem;
    line-height: 1;
  }

            #blog .blog__item:not(.no-wide):nth-child(4n+1) .blog__link .blog__title {
    line-height: 1.5;
  }

            #blog .blog__item:not(.no-wide):nth-child(4n+1) .blog__link .blog__date {
    margin-bottom: 2rem;
  }
      }
#blog .blog__link {
  display: block;
}
#blog .blog__link {
  --tw-text-opacity: 1;
  color: rgba(62, 62, 62, var(--tw-text-opacity));
}
#blog .blog__link:hover {
  text-decoration: none;
}
#blog .blog__image {
  height: 15rem;
}
#blog .blog__image {
  background-size: cover;
}
#blog .blog__image {
  background-position: center;
}
#blog .blog__image {
  opacity: 0.8;
}
#blog .blog__image {
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
}
#blog .blog__image {
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
}
#blog .blog__title {
  margin-bottom: 2rem;
}
#blog .blog__title {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
#blog .blog__title {
  text-transform: uppercase;
}
#blog .blog__title {
  line-height: 1.375;
}
#blog .blog__date {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
#blog .blog__date {
  display: block;
}
#blog .blog__date {
  --tw-text-opacity: 1;
  color: rgba(35, 83, 158, var(--tw-text-opacity));
}
#blog .blog__load-more {
  margin-bottom: 4rem;
}
#blog .blog__load-more {
  display: inline-block;
}
#blog .blog__load-more {
  border-width: 1px;
}
#blog .blog__load-more {
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}
#blog .blog__load-more {
  background-color: transparent;
}
#blog .blog__load-more {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
#blog .blog__load-more {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
#blog .blog__load-more {
  font-weight: 700;
}
#blog .blog__load-more {
  text-transform: uppercase;
}
#blog .blog__load-more {
  --tw-text-opacity: 1;
  color: rgba(62, 62, 62, var(--tw-text-opacity));
}
#blog .blog__load-more {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
}
#blog .blog__load-more {
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
}
#blog .blog__load-more:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}
#blog .blog__load-more span {
  display: inline-block;
}
#blog .blog__load-more span {
  vertical-align: middle;
}
#blog .blog__load-more span {
  line-height: 1.5;
}
#blog .blog__load-more svg {
  margin-left: -0.25rem;
}
#blog .blog__load-more svg {
  margin-right: 0.75rem;
}
#blog .blog__load-more svg {
  display: inline-block;
}
#blog .blog__load-more svg {
  height: 1.25rem;
}
#blog .blog__load-more svg {
  width: 1.25rem;
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
#blog .blog__load-more svg {
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}
#blog .blog__load-more svg {
  vertical-align: middle;
}
#blog .blog__load-more svg {
  --tw-text-opacity: 1;
  color: rgba(62, 62, 62, var(--tw-text-opacity));
}
#blog .blog__hero {
  background-size: cover;
}
#blog .blog__hero {
  background-position: center;
}
#blog .blog__hero {
      height: 400px;
    }
#blog .blog__related-articles-container {
  width: 100vw;
}
#blog .blog__related-articles-container {
  --tw-bg-opacity: 1;
  background-color: rgba(250, 250, 250, var(--tw-bg-opacity));
}
#blog .blog__related-articles-container {
      position: relative;
      left: 49%;
      right: 49%;
      margin-left: -50vw;
      margin-right: -50vw;
    }
#blog .blog__related-articles {
  display: grid;
}
#blog .blog__related-articles {
  grid-column-gap: 2rem;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
#blog .blog__related-articles {
  grid-row-gap: 4rem;
  row-gap: 4rem;
}
#blog .blog__related-articles {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  #blog .blog__related-articles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.image-with-counter {
  position: relative;
  margin-bottom: 4rem;
}
.image-with-counter__image {
  display: none;
}
@media (min-width: 768px) {
  .image-with-counter__image {
    display: block;
  }
}
.image-with-counter__image2 {
  display: block;
}
@media (min-width: 768px) {
  .image-with-counter__image2 {
    display: none;
  }
}
.image-with-counter__counter {
  position: absolute;
}
.image-with-counter__counter {
  left: 50%;
}
.image-with-counter__counter {
  top: 40%;
}
.image-with-counter__counter {
  padding-left: 2rem;
  padding-right: 2rem;
}
.image-with-counter__counter {
  font-size: 9vw;
}
.image-with-counter__counter {
  font-weight: 700;
}
.image-with-counter__counter {
  letter-spacing: 0.1em;
}
.image-with-counter__counter {
  --tw-text-opacity: 1;
  color: rgba(35, 83, 158, var(--tw-text-opacity));
}
@media (min-width: 768px) {
  .image-with-counter__counter {
    top: 35%;
  }
}
@media (min-width: 768px) {
  .image-with-counter__counter {
    font-size: 5vw;
  }
}
@media (min-width: 1024px) {
  .image-with-counter__counter {
    font-size: 5rem;
  }
}
.image-with-counter__counter {
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--tw-gradient-stops)));
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.image-with-counter__counter {
  --tw-gradient-from: #fff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}
.image-with-counter__counter {
  --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0));
}
.image-with-counter__counter {
  --tw-gradient-to: #fff;
}
.image-with-counter__counter {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
.three-images-with-counters {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 4rem;
  display: grid;
  grid-gap: 2.5rem;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .three-images-with-counters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .three-images-with-counters {
    grid-gap: 1rem;
    gap: 1rem;
  }
}
.three-images-with-counters__col {
  position: relative;
}
.three-images-with-counters__image {
  display: block;
}
.three-images-with-counters__counter {
  position: absolute;
}
.three-images-with-counters__counter {
  left: 50%;
}
.three-images-with-counters__counter {
  top: 84%;
}
.three-images-with-counters__counter {
  padding-left: 2rem;
  padding-right: 2rem;
}
.three-images-with-counters__counter {
  font-size: 9vw;
}
.three-images-with-counters__counter {
  font-weight: 700;
}
.three-images-with-counters__counter {
  letter-spacing: 0.1em;
}
.three-images-with-counters__counter {
  --tw-text-opacity: 1;
  color: rgba(35, 83, 158, var(--tw-text-opacity));
}
@media (min-width: 768px) {
  .three-images-with-counters__counter {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .three-images-with-counters__counter {
    font-size: 2.8rem;
  }
}
.three-images-with-counters__counter {
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--tw-gradient-stops)));
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.three-images-with-counters__counter {
  --tw-gradient-from: #fff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}
.three-images-with-counters__counter {
  --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0));
}
.three-images-with-counters__counter {
  --tw-gradient-to: #fff;
}
.three-images-with-counters__counter {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
@media (min-width: 768px) {
  .md\:block {
    display: block;
  }
  .md\:hidden {
    display: none;
  }
}


/*# sourceMappingURL=palpa.css.map*/