/* variables */
body, html {
  font-family: "Circular", sans-serif !important;
}

[x-cloak] {
  display: none !important;
}

@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
section.content-body.case-studies {
  padding: 44px 16px;
}
section.content-body .filters {
  margin-bottom: 1.5rem;
}
section.content-body .filters form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  section.content-body .filters form {
    flex-direction: row;
    justify-content: end;
  }
}
section.content-body .filters form:disabled {
  opacity: 0.5;
}
section.content-body .filters form .search-filter, section.content-body .filters form .category-filter {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(16, 47, 56, 0.2509803922);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  position: relative;
}
section.content-body .filters form .search-filter::placeholder, section.content-body .filters form .category-filter::placeholder {
  color: rgba(16, 47, 56, 0.5019607843);
}
@media (min-width: 768px) {
  section.content-body .filters form .search-filter, section.content-body .filters form .category-filter {
    max-width: 255px;
  }
}
section.content-body .filters form .search-filter select, section.content-body .filters form .category-filter select {
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background: none;
}
section.content-body .filters form .search-filter input, section.content-body .filters form .category-filter input {
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}
section.content-body .filters form .search-filter input::placeholder, section.content-body .filters form .category-filter input::placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
section.content-body .filters form .search-filter {
  display: flex;
  gap: 0.5em;
  padding-left: 10px;
}
section.content-body .filters form .search-filter i {
  color: #076EFD;
}

#posts-grid .loading {
  display: none;
  margin-left: 6.6666666667px;
  animation: rotate-animation 1s linear infinite;
}
#posts-grid .loading.htmx-request {
  display: inline-block;
}
#posts-grid .blog-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 1rem;
  grid-column: 1/-1;
  transition: opacity 0.3s ease;
}
#posts-grid .blog-item.htmx-added {
  opacity: 0.5;
}
@media (min-width: 768px) {
  #posts-grid .blog-item {
    grid-column: auto;
  }
}
#posts-grid .blog-item figure {
  overflow: clip;
  width: 100%;
  height: 220px;
  margin: 0;
}
#posts-grid .blog-item img {
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  transform: scale(1);
  transition: transform 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: transform;
  width: 100%;
  height: 100%;
}
#posts-grid .blog-item img:hover {
  transform: scale(1.05);
}
.customer-section #posts-grid .blog-item img {
  border-radius: 0;
}

#posts-grid .blog-item .title-cat-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#posts-grid #replace-me {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0 2rem;
}
#posts-grid #replace-me .cta-button {
  border: none;
  outline: none;
  cursor: pointer;
}
#posts-grid .no-posts-found {
  grid-column: span 3;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: opacity(0.5);
  margin-bottom: 44px;
}
#posts-grid .no-posts-found span {
  font-size: 0.8em;
  color: #0f172a;
  background: #f6f6f6;
  border-radius: 8px;
  border: 1px solid #e4e4e4;
  width: 90%;
  display: block;
  padding: 0.5rem 2rem;
  text-align: center;
}
#posts-grid .inroll-cta {
  background: #076EFD;
  display: none;
  border-radius: 12px;
  grid-column: 1/-1;
  padding: 1.8rem 2rem;
  overflow: clip;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  #posts-grid .inroll-cta {
    display: block;
  }
}
#posts-grid .inroll-cta div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
#posts-grid .inroll-cta div div {
  position: relative;
  max-width: 600px;
  min-width: 400px;
}
#posts-grid .inroll-cta div div img {
  position: absolute;
  bottom: -1.8rem;
  right: 0;
  max-height: 94px;
}
#posts-grid .inroll-cta div .cta-button {
  color: #076EFD;
  background: #fff;
}
#posts-grid {
  /* Grid Template Responsive Changes */
}

