.layout-main {
  overflow: hidden;
}

:root {
  --lp-color-white: #fff;
  --lp-color-black: #333;
  --lp-color-red: #dc002f;
  --lp-background-primary: #eee;
  --lp-background-secondary: #e8e8e8;
  --lp-background-tertiary: var(--lp-color-white);
  --lp-borderRadius-primary: 0.4rem;
  --lp-animationDuration-primary: 0.3s;
}

.lp-layout-grid {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}
.lp-layout-grid.of-column-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 969px) {
  .lp-layout-grid.of-column-2 {
    grid-template-columns: repeat(auto-fit, minmax(auto, 54rem));
  }
}
.lp-layout-grid-column {
  display: grid;
  grid-template-rows: subgrid;
}
.lp-layout-grid-column > *:last-child {
  margin-bottom: 0;
}

.lp-jumbotron {
  background-color: var(--lp-background-primary);
  font-size: 1.8rem;
}
.lp-jumbotron-content {
  display: flex;
  column-gap: 4rem;
  row-gap: 2.4rem;
  align-items: center;
  justify-content: center;
  max-width: 110rem;
  margin-inline: auto;
  padding: 4rem 2rem;
}
@media only screen and (max-width: 969px) {
  .lp-jumbotron-content {
    flex-direction: column;
    padding: 2rem;
  }
}
.lp-jumbotron-body {
  max-width: 89rem;
}
.lp-jumbotron-body > *:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 1340px) {
  .lp-jumbotron-body {
    max-width: calc(76rem + (1vw - 0.969rem) * (35.0404312668));
  }
}
@media only screen and (max-width: 969px) {
  .lp-jumbotron-body {
    max-width: 54rem;
  }
}
.lp-jumbotron-title {
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 4.8rem;
  line-height: 1.25;
}
@media only screen and (max-width: 1340px) {
  .lp-jumbotron-title {
    font-size: calc(2.4rem + (1vw - 0.36rem) * (2.4489795918));
  }
}
@media only screen and (max-width: 969px) {
  .lp-jumbotron-image {
    max-width: calc(6.5rem + (1vw - 0.36rem) * (10.6732348112));
  }
}

.lp-section {
  background-color: #fff;
  font-size: 1.8rem;
}
.lp-section-content {
  max-width: 99rem;
  margin-inline: auto;
  padding: 4rem 2rem 8rem;
}
.lp-section-content > *:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 969px) {
  .lp-section-content {
    padding: 2rem 2rem 6rem;
  }
}

.lp-headingLevel2 {
  margin-bottom: 2.4rem;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.3;
}
@media only screen and (max-width: 969px) {
  .lp-headingLevel2 {
    font-size: calc(1.8rem + (1vw - 0.36rem) * (0.9852216749));
  }
}

.lp-text {
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
  line-height: 1.3;
}
@media only screen and (max-width: 969px) {
  .lp-text {
    font-size: 1.6rem;
  }
}

.lp-textLead {
  margin-bottom: 2.4rem;
  font-size: 2.4rem;
  line-height: 1.3;
}
@media only screen and (max-width: 969px) {
  .lp-textLead {
    font-size: calc(1.6rem + (1vw - 0.36rem) * (1.3136288998));
  }
}

.lp-card {
  margin-bottom: 2.4rem;
  border-radius: var(--lp-borderRadius-primary);
  background-color: var(--lp-background-secondary);
}
@media only screen and (max-width: 969px) {
  .lp-card {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    border-radius: 0;
  }
}
.lp-card-content {
  padding: 4rem;
}
.lp-card-content > *:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 969px) {
  .lp-card-content {
    padding: 2rem;
  }
}

.lp-media {
  display: flex;
  column-gap: 1.6rem;
  flex-direction: row-reverse;
  align-items: center;
  margin-bottom: 2.4rem;
}
.lp-media-body {
  flex: 1;
}
.lp-media-body > *:last-child {
  margin-bottom: 0;
}
.lp-media-image {
  flex-shrink: 0;
}

.lp-button {
  display: block;
  margin-bottom: 2.4rem;
  padding: 0.8rem 2.4rem 0.8rem 0.8rem;
  border: 0.1rem solid var(--lp-color-white);
  border-radius: var(--lp-borderRadius-primary);
  background-color: var(--lp-background-tertiary);
  color: var(--lp-color-black);
  font-weight: 600;
  font-size: 2rem;
  text-decoration: none;
  transition: box-shadow var(--lp-animationDuration-primary), border var(--lp-animationDuration-primary), color var(--lp-animationDuration-primary);
}
@media only screen and (max-width: 969px) {
  .lp-button {
    font-size: 1.6rem;
  }
}
.lp-button:hover, .lp-button:active, .lp-button:focus {
  border: 0.1rem solid var(--lp-color-red);
  box-shadow: 0rem 0.4rem 1.6rem rgba(0, 0, 0, 0.2);
  color: var(--lp-color-red);
}
.lp-button.of-flex {
  display: flex;
  align-items: center;
}
.lp-button.of-flex .lp-button-body {
  flex: 1;
}
.lp-button.of-arrow .lp-button-body {
  position: relative;
  padding-right: 2.4rem;
}
.lp-button.of-arrow .lp-button-body::before {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.8rem;
  height: 1.6rem;
  transform: translateY(-50%);
  background-color: var(--lp-color-red);
  content: "";
  clip-path: polygon(0 0, 100% 50%, 0% 100%);
}
.lp-button-body > *:last-child {
  margin-bottom: 0;
}

.lp-utility-textAlign-center {
  text-align: center;
}
