/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* Variables */
:root {
  --color-section-bg: #121212;
  --color-card-bg: #232323;
  --color-step-border: #121212;
  --color-text-primary: #FFF;
  --color-text-secondary: #A0A0A0;
  --color-cta-bg: #1BB35B;
  --color-cta-border: #414141;
  --font-base: 'Inter', sans-serif;
  --fs-title: 36px;
  --fs-step-head: 20px;
  --fs-body: 16px;
  --spacing-unit: 12px;
}

body, .body-wrapper {
  background-color: #0D0D0D;
}

#main-content {
  padding-top: 56px;
  overflow: hidden;
}

h2 {
  font-weight: 600;
  line-height: 130%;
}
.btn--colored {
  padding: 21px 16px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
}
.btn--colored:hover {
  font-weight: 600;
  text-decoration: none;
}
.button.button--secondary {
  min-width: 192px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.button--secondary,
#hs_cos_wrapper_widget_1753343132529 .button {
  min-width: 192px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #414141;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 14px;
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
  padding: 16px;
}
.button--secondary:hover,
.button--secondary:focus,
.button--secondary:active,
#hs_cos_wrapper_widget_1753343132529 .button:hover,
#hs_cos_wrapper_widget_1753343132529 .button:focus,
#hs_cos_wrapper_widget_1753343132529 .button:active{
  background-color: rgba(255, 255, 255, 1.0);
  color: #414141;
  border-color: #fff;
}

.section .layout {
   max-width: 1200px;
}
.section__header {
  margin-bottom: calc(var(--spacing-unit) * 2);
}
.section__header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section__title-line1 {
  margin-bottom: 0;
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: var(--fs-title);
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1px;
}
.section--light .section__title-line1 {
  color: #121212;
}
.section--dark .section__title-line1 {
  background: linear-gradient(91deg, #FFF 10.55%, #4B4B4B 60.26%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section__cta {
  display: flex;
  width: 192px;
  height: 52px;
  padding: 0 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 135%;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.section__cta:hover { text-decoration: none;}
.section--light .section__cta {
  border: 2px solid #414141;
  background: transparent;
  color: #121212;
}
.section--dark .section__cta {
  border: 2px solid var(--color-cta-border);
  background: transparent;
  color: var(--color-text-primary);
}
.section--light .section__cta:hover {
  background: #121212;
  color: #fff;
}
.section--dark .section__cta:hover {
  background: #fff;
  color: #414141;
}
.section__title-line2 {
  display: inline-block;
/*   margin-top: var(--spacing-unit); */
  margin-top: 0;
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: var(--fs-title);
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1px;
  color: var(--color-cta-bg);
}

.content-wrapper, .dnd-section>.row-fluid, .header__wrapper {
  max-width: 1200px;
}

/* Text-image section */

.section-cols {
  padding-top: 70px;
  padding-bottom: 50px;
  background-color: #121212;
}

.cols {
  display: flex;
  align-items: center;
}
.col-text {
  padding-right: 51px;
}
.col-text h2 {
  margin-bottom: 24px;
}
.col-text p {
  margin-bottom: 32px;
}
.col-text .btn {
  min-width: 254px;
}
.col-img {
  position: relative;
}
.col-img #hs_cos_wrapper_col_image {
    overflow: hidden;
}
.col-img:hover img {
  transform: scale(1.05);
  transition: transform .5s;
}
.col-img img {
  transition: transform .5s;
}
.col-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 44.56%, rgba(0, 0, 0, 0.80) 100%);
}
.col-img p {
  margin-bottom: 0;
}
#hs_cos_wrapper_col_img_text {
  position: absolute;
  left: 30px;
  bottom: 45px;
  z-index: 2;
}

/* Pricing Steps */

.pricing-steps {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0 126px;
/*   padding: calc(var(--spacing-unit) * 2); */
  background: url(https://go.competera.ai/hubfs/main-page/pricing-bg.svg);
  background-size: 110%;
  background-position-x: 50%;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.pricing-steps__header {
  margin-bottom: calc(var(--spacing-unit) * 4);
}
.pricing-steps__header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pricing-steps__title-line1 {
  margin-bottom: 0;
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: var(--fs-title);
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1px;
  background: linear-gradient(91deg, #FFF 10.55%, #4B4B4B 60.26%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-steps__cta {
  display: flex;
  width: 192px;
  height: 52px;
  padding: 0 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  border: 2px solid var(--color-cta-border);
  background: transparent;
  color: var(--color-text-primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 135%;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.pricing-steps__cta:hover {
  font-weight: 600;
  background: #fff;
  color: #414141;
  text-decoration: none;
}
.pricing-steps__title-line2 {
  display: inline-block;
/*   margin-top: var(--spacing-unit); */
  margin-top: 0;
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: var(--fs-title);
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -1px;
  color: var(--color-cta-bg);
}

/* Steps list */
.pricing-steps__list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-unit);
  padding-left: 90px;
}

/* Step wrapper */
.pricing-step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: transform .3s;
}

.pricing-step::after {
  content: url('https://go.competera.ai/hubfs/main-page/arrow-down.svg');
  position: absolute; 
  bottom: -18px;
  left: 50%;
  margin: auto;
  z-index: 30;
}
.pricing-step:last-of-type::after {
  display: none;
}
.pricing-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  font-size: var(--fs-body);
  line-height: 135%;
  width: 0;
  height: 199px;
  flex-shrink: 0;
  border-radius: 4px;
  background: rgba(25, 25, 25, .5);
  border: 1px solid #232323;
  border-right-color: transparent;
  font-size: 48px;
  font-weight: 400;
  line-height: 115%;
  letter-spacing: -1px;
  color: #fff;
  z-index: 2;
  opacity: 0;
  transition: width .5s, opacity .1s;
}

/* Card with gradient border */
.pricing-step__card {
  --px: 0; --py: 0; --active: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  width: 837px;
  height: 200px;
  margin-left: -2px;
  padding: calc(var(--spacing-unit) * 3) 38px 36px 36px;
  border-radius: 4px;
  background: #191919;
  border-left: 1px solid #121212;
  border-radius: 4px;
  border-top: 1px solid #121212;
  border-color: #2e2b2b #121212 #121212 #2e2b2b;
  border-style: solid;
  border-width: 1px;
  overflow: hidden;
}

/* Spotlight hover effect */
.pricing-step__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 15vmin at var(--px) var(--py),
    rgba(27, 179, 91, .25) 0%,
    transparent 100%);
  opacity: var(--active);
  transition: opacity 0.2s;
  pointer-events: none;
  z-index: 0;
}

/* Overlay reveal */
.pricing-step__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--color-section-bg);
  transform: translateY(0);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 2;
}
.pricing-step[data-step="1"] .pricing-step__card::before { transition-delay: 0.1s; }
.pricing-step[data-step="2"] .pricing-step__card::before { transition-delay: 0.2s; }
.pricing-step[data-step="3"] .pricing-step__card::before { transition-delay: 0.3s; }
.pricing-step[data-step="4"] .pricing-step__card::before { transition-delay: 0.4s; }
.pricing-step[data-step="5"] .pricing-step__card::before { transition-delay: 0.5s; }
.pricing-step[data-step="6"] .pricing-step__card::before { transition-delay: 0.6s; }
.pricing-step.visible .pricing-step__card::before {
  transform: translateY(100%);
}

/* Card content */
.pricing-step__headline {
  color: var(--color-text-primary);
  font-size: var(--fs-step-head);
  font-weight: 800;
  line-height: 130%;
  margin: 0;
  position: relative;
  z-index: 1;
}
.pricing-step__text {
  color: var(--color-text-secondary);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 135%;
  margin: 0;
  position: relative;
  z-index: 1;
}

.info-banner {
  display: inline-flex;
  margin: 30px auto 36px;
  padding: 10px 24px 6px 24px;
  text-decoration: none;
  border-radius: 100px;
  background: rgba(27, 179, 91, 0.1);
}
.info-banner-wrap {
  text-align: center;
}
.info-banner:hover {
  text-decoration: none;
}
.info-banner:hover .ico-more {
  margin-left: 6px;
  transform: translateX(4px);
  transition: transform 0.5s;
}
.info-banner .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  margin-top: -3px;
  background-color: transparent;
}
.info-banner .ico-more {
  margin-left: 6px;
  line-height: 1.6rem;
  transition: transform 0.5s;
}

.spotlight {
  position: relative;
  background-color: #0D0D0D;
  color: white;
}
.spotlight .slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 20px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.spotlight .slick-slider {
  width: 100%;
}
.spotlight .slide {
  text-align: center;
}
.spotlight .slide h1 {
  font-feature-settings: "liga" off, "clig" off;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 115%;
  letter-spacing: -1px;
  background: linear-gradient(180deg, #FFF 18.35%, #4B4B4B 129.12%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(-40px);
  transition: all 0.6s ease;
}
.spotlight .visible .slide h1 {
  opacity: 1;
  transform: translateY(0);
}
.spotlight .features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.6s ease 0.3s;
}
.spotlight .slide .features .feature {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}
.spotlight .visible .slide .features .feature:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
.spotlight .visible .slide .features .feature:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.spotlight .visible .slide .features .feature:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.spotlight .visible .slide .features {
  opacity: 1;
  transform: translateY(0);
}
.spotlight .feature {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 258px;
  gap: 12px;
  text-align: left;
}
.spotlight .feature img {
  width: 46px;
  width: auto;
  height: 46px;
}
.spotlight .slide img.main-image {
  width: 961px;
  height: 437px;
  margin: auto;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease 0.6s;
}
.spotlight .visible .slide img.main-image {
  opacity: 1;
}
.spotlight .controls {
  position: absolute;
  right: 7%;
  top: 240px;
  width: 100%;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  align-items: center;
  border-radius: 8px;
  background: #232224;
  box-shadow: 0px 0px 200px 0px #0D0D0D, 0px 4px 100px 0px rgba(13, 13, 13, 0.5);
}
.spotlight .radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
}
.spotlight .radio-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 120px;
  text-align: center;
  align-items: center;
  gap: 10px;
  background-color: #2D2C2E;
  padding: 16px 10px 10px;
  border-radius: 4px;
  color: #B8C0C4;
  line-height: normal;
  font-weight: 400;
  cursor: pointer;
}
.spotlight .radio-item-wrap {
  background-color: #2D2C2E;
}
.spotlight .radio-item.active {
  background-color: #444;
}
.spotlight .radio-item input[type=radio] {
  accent-color: #fff;
}
.spotlight .radio-item-wrap input[type=radio] {
  outline: none;
  appearance: none;
}
.spotlight [type=radio]:checked + label,
.spotlight [type=radio]:not(:checked) + label {
  position: relative;
  cursor: pointer;
  display: inline-block;
  line-height: normal;
  font-size: 14px;
  color: #A0A0A0;
}
.spotlight [type=radio]:checked + label:before,
.spotlight [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 1px solid #76D29D;
  border-radius: 100%;
  background: transparent;
}
.spotlight [type=radio]:checked + label:after,
.spotlight [type=radio]:not(:checked) + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #76D29D;
  position: absolute;
  top: -4px;
  left: 4px;
  right: 4px;
  margin: auto;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.spotlight [type=radio]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.spotlight [type=radio]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.spotlight .controls button {
  width: 100%;
  height: 36px;
  margin-top: 12px;
  padding: 21px 16px;
  text-transform: capitalize;
}
.spotlight .product-tour {
  margin-top: auto;
  padding: 12px;
  background-color: #333;
  border: none;
  color: #FFF;
  font-feature-settings: "liga" off, "clig" off;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 135%;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
}

.radio-item-wrap:hover {
  background: linear-gradient(0deg, rgba(118, 210, 157, 0.1) 0%, rgba(118, 210, 157, 0.1) 100%), #2D2C2E;
}
.radio-item-wrap:hover .radio-item {
  background: linear-gradient(0deg, rgba(118, 210, 157, 0.1) 0%, rgba(118, 210, 157, 0.1) 100%), #2D2C2E;
}

.radio-item-wrap.active {
  background: linear-gradient(0deg, rgba(118, 210, 157, 0.1) 0%, rgba(118, 210, 157, 0.1) 100%), #2D2C2E;
}
.radio-item-wrap.active .radio-item {
  background: linear-gradient(0deg, rgba(118, 210, 157, 0.1) 0%, rgba(118, 210, 157, 0.1) 100%), #2D2C2E;
  color: #76D29D !important;
}