section.page-hero-header .text-wrapper .title {
  font-size: 56px;
  line-height: 65px;
  font-weight: 900;
  width: 100%;
}
section.page-hero-header .text-wrapper .title span {
  display: block;
  font-size: 14px;
  line-height: 1.3em;
  letter-spacing: 1px;
  text-transform: uppercase;
}
section.page-hero-header .text-wrapper .text {
  font-size: 20px;
  line-height: 1.3em;
  font-weight: 450;
}
section.page-hero-header .text-wrapper .btn {
  margin: 0.6rem 0 0;
  font-weight: 500;
}
section.page-hero-header .text-wrapper .date-author {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
section.page-hero-header .circle {
  border-radius: 100%;
  display: block;
  aspect-ratio: 1/1;
  position: absolute;
}
section.page-hero-header .circle.blue {
  background: #076EFD;
  width: 212px;
  top: 0;
  right: -2.5rem;
  opacity: 0.5;
}
@media (min-width: 768px) {
  section.page-hero-header .circle.blue {
    width: 455px;
    top: -6.5rem;
    right: -2.5rem;
    opacity: 0.5;
  }
}
section.page-hero-header .circle.yellow {
  background: #F4B11F;
  width: 53px;
  right: -1.5rem;
  top: 8rem;
}
@media (min-width: 768px) {
  section.page-hero-header .circle.yellow {
    width: 125px;
    right: -2rem;
    top: 10rem;
  }
}
section.page-hero-header .circle.lilac {
  background: #C562CF;
  width: 161px;
  bottom: -2rem;
  left: -4rem;
}
@media (min-width: 768px) {
  section.page-hero-header .circle.lilac {
    width: 315px;
    bottom: -5rem;
    left: -5rem;
  }
}
section.page-hero-header .circle.sm-blue {
  background: #076EFD;
  width: 64px;
  bottom: 2rem;
  left: 2rem;
}
@media (min-width: 768px) {
  section.page-hero-header .circle.sm-blue {
    width: 125px;
    bottom: 2rem;
    left: 6rem;
  }
}

section.featured-blog-post .feature-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
section.featured-blog-post .feature-wrap h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
  margin: 0 0 1rem;
}
section.featured-blog-post article.post {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #ccc;
  overflow: hidden;
}
@media (min-width: 768px) {
  section.featured-blog-post article.post {
    justify-content: flex-end;
    flex-direction: row;
    min-height: 397px;
    height: fit-content;
  }
}
section.featured-blog-post article.post figure {
  aspect-ratio: 16/9;
  width: 100%;
  margin: 0;
}
section.featured-blog-post article.post figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 768px) {
  section.featured-blog-post article.post figure {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
}
section.featured-blog-post article.post .text {
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  gap: 8.3682008368px;
  justify-content: center;
  align-items: start;
  background: rgba(16, 47, 56, 0.7490196078);
  color: #fff;
  text-align: left;
  padding: 1.5rem 2rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  section.featured-blog-post article.post .text {
    width: 50%;
    height: auto;
    padding: 0 2rem;
  }
}
section.featured-blog-post article.post .text h3 {
  font-size: 32px;
  line-height: 40px;
  text-align: left;
}
section.featured-blog-post article.post .text a {
  align-self: self-start;
  margin: 0;
}
section.featured-blog-post article.post .text a:hover {
  background-color: #fff;
}

section.featured-post {
  position: relative;
  display: block;
}
section.featured-post .feature-wrap h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
  margin: 0 0 1rem;
}
section.featured-post .feature-wrap a.btn-reach-blue:hover {
  background-color: #fff;
}
section.featured-post article.guides {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  section.featured-post article.guides {
    justify-content: flex-end;
    flex-direction: row;
    min-height: 397px;
    height: fit-content;
  }
}
section.featured-post article.guides figure {
  margin: 0;
}
section.featured-post article.guides figure img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 768px) {
  section.featured-post article.guides figure img {
    max-width: 530px;
  }
}
@media (min-width: 768px) {
  section.featured-post article.guides figure {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
}
section.featured-post article.guides .text {
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  gap: 8.3682008368px;
  justify-content: center;
  align-items: start;
  color: #fff;
  text-align: left;
  padding: 1.5rem 2rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  section.featured-post article.guides .text {
    width: 50%;
    height: auto;
    padding: 0 2rem;
  }
}
section.featured-post article.guides .text h3 {
  font-size: 32px;
  line-height: 40px;
  text-align: left;
}
section.featured-post article.guides .text .cta-button {
  font-size: 14px;
  margin-top: 0.6rem;
}

section.customer-header {
  background: rgba(7, 110, 253, 0.1019607843);
  padding: 6rem 0 4rem;
  color: #000;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: clip;
}
section.customer-header .text-wrapper {
  max-width: 500px;
  padding: 4rem 1rem 1.5rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 5;
}
@media (min-width: 768px) {
  section.customer-header .text-wrapper {
    padding: 0;
  }
}
section.customer-header .text-wrapper .title {
  font-size: 48px;
  line-height: 56px;
}
section.customer-header .text-wrapper .text {
  font-size: 18px;
  line-height: 26px;
}
section.customer-header .circle {
  border-radius: 100%;
  display: block;
  aspect-ratio: 1/1;
  position: absolute;
}
section.customer-header .circle.blue {
  background: #076EFD;
  width: 212px;
  top: 0;
  right: -2.5rem;
  opacity: 0.5;
}
@media (min-width: 768px) {
  section.customer-header .circle.blue {
    width: 455px;
    top: -6.5rem;
    right: -2.5rem;
    opacity: 0.5;
  }
}
section.customer-header .circle.yellow {
  background: #F4B11F;
  width: 53px;
  right: -1.5rem;
  top: 8rem;
}
@media (min-width: 768px) {
  section.customer-header .circle.yellow {
    width: 125px;
    right: -2rem;
    top: 10rem;
  }
}
section.customer-header .circle.lilac {
  background: #C562CF;
  width: 161px;
  bottom: -2rem;
  left: -4rem;
}
@media (min-width: 768px) {
  section.customer-header .circle.lilac {
    width: 315px;
    bottom: -5rem;
    left: -5rem;
  }
}
section.customer-header .circle.sm-blue {
  background: #076EFD;
  width: 64px;
  bottom: 2rem;
  left: 2rem;
}
@media (min-width: 768px) {
  section.customer-header .circle.sm-blue {
    width: 125px;
    bottom: 2rem;
    left: 6rem;
  }
}

section.customer-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.customer-footer .cta-button {
  outline: 0;
  border: #076EFD;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

section.webinar-header {
  background: rgba(7, 110, 253, 0.1019607843);
  padding: 6rem 0 4rem;
  color: #000;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: clip;
}
section.webinar-header .text-wrapper {
  max-width: 500px;
  padding: 4rem 1rem 1.5rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 5;
}
@media (min-width: 768px) {
  section.webinar-header .text-wrapper {
    padding: 0;
  }
}
section.webinar-header .text-wrapper .title {
  font-size: 48px;
  line-height: 56px;
}
section.webinar-header .text-wrapper .title .subtitle {
  display: block;
  font-size: 24px;
  line-height: 32px;
}
section.webinar-header .text-wrapper .text {
  font-size: 18px;
  line-height: 26px;
}
section.webinar-header .circle {
  border-radius: 100%;
  display: block;
  aspect-ratio: 1/1;
  position: absolute;
}
section.webinar-header .circle.blue {
  background: #076EFD;
  width: 212px;
  top: 0;
  right: -2.5rem;
  opacity: 0.5;
}
@media (min-width: 768px) {
  section.webinar-header .circle.blue {
    width: 455px;
    top: -6.5rem;
    right: -2.5rem;
    opacity: 0.5;
  }
}
section.webinar-header .circle.yellow {
  background: #F4B11F;
  width: 53px;
  right: -1.5rem;
  top: 8rem;
}
@media (min-width: 768px) {
  section.webinar-header .circle.yellow {
    width: 125px;
    right: -2rem;
    top: 10rem;
  }
}
section.webinar-header .circle.lilac {
  background: #C562CF;
  width: 161px;
  bottom: -2rem;
  left: -4rem;
}
@media (min-width: 768px) {
  section.webinar-header .circle.lilac {
    width: 315px;
    bottom: -5rem;
    left: -5rem;
  }
}
section.webinar-header .circle.sm-blue {
  background: #076EFD;
  width: 64px;
  bottom: 2rem;
  left: 2rem;
}
@media (min-width: 768px) {
  section.webinar-header .circle.sm-blue {
    width: 125px;
    bottom: 2rem;
    left: 6rem;
  }
}

section.upcoming-events {
  margin-bottom: 30px;
}
section.upcoming-events .title-wrapper {
  margin: 2rem auto 1rem;
}
section.upcoming-events .upcoming-events-wrapper {
  margin: 0 auto;
  position: relative;
  overflow: visible;
  max-width: 1130px;
  padding: 0;
}
@media (max-width: 1200px) {
  section.upcoming-events .upcoming-events-wrapper {
    max-width: 930px;
  }
}
@media (max-width: 990px) {
  section.upcoming-events .upcoming-events-wrapper {
    max-width: 710px;
  }
}
@media (max-width: 750px) {
  section.upcoming-events .upcoming-events-wrapper {
    max-width: 640px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
section.upcoming-events .upcoming-events-wrapper .events-swiper {
  overflow: visible;
  padding-bottom: 8px;
}
section.upcoming-events .upcoming-events-wrapper .swiper-button-prev,
section.upcoming-events .upcoming-events-wrapper .swiper-button-next {
  border: 0.1em solid #000;
  display: none;
  align-items: center;
  justify-content: center;
  color: #000;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: #fff;
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  section.upcoming-events .upcoming-events-wrapper .swiper-button-prev,
  section.upcoming-events .upcoming-events-wrapper .swiper-button-next {
    display: flex;
  }
}
section.upcoming-events .upcoming-events-wrapper .swiper-button-prev:after,
section.upcoming-events .upcoming-events-wrapper .swiper-button-next:after {
  display: none;
}
section.upcoming-events .upcoming-events-wrapper .swiper-button-prev i,
section.upcoming-events .upcoming-events-wrapper .swiper-button-next i {
  font-size: 1rem;
}
section.upcoming-events .upcoming-events-wrapper .swiper-button-prev:hover,
section.upcoming-events .upcoming-events-wrapper .swiper-button-next:hover {
  background-color: #076EFD;
  color: #fff;
  border-color: #076EFD;
}
section.upcoming-events .upcoming-events-wrapper .swiper-button-prev.swiper-button-disabled,
section.upcoming-events .upcoming-events-wrapper .swiper-button-next.swiper-button-disabled {
  display: none;
}
section.upcoming-events .upcoming-events-wrapper .swiper-button-prev {
  left: -60px;
}
@media (min-width: 1024px) {
  section.upcoming-events .upcoming-events-wrapper .swiper-button-prev {
    left: -60px;
  }
}
section.upcoming-events .upcoming-events-wrapper .swiper-button-next {
  right: -60px;
}
@media (min-width: 1024px) {
  section.upcoming-events .upcoming-events-wrapper .swiper-button-next {
    right: -60px;
  }
}
section.upcoming-events .upcoming-events-wrapper .event {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
section.upcoming-events .upcoming-events-wrapper .event > a:has(img):hover ~ .event-content a.group span,
section.upcoming-events .upcoming-events-wrapper .event .event-content a:has(h3):hover ~ a.group span {
  color: #000;
}
section.upcoming-events .upcoming-events-wrapper .event > a:has(img):hover ~ .event-content a.group i,
section.upcoming-events .upcoming-events-wrapper .event .event-content a:has(h3):hover ~ a.group i {
  transform: translateX(5px);
}
section.upcoming-events .upcoming-events-wrapper .event img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
section.upcoming-events .upcoming-events-wrapper .event .date {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
section.upcoming-events .upcoming-events-wrapper .event .event-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-top: 5px;
  margin-top: 5px;
}
section.upcoming-events .upcoming-events-wrapper .event .event-content div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  justify-content: start;
}
section.upcoming-events .upcoming-events-wrapper .event .event-content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 450;
}
section.upcoming-events .upcoming-events-wrapper .event .event-link {
  color: #076EFD;
  font-size: 16px;
  line-height: 22px;
  font-weight: 800;
  margin-top: auto;
}
section.upcoming-events .upcoming-events-wrapper .event .event-link span {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media (min-width: 1024px) {
  section.upcoming-events {
    padding: 0;
  }
}

section.ondemand-webinars h2 {
  margin: 2rem auto 1rem;
  line-height: 32px;
}
section.ondemand-webinars .ondemand-webinars-wrapper .box {
  border-radius: 8px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.0784313725);
  display: flex;
  flex-direction: column;
}
section.ondemand-webinars .ondemand-webinars-wrapper .webinar {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  justify-content: center;
  border-bottom: 1px solid rgba(16, 47, 56, 0.1019607843);
  padding: 1rem;
  position: relative;
}
@media (min-width: 768px) {
  section.ondemand-webinars .ondemand-webinars-wrapper .webinar {
    align-items: center;
    flex-direction: row;
    gap: 32px;
  }
}
section.ondemand-webinars .ondemand-webinars-wrapper .webinar:last-child {
  border-bottom: none;
}
section.ondemand-webinars .ondemand-webinars-wrapper .webinar:hover .webinar-content h3 {
  color: #076EFD;
}
section.ondemand-webinars .ondemand-webinars-wrapper .webinar:hover a.link i {
  color: #076EFD;
  transform: translateX(5px);
}
section.ondemand-webinars .ondemand-webinars-wrapper .webinar img {
  object-position: center;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
section.ondemand-webinars .ondemand-webinars-wrapper .webinar .webinar-content {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  flex-grow: 1;
}
@media (min-width: 768px) {
  section.ondemand-webinars .ondemand-webinars-wrapper .webinar .webinar-content {
    padding: 16px;
  }
}
section.ondemand-webinars .ondemand-webinars-wrapper .webinar .webinar-content h3 {
  font-size: 18px;
  line-height: 26px;
  transition: color 0.2s ease-in-out;
}
section.ondemand-webinars .ondemand-webinars-wrapper .webinar .webinar-content p {
  font-size: 16px;
  line-height: 24px;
}
section.ondemand-webinars .ondemand-webinars-wrapper .webinar a.link {
  height: 100%;
  flex-direction: column;
  display: block;
  align-items: center;
  justify-content: center;
  color: #076EFD;
  min-width: 2rem;
  align-self: end;
}
@media (min-width: 768px) {
  section.ondemand-webinars .ondemand-webinars-wrapper .webinar a.link {
    align-self: center;
  }
}
section.ondemand-webinars .ondemand-webinars-wrapper .webinar a.link i {
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}
section.ondemand-webinars .ondemand-webinars-wrapper .webinar a.link span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

section.event-section article h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin: 1rem 0;
}
section.event-section article p, section.event-section article li {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  margin: 1.5rem 0;
}
section.event-section article li {
  margin: 0.5rem 0;
}

.events-template-default .breadcrumbs,
.stories-template-default .breadcrumbs,
.post-template-default .breadcrumbs {
  padding-left: 0;
}

.cta-button {
  width: fit-content;
  height: fit-content;
  gap: 10px;
  border-radius: 8px;
  padding: 10px 24px 10px 24px;
  background: #076EFD;
  border: 1px solid #076EFD !important;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.cta-button:hover {
  color: #076EFD;
  background: #fff;
}

.pagination {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  padding: 44px 0;
}
.pagination a, .pagination span {
  padding: 0.5em 0.8em;
  text-decoration: none;
  color: #102F38;
  transition: all 0.2s ease-in-out;
}
.pagination a:hover, .pagination span:hover {
  color: #076EFD;
}
.pagination .current, .pagination .current-page {
  color: #076EFD;
  font-weight: bold;
}
.pagination .prev i, .pagination .next i {
  font-size: 0.6em;
}

.slick-track {
  display: flex;
  align-items: center;
  gap: 8px;
}
.slick-track .slack-slide {
  margin-right: 1rem;
}

/* Swiper slide opacity effect for peek */
.upcoming-events .swiper-slide {
  transition: opacity 0.3s ease;
  opacity: 1;
}
@media (min-width: 1024px) {
  .upcoming-events .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next):not(.swiper-slide-next + .swiper-slide) {
    opacity: 0.1;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../scss/new-pages.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAA;AAYA;EACE;;;AAGF;EACE;;;AAGF;EACE;IACE;;EAEF;IACE;;;AAKF;EACE;;AAEF;EACE;;AACA;EACE;EACA;EACA;EACA;;AACA;EALF;IAMI;IACA;;;AAEF;EACE;;AAEF;EACE;EACA,eA3CC;EA4CD;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;;AAEF;EAfF;IAgBI;;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;;AAIN;EACE;EACA;EACA;;AACA;EACE,OAzFE;;;AAiGV;EACE;EACA;EACA;;AACA;EACE;;AAGJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;;AAEF;EAZF;IAaI;;;AAEF;EACE;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA,eAlIG;EAmIH;EACA;EACA;EACA;EACA;;AACA;EACE;;AAEO;EACP;;;AAGJ;EACE;EACA;EACA;;AAGJ;EACE;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;;AAIJ;EACE;EACA;EACA;EACA;EACA;EACA,eA3KI;;AA4KJ;EACE;EACA;EACA;EACA,eA7KG;EA8KH;EACA;EACA;EACA;EACA;;AAIJ;EACE,YAtLQ;EAuLR;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EATF;IAUI;;;AAEF;EACE;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;;AAGJ;EACE,OAlNI;EAmNJ;;AAnHR;AAwHE;;;AAME;EACE;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;;AAGJ;EACE;EACA;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;EACA;;AAGJ;EACE;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;;AACA;EANF;IAOI;IACA;IACA;IACA;;;AAGJ;EACE;EACA;EACA;EACA;;AACA;EALF;IAMI;IACA;IACA;;;AAGJ;EACE;EACA;EACA;EACA;;AACA;EALF;IAMI;IACA;IACA;;;AAGJ;EACE;EACA;EACA;EACA;;AACA;EALF;IAMI;IACA;IACA;;;;AAON;EACE,WAxTQ;EAyTR;EACA;;AACA;EACE;EACA;EACA;EACA;;AAGJ;EACE,eA9TK;EA+TL;EACA;EACA;EACA;EACA;;AACA;EAPF;IAQI;IACA;IACA;IACA;;;AAEF;EACE;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;;AAEF;EAVF;IAWI;IACA;IACA;IACA;IACA;;;AAGJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EAdF;IAeI;IACA;IACA;;;AAEF;EACE;EACA;EACA;;AAEF;EACE;EACA;;AACA;EACE;;;AAOV;EACE;EACA;;AAEE;EACE;EACA;EACA;EACA;;AAEF;EACE;;AAGJ;EACE,eA9YK;EA+YL;EACA;EACA;EACA;;AACA;EANF;IAOI;IACA;IACA;IACA;;;AAEF;EACE;;AACA;EACE;EACA;EACA;EACA;;AACA;EALF;IAMI;;;AAGJ;EAXF;IAYI;IACA;IACA;IACA;IACA;;;AAGJ;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EAbF;IAcI;IACA;IACA;;;AAEF;EACE;EACA;EACA;;AAEF;EACE;EACA;;;AAMR;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;EACA;;AACA;EAPF;IAQI;;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAGJ;EACE;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;;AACA;EANF;IAOI;IACA;IACA;IACA;;;AAGJ;EACE;EACA;EACA;EACA;;AACA;EALF;IAMI;IACA;IACA;;;AAGJ;EACE;EACA;EACA;EACA;;AACA;EALF;IAMI;IACA;IACA;;;AAGJ;EACE;EACA;EACA;EACA;;AACA;EALF;IAMI;IACA;IACA;;;;AAMR;EACI;EACA;EACA;;AACA;EACE;EACA,QAniBM;EAoiBN;EACA;;;AAKN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;EACA;;AACA;EAPF;IAQI;;;AAEF;EACE;EACA;;AACA;EACE;EACA;EACA;;AAGJ;EACE;EACA;;AAGJ;EACE;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;;AACA;EANF;IAOI;IACA;IACA;IACA;;;AAGJ;EACE;EACA;EACA;EACA;;AACA;EALF;IAMI;IACA;IACA;;;AAGJ;EACE;EACA;EACA;EACA;;AACA;EALF;IAMI;IACA;IACA;;;AAGJ;EACE;EACA;EACA;EACA;;AACA;EALF;IAMI;IACA;IACA;;;;AAMR;EACE;;AACA;EACE;;AAEF;EACE;EACA;EACA;EACA;EACA;;AAEA;EAPF;IAQI;;;AAGF;EAXF;IAYI;;;AAGF;EAfF;IAgBI;IACA;IACA;;;AAGF;EACE;EACA;;AAEF;AAAA;EAEE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAnBF;AAAA;IAoBI;;;AAGF;AAAA;EACE;;AAGF;AAAA;EACE;;AAGF;AAAA;EACE,kBAhsBI;EAisBJ;EACA,cAlsBI;;AAqsBN;AAAA;EACE;;AAIJ;EACE;;AAEA;EAHF;IAII;;;AAIJ;EACE;;AAEA;EAHF;IAII;;;AAGJ;EACE;EACA;EACA;EACA;;AAGA;AAAA;EAEE;;AAGF;AAAA;EAEE;;AAGF;EACE;EACA;EACA;EACA;EACA,eAhvBC;;AAkvBH;EACE;EACA;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;;AAGJ;EACE,OA1wBI;EA2wBJ;EACA;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;EACA;;AAKR;EAxJF;IAyJI;;;;AAKF;EACE;EACA;;AAGA;EACE,eAvyBG;EAwyBH;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EATF;IAUI;IACA;IACA;;;AAEF;EACE;;AAGA;EACE,OA9zBE;;AAg0BJ;EACE,OAj0BE;EAk0BF;;AAGJ;EACE;EACA;EACA;EACA;EACA,eA30BC;;AA60BH;EACE;EACA;EACA;EACA;;AACA;EALF;IAMI;;;AAEF;EACE;EACA;EACA;;AAEF;EACE;EACA;;AAGJ;EACE;EACA;EACA;EACA;EACA;EACA,OAp2BI;EAq2BJ;EACA;;AACA;EATF;IAUI;;;AAEF;EACE;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAUN;EACE;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;;AAEF;EAAK;;;AAsEP;AAAA;AAAA;EACE;;;AAgDF;EACE;EACA;EACA;EACA,eAtgCK;EAugCL;EACA,YAvgCQ;EAwgCR;EACA;EACA;EACA;EACA;EACA;;AACA;EACE,OA/gCM;EAghCN;;;AAGJ;EACE,WA1hCQ;EA2hCR;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;;AAEA;EACE,OAniCI;;AAuiCR;EACE,OAxiCM;EAyiCN;;AAIA;EACE;;;AAIN;EACE;EACA;EACA;;AACA;EACE;;;AAIN;AACA;EACE;EACA;;AAEA;EACE;IACE%22,%22file%22:%22new-pages.min.css%22%7D */
