@keyframes bounceDown {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateX(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-4px);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(6px);
  }
  57% {
    transform: scale(1, 1) translateY(-2px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes bounce2 {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateX(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateX(-4px);
  }
  50% {
    transform: scale(1.05, 0.95) translateX(2px);
  }
  57% {
    transform: scale(1, 1) translateX(-2px);
  }
  64% {
    transform: scale(1, 1) translateX(0);
  }
  100% {
    transform: scale(1, 1) translateX(0);
  }
}
@keyframes markBlue {
  0% {
    background-size: 0% 100%;
    color: inherit;
  }
  60% {
    color: inherit;
  }
  100% {
    background-size: 100% 100%;
    color: #1967D2;
  }
}
@keyframes markGreen {
  0% {
    background-size: 0% 100%;
  }
  60% {
    color: inherit;
  }
  100% {
    background-size: 100% 100%;
    color: #157c32;
  }
}
@keyframes markOrange {
  0% {
    background-size: 0% 100%;
    color: inherit;
  }
  60% {
    color: inherit;
  }
  100% {
    background-size: 100% 100%;
    color: #e4630a;
  }
}
/* Fonts */
.product-complete {
  padding-top: 64px;
  padding-bottom: 64px;
}
.product-complete .highlight-on-scroll {
  padding: 6px 12px;
  will-change: font-weight, color;
  transition: all linear 0.2s;
  position: relative;
  z-index: 1;
}
.product-complete .highlight-on-scroll::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #E7F0FE;
  background-blend-mode: multiply;
  border-radius: 99px;
  z-index: -1;
  transition: width 1s ease;
}
.product-complete .highlight-on-scroll.animate {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #1861d1;
}
.product-complete .highlight-on-scroll.animate::before {
  width: 100%;
}
.product-complete .highlight-on-scroll.orange::before {
  background-color: #FFF4B8;
}
.product-complete .highlight-on-scroll.orange.animate {
  color: #E4630A;
}
.product-complete .highlight-on-scroll.green::before {
  background-color: #DEF7E5;
}
.product-complete .highlight-on-scroll.green.animate {
  color: #157c32;
}
.product-complete__title {
  text-align: center;
  margin: 0 auto 1rem;
  max-width: 710px;
}
.product-complete__title mark {
  font-weight: 900;
  background: linear-gradient(90deg, #E2E9F5 100%, transparent 0);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 1s cubic-bezier(0.7, 0, 0.3, 1), color 0.4s cubic-bezier(0.7, 0, 0.3, 1) 0.28s;
  font-size: inherit;
  border-radius: 8px;
  padding: 8px 16px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  background-position: left;
  line-height: 140%;
}
.product-complete__title mark.animate {
  animation: markBlue 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
.product-complete__title mark.blue {
  background: linear-gradient(90deg, #E2E9F5 100%, transparent 0);
}
.product-complete__title mark.blue.animate {
  animation: markBlue 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
.product-complete__title mark.green {
  background: linear-gradient(90deg, #def7e5 100%, transparent 0);
}
.product-complete__title mark.green.animate {
  animation: markGreen 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
.product-complete__title mark.orange {
  background: linear-gradient(90deg, #def7e5 100%, transparent 0);
}
.product-complete__title mark.orange.animate {
  animation: markOrange 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
.product-complete__desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.product-complete .item-container {
  padding: 3rem 0;
}
.product-complete .item-container.has-3-col .item:nth-last-child(-n+4) {
  border-bottom: 1px solid #E2E2E2;
}
.product-complete .item-container.has-3-col .item:nth-child(4n) {
  border-right: 1px solid #E2E2E2;
}
.product-complete .item-container.has-3-col .item:nth-last-child(-n+3) {
  border-bottom: 0;
}
.product-complete .item-container.has-3-col .item:nth-child(3n) {
  border-right: 0;
}
.product-complete .item-container.has-3-col .item:nth-child(3):not(:last-child) {
  border-bottom: 1px solid #E2E2E2;
}
.product-complete .item {
  z-index: 1;
  position: relative;
  margin-right: -1px;
  border-bottom: 1px solid #d0d6dd;
  border-right: 1px solid #d0d6dd;
}
.product-complete .item:hover {
  z-index: 2;
}
.product-complete .item a {
  color: #2B2A35;
}
.product-complete .item__wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  padding: 2rem 1rem 1rem;
}
.product-complete .item__wrap:before {
  z-index: 1;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 4px;
  background: #FFFFFF;
  transition: all 0.2s ease;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
}
.product-complete .item__wrap * {
  z-index: 2;
  position: relative;
}
.product-complete .item__wrap:hover {
  text-decoration: none;
}
.product-complete .item__wrap:hover .more,
.product-complete .item__wrap:hover .link-more {
  opacity: 1;
}
.product-complete .item .icon {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  margin: 0 auto 1.25rem 0;
}
.product-complete .item .logo {
  height: 56px;
  width: auto;
  display: block;
  margin: 0 0 20px;
}
.product-complete .item h3 {
  font-size: 1.25rem;
  line-height: 1.6em;
  margin: 0 0 4px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.product-complete .item span.large-title {
  display: block;
  color: #545465;
  font-size: 48px;
  line-height: 56px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  margin: 0;
}
.product-complete .item .more,
.product-complete .item .link-more {
  display: block;
  color: #1357FF;
  position: absolute;
  left: 0;
  bottom: -1.25rem;
  opacity: 0;
  transition: all 0.4s ease;
}
.product-complete .item .more img,
.product-complete .item .link-more img {
  display: inline-block;
  vertical-align: middle;
  width: 1.5rem;
  height: 0.5rem;
  margin-left: 0.5rem;
}
.product-complete .item.no-anchor .item__wrap:before {
  text-align: left;
  display: none;
}
.product-complete .item.no-anchor .item__wrap {
  position: relative;
  padding-left: 80px;
}
.product-complete .item.no-anchor .icon {
  top: calc(50% - 10px);
  left: 16px;
  position: absolute;
}
.product-complete .item.text-center .icon {
  margin: 0 auto 1.25rem;
}
.product-complete--home .product-complete__desc {
  margin-bottom: 24px;
}
.product-complete--about {
  padding-top: 0;
  padding-bottom: 0;
}
.product-complete--about .item-container {
  padding-top: 0;
}
.product-complete--about-alt {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #F9FAFB;
}
.product-complete--about-alt .product-complete__title {
  margin-bottom: 64px;
}
.product-complete--about-alt .item-container {
  padding-top: 0;
  padding-bottom: 0;
}
.product-complete--about-alt .item__wrap {
  padding-left: 8px;
  padding-right: 8px;
}
.product-complete--about-alt .item__wrap::before {
  background: #F9FAFB;
}
.product-complete.bg-gray .item__wrap:before {
  background: #F2F4F7;
}
.product-complete.cream {
  background-color: #f9f8f6;
}
.product-complete.cream .product-complete__title {
  margin-bottom: 16px;
}
.product-complete.cream .product-complete__desc {
  margin-bottom: 0;
  color: #626B79;
}
.product-complete.cream .item-container {
  padding: 40px 0 0 0;
}
.product-complete.cream .item h3 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 16px;
}
.product-complete.cream .item a.btn-blue-border {
  color: #4B61DD;
}
.product-complete.cream .item a.btn-blue-border:hover {
  color: #FFF;
}
.product-complete.cream .item__wrap:before {
  background-color: #f9f8f6;
}
@media (max-width: 991px) {
  .product-complete {
    padding: 32px 0;
  }
  .product-complete__desc {
    margin-bottom: 32px;
  }
  .product-complete .item {
    border: 0 !important;
  }
  .product-complete .item:not(:last-child) {
    margin-bottom: 15px;
  }
  .product-complete .item a,
  .product-complete .item a.link-more {
    opacity: 1;
  }
  .product-complete .item__wrap .icon {
    filter: grayscale(0);
  }
  .product-complete .item__wrap::before {
    display: none;
  }
  .product-complete .item__wrap:hover:before {
    display: none;
  }
  .product-complete .item-container.has-3-col {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }
}/*# sourceMappingURL=product-complete.css.map */