/*-------------------------
about
--------------------------*/
.wp-block.about {
  background: #000;
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 768px) {
  .wp-block.about {
    padding-top: 163px;
    padding-bottom: 163px;
  }
}
.wp-block.about .container {
  max-width: 1074px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media only screen and (min-width: 768px) {
  .wp-block.about .container {
    display: grid;
    grid-template-columns: minmax(0, 54%) minmax(0, 40%);
    gap: 6%;
  }
}
.wp-block.about .buttonwrapper {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}
.wp-block.about img {
  border-radius: 16px;
  overflow: hidden;
}
.wp-block.about .title {
  color: #fff;
  will-change: opacity, transform;
  font-size: clamp(28px, 24px + 0.0083333333 * 100vw, 40px);
  line-height: clamp(39.4px, 33.8666666667px + 0.0115277778 * 100vw, 56px);
}
.wp-block.about .desc {
  color: #fff;
  font-size: 18px;
  line-height: 22px;
}
