/*
* MEDIA QUERIES
* Breakpoints for responsive sites
*/
/*
* TEXT TRUNCATE
* An easy way to truncate text with an ellipsis. Requires the element to be block or inline-block.
* Usage: @include text-truncate;
* Source: http://web-design-weekly.com/2013/05/12/handy-sass-mixins/
*/
/*
* DON'T BREAK
* Useful mixing so links don't overrun their container
* Usage: @include dontbreak();
* Source: https://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/
*/
/*
* Skew
* Useful mixing to create skewed edges
* Usage: @include angle-edge(bottomright, 3deg, topleft, 3deg, #fff);
* Source: http://www.hongkiat.com/blog/skewed-edges-css/
*/
/*
* SASS Parent append
* Useful if you want to add an append to the parent without writing it out again
* Usage: @include parent-append(":hover")
* Source: https://codepen.io/imkremen/pen/RMVBvq
*/
/*
* Checked animation
*/
@-webkit-keyframes checked {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes checked {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(45deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
/*
* Breakpoint debugging
*/
#what-we-do {
  position: absolute;
  z-index: 101;
  left: 0;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--wp--preset--color--primary);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid var(--wp--preset--color--primary);
  border-left: 0;
  border-radius: 0 100px 100px 0;
  width: calc(var(--wp--custom--spacing--outer) + 135px);
  height: 70px;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
#what-we-do h2 {
  font-weight: 600;
  color: var(--wp--preset--color--secondary);
  font-size: var(--wp--preset--font-size--normal);
  font-family: var(--wp--preset--font-family--secondary-font);
  text-transform: uppercase;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
  margin: 0;
}
#what-we-do svg {
  max-width: 20px;
  margin-left: 1em;
  -webkit-transition: 200ms ease-in-out;
  transition: 200ms ease-in-out;
}
#what-we-do:hover {
  background: var(--wp--preset--color--secondary);
}
#what-we-do:hover h2 {
  color: var(--wp--preset--color--primary);
}
#what-we-do:hover svg {
  fill: var(--wp--preset--color--primary);
}