@media screen and (max-width: 1100px) {
  .spotlight .slick-list {
    padding-right: 0 !important;
  }
}
.wrap {
  position: absolute;
  max-width: 1440px;
  height: 500px;
  filter: blur(30px);
  opacity: 0.3;
  top: 240px;
  left: 0;
  right: 0;
  margin: auto;
}
.wrap canvas {
  width: 100%;
  height: 100%;
}

/* .spotlight.slick-ready #bubble,
.spotlight.slick-ready .controls,
.spotlight.slick-ready .slider-container, 
.spotlight.slick-ready .awards {
  visibility: visible!important;
} */

.spotlight #bubble,
.spotlight.slick-ready .controls,
.spotlight .slider-container, 
.spotlight .awards {
  visibility: visible!important;
}

.spotlight .awards {
  display: inline-flex;
  padding: 2px 16px;
  align-items: center;
  gap: 0;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
}
.spotlight .awards-wrap {
  margin-bottom: 30px;
  text-align: center;
}
.spotlight .awards-list {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 0;
  padding-left: 24px;
}
.spotlight .awards-list::before {
  content: "";
  position: absolute;
  left: 18px;
  width: 1px;
  height: 18px;
  background-color: #717171;
}
.spotlight .awards-list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 8px;
}
.spotlight .awards-text {
  font-size: 14px;
  white-space: nowrap;
  color: #D0D0D0;
}

.ticker-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3288px;
  width: 100%;
  height: 127px;
  overflow: hidden;
  padding: 0px 72px;
  background: #0D0D0D;
}

.ticker {
  display: flex;
  will-change: transform;
}

.ticker-wrapper:hover .ticker {
  animation-play-state: paused;
}

.ticker-item {
  position: relative;
  flex: 0 0 auto;
  padding: 0 23px;
}

.ticker-item:hover img {
  opacity: 0;
  transition: opacity 0.3s;
}

.ticker-item a {
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
}

.ticker-item a img {
  height: 50px;
  display: block;
  transition: opacity 0.3s;
}

.ticker-wrapper::before,
.ticker-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50vw;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #0D0D0D, transparent);
}

.ticker-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #0D0D0D, transparent);
}

.footer-cta-banner .hero-video-slider__item {
  left: 0;
}

.main-awards {
  padding-top: 50px!important;
  background: #121212;
}

.main-awards-list {
  display: flex;
  gap: 8px;
  margin:0;
  padding: 0;
}

.main-awards__item {
  width: calc(100% / 4);
  margin: 0;
  padding: 24px 20px;
  background: #191919;
  border-left: 1px solid #121212;
  border-radius: 4px;
  border-top: 1px solid #121212;
  border-color: #2e2b2b #121212 #121212 #2e2b2b;
  border-style: solid;
  border-width: 1px;
  transition: all 0.6s;
  list-style-type: none;
}
.main-awards__item:hover {
  background-color: rgba(25, 25, 25, .5);
  transition: background-color 0.6s;
}
.main-awards__item:hover .item__link {
  color: white;
}
.main-awards__item:hover svg path {
  fill: white;
}

.main-awards .item__link {
  display: contents;
  color: #121212;
}
.main-awards .item__icon {
  min-width: 86px;
  margin-right: 24px;
  margin-bottom: 12px;
}
.main-awards .item__text {
  margin-bottom: 0;
  font-size: 14px;
  color: #A0A0A0;
}

/* Benefits */
.section-benefits {
  padding: 24px;
  background-color: #121212;
}
.benefits-item {
 padding: 32px;
}
.benefits-item:nth-of-type(1),
.benefits-item:nth-of-type(2) {
  width: calc((100% / 2) - 8px);
}
.benefits-item:hover {
  background-color: rgba(25, 25, 25, .5);
  transition: background-color 0.6s;
}
.benefits-item:hover img { 
  opacity: .6;
  transition: opacity .5s;
}
.benefits-item img {
  margin-top: -30px;
  margin-bottom: -20px;
  transform: translateX(-30px);
  transition: opacity .5s;
}

/* Video */
.custom-video-wrapper {
  position: relative;
  margin-top: 40px;
  margin-bottom: 100px;
}
.dnd_area-row-1-background-layers .widget-type-cell {
  margin-top: -38px;
  padding-top: 50px;
  background-color: #010101;
}

#hs_cos_wrapper_module_17537741262326 .button {
  min-width: 192px;
}

/* Cases Slider */
.cases-slider div[data-slick-index="0"]:hover .case::after {
  background-image: linear-gradient(0deg, #F1B502 44.44%, hsla(0, 0%, 7%, 0) 99.83%);
  transition: background .5s;
}
.cases-slider div[data-slick-index="1"]:hover .case::after {
  background-image: linear-gradient(0deg, #32B2F3 44.44%, hsla(0, 0%, 7%, 0) 99.83%);
  transition: background .5s;
}
.cases-slider div[data-slick-index="2"]:hover .case::after {
  background-image: linear-gradient(0deg, #8A38F5 44.44%, hsla(0, 0%, 7%, 0) 99.83%);
  transition: background .5s;
}
.cases-slider div[data-slick-index="3"]:hover .case::after {
  background-image: linear-gradient(0deg, #1BB35B 44.44%, hsla(0, 0%, 7%, 0) 99.83%);
  transition: background .5s;
}

.case {
  transition: background .5s;
}

.cases-slider {
  margin-left: 16px;
  margin-right: 16px;
}
.cases-slider .slick-slide {
  margin: 0 4px;
  box-sizing: border-box;
}
.case-inner {
  padding: 24px 26px;
}
.case-numbers div p {
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
}
.case-numbers div p+p {
  font-weight: 400;
}
.case-numbers {
  justify-content: flex-end;
}

/* Solution Section */
.section-solutions {
  width: 100%;
  overflow: hidden;
  padding: 80px 0 144px;
  background: linear-gradient(180deg, #181818 0%, #121212 100%);
  overflow: hidden;
}
.section-solutions .section__title-line1 {
  margin-bottom: 24px;
}
.solution-slider-wrap {
  position: relative;
  width: calc(100% + 120px);
  margin-left: -60px;
  margin-top: 80px;
}
.solution-slider-wrap::before,
.solution-slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50vw;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.solution-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, #121212, transparent);
}

.solution-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, #121212, transparent);
}
.solution-slider-wrap .slick-arrow {
  position: absolute;
  bottom: -60px;
  right: calc((100% - 1120px) / 2 - 56px);
  width: 20px;
  height: 20px;
  color: transparent;
  background-color: transparent;
  border-color: transparent;
}
.solution-slider-wrap .slick-prev {
  margin-right: 40px;
  background: url('https://go.competera.ai/hubfs/main-page/arrow-left.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.solution-slider-wrap .slick-next {
  background: url('https://go.competera.ai/hubfs/main-page/arrow-right.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.solution-slide {
  display: flex;
  width: 292px;
  height: 250px;
  padding: 72px 16px 32px 32px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 18px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid #121212;
  background: #232323;
  transition: background-color .5s;
}
.solution-slide:hover {
 transition: background-color .5s;
}
.solution-slide.is-blue:hover {
  background-color: #32B2F3;
}
.solution-slide.is-green:hover {
  background-color: #1BB35B;
}
.solution-slide.is-purple:hover {
  background-color: #9148F9;
}
.solution-slide.is-orange:hover {
  background-color: #FF7120;
}
.solution-slide.is-yellow:hover {
  background-color: #F4C419;
}
.solution-slide.is-pink:hover {
  background-color: #F68585;
}
.solution-slide.is-lime:hover {
  background-color: #96D700;
}

.solution-slide:hover .solution-link {
  transform: translateY(-40px);
  transition: transform .5s;
}
.solution-slide:hover .solution-link-title {
  opacity: 1;
}
.solution-slide:hover a {
  text-decoration: none;
}

.solution-link {
  display: block;
  text-decoration: none;
  transition: transform .5s;
}
.solution-link-title {
  margin-top: 18px;
  font-weight: 600;
  color: #fff;
  opacity: 0;
}

.solution-slider {
  display: flex;
  gap: 8px;
  margin: 0 auto;
  padding: 0 60px;
}
.solution-icon-wrap {
  transform: translate(-20px, 8px);
  opacity: 0.8;
}
.solution-title {
  display: flex; 
  align-items: center;
  min-height: 3.5rem;
  margin-bottom: 0;
}

.solution-slider .slide {
  background: #ccc;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
  margin: 0 4px; /* Half of 8px gap on each side */
}

/* Override slick's default padding */
.solution-slider .slick-slide {
  margin: 0 4px;
  box-sizing: border-box;
}

/* Related articles */
.related-articles {
  padding: 80px 0 56px;
  background: #EBEBEB;
}
.related-articles__grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  padding-top: 24px;
}
.post-thumb {
  display: block;
  position: relative;
  min-height: 312px;
  max-height: 312px;
  margin: 0 12px 24px;
  padding: 33px 24px 24px;
  border-radius: 4px;
  overflow: hidden;
  width: calc(25% - 24px);
  background: #fff;
  text-decoration: none;
}
.post-thumb:hover {
  text-decoration: none;
}
.post-thumb--article-simple {
  padding: 31px 24px 24px;
}

.post-thumb__inner {
  position: relative;
  z-index: 1;
  height: 100%;
}
.post-thumb__content-wrap {
  width: 100%;
}
.post-thumb__category {
  display: inline-block;
  padding: 9px 8px;
  font-family: Inter, Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 10px;
  color: #fff;
  letter-spacing: normal;
  border-radius: 4px;
  margin-bottom: 19px;
  text-transform: uppercase;
}
.post-thumb__category.is-orange {
  background-color: #FFBA2F;
}
.post-thumb__category.is-blue {
  background-color: #32B2F3;
}
.post-thumb--big {
  width: calc(50% - 25px);
  background-color: #121212;
}
.post-thumb--big:hover img {
  transform: scale(1.05);
  transition: transform .5s;
}
.post-thumb__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transform-origin: 50% 50%;
  transition: transform .25s;
}
.post-thumb__bg img { width:100%; filter: brightness(0.5);  transition: transform .5s; }
.post-thumb__title {
  margin-bottom: 12px;
  font-weight: 800;
  color: #121212;
  line-height: 135%;
}
.post-thumb__subtitle {
  font-weight: 400;
  line-height: 135%;
  color: #121212;
}
.post-thumb--big .post-thumb__content-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
      align-items: flex-start;
}
.post-thumb--big .post-thumb__title {
  margin-top: auto;
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 600;
  line-height: 130%;
  color: #fff;
}
.post-thumb--big .post-thumb__subtitle {
  color: #fff;
}

/* Bottom banner */
.bottom-banner {
 position: relative;
 text-align: center;
 background-image: linear-gradient(to bottom, #EBEBEB, #EBEBEB 60%, #121212 50%);
}
.bottom-banner .layout {
  padding: 60px 0 0;
  background-color: #191919;
}
.bottom-banner__title {
  margin-bottom: 20px;
  padding-left: 24px;
  padding-right: 24px;
  font-weight: 800;
  line-height: 120%;
  letter-spacing: -1px;
}
.bottom-banner__text {
  max-width: 685px;
  margin: 0 auto 35px;
  padding-left: 24px;
  padding-right: 24px;
}
.bottom-banner__cta {
  min-width: 223px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.bottom-banner__image,
.bottom-banner__image img{
  display: block;
  max-width: 100%;
}

/* Responsive */

@media (max-width: 1200px) {
  .cols {
    align-items: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
  }
  .col-img {
    margin-top: 60px;
  } 
  .col-img img {
    max-width: 100%;
  }
  .main-awards-list {
    padding: 0 24px;
  }
  .pricing-steps,
  .section__header,
  .related-articles {
    padding-left: 24px;
    padding-right: 24px;
  }
  .solution-slider-wrap .slick-arrow {
    bottom: -50px;
    right: 80px; }
}
@media only screen and (max-width: 1100px) {
  .cases-slider {
    width: 100vw;
  }
  .cases-slider .slick-dots {
    bottom: -50px;
    position: absolute;
    left: -40px;
    right: 0;
    margin-bottom: 0;
    text-align: center;
    margin-left: 0;
    padding-left: 0;
    width: 100%;
  }
  .cases-slider .slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 6px;
    padding: 0;
    cursor: pointer;
  }
  .cases-slider .slick-dots button {
    display: block;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    width: 10px;
    height: 10px;
    padding: 0;
    text-decoration: none;
    text-indent: -9999px;
    border-radius: 50%;
    color: #8596a6;
    background: transparent;
    border: 1px solid #8596a6;
  }
  .cases-slider .slick-active button {
    background: #121212;
    border-color: #121212;
  }
}
@media (max-width: 1024px) {
  .spotlight .slide h1 br {display: none;}
  .spotlight .controls {right: 24px;}
  .pricing-steps__list {padding-left: 0;}
  .pricing-step__card {width: calc(100% - 40px);}
  .post-thumb {width: calc(50% - 24px);)}
  .post-thumb--big { width: calc(100% - 25px);}
}

@media (max-width: 960px) {
  .pricing-step__card {
    width: calc(100% - 40px);
    height: auto;
  }
  .main-awards-list {flex-wrap: wrap;}
  .main-awards__item {
    width: calc((100% / 2 - 4px));
  }
    .spotlight h1 {
    font-size: 36px !important;
  }
  .spotlight .slider-container {
    display: block;
  }
  .spotlight .feature {
    flex-direction: column;
    min-width: 30%;
    text-align: center;
  }
  .spotlight .controls {
    position: initial !important;
    width: 100% !important;
    max-width: 100%;
  }
  .spotlight .slide img.main-image {
    width: calc(100% - 24px);
    height: auto;
    margin: auto;
  }
  .spotlight .radio-group {
    grid-template-columns: repeat(3, 1fr);
  }
  .spotlight .radio-item {
    width: 100%;
    font-size: 12px;
    line-height: 1.75 !important;
  }
  .spotlight .slick-slider {
    padding-bottom: 0;
  }
  .spotlight .awards {
    flex-direction: column;
    width: calc(100% - 40px);
    gap: 8px;
    padding: 16px;
    border-radius: 8px;
  }
  .spotlight .awards-list::before {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .pricing-step:hover .pricing-step__card {
    border-left-color: transparent;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .pricing-step:hover .pricing-step__number {
    opacity: 1;
    width: 200px;
    transition: width .5s, opacity .5s;
  }
}
@media screen and (max-width: 768px) {
  .pricing-step__number {display: none;}
  #hs_cos_wrapper_widget_1753343132529 .button-wrapper,
  #hs_cos_wrapper_module_17537741262326 .button-wrapper
  {
   text-align: left;
    margin: 24px 0;
  }
  #hs_cos_wrapper_module_17537741262326 .button-wrapper {
    margin: 0 0 24px;
  }
  .bottom-banner__cta {margin-bottom: 60px;}
  .pricing-steps__cta,
  .section-solutions .section__cta { position: absolute; bottom: -60px;}
  .pricing-steps__list { padding-top: 60px;}
  
  .section-solutions .section__cta { margin-bottom: -20px;}
  .solution-slider-wrap {padding-top: 50px;}
  .related-articles .section__header-top { flex-direction: column; align-items: flex-start; } 
  .related-articles .section__cta { margin-top: 40px;  } 

}
@media screen and (max-width: 599px) {
  .for-desktop {display: none;}
  .post-thumb--big .post-thumb__title {font-size: 20px;}
  .spotlight .cmp-header-info-banner__text {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .spotlight .features {
    gap: 12px;
  }
  .spotlight .feature {
    justify-content: flex-start;
    font-size: 12px;
  }
  .spotlight .radio-group {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-banner .icon {
    transform: none;
  }
  .info-banner .ico-more {
    line-height: 1.4rem;
  }
  .spotlight .awards-list__item {
    margin: 0;
    transform: scale(0.8);
    transform-origin: left;
  }
  .main-awards__item { width: 100%;}
  .col-text { padding-right: 0;}
  .col-text .btn { width: 100%; }
  .benefits-item { width: 100%!important; }
  .dnd_area-row-0-padding { padding-top: 60px !important;}
  #hs_cos_wrapper_widget_1753343132529 .button,
  #hs_cos_wrapper_module_17537741262326 .button,
  .pricing-steps__cta,
  .related-articles .section__cta {width: 100%;}
  .pricing-step__card {width: 100%; margin-left: 0;}
  .solution-slider { padding: 0 90px;}
  .post-thumb { width: 100%; }
  .related-articles .section__header {padding: 0;}
  .bottom-banner__cta { margin-bottom: 90px; }
}