:root {
  --ystdb-ystd-blue: #07689f;
  --ystdb-components-border-color: #aaa;
  --ystdb--text-color--gray: #757575;
}
.ystdb-card {
  position: relative;
  border: 1px solid #eee;
  background-color: #fff;
}
.ystdb-card.is-fixed-horizon,
.ystdb-card.is-horizon {
  width: 100%;
}
.ystdb-card.is-vertical {
  max-width: 500px;
}
@media (min-width: 600px) {
  .ystdb-card__container.is-horizon {
    display: flex;
  }
}
.ystdb-card__container.is-fixed-horizon {
  display: flex;
}
.ystdb-card__container.has-image-align-right {
  flex-direction: row-reverse;
}
.ystdb-card__image {
  min-width: 100px;
  margin: 0;
  text-align: center;
}
.ystdb-card__image.is-size--small--fixed {
  flex: 0 0 20%;
  width: 20%;
  max-width: 200px;
}
.ystdb-card__image.is-size--normal--fixed {
  flex: 0 0 25%;
  width: 25%;
  max-width: 250px;
}
.ystdb-card__image.is-size--large--fixed {
  flex: 0 0 35%;
  width: 35%;
  max-width: 300px;
}
@media (min-width: 600px) {
  .ystdb-card__image.is-size--small {
    flex: 0 0 20%;
    width: 20%;
    max-width: 200px;
  }
  .ystdb-card__image.is-size--normal {
    flex: 0 0 25%;
    width: 25%;
    max-width: 250px;
  }
  .ystdb-card__image.is-size--large {
    flex: 0 0 35%;
    width: 35%;
    max-width: 300px;
  }
}
.ystdb-card__image.is-fit {
  position: relative;
}
@supports (object-fit: cover) {
  .ystdb-card__image.is-fit amp-img,
  .ystdb-card__image.is-fit img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  @media (min-width: 600px) {
    .ystdb-card__image.is-fit amp-img,
    .ystdb-card__image.is-fit img {
      position: absolute;
      top: 0;
      left: 0;
    }
  }
}
.ystdb-card__text {
  flex-grow: 1;
  align-self: center;
  padding: 1.5rem 1rem;
}
.ystdb-card__title {
  font-weight: 700;
  font-size: 1em;
  line-height: 1.3;
}
.ystdb-card__dscr {
  margin-top: 1em;
  color: var(--font-gray);
  font-size: 0.8em;
}
.ystdb-card__link {
  text-decoration: none;
}
.ystdb-card__link,
.ystdb-card__link:not(.has-text-color):hover {
  color: currentcolor;
}
.ystdb-card__link:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}
.ystdb-card__domain {
  margin-top: 1em;
  color: var(--font-gray);
  font-size: 0.5em;
}
.ystdb-card__caption {
  margin-top: 0.5em;
  margin-bottom: 1em;
  color: var(--font-gray);
  font-style: italic;
  font-size: 0.9em;
  text-align: center;
}
.ystdb-section.has-animation {
  animation-duration: 1s;
  animation-fill-mode: both;
  opacity: 0;
}
.ystdb-section.animation--fadein {
  animation-name: ystdb-fadein;
}
.ystdb-section.animation--fadein-up {
  animation-name: ystdb-fadein-up;
}
.ystdb-section.animation--fadein-down {
  animation-name: ystdb-fadein-down;
}
.ystdb-section.animation--fadein-left {
  animation-name: ystdb-fadein-left;
}
.ystdb-section.animation--fadein-right {
  animation-name: ystdb-fadein-right;
}
.ystdb-section.animation--fadein-shrink {
  animation-name: ystdb-fadein-shrink;
}
.ystdb-section.animation--fadein-grow {
  animation-name: ystdb-fadein-grow;
}
@keyframes ystdb-fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes ystdb-fadein-up {
  0% {
    transform: translateY(5%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes ystdb-fadein-down {
  0% {
    transform: translateY(-5%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes ystdb-fadein-left {
  0% {
    transform: translateX(-5%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes ystdb-fadein-right {
  0% {
    transform: translateX(5%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes ystdb-fadein-shrink {
  0% {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes ystdb-fadein-grow {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.ystdb-section {
  display: flex;
  z-index: 0;
  position: relative;
  align-items: center;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.ystdb-section .ystdb-section__container {
  flex: 0 0 100%;
  max-width: 100%;
}
.ystdb-section.is-screen-height {
  height: 100vh;
}
.ystdb-section.has-parallax {
  background-attachment: fixed;
}
@supports (-webkit-overflow-scrolling: touch) {
  .ystdb-section.has-parallax {
    background-attachment: scroll;
  }
}
@supports (-webkit-touch-callout: none) {
  .ystdb-section.has-parallax {
    background-attachment: scroll;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ystdb-section.has-parallax {
    background-attachment: scroll;
  }
}
.ystdb-section.is-container-fluid,
.ystdb-section.is-container-fluid.alignfull {
  padding-right: 0;
  padding-left: 0;
}
.ystdb-section__video-background {
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(-50%) translateY(-50%);
}
.ystdb-section__bg {
  z-index: 1;
  position: absolute;
}
.ystdb-section__bg:not(.is-custom-size),
.ystdb-section__overlay-image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ystdb-section__overlay-image {
  position: absolute;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.ystdb-section__inner {
  z-index: 2;
  position: relative;
}
.ystdb-section__inner > * {
  margin-top: 1.5em;
  margin-bottom: 0;
}
.ystdb-section__inner > :first-child {
  margin-top: 0;
}
.ystdb-section__inner p:empty {
  display: none;
}
.ystdb-section__divider {
  z-index: 2;
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.ystdb-section__divider svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100px;
}
.ystdb-section__divider--top {
  top: -1px;
  transform: rotate(180deg);
}
.ystdb-section__divider--bottom {
  bottom: -1px;
}
.ystdb-section__divider--triangle svg {
  max-width: 250px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1025px) {
  [style*="--ystdb-margin-desktop"] {
    margin: var(--ystdb-margin-desktop) !important;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  [style*="--ystdb-margin-tablet"] {
    margin: var(--ystdb-margin-tablet) !important;
  }
}
@media (max-width: 599px) {
  [style*="--ystdb-margin-mobile"] {
    margin: var(--ystdb-margin-mobile) !important;
  }
}
@media (min-width: 1025px) {
  [style*="--ystdb-margin-top-desktop"] {
    margin-top: var(--ystdb-margin-top-desktop) !important;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  [style*="--ystdb-margin-top-tablet"] {
    margin-top: var(--ystdb-margin-top-tablet) !important;
  }
}
@media (max-width: 599px) {
  [style*="--ystdb-margin-top-mobile"] {
    margin-top: var(--ystdb-margin-top-mobile) !important;
  }
}
@media (min-width: 1025px) {
  [style*="--ystdb-margin-right-desktop"] {
    margin-right: var(--ystdb-margin-right-desktop) !important;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  [style*="--ystdb-margin-right-tablet"] {
    margin-right: var(--ystdb-margin-right-tablet) !important;
  }
}
@media (max-width: 599px) {
  [style*="--ystdb-margin-right-mobile"] {
    margin-right: var(--ystdb-margin-right-mobile) !important;
  }
}
@media (min-width: 1025px) {
  [style*="--ystdb-margin-left-desktop"] {
    margin-left: var(--ystdb-margin-left-desktop) !important;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  [style*="--ystdb-margin-left-tablet"] {
    margin-left: var(--ystdb-margin-left-tablet) !important;
  }
}
@media (max-width: 599px) {
  [style*="--ystdb-margin-left-mobile"] {
    margin-left: var(--ystdb-margin-left-mobile) !important;
  }
}
@media (min-width: 1025px) {
  [style*="--ystdb-margin-bottom-desktop"] {
    margin-bottom: var(--ystdb-margin-bottom-desktop) !important;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  [style*="--ystdb-margin-bottom-tablet"] {
    margin-bottom: var(--ystdb-margin-bottom-tablet) !important;
  }
}
@media (max-width: 599px) {
  [style*="--ystdb-margin-bottom-mobile"] {
    margin-bottom: var(--ystdb-margin-bottom-mobile) !important;
  }
}
@media (min-width: 1025px) {
  [style*="--ystdb-padding-desktop"] {
    padding: var(--ystdb-padding-desktop) !important;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  [style*="--ystdb-padding-tablet"] {
    padding: var(--ystdb-padding-tablet) !important;
  }
}
@media (max-width: 599px) {
  [style*="--ystdb-padding-mobile"] {
    padding: var(--ystdb-padding-mobile) !important;
  }
}
@media (min-width: 1025px) {
  [style*="--ystdb-padding-top-desktop"] {
    padding-top: var(--ystdb-padding-top-desktop) !important;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  [style*="--ystdb-padding-top-tablet"] {
    padding-top: var(--ystdb-padding-top-tablet) !important;
  }
}
@media (max-width: 599px) {
  [style*="--ystdb-padding-top-mobile"] {
    padding-top: var(--ystdb-padding-top-mobile) !important;
  }
}
@media (min-width: 1025px) {
  [style*="--ystdb-padding-right-desktop"] {
    padding-right: var(--ystdb-padding-right-desktop) !important;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  [style*="--ystdb-padding-right-tablet"] {
    padding-right: var(--ystdb-padding-right-tablet) !important;
  }
}
@media (max-width: 599px) {
  [style*="--ystdb-padding-right-mobile"] {
    padding-right: var(--ystdb-padding-right-mobile) !important;
  }
}
@media (min-width: 1025px) {
  [style*="--ystdb-padding-left-desktop"] {
    padding-left: var(--ystdb-padding-left-desktop) !important;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  [style*="--ystdb-padding-left-tablet"] {
    padding-left: var(--ystdb-padding-left-tablet) !important;
  }
}
@media (max-width: 599px) {
  [style*="--ystdb-padding-left-mobile"] {
    padding-left: var(--ystdb-padding-left-mobile) !important;
  }
}
@media (min-width: 1025px) {
  [style*="--ystdb-padding-bottom-desktop"] {
    padding-bottom: var(--ystdb-padding-bottom-desktop) !important;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  [style*="--ystdb-padding-bottom-tablet"] {
    padding-bottom: var(--ystdb-padding-bottom-tablet) !important;
  }
}
@media (max-width: 599px) {
  [style*="--ystdb-padding-bottom-mobile"] {
    padding-bottom: var(--ystdb-padding-bottom-mobile) !important;
  }
}
@media (min-width: 1025px) {
  [style*="--ystdb-gap-desktop"] {
    gap: var(--ystdb-gap-desktop) !important;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  [style*="--ystdb-gap-tablet"] {
    gap: var(--ystdb-gap-tablet) !important;
  }
}
@media (max-width: 599px) {
  [style*="--ystdb-gap-mobile"] {
    gap: var(--ystdb-gap-mobile) !important;
  }
}
@media (min-width: 1025px) {
  [style*="--ystdb-column-gap-desktop"] {
    column-gap: var(--ystdb-column-gap-desktop) !important;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  [style*="--ystdb-column-gap-tablet"] {
    column-gap: var(--ystdb-column-gap-tablet) !important;
  }
}
@media (max-width: 599px) {
  [style*="--ystdb-column-gap-mobile"] {
    column-gap: var(--ystdb-column-gap-mobile) !important;
  }
}
@media (min-width: 1025px) {
  [style*="--ystdb-row-gap-desktop"] {
    row-gap: var(--ystdb-row-gap-desktop) !important;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  [style*="--ystdb-row-gap-tablet"] {
    row-gap: var(--ystdb-row-gap-tablet) !important;
  }
}
@media (max-width: 599px) {
  [style*="--ystdb-row-gap-mobile"] {
    row-gap: var(--ystdb-row-gap-mobile) !important;
  }
}
@media (min-width: 1025px) {
  [style*="--ystdb-width-desktop"] {
    width: var(--ystdb-width-desktop) !important;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  [style*="--ystdb-width-tablet"] {
    width: var(--ystdb-width-tablet) !important;
  }
}
@media (max-width: 599px) {
  [style*="--ystdb-width-mobile"] {
    width: var(--ystdb-width-mobile) !important;
  }
}
@media (min-width: 1025px) {
  [style*="--ystdb-heigt-desktop"] {
    heigt: var(--ystdb-heigt-desktop) !important;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  [style*="--ystdb-heigt-tablet"] {
    heigt: var(--ystdb-heigt-tablet) !important;
  }
}
@media (max-width: 599px) {
  [style*="--ystdb-heigt-mobile"] {
    heigt: var(--ystdb-heigt-mobile) !important;
  }
}
