/* @override 
	https://oc.fischer.graphics/app/themes/oncrawl/assets/css/oncrawl.css */
/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}
.flickity-enabled:focus {
  outline: none;
}
.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}
/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333;
}
.flickity-button:hover {
  background: white;
  cursor: pointer;
}
.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}
.flickity-button:active {
  opacity: 0.6;
}
.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}
.flickity-button-icon {
  fill: currentColor;
}
/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}
.flickity-prev-next-button.previous {
  left: 10px;
}
.flickity-prev-next-button.next {
  right: 10px;
}
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}
.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}
/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}
.flickity-rtl .flickity-page-dots {
  direction: rtl;
}
.flickity-page-dots .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #333;
  opacity: 0.25;
  cursor: pointer;
}
.flickity-page-dots .dot.is-selected {
  opacity: 1;
}
html {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
}
body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  color: #271964;
}
.alignstretch {
  width: 990px;
  max-width: 90%;
  margin: 0 auto;
}
.alignwide {
  width: 1280px;
  max-width: 90%;
  margin: 0 auto;
}
.alignfull {
  width: 100%;
  max-width: 100%;
}
main {
  flex: 1 0 auto;
}
main > *:not(.alignfull):not(.alignstretch):not(header.blog-header) {
  width: 1280px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
a {
  color: inherit;
}
figure {
  margin: 0 auto;
}
*:focus {
  outline: none;
}
.valign-wrapper > div {
  width: 100%;
}
.flex-row.small-flex {
  display: flex;
  flex-wrap: wrap;
}
.oc-logo {
  display: block;
  width: 150px;
  max-width: 100%;
  aspect-ratio: 3.5;
  background: url('../img/oncrawl.svg') no-repeat center center;
  background-size: contain;
}
.oc-logo.dark {
  background-image: url('../img/oncrawl-white.svg');
}
.social-menu {
  display: flex;
  gap: 20px;
  font-size: 26px;
}
header.site-header {
  padding: 15px 0;
  font-size: .85em;
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: all 0.3s ease-in-out 0s;
}
header.site-header .flex-row {
  align-items: center;
  gap: 30px;
}
header.site-header a.site-logo {
  display: block;
  margin-top: -8px;
}
header.site-header .user-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
header.site-header .user-menu a {
  transition: color 0.2s ease-in-out 0s;
}
header.site-header .user-menu a:hover {
  color: #F44293;
}
header.site-header a.sidenav-trigger {
  font-size: 28px;
}
header.site-header.scrolled {
  padding: 15px 0;
}
.lang-switcher {
  display: block;
  position: relative;
  cursor: pointer;
}
.lang-switcher .current {
  line-height: 43px;
}
.lang-switcher .current:before {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
}
.lang-switcher .current.en:before {
  content: "🇺🇲";
}
.lang-switcher .current.fr:before {
  content: "🇫🇷";
}
.lang-switcher input:checked ~ ul.languages {
  display: block;
}
.lang-switcher ul.languages {
  display: none;
  margin: 0;
  position: absolute;
  left: 0;
  top: 43px;
  z-index: 99;
}
.lang-switcher ul.languages li {
  padding: 2px 10px;
  background: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 5px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.lang-switcher ul.languages li a {
  display: block;
}
.lang-switcher ul.languages li a:before {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
}
.lang-switcher ul.languages li.en a:before {
  content: "🇺🇲";
}
.lang-switcher ul.languages li.fr a:before {
  content: "🇫🇷";
}
body.dark-header header.site-header {
  background: #271964;
  color: #FFFFFF;
}
body.dark-header header.site-header .oc-logo {
  background-image: url('../img/oncrawl-white.svg');
}
body.dark-header header.site-header #main-menu ul.sub-menu {
  background: #FFFFFF;
  color: #271964;
}
footer.page-footer {
  font-size: .65em;
  padding: 40px 0;
}
footer.page-footer .widget-title {
  font-size: 1rem;
  font-weight: 600;
}
footer.page-footer ul.menu {
  margin: 20px 0;
}
footer.page-footer ul.menu a {
  display: block;
}
footer.page-footer ul.menu a:hover {
  color: #F44293;
}
footer.page-footer ul.menu li {
  margin: 15px 0;
}
footer.page-footer ul.menu li ul {
  margin-left: 20px;
}
footer.page-footer div[id^=oc-newsletter-optin] {
  text-align: left;
  margin-bottom: 50px;
}
footer.page-footer div[id^=oc-newsletter-optin] p {
  margin-top: 0;
  font-size: .75rem;
}
footer.page-footer div[id^=oc-newsletter-optin] form {
  margin-top: 25px;
}
footer.page-footer div[id^=oc-newsletter-optin] form .form-wrapper {
  align-items: center;
  gap: 20px;
}
footer.page-footer .legal {
  margin-top: 30px;
  line-height: 24px;
}
footer.page-footer .flex-row .widget-wrapper {
  margin-bottom: 30px;
}
footer.page-footer .flex-row .legal-menu li.pll-parent-menu-item {
  position: relative;
}
footer.page-footer .flex-row .legal-menu li.pll-parent-menu-item:hover .sub-menu {
  display: block;
}
footer.page-footer .flex-row .legal-menu li.pll-parent-menu-item > a:after {
  font-family: 'oc-icons';
  content: "\ea0f";
  vertical-align: middle;
  margin-left: 8px;
}
footer.page-footer .flex-row .legal-menu li.pll-parent-menu-item ul.sub-menu {
  position: absolute;
  left: 0;
  top: 24px;
  padding: 4px 8px;
  background: #FFFFFF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: none;
  z-index: 99;
}
footer.page-footer .flex-row .legal-menu li.pll-parent-menu-item ul.sub-menu li.current-lang {
  display: none;
}
footer.page-footer .flex-row .social-menu {
  margin: 0 0 0 auto;
}
#mobile-nav {
  background: #271964;
  color: #FFFFFF;
  padding: 20px 0 90px;
  width: 100%;
  height: 100%;
  font-size: 16px;
}
#mobile-nav .sidenav-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 36px;
}
#mobile-nav a.site-logo {
  display: inline-block;
}
#mobile-nav #mobile-menu {
  margin: 30px 0;
}
#mobile-nav #mobile-menu > li > a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
#mobile-nav #mobile-menu li {
  margin: 10px 0;
}
#mobile-nav #mobile-menu li a {
  display: block;
  padding: 10px 0;
}
#mobile-nav #mobile-menu li.current-menu-item > a {
  color: #F44293;
}
#mobile-nav #mobile-menu li.menu-item-has-children {
  position: relative;
}
#mobile-nav #mobile-menu li.menu-item-has-children > a:after {
  font-family: 'oc-icons';
  content: "\ea0f";
  vertical-align: middle;
  margin-left: 8px;
}
#mobile-nav #mobile-menu li.menu-item-has-children .sub-menu {
  max-height: 0;
  overflow: hidden;
}
#mobile-nav #mobile-menu li.menu-item-has-children .sub-menu a {
  padding-left: 30px;
}
#mobile-nav #mobile-menu li.menu-item-has-children.open > a,
#mobile-nav #mobile-menu li.menu-item-has-children.current-menu-parent > a {
  border-bottom: none;
}
#mobile-nav #mobile-menu li.menu-item-has-children.open .sub-menu,
#mobile-nav #mobile-menu li.menu-item-has-children.current-menu-parent .sub-menu {
  max-height: 1500px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
#mobile-nav .user-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
#mobile-nav .user-menu .app-login-link {
  margin-left: auto;
}
#mobile-nav .user-menu .btn {
  width: 100%;
  text-align: center;
}
.news-grid {
  margin: 70px 0 50px;
}
.blog-card {
  cursor: pointer;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.29, 0.005, 0.085, 1);
  border-radius: 1.625rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
}
.blog-card > div {
  padding: 10px 30px;
}
.blog-card > div.thumbnail {
  padding: 30px;
  min-height: 130px;
  display: flex;
  align-items: center;
  background: var(--color, #A7EBFA);
}
.blog-card > div.thumbnail img {
  display: block;
  max-height: 70px;
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  width: auto;
}
.blog-card.custom-thumbnail .thumbnail {
  padding: 0;
  aspect-ratio: 2;
}
.blog-card.custom-thumbnail .thumbnail img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 2;
  object-fit: cover;
}
.blog-card .post-title {
  font-size: 1.25em;
  font-weight: 600;
  margin: 15px 0;
}
.blog-card .download {
  margin: 20px 0;
  font-size: .85em;
  font-weight: 600;
  color: #F44293;
}
.blog-card .download .icon {
  margin-right: .5em;
}
.blog-card .post-meta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  font-size: .666666em;
  color: #B4B4B4;
  padding-bottom: 20px;
}
.blog-card .post-meta > div {
  width: 50%;
  padding: 7px 0;
}
.blog-card .post-meta > div:nth-child(2n) {
  text-align: right;
}
.blog-card .post-meta > div.post-category,
.blog-card .post-meta > div.reading-time {
  border-bottom: 0.5px solid #B4B4B4;
}
.blog-card .post-meta > div span.category {
  display: inline-block;
  padding: 4px 6px;
  border: 1px solid #D7DBE0;
  border-radius: 4px;
}
.blog-card:not(.newsletter-badge):hover {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}
.cta-card {
  --padding: 30px;
  margin: 40px 0;
  border-radius: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease-in-out 0s;
}
.cta-card:hover {
  transform: translateY(-10px);
}
.cta-card:hover .desc .card-title {
  color: #F44293;
}
.cta-card .desc {
  padding: var(--padding);
  background: var(--color, #B4B4B4);
}
.cta-card .desc .card-title {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: .5em;
}
.cta-card .desc .card-description {
  font-size: .75em;
}
.cta-card .image {
  padding: var(--padding);
  text-align: center;
}
.cta-card .image img {
  display: block;
  height: 90px;
  width: auto;
  margin: 0 auto;
}
.cta-card .image .link a {
  display: inline-block;
  margin-top: 1em;
  font-size: .75em;
  padding: 8px 10px;
  text-decoration: none;
  line-height: 1.2em;
  border: 1px solid #F44293;
  border-radius: 20px;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .cta-card .flex-row .desc {
    width: 75%;
  }
  .cta-card .flex-row .image {
    width: 25%;
  }
}
header.blog-header {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}
#blog-categories {
  display: flex;
  gap: 15px;
  margin: 30px auto;
  flex-wrap: wrap;
  justify-content: center;
  width: 1100px;
  max-width: 100%;
}
#blog-categories li a {
  display: block;
  border: 1px solid #271964;
  padding: 2px 5px;
  font-size: .85em;
  border-radius: 4px;
  min-width: 2.5em;
  text-align: center;
}
#blog-categories li.current-menu-item a {
  background: #271964;
  color: #FFFFFF;
}
#blog-search {
  width: 470px;
  max-width: 100%;
  margin: 30px auto;
  position: relative;
}
#blog-search button {
  line-height: 41px;
  height: 43px;
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  text-align: center;
  font-size: 20px;
  border: none;
  background: transparent;
  color: #271964;
  cursor: pointer;
}
#blog-search input[type="text"] {
  border-radius: 4px;
  border-color: #D7DBE0;
  padding-left: 50px;
}
#blog-search input[type="text"]:focus {
  border-color: #3ED4F7;
}
nav.pagination {
  margin: 40px 0;
  font-size: 14px;
}
nav.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
nav.pagination .nav-links .current {
  font-weight: 600;
  color: #F44293;
}
header.author-header {
  text-align: center;
}
header.author-header .portrait img {
  display: block;
  width: 150px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 100%;
  margin: 0 auto;
}
header.author-header .author-name {
  font-size: 1.2222em;
  margin: 1em 0;
}
header.author-header .social-menu {
  justify-content: center;
}
header.author-header .description a {
  color: #F44293;
  text-decoration: underline;
}
.no-content-found {
  margin: 80px 0;
  font-weight: 300;
  font-size: 1.222em;
}
.oc-video-container {
  width: 800px !important;
  max-width: 100%;
  margin: 40px auto;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
.oc-video-container iframe {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1.77777778;
  border-radius: 10px;
}
#oc-popin {
  background: var(--bgcolor, #3ED4F7);
  color: var(--txtcolor, #FFFFFF);
  padding: 10px 50px 10px 20px;
  width: 80%;
  position: fixed;
  z-index: 999;
  left: 10%;
  top: 30px;
  border-radius: 6px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-150%);
  transition: transform 0.3s ease-in-out 0s;
}
#oc-popin.visible {
  transform: translateY(0);
}
#oc-popin * {
  margin: 3px 0;
  font-size: 16px;
}
#oc-popin *.cta {
  margin-top: 8px;
}
#oc-popin *.cta a {
  display: inline-block;
  border-bottom: 2px solid var(--txtcolor, #FFFFFF);
}
#oc-popin a.popin-dismiss {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  text-align: center;
  line-height: 22px;
  width: 24px;
  border: 1px solid var(--txtcolor, #FFFFFF);
  border-radius: 24px;
  opacity: .5;
  transition: opacity 0.3s ease-in-out 0s;
}
#oc-popin a.popin-dismiss:hover {
  opacity: 1;
}
main.error-404 h2 {
  font-weight: 300;
  line-height: 1.1em;
  font-size: 1.4em;
  margin: 0;
}
@media only screen and (max-width: 990px) {
  footer.page-footer .social-menu {
    justify-content: center;
  }
  footer.page-footer .copyright {
    text-align: center;
  }
  footer.page-footer .legal-menu {
    text-align: center;
  }
  footer.page-footer .legal-menu li {
    margin: 10px 0;
  }
  footer.page-footer .legal-menu li.pll-parent-menu-item {
    display: inline-block;
  }
}
@media only screen and (max-width: 600px) {
  header.site-header a.sidenav-trigger {
    margin-left: auto;
  }
  footer.page-footer {
    text-align: center;
  }
  footer.page-footer div[id^=oc-newsletter-optin] input,
  footer.page-footer div[id^=oc-newsletter-optin] button {
    width: 100%;
    margin: 5px 0;
  }
}
@media only screen and (min-width: 602px) {
  html {
    font-size: 16px;
  }
  .flex-row.medium-flex {
    display: flex;
  }
  header.site-header {
    padding: 30px 0;
  }
  footer.page-footer .flex-row {
    gap: 60px;
  }
  footer.page-footer .flex-row.main-row {
    flex-direction: row-reverse;
    flex-wrap: wrap;
  }
  footer.page-footer .flex-row.main-row .optin-widget-wrapper {
    width: 100%;
  }
  footer.page-footer .flex-row.main-row .menu-widgets {
    width: 100%;
  }
  footer.page-footer .flex-row.main-row .menu-widgets > div {
    flex: 1;
  }
  .news-grid {
    --gap: 15px;
    --columns: 2;
    flex-wrap: wrap;
    gap: var(--gap);
  }
  .news-grid .blog-card {
    width: calc( ( 100% / var( --columns ) ) - var( --gap ) + ( var( --gap ) / var( --columns ) ) );
  }
  header.author-header {
    text-align: left;
    display: flex;
    gap: 30px;
    width: 800px !important;
    max-width: 100% !important;
    margin: 0 auto;
  }
  header.author-header .portrait {
    width: 150px;
  }
  header.author-header .portrait img {
    display: block;
    max-width: 100%;
    aspect-ratio: 1;
    height: auto;
    object-fit: cover;
    border-radius: 80px;
    background: #D7DBE0;
  }
  header.author-header .details {
    width: calc( 100% - 150px - 30px );
  }
  header.author-header .social-menu {
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 992px) {
  html {
    font-size: 18px;
  }
  .flex-row {
    display: flex;
  }
  header.site-header {
    padding: 50px 0;
  }
  footer.page-footer .flex-row.main-row .optin-widget-wrapper {
    width: calc( 40% - 30px );
  }
  footer.page-footer .flex-row.main-row .menu-widgets {
    width: calc( 60% - 30px );
  }
  footer.page-footer .legal-menu {
    margin: 0 30px;
    display: flex;
    gap: 30px;
  }
  #main-menu {
    margin: 0 0 0 60px;
    display: flex;
    gap: 50px;
  }
  #main-menu a {
    display: block;
    transition: color 0.2s ease-in-out 0s;
  }
  #main-menu a:hover {
    color: #F44293;
  }
  #main-menu li.current-menu-item > a {
    color: #F44293;
  }
  #main-menu > li.menu-item-has-children {
    position: relative;
  }
  #main-menu > li.menu-item-has-children > a:after {
    font-family: 'oc-icons';
    content: "\ea0f";
    vertical-align: middle;
    margin-left: 8px;
  }
  #main-menu > li.menu-item-has-children .sub-menu {
    position: absolute;
    padding: 30px 0;
    border: 2px solid transparent;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    z-index: 99;
    background: #FFFFFF;
    border-radius: 20px;
    min-width: 250px;
    display: none;
  }
  #main-menu > li.menu-item-has-children > ul.sub-menu {
    left: -15px;
    top: 50px;
  }
  #main-menu > li.menu-item-has-children > ul.sub-menu li a {
    padding: 10px 30px;
  }
  #main-menu > li.menu-item-has-children > ul.sub-menu li a:hover {
    text-decoration: underline;
  }
  #main-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > a:after {
    content: "\ea11";
    font-family: 'oc-icons';
    vertical-align: middle;
    float: right;
  }
  #main-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > ul.sub-menu {
    left: 250px;
    top: 0;
  }
  #main-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }
  #main-menu > li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }
  #main-menu > li.menu-item-has-children.mega-menu > .sub-menu {
    width: auto;
    gap: 30px;
  }
  #main-menu > li.menu-item-has-children.mega-menu > .sub-menu > li:not(:last-child) {
    min-width: 240px;
    position: relative;
  }
  #main-menu > li.menu-item-has-children.mega-menu > .sub-menu > li:not(:last-child):after {
    display: block;
    content: "";
    width: 1px;
    height: calc( 100% + 60px );
    background: #ddd;
    position: absolute;
    right: -15px;
    top: -30px;
  }
  #main-menu > li.menu-item-has-children.mega-menu > .sub-menu > li.menu-item-has-children > a {
    color: #757575;
    text-transform: uppercase;
    font-size: .85em;
  }
  #main-menu > li.menu-item-has-children.mega-menu > .sub-menu > li.menu-item-has-children > a:after {
    display: none;
  }
  #main-menu > li.menu-item-has-children.mega-menu > .sub-menu .sub-menu {
    box-shadow: none;
    background: none;
    position: relative;
    padding: 0;
    left: auto !important;
    top: auto;
    display: block;
  }
  #main-menu > li.menu-item-has-children.mega-menu > .sub-menu .sub-menu li.menu-item-has-children:hover > a {
    color: #F44293;
  }
  #main-menu > li.menu-item-has-children.mega-menu > .sub-menu .sub-menu .sub-menu {
    min-width: 0;
    width: calc( 100% - 80px );
    background-color: #FCF5FC;
    margin: 0 0 10px 30px;
    border-radius: 5px;
  }
  #main-menu > li.menu-item-has-children.mega-menu > .sub-menu .sub-menu .sub-menu > li a {
    line-height: 1.3em;
    font-size: .9em;
    padding: 8px 10px;
  }
  #main-menu > li.menu-item-has-children.mega-menu > .sub-menu .sub-menu .sub-menu > li a:before {
    content: "";
    display: inline-block;
    width: .5em;
    height: .75em;
    border-left: 1px solid #271964;
    border-bottom: 1px solid #271964;
    margin-right: .5em;
  }
  #main-menu > li.menu-item-has-children.mega-menu > .sub-menu .sub-menu .sub-menu > li a:hover:before {
    border-color: #F44293;
  }
  #main-menu > li.menu-item-has-children.mega-menu:hover > .sub-menu {
    display: flex;
  }
  #main-menu > li > a {
    line-height: 50px;
  }
  #main-menu li.title > a:hover {
    color: inherit !important;
    text-decoration: none !important;
    cursor: default;
  }
  .news-grid {
    --columns: 3;
  }
  .news-grid .blog-card.double-width {
    width: calc( 66.66666% - var(--gap)/2 );
    position: relative;
  }
  .news-grid .blog-card.double-width .thumbnail {
    width: 30%;
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
  }
  .news-grid .blog-card.double-width .post-desc,
  .news-grid .blog-card.double-width .post-meta {
    width: 70%;
  }
}
h1,
h2,
h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 125%;
  margin: .5em auto .25em;
}
h1 strong,
h2 strong,
h3 strong {
  font-weight: 700;
}
h1 {
  font-size: 2.8em;
}
h1.page-title {
  margin: .25em 0 .5em;
}
h2 {
  font-size: 2.22em;
}
h3 {
  font-size: 1.6em;
}
h4 {
  font-weight: 600;
  font-size: 1.25em;
}
h5,
h6 {
  font-weight: 600;
  font-size: 1em;
}
hr {
  border: 0;
  height: 1px;
  background: #333;
}
blockquote {
  padding-left: 1.5em;
}
b,
strong {
  font-weight: 600;
}
.btn,
.wp-element-button {
  font-size: 14px;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  border: 1px solid #F44293;
  line-height: 41px;
  height: 43px;
  padding: 0 30px;
  background: #F44293;
  color: #FFFFFF;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.3s ease-in-out 0s;
}
.btn:hover,
.wp-element-button:hover {
  color: #FFFFFF !important;
  background: #dd0d6b;
}
.screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
  word-break: normal !important;
}
#breadcrumbs,
nav.rank-math-breadcrumb {
  font-size: 12px;
  margin: 0 0 20px;
}
.post-content strong {
  font-weight: 600;
}
.post-content blockquote {
  border: none;
  position: relative;
  padding-left: 60px;
}
.post-content blockquote:before {
  font-family: 'oc-icons';
  content: "\ea25";
  position: absolute;
  left: 0;
  top: -3px;
  font-size: 30px;
  color: #3ED4F7;
}
.post-content h2 {
  font-size: 1.77em;
}
.post-content h3 {
  font-size: 1.3em;
  font-weight: 500;
}
.post-content h4 {
  font-size: 1.1em;
  font-weight: 500;
}
.post-content a {
  text-decoration: underline;
  color: #F44293;
}
.post-content .aligncenter {
  text-align: center;
}
.post-content img {
  max-width: 100%;
  height: auto;
}
.post-content img.aligncenter {
  display: block;
  margin: 30px auto;
}
.post-content div.wp-caption {
  max-width: 100% !important;
}
.post-content div.wp-caption.aligncenter {
  display: block;
  margin: 30px auto;
}
.post-content ol li,
.post-content ul:not(.share-post) li {
  position: relative;
  margin: .75em 0;
  padding-left: 1em;
}
.post-content ol li:before,
.post-content ul:not(.share-post) li:before {
  content: "•";
  color: #3ED4F7;
  position: absolute;
  left: 0;
  top: auto;
}
.post-content ul.share-post {
  margin-top: 40px;
}
.post-content ul.share-post a {
  color: inherit;
}
.post-content textarea {
  border: 1px dashed #D7DBE0;
  width: 100% !important;
  padding: 20px;
  font-family: monospace;
  border-radius: 10px;
}
.post-content table {
  table-layout: fixed !important;
}
.post-content .wp-caption-text {
  font-size: .85em;
  margin-top: .25em;
  font-style: italic;
  color: #B4B4B4;
}
.wp-block-paragraph a {
  color: #F44293;
  text-decoration: underline;
}
.wp-block-list li {
  position: relative;
  margin: .75em 0;
  padding-left: 1em;
}
.wp-block-list li:before {
  content: "•";
  color: #3ED4F7;
  position: absolute;
  left: 0;
  top: auto;
}
@media only screen and (min-width: 602px) {
  .wp-block-columns {
    gap: 50px;
  }
  .wp-block-columns .wp-block-column *:nth-child(1) {
    margin-top: 0;
  }
}
.toast {
  background: #F44293;
  color: #FFFFFF;
  font-size: 16px;
}
.oc-form input[type="text"],
.oc-form input[type="email"],
.oc-form input[type="url"],
.oc-form input[type="tel"] {
  font-size: 14px;
  padding: 0 20px;
  border: 1px solid #F44293;
  line-height: 41px;
  height: 43px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  color: #271964;
  width: 100%;
  border-radius: 100px;
}
.oc-form input[type="text"]:focus,
.oc-form input[type="email"]:focus,
.oc-form input[type="url"]:focus,
.oc-form input[type="tel"]:focus {
  border-color: #3ED4F7;
}
.oc-form ::placeholder {
  color: #60768F;
}
.oc-form label {
  font-size: .85em;
  display: block;
}
.oc-form .input-field {
  margin: .75em 0;
}
.oc-form p.cb-field {
  padding: 20px 0;
  margin: 0;
  display: block;
}
.oc-form p.cb-field label {
  opacity: 1;
  font-weight: 300;
}
.oc-form p.cb-field label input[type="checkbox"] {
  display: none;
}
.oc-form p.cb-field label input[type="checkbox"] + span {
  display: inline-block;
  padding-left: 26px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.45em;
  position: relative;
}
.oc-form p.cb-field label input[type="checkbox"] + span:before {
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  content: "";
  display: inline-block;
  border: 1px solid #60768F;
  border-radius: 2px;
  opacity: 1;
}
.oc-form p.cb-field label input[type="checkbox"] + span:after {
  font-family: 'oc-icons';
  content: "\ea13";
  position: absolute;
  left: -4px;
  top: 1px;
  font-size: 24px;
  opacity: 0;
}
.oc-form p.cb-field label input[type="checkbox"] + span:after,
.oc-form p.cb-field label input[type="checkbox"] + span:before {
  transition: opacity 0.3s ease-in-out 0s;
}
.oc-form p.cb-field label input[type="checkbox"] + span a {
  text-decoration: underline;
}
.oc-form p.cb-field label input[type="checkbox"]:checked + span:before {
  opacity: 0;
}
.oc-form p.cb-field label input[type="checkbox"]:checked + span:after {
  opacity: 1;
}
.oc-form .iti__country-list {
  font-size: 12px;
}
.oc-form .iti__selected-dial-code {
  font-size: 14px;
  color: #999;
}
div.newsletter-badge {
  padding: 16px 24px;
}
div.newsletter-badge h2 {
  font-size: 1.222em;
  margin: 0;
}
div.newsletter-badge #oc-subscription-form .form-wrapper {
  display: block;
  text-align: center;
}
div.newsletter-badge #oc-subscription-form .form-wrapper .btn {
  margin: 20px 0;
}
div.newsletter-badge #oc-subscription-form .form-wrapper input[type="email"] {
  border: none;
  padding: 0;
  border-bottom: 1px solid #B4B4B4;
  border-radius: 0;
}
div.newsletter-badge #oc-subscription-form .form-wrapper input[type="email"]:focus {
  border-color: #271964;
}
.oc-select-wrapper {
  border-bottom: 1px solid #B4B4B4;
  position: relative;
}
.oc-select-wrapper:after {
  font-family: 'oc-icons';
  content: "\ea0f";
  position: absolute;
  right: 0;
  bottom: 6px;
}
.oc-select-wrapper select {
  font-size: 14px;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  line-height: 41px;
  height: 43px;
  width: 105%;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  color: #60768F;
}
#oc-contact-form {
  padding: 40px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
#oc-contact-form .form-title {
  font-size: 1.25em;
  margin: 0 0 30px;
  font-weight: 700;
}
#oc-contact-form input[type="text"],
#oc-contact-form input[type="email"],
#oc-contact-form input[type="url"],
#oc-contact-form input[type="tel"] {
  padding: 0;
  border: none;
  border-bottom: 1px solid #B4B4B4;
  border-radius: 0;
}
#oc-contact-form input[type="text"]:focus,
#oc-contact-form input[type="email"]:focus,
#oc-contact-form input[type="url"]:focus,
#oc-contact-form input[type="tel"]:focus {
  border-color: #3ED4F7;
}
#oc-contact-form textarea {
  width: 100%;
  min-height: 8em;
  font-size: 14px;
  line-height: 150%;
  padding: 10px;
  font-family: 'Poppins', sans-serif;
  color: #271964;
}
#oc-contact-form .submit {
  margin: 2em 0;
}
#oc-contact-form label {
  display: block;
  color: #60768F;
  font-size: 14px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 600px) {
  #oc-contact-form {
    margin: 40px 0;
  }
}
@media only screen and (min-width: 602px) {
  #oc-contact-form .flex-fields {
    gap: 20px;
    flex-wrap: wrap;
  }
  #oc-contact-form .flex-fields .input-field {
    margin: 0;
    width: calc( 50% - 10px );
  }
  #oc-contact-form .flex-fields .input-field.fullwidth {
    width: 100%;
  }
}
#oc-download-form {
  padding: 40px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin-bottom: 40px;
}
#oc-download-form .form-title {
  font-weight: 800;
  font-size: 1.5em;
  line-height: 1.2em;
  margin: .65em 0 1em;
}
#oc-download-form input[type="text"],
#oc-download-form input[type="email"],
#oc-download-form input[type="url"],
#oc-download-form input[type="tel"] {
  padding: 0;
  border: none;
  border-bottom: 1px solid #B4B4B4;
  border-radius: 0;
}
#oc-download-form input[type="text"]:focus,
#oc-download-form input[type="email"]:focus,
#oc-download-form input[type="url"]:focus,
#oc-download-form input[type="tel"]:focus {
  border-color: #3ED4F7;
}
.oc-block {
  --logosize: 150px;
  --highlight: #F44293;
}
.oc-block .ticker-wrapper {
  width: 100%;
  overflow: hidden;
}
.oc-block .ticker-wrapper .ticker {
  display: flex;
  align-items: center;
  will-change: transform;
  margin-top: 40px;
  gap: 40px;
}
.oc-block .ticker-wrapper .ticker img {
  width: var(--logosize);
  height: auto;
}
.oc-block .highlighted {
  color: var(--highlight);
}
.oc-block .section-title {
  width: 800px;
  max-width: 100%;
  margin: 0 auto 40px;
}
.oc-block .oc-subtitle {
  width: 632px;
  max-width: 100%;
  font-weight: 400;
  font-size: 1em;
  margin: 1.25em auto;
}
.oc-block .flickity-page-dots .dot {
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 14px;
  background: #271964;
  border: 2px solid #271964;
  opacity: 1;
}
.oc-block .flickity-page-dots .dot:only-child {
  display: none;
}
.oc-block .flickity-page-dots .dot:hover {
  background: transparent;
  border-color: #F44293;
}
.oc-block .flickity-page-dots .dot.is-selected {
  background: #F44293;
  border-color: #F44293;
}
.oc-block.home-header {
  background: url('../img/hero-background-xs.jpg') no-repeat center bottom;
  background-size: cover;
  position: relative;
}
.oc-block.home-header .cta {
  margin: 30px 0;
}
.oc-block.home-header .ticker-wrapper {
  padding: 30px 0;
}
@media only screen and (min-width: 602px) {
  .oc-block.home-header {
    background: url('../img/hero-background.jpg') no-repeat center bottom;
    background-size: cover;
  }
}
.oc-block.page-header {
  padding: 100px 0;
  background: #271964;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out 0s;
}
.oc-block.page-header .oc-subtitle {
  margin: 1.25em 0;
  font-size: 1.777777em;
  font-weight: 600;
}
.oc-block.page-header .cta {
  text-align: center;
}
.oc-block.page-header .cta .btn {
  margin: 1.5em auto;
}
@media only screen and (min-width: 602px) {
  .oc-block.page-header {
    padding: 280px 0 190px;
  }
  .oc-block.page-header .flex-row {
    gap: 60px;
    align-items: center;
  }
  .oc-block.page-header .flex-row .cta {
    width: calc( 25% - 30px );
  }
  .oc-block.page-header .flex-row .title {
    width: calc( 75% - 30px );
  }
}
@media only screen and (max-height: 840px) {
  .oc-block.page-header {
    padding: 140px 0 80px;
  }
}
.oc-block.page-header-mini {
  padding: 40px 0;
}
.oc-block.page-header-mini.dark {
  background: #271964;
  color: #FFFFFF;
}
.oc-block.cta-banner .alignwide {
  background: var(--bgcolor, #271964);
  color: var(--txtcolor, #FFFFFF);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.oc-block.cta-banner h2 {
  margin: 0;
}
.oc-block.cta-banner .btn {
  margin-top: 40px;
}
.oc-block.cta-banner.gradient .alignwide {
  background: var(--bgcolor, #271964) url('../img/bg-product.webp') no-repeat center center;
  background-size: cover;
}
@media only screen and (min-width: 602px) {
  .oc-block.cta-banner .alignwide {
    padding: 40px 80px;
  }
}
.oc-block.customer-logos.soften-edges {
  position: relative;
}
.oc-block.customer-logos.soften-edges span.bg-before,
.oc-block.customer-logos.soften-edges span.bg-after {
  display: block;
  width: 15%;
  height: 100%;
  position: absolute;
  top: 0;
}
.oc-block.customer-logos.soften-edges span.bg-before {
  left: 0;
  background: linear-gradient(90deg, white 0%, transparent 100%);
}
.oc-block.customer-logos.soften-edges span.bg-after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, white 100%);
}
.oc-block.text-image .image {
  margin: 50px 0;
}
.oc-block.text-image.img-overflow {
  overflow-x: hidden;
}
.oc-block.text-image.img-overflow .image img {
  width: 90vw;
  margin-left: 10vw;
}
.oc-block.text-image.img-overflow .row-reverse .image img {
  margin-left: auto;
  margin-right: 10vw;
}
.oc-block.text-image .post-content h1,
.oc-block.text-image .post-content h2,
.oc-block.text-image .post-content h3,
.oc-block.text-image .post-content h4 {
  font-weight: 500;
}
.oc-block.text-image .post-content h1.bold,
.oc-block.text-image .post-content h2.bold,
.oc-block.text-image .post-content h3.bold,
.oc-block.text-image .post-content h4.bold {
  font-weight: 700;
}
.oc-block.text-image .post-content .cta {
  margin: 1em 0;
}
.oc-block.text-image .post-content .cta a {
  text-decoration: none;
  font-weight: 600;
}
@media only screen and (min-width: 992px) {
  .oc-block.text-image .flex-row {
    gap: var(--gap, 80px);
    align-items: var(--valign, center);
  }
  .oc-block.text-image .flex-row.row-reverse {
    flex-direction: row-reverse;
  }
  .oc-block.text-image .flex-row .image {
    margin: 0;
    width: calc( var(--imgWidth) - var(--gap,80px)/2 );
  }
  .oc-block.text-image .flex-row .text {
    width: calc( 100% - var(--imgWidth) - var(--gap,80px)/2 );
  }
}
@media only screen and (min-width: 1360px) {
  .oc-block.text-image {
    --maxImgWidth: 110%;
  }
  .oc-block.text-image.img-overflow .flex-row .image img {
    width: var(--maxImgWidth);
    max-width: var(--maxImgWidth);
    margin-right: -10%;
  }
  .oc-block.text-image.img-overflow .flex-row.row-reverse .image img {
    margin-right: auto;
    margin-left: -10%;
  }
}
@media only screen and (min-width: 1700px) {
  .oc-block.text-image {
    --maxImgWidth: 140%;
  }
}
.oc-block.content-tabs .post-content {
  padding: 0;
}
.oc-block.content-tabs .image {
  margin: 1.25em 0;
}
.oc-block.content-tabs .cta a {
  text-decoration: none;
}
.oc-block.content-tabs .cta a .icon {
  vertical-align: middle;
  margin-right: .5em;
}
.oc-block.content-tabs .tabs-filter {
  margin: 40px 0;
  display: flex;
  gap: 15px;
  font-size: 14px;
  justify-content: center;
  overflow: hidden;
}
.oc-block.content-tabs .tabs-filter .item {
  font-weight: 600;
  text-align: center;
}
.oc-block.content-tabs .tabs-filter .item a {
  display: inline-block;
  background: #FFFFFF;
  border: 1px solid #d3f5fd;
  line-height: 1.4em;
  height: auto;
  padding: 8px 16px;
  border-radius: 60px;
}
.oc-block.content-tabs .tabs-filter .item a.active {
  background: #d3f5fd;
}
@media only screen and (max-width: 800px) {
  .oc-block.content-tabs .tabs-filter {
    display: block;
  }
  .oc-block.content-tabs .tabs-filter:after {
    content: 'flickity';
    display: none;
  }
  .oc-block.content-tabs .tabs-filter .item {
    width: 100%;
    text-align: center;
    white-space: nowrap;
  }
  .oc-block.content-tabs .tabs-filter .flickity-prev-next-button {
    background: transparent;
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 0;
    font-size: 20px;
    line-height: 24px;
    color: #F44293;
  }
  .oc-block.content-tabs .tabs-filter .flickity-prev-next-button:before {
    font-family: 'oc-icons';
  }
  .oc-block.content-tabs .tabs-filter .flickity-prev-next-button.next {
    right: 0;
  }
  .oc-block.content-tabs .tabs-filter .flickity-prev-next-button.next:before {
    content: "\ea07";
  }
  .oc-block.content-tabs .tabs-filter .flickity-prev-next-button.previous {
    left: 0;
  }
  .oc-block.content-tabs .tabs-filter .flickity-prev-next-button.previous:before {
    content: "\ea06";
  }
}
@media only screen and (min-width: 992px) {
  .oc-block.content-tabs .flex-row {
    gap: 60px;
    flex-direction: row-reverse;
  }
  .oc-block.content-tabs .flex-row > div {
    width: calc( 50% - 30px );
  }
}
.oc-block.oc-cards {
  background: var(--bgcolor, #271964);
  color: var(--titlecolor, #FFFFFF);
}
.oc-block.oc-cards .section-title .highlighted {
  color: var(--highlight, #F44293);
}
.oc-block.oc-cards.product-gradient {
  background: var(--bgcolor, #271964) url('../img/bg-product.webp') no-repeat center center;
  background-size: cover;
}
.oc-block.oc-cards .key-cards {
  margin-top: 50px;
}
.oc-block.oc-cards .key-cards .item {
  background: #FFFFFF;
  padding: 35px;
  border-radius: 20px;
  color: #271964;
  margin: 30px 0;
}
.oc-block.oc-cards .key-cards .item a {
  color: #F44293;
  text-decoration: underline;
}
@media only screen and (min-width: 602px) {
  .oc-block.oc-cards {
    --gap: 30px;
    --columns: 2;
  }
  .oc-block.oc-cards .flex-row {
    gap: var(--gap);
    flex-wrap: wrap;
    justify-content: center;
  }
  .oc-block.oc-cards .flex-row .item {
    margin: 0;
    width: calc( ( 100% / var( --columns ) ) - var( --gap ) + ( var( --gap ) / var( --columns ) ) );
  }
}
@media only screen and (min-width: 992px) {
  .oc-block.oc-cards {
    --columns: 4;
  }
}
.oc-block.key-figures-cards .key-cards {
  margin-top: 50px;
}
.oc-block.key-figures-cards .key-cards .item {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.25em;
}
.oc-block.key-figures-cards .key-cards .item .value .highlighted {
  display: block;
  font-weight: 800;
  font-size: 1.5em;
  margin-bottom: .2em;
}
.oc-block.testimonials .slide {
  width: 70%;
  display: flex;
  min-height: 100%;
  padding: 15px 0;
}
.oc-block.testimonials .testimonial-card {
  --gap: 20px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 15px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 20px;
}
.oc-block.testimonials .testimonial-card .small-flex {
  gap: var(--gap);
  flex-wrap: wrap;
}
.oc-block.testimonials .testimonial-card .author-row {
  margin-top: auto;
  align-items: center;
  padding-top: 20px;
  border-top: 0.5px solid #271964;
}
.oc-block.testimonials .testimonial-card .author-row .portrait {
  width: 80px;
}
.oc-block.testimonials .testimonial-card .author-row .portrait img {
  display: block;
  border-radius: 100%;
}
.oc-block.testimonials .testimonial-card .author-row .author {
  font-weight: 600;
  font-size: .9em;
  width: calc( 100% - var(--gap) - 80px );
}
.oc-block.testimonials .testimonial-card .author-row .logo {
  margin-left: auto;
  width: calc( 100% - var(--gap) - 80px );
}
.oc-block.testimonials .testimonial-card .author-row .logo img {
  display: block;
  margin: 0 0 0 auto;
  max-height: 30px;
  max-width: 100%;
  width: auto;
  height: auto;
}
.oc-block.testimonials .testimonial-card .content-row {
  margin-bottom: 15px;
  font-size: .9em;
}
.oc-block.testimonials .testimonial-card .content-row p {
  margin-top: 0;
}
.oc-block.testimonials .testimonial-card .title-row .title {
  font-size: 1.25em;
  font-weight: 600;
}
.oc-block.testimonials .testimonial-card .title-row .cta {
  margin: 20px 0;
  font-weight: 600;
  font-size: .8em;
}
.oc-block.testimonials .testimonial-card .title-row .cta .icon {
  margin-right: .5em;
  vertical-align: middle;
}
@media only screen and (min-width: 602px) {
  .oc-block.testimonials .slide {
    width: 50%;
  }
  .oc-block.testimonials .testimonial-card .author-row .author {
    width: calc( 60% - var(--gap) - 40px );
  }
  .oc-block.testimonials .testimonial-card .author-row .logo {
    width: calc( 40% - var(--gap) - 40px );
  }
  .oc-block.testimonials .testimonial-card .author-row .logo img {
    max-height: 60px;
  }
}
@media only screen and (min-width: 992px) {
  .oc-block.testimonials .testimonial-card .main-flex > div {
    width: calc( 50% - var(--gap)/2 );
  }
}
.oc-block.selected-posts .oc-subtitle {
  margin: 1em 0;
}
.oc-block.selected-posts .flex-row {
  margin: 40px 0 0;
}
.oc-block.selected-posts .flex-row .blog-card {
  margin: 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 602px) {
  .oc-block.selected-posts {
    --gap: 30px;
    --columns: 2;
  }
  .oc-block.selected-posts .flex-row {
    gap: var(--gap);
    justify-content: center;
    flex-wrap: wrap;
  }
  .oc-block.selected-posts .flex-row .blog-card {
    margin: 0;
    width: calc( ( 100% / var( --columns ) ) - var( --gap ) + ( var( --gap ) / var( --columns ) ) );
  }
}
@media only screen and (min-width: 992px) {
  .oc-block.selected-posts {
    --columns: 3;
  }
}
