  padding-top: 80px;
  padding-bottom: 100px;
  /* No overflow control here */
}

.__startup_project .base_layout {
  position: relative;
}

.__startup__header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.__startup__button {
  gap: var(--gap-secondary);
  align-items: center;
  justify-content: flex-end;
}

.__startup_prev,
.__startup_next {
  width: 60px;
  height: 60px;
  background-color: var(--bs-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1.5px solid var(--primary-blue);
  cursor: pointer;
  transition: all 0.3s ease;
}

.__startup_prev img,
.__startup_next img {
  transition: filter 0.3s ease;
  background: transparent;
}

.__startup_prev:hover,
.__startup_next:hover {
  background-color: var(--primary-blue);
  transition: background-color 0.3s ease;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent;
}

.__startup_prev:hover img,
.__startup_next:hover img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.__startup__item_img img,
.__startup__item_info img {
  filter: none !important;
  transition: none !important;
}

.__startup__content {
  position: relative;
  overflow: hidden;
  padding-left: 4px;
}

.__startup__track {
  transition: transform 0.6s ease;
}


.__startup__track.owl-carousel .owl-stage-outer {
  overflow: visible !important;
}

.__startup__track.owl-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.__startup__item {
  flex-shrink: 0;
  background-color: #fff;
  width: 100%;
  display: flex;
  gap: var(--gap-primary);
  border: 2px solid #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.__startup__item_img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 10px 24px 34px 0px #b9e9fa4d;
}

.__startup__item_img,
.__startup__item_info {
  flex: 1;
}

.__startup__item_info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.__startup__item_info img {
  max-width: 156px;
  max-height: 55px;
  object-fit: cover;
}

.__startup__item_info_description {
  display: flex;
  flex-direction: column;
  gap: var(--gap-secondary);
  max-width: 457.3px;
  padding-bottom: 32px;
}


@media (max-width: 769px) {
  .__startup_project {
	padding: 16px 0;
  }

  .__startup__header {
    margin-bottom: 24px;
    display: block !important;
  }

  .__startup__title {
    text-align: center;
  }

  /* .__startup__content {
  } */

  .__startup__item {
    gap: var(--gap-third);
    padding: 16px 12.15px;
    width: 100%;
    flex: 0 0 100%;
    flex-direction: column;
    box-sizing: border-box;
  }
  .__startup__item_info {
    gap: var(--gap-secondary);
  }

  .__startup__item_info_description {
    gap: 12px;
    padding-bottom: 16px;
  }
  .__startup__item_info_text {
    font-size: var(--text-xs);
    line-height: var(--leading-xs);
    letter-spacing: 0%;
  }

  /* .__startup__item__button {
  } */

  .__startup__bottom {
    margin-top: 24px;
    gap: 16px;
    align-items: center;
    justify-content: center;
  }
  .__startup_prev,
  .__startup_next {
    width: 40px;
    height: 40px;
    pointer-events: auto;
  }

  /* .__startup__mobile--track {
  } */

  .owl-theme .owl-nav [class*=owl-] {
   margin: 10px;
  }
}

@media (min-width: 1920px) {

  .container,
  .container-xxl {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
	
 .__startup__track .__startup__item {
    width: auto;
    max-width: none;
  }

  .__startup__track {
    align-items: stretch;
  }

}



