/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-lg-s: 1200px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.wp-block .presentation,
.presentation {
  padding-top: calc(var(--sk-container-padding) * 2);
  padding-bottom: calc(var(--sk-container-padding) * 1.4);
  position: relative;
  max-width: calc(var(--sk-container-width-lg));
  margin: calc(var(--sk-container-padding) * 2) auto calc(var(--sk-container-padding) * 2.1);
}
.wp-block .presentation__media-wrapper,
.presentation__media-wrapper {
  position: absolute;
  bottom: 0;
  top: -2px;
  left: calc(var(--sk-container-padding) * 0.9);
  z-index: -1;
}
.wp-block .presentation .circle-wrapper,
.presentation .circle-wrapper {
  overflow: hidden;
  border-radius: 50%;
  height: 100%;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  .wp-block .presentation .circle-wrapper,
  .presentation .circle-wrapper {
    width: 90%;
    height: auto;
  }
}
.wp-block .presentation .circle-wrapper__image,
.presentation .circle-wrapper__image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  animation: 40s ease 0s normal none 1 running zoomin;
  -webkit-animation: 40s ease 0s normal none 1 running zoomin;
  -o-animation: 40s ease 0s normal none 1 running zoomin;
}
.wp-block .presentation__content-wrapper,
.presentation__content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .wp-block .presentation__content-wrapper,
  .presentation__content-wrapper {
    flex-direction: column;
  }
}
.wp-block .presentation__content-wrapper .presentation-heading,
.presentation__content-wrapper .presentation-heading {
  width: 50%;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .wp-block .presentation__content-wrapper .presentation-heading,
  .presentation__content-wrapper .presentation-heading {
    width: 100%;
  }
}
.wp-block .presentation__content-wrapper .presentation-heading__title,
.presentation__content-wrapper .presentation-heading__title {
  width: 90%;
  color: var(--sk-color-gray);
  padding-bottom: calc(var(--sk-container-padding) * 1.25);
}
@media (max-width: 768px) {
  .wp-block .presentation__content-wrapper .presentation-heading__title,
  .presentation__content-wrapper .presentation-heading__title {
    width: 100%;
  }
}
.wp-block .presentation__content-wrapper .presentation-content,
.presentation__content-wrapper .presentation-content {
  width: 50%;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .wp-block .presentation__content-wrapper .presentation-content,
  .presentation__content-wrapper .presentation-content {
    width: 100%;
  }
}
.wp-block .presentation__content-wrapper .presentation-content__subtitle,
.presentation__content-wrapper .presentation-content__subtitle {
  color: var(--sk-color-gray);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: var(--sk-text--2xs);
  font-weight: 700;
  padding-bottom: calc(var(--sk-container-padding) / 2 + 14px);
}
.wp-block .presentation__content-wrapper .presentation-content__text p,
.presentation__content-wrapper .presentation-content__text p {
  font-weight: 300;
}
.wp-block .presentation .fullwidth,
.presentation .fullwidth {
  width: 100%;
}

@keyframes zoomin {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(2, 2);
  }
}