.block-showcase-carousel {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 100;
  padding: 6% 0 8%;
}
.block-showcase-carousel h2,
.block-showcase-carousel h3,
.block-showcase-carousel h4,
.block-showcase-carousel h5,
.block-showcase-carousel h6,
.block-showcase-carousel p,
.block-showcase-carousel li,
.block-showcase-carousel a,
.block-showcase-carousel span {
  color: white;
}
.block-showcase-carousel .header-scroller {
  position: relative;
  z-index: 1;
}
.block-showcase-carousel .header-scroller .scroller-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 1250ms ease-out;
  transition: 1250ms ease-out;
  margin: 0 0 2rem;
}
.block-showcase-carousel .header-scroller .scroller-wrapper .slide {
  min-width: 100%;
  -webkit-transition: 450ms ease-out;
  transition: 450ms ease-out;
  opacity: 0.4;
}
.block-showcase-carousel .header-scroller .scroller-wrapper .slide:first-of-type {
  opacity: 1;
}
@media (min-width: 768px) {
  .block-showcase-carousel .header-scroller .scroller-wrapper {
    margin: 0;
  }
  .block-showcase-carousel .header-scroller .scroller-wrapper h2 {
    font-size: clamp(2rem, 4vw, 4rem);
  }
}
@media (orientation: portrait) and (max-width: 500px) {
  .block-showcase-carousel .header-scroller .scroller-wrapper {
    padding: 0;
    margin: 0;
  }
  .block-showcase-carousel .header-scroller .scroller-wrapper h2 {
    font-size: 2rem;
  }
}
@media (orientation: portrait) and (max-width: 375px) {
  .block-showcase-carousel .header-scroller .scroller-wrapper {
    margin: 0;
  }
}
@media (orientation: landscape) and (max-height: 400px) {
  .block-showcase-carousel .header-scroller .scroller-wrapper {
    margin: 1rem 0 -2rem;
  }
  .block-showcase-carousel .header-scroller .scroller-wrapper .title .count {
    font-size: 2rem;
    width: 80px;
    height: 80px;
  }
  .block-showcase-carousel .header-scroller .scroller-wrapper h2 {
    font-size: 2rem;
  }
}
.block-showcase-carousel .header-scroller.ir-tools .scroller-wrapper {
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}
.block-showcase-carousel .header-scroller.ir-tools .scroller-wrapper .slide {
  opacity: 1;
}
.block-showcase-carousel .header-scroller.ir-tools .scroller-wrapper .slide:first-of-type, .block-showcase-carousel .header-scroller.ir-tools .scroller-wrapper .slide:last-of-type {
  opacity: 0.4;
}
.block-showcase-carousel .header-scroller.design .scroller-wrapper {
  -webkit-transform: translate3d(-200%, 0, 0);
          transform: translate3d(-200%, 0, 0);
}
.block-showcase-carousel .header-scroller.design .scroller-wrapper .slide {
  opacity: 1;
}
.block-showcase-carousel .header-scroller.design .scroller-wrapper .slide:first-of-type, .block-showcase-carousel .header-scroller.design .scroller-wrapper .slide:nth-of-type(2) {
  opacity: 0.4;
}
.block-showcase-carousel .carousel-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 0;
}
.block-showcase-carousel .carousel-header .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-right: 3rem;
}
.block-showcase-carousel .carousel-header .title .count {
  display: grid;
  place-items: center;
  padding: 0em;
  font-size: var(--wp--preset--font-size--x-large);
  font-weight: 600;
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--secondary);
  aspect-ratio: 1;
  width: 135px;
  height: 135px;
  letter-spacing: 0.2px;
  border-radius: 999px;
  margin-right: 3rem;
}
@media (max-width: 1024px) {
  .block-showcase-carousel .carousel-header .title .count {
    font-size: 3rem;
  }
}
@media (max-width: 500px) {
  .block-showcase-carousel .carousel-header .title {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .block-showcase-carousel .carousel-header .title .count {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
  .block-showcase-carousel .carousel-header .title h2 {
    margin-top: 0 !important;
    font-size: 1.6rem;
  }
}
.block-showcase-carousel .carousel-header .title .icon {
  margin-right: 3rem;
  width: 100px;
}
.block-showcase-carousel .carousel-header .title h2 {
  display: inline-block;
  margin: 0;
  color: var(--wp--preset--color--primary);
}
@media (max-width: 1024px) {
  .block-showcase-carousel .carousel-header .title {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .block-showcase-carousel .carousel-header .title .count {
    margin-right: 10%;
  }
  .block-showcase-carousel .carousel-header .title .icon {
    width: 85px;
    height: 85px;
    margin-right: 10%;
  }
  .block-showcase-carousel .carousel-header .title h2 {
    display: block;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .block-showcase-carousel .carousel-header .title .icon {
    margin-right: 0;
  }
}
.block-showcase-carousel .main-scroller {
  position: relative;
}
.block-showcase-carousel .main-scroller .scroller-wrapper {
  position: absolute;
  top: 3rem;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.block-showcase-carousel .main-scroller .slideshow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 3rem 0 0;
  padding: 0;
}
.block-showcase-carousel .main-scroller .slideshow__slide {
  list-style: none;
  width: clamp(300px, 40vw, 650px);
  margin-right: 15px;
  margin-bottom: 0;
  -webkit-transition: 200ms ease-out;
  transition: 200ms ease-out;
  opacity: 0;
  -webkit-transform: translate3d(0, 1em, 0);
          transform: translate3d(0, 1em, 0);
}
.block-showcase-carousel .main-scroller .slideshow__slide:last-of-type {
  margin-right: 0;
}
.block-showcase-carousel .main-scroller .slideshow__slide__img {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.block-showcase-carousel .main-scroller .slideshow__slide__img img {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 200ms ease-out;
  transition: 200ms ease-out;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.block-showcase-carousel .main-scroller .slideshow__slide .post-title h3 {
  font-weight: 200;
  font-family: var(--wp--preset--font-family--secondary-font);
  color: var(--wp--preset--color--primary);
  margin-top: 1em;
  margin-bottom: 0;
  -webkit-transition: 200ms ease-out;
  transition: 200ms ease-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.block-showcase-carousel .main-scroller .slideshow__slide .post-title:hover h3 {
  color: white;
}
.block-showcase-carousel .main-scroller .slideshow__slide.link .post-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-bottom: 55.25%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 200ms ease-out;
  transition: 200ms ease-out;
  font-weight: 200;
  font-family: var(--wp--preset--font-family--secondary-font);
  font-size: var(--wp--preset--font-size--large);
  background: var(--wp--preset--color--secondary);
  border: 4px solid var(--wp--preset--color--primary);
  color: var(--wp--preset--color--secondary);
}
.block-showcase-carousel .main-scroller .slideshow__slide.link .post-title span {
  color: var(--wp--preset--color--primary);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.block-showcase-carousel .main-scroller .slideshow__slide.link .post-title:hover span {
  color: var(--wp--preset--color--primary);
}
@media (max-width: 768px) {
  .block-showcase-carousel .main-scroller .slideshow__slide {
    min-width: 300px;
  }
}
.block-showcase-carousel .main-scroller .slideshow:last-of-type {
  margin-right: 0;
}
.block-showcase-carousel .main-scroller .slideshow:hover .slideshow__slide {
  -webkit-transform: scale(0.95) !important;
          transform: scale(0.95) !important;
}
.block-showcase-carousel .main-scroller .slideshow .slideshow__slide:hover {
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}
@media (max-width: 768px) {
  .block-showcase-carousel .main-scroller {
    padding: 0 0 26rem;
  }
}
@media (orientation: portrait) and (max-width: 1024px) {
  .block-showcase-carousel .main-scroller {
    padding: 0 0 35rem;
  }
  .block-showcase-carousel .main-scroller .slideshow__slide {
    width: clamp(300px, 80vw, 650px);
  }
}
@media (orientation: portrait) and (max-width: 500px) {
  .block-showcase-carousel .main-scroller {
    padding: 0 0 22rem;
  }
}
@media (orientation: landscape) and (max-height: 400px) {
  .block-showcase-carousel .main-scroller .slideshow__slide {
    width: clamp(280px, 35vw, 650px);
  }
}
.block-showcase-carousel .wp-block-button {
  text-align: right;
  position: relative;
  z-index: 10;
}
.block-showcase-carousel .wp-block-button .go-tools,
.block-showcase-carousel .wp-block-button .go-websites {
  float: left;
  margin-right: 1em;
}
.block-showcase-carousel .wp-block-button .go-tools.active,
.block-showcase-carousel .wp-block-button .go-websites.active {
  background: var(--wp--preset--color--primary);
  border-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--secondary) !important;
}
@media (max-width: 1024px) {
  .block-showcase-carousel {
    padding: 7rem 0 0rem;
  }
}

.editor-styles-wrapper .block-showcase-carousel .main-scroller .slideshow__slide {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}