.program-page {
  /* Startup blocks */
}
.program-page .mobile {
  display: none;
}
.program-page .program-header .inner {
  position: relative;
}
.program-page .program-header .inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5490196078));
  pointer-events: none;
  z-index: 1;
}
.program-page .program-header .program-logo {
  width: min(336px, 17.5vw);
}
.program-page .program-header .program-logo img {
  object-fit: contain;
}
.program-page .breadcrumbs {
  margin-top: 20px;
}
.program-page .breadcrumbs nav {
  display: flex;
  color: #ffffff;
  flex-direction: row;
  gap: 10px;
  font-size: 18px;
}
.program-page .breadcrumbs nav a, .program-page .breadcrumbs nav span {
  white-space: nowrap;
}
.program-page .breadcrumbs nav .back-arrow {
  margin-right: 20px;
  order: 1;
}
.program-page .breadcrumbs nav .back-arrow i {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .program-page .breadcrumbs .back-arrow i {
    font-size: 20px;
  }
}
.program-page .share {
  display: flex;
  flex-direction: column;
  margin-top: 72px;
  gap: 5px;
  align-items: flex-start;
}
.program-page .share span {
  font-size: 22px;
  line-height: 120%;
  direction: ltr;
  display: none !important;
}
.program-page .share .share-inner {
  width: fit-content;
  padding: 5px 10px;
  display: flex;
  background: #E0E0E0;
  flex-direction: row-reverse;
  display: none !important;
}
.program-page .share .share-inner .item {
  padding: 10px 20px;
  border-right: 1px solid #D3D3D3;
  color: #4A4A4A;
}
.program-page .share .share-inner .item:first-child {
  padding-right: 40px;
}
.program-page .share .share-inner .item:last-child {
  padding-left: 40px;
  border-right: none;
}
.program-page .links-box {
  padding-top: 42px;
  padding-bottom: 42px;
  border-bottom: 1px solid #D3D3D3;
  position: relative;
  transition: top 0.3s ease;
  background: #ffffff;
}
.program-page .links-box.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.program-page .links-box .program-container {
  display: flex;
  gap: 52px;
}
.program-page .links-box .link-item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.program-page .links-box .link-item.active-link span {
  color: #00BCD2 !important;
}
.program-page .links-box .link-item span {
  font-size: 24px;
}
.program-page .links-box .link-item .icon {
  max-width: 28px;
}
.program-page .links-box .link-item .icon img {
  object-fit: contain;
}
.program-page .links-box .link-item .group-icon {
  max-width: 46px;
}
@media screen and (max-width: 768px) {
  .program-page .links-box {
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: unset;
  }
  .program-page .links-box .program-container {
    overflow-x: scroll;
    padding: 20px 0;
    border-bottom: 1px solid #D3D3D3;
    gap: 0;
  }
  .program-page .links-box .link-item {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    padding-left: 20px;
    padding-right: 20px;
    gap: 5px;
  }
  .program-page .links-box .link-item .icon {
    max-width: 20px;
  }
  .program-page .links-box .link-item .icon img {
    object-fit: contain;
  }
  .program-page .links-box .link-item span {
    white-space: nowrap;
    font-size: 18px;
  }
  .program-page .links-box .link-item .group-icon {
    max-width: 36px;
  }
}
@media screen and (max-width: 768px) {
  .program-page .mobile {
    display: flex;
  }
  .program-page .desktop {
    display: none;
  }
  .program-page .share {
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .program-page .share .share-inner {
    padding: 0;
  }
  .program-page .share .share-inner .item {
    padding: 10px 20px;
  }
  .program-page .share .share-inner .item:first-child {
    padding-right: 20px;
  }
  .program-page .share .share-inner .item:last-child {
    padding-left: 20px;
    border-right: none;
  }
}
.program-page .startups {
  padding-top: 50px;
}
.program-page .startups .program-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .program-page .startups .program-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.program-page .startup-item {
  display: flex !important;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1215686275);
  border-radius: 12px;
  transition: box-shadow 0.3s ease;
  padding-bottom: min(40px, 2.08vw);
}
.program-page .startup-item.winner {
  order: -1;
}
.program-page .startup-item .participant-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.program-page .startup-item .participant-name .winner-icon {
  display: flex;
  margin-left: -5px;
  width: 35px;
  height: 35px;
}
.program-page .startup-item .participant-name .winner-icon svg {
  width: 100%;
  height: 100%;
}
.program-page .startup-item:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px;
}
.program-page .startup-item .item-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 16px;
  gap: 10px;
  padding: 24px 24px 24px 19px;
  background: #ffffff;
}
.program-page .startup-item .startup-name {
  font-size: min(24px, 1.25vw);
  line-height: 120%;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .program-page .startup-item {
    min-height: unset;
  }
  .program-page .startup-item .startup-name {
    font-size: 14px;
  }
}

.program-startup .startup-header .title h1 {
  font-size: min(60px, 3.125vw);
}
.program-startup .startup-header .inner {
  background-image: url("../images/program-bg-new.webp");
  min-height: 370px;
  flex-grow: 1;
  position: relative;
}
.program-startup .startup-header .inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5490196078));
  pointer-events: none;
  z-index: 1;
}
.program-startup .startup-header .header-line {
  background-image: url("../images/line-bg.webp");
  min-height: 282px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.program-startup .startup-header .program-logo {
  width: min(241px, 12.5vw);
  height: min(241px, 12.5vw);
}
.program-startup .startup-header .program-logo img {
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .program-startup .startup-header .inner {
    min-height: 300px;
  }
  .program-startup .startup-header .title h1 {
    font-size: 40px;
    text-align: center;
  }
  .program-startup .startup-header .breadcrumbs {
    margin-top: 0;
  }
  .program-startup .startup-header .header-line {
    min-height: 110px;
  }
  .program-startup .startup-header .program-logo {
    width: 100px;
    height: 100px;
  }
}
.program-startup .content-header {
  display: flex;
  gap: 30px;
  margin-top: -100px;
  z-index: 2;
  position: relative;
}
.program-startup .content-header .startup-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: min(40px, 2.083vw);
  padding: min(80px, 4.5vw) min(50px, 2.6vw);
  width: 30%;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
  background: #ffffff;
}
.program-startup .content-header .startup-links .link-item {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 20px;
  font-size: min(24px, 1.25vw);
  color: #000000;
}
.program-startup .content-header .startup-links .link-item .icon {
  max-width: 22px;
}
.program-startup .content-header .startup-links .link-item .icon img {
  width: 100%;
  object-fit: contain;
}
.program-startup .content-header .startup-image {
  border-radius: 10px;
  overflow: hidden;
  width: 70%;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1607843137);
}
.program-startup .content-header .startup-image .inner {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .program-startup .content-header {
    margin-top: -30px;
    flex-direction: column;
  }
  .program-startup .content-header .startup-links {
    width: 100%;
    padding: 20px;
    gap: 15px;
  }
  .program-startup .content-header .startup-links .link-item {
    font-size: 18px;
  }
  .program-startup .content-header .startup-image {
    width: 100%;
    height: 200px;
  }
}
.program-startup .content-wrap {
  display: flex;
  gap: min(80px, 4.1vw);
  margin-top: 50px;
}
.program-startup .content-wrap .gallery {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.program-startup .content-wrap .text-editor {
  width: 70%;
}
.program-startup .content-wrap .text-editor h2 {
  font-size: 42px;
  font-weight: bold;
}
.program-startup .content-wrap .text-editor p {
  font-size: 22px;
  line-height: 120%;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .program-startup .content-wrap {
    flex-direction: column;
    margin-top: 40px;
    padding-bottom: 40px;
  }
  .program-startup .content-wrap .gallery {
    width: 100%;
    margin-top: 30px;
  }
  .program-startup .content-wrap .text-editor {
    width: 100%;
  }
  .program-startup .content-wrap .text-editor h2 {
    font-size: 26px;
  }
  .program-startup .content-wrap .text-editor p {
    font-size: 18px;
    line-height: 160%;
    margin-bottom: 20px;
  }
}
.program-startup .related-startups {
  background: #F5F5F5;
  padding-top: 70px;
  padding-bottom: 57px;
}
.program-startup .related-startups .title {
  font-size: 42px;
  line-height: 55px;
  font-weight: bold;
  margin-bottom: 49px;
  text-align: center;
}
.program-startup .related-startups .inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.program-startup .related-startups .swiper-container {
  width: 100%;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .program-startup .related-startups {
    --swiper-navigation-size: 24px !important;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .program-startup .related-startups .program-container {
    padding-left: 0;
    padding-right: 0;
  }
  .program-startup .related-startups .title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .program-startup .related-startups .inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.program-startup .share {
  margin-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .program-startup .share {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.program-startup .swiper-suggested-products {
  display: flex;
  justify-content: center;
  padding: 10px;
  width: 90%;
}
.program-startup .swiper-suggested-products .swiper-wrapper {
  height: auto;
}
.program-startup .swiper-suggested-products .swiper-slide {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1215686275);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}
.program-startup .swiper-suggested-products .swiper-slide:has(.winner) {
  order: -1;
}
.program-startup .swiper-suggested-products .swiper-slide .startup-item {
  height: 100%;
}
.program-startup .swiper-suggested-products .swiper-slide .startup-item.winner {
  order: -1;
}
.program-startup .swiper-suggested-products .swiper-slide .item-meta {
  box-shadow: unset;
  border-radius: unset;
}
@media screen and (max-width: 768px) {
  .program-startup .swiper-suggested-products {
    width: 80%;
  }
}

.program-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 7.08vw;
}

.program-header {
  min-height: 700px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.program-header .inner {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.program-header .title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #ffffff;
}
.program-header .title h1 {
  font-size: min(81px, 4.531vw);
  line-height: 120%;
}
.program-header .title .under-title {
  font-size: min(50px, 2.6vw);
  line-height: 120%;
  text-align: center;
}
.program-header .logo-wrapper {
  margin-top: auto;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
.program-header .logo-wrapper .logo-inner {
  display: flex;
  gap: 50px;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.program-header .header-line {
  min-height: 122px;
  background-repeat: repeat;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .program-header {
    min-height: 350px;
  }
  .program-header .title {
    align-items: center;
  }
  .program-header .title h1 {
    font-size: 50px;
  }
  .program-header .title .under-title {
    font-size: 22px;
  }
  .program-header .logo-wrapper .logo-inner {
    flex-direction: column;
    gap: 20px;
  }
  .program-header .logo-wrapper .program-logo {
    width: 100px;
  }
  .program-header .header-line {
    min-height: 80px;
  }
}

.program-logo {
  background: #ffffff;
  border-radius: 50%;
  margin-bottom: -50px;
}

.program-page-parts .program-header {
  min-height: 500px;
}
.program-page-parts .program-header .header-line {
  min-height: 122px;
  background-repeat: repeat;
  margin-top: auto;
}
.program-page-parts .program-header .title h1 {
  font-size: 60px;
}
.program-page-parts .program-header .program-logo {
  width: 241px;
  height: 241px;
}
.program-page-parts .program-header .program-logo img {
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .program-page-parts .program-header {
    min-height: 350px;
  }
  .program-page-parts .program-header .desktop {
    display: none;
  }
  .program-page-parts .program-header .mobile {
    display: flex;
  }
  .program-page-parts .program-header .inner {
    min-height: unset;
  }
  .program-page-parts .program-header .title h1 {
    font-size: 40px;
  }
  .program-page-parts .program-header .breadcrumbs {
    align-self: unset;
    margin-top: 0;
  }
  .program-page-parts .program-header .header-line {
    min-height: 80px;
  }
  .program-page-parts .program-header .program-logo {
    width: 100px;
    height: 100px;
  }
}
.program-page-parts .content-wrap {
  display: flex;
  flex-direction: column;
  padding-top: 50px;
}
.program-page-parts .content-wrap .text {
  width: 100%;
}
.program-page-parts .content-wrap .text h1 {
  font-size: 60px;
}
.program-page-parts .content-wrap .text h2 {
  font-size: 42px;
  font-weight: bold;
  direction: ltr;
  text-align: end;
  margin-bottom: 40px;
}
.program-page-parts .content-wrap .text p {
  font-size: 120%;
  line-height: 28px;
  margin-bottom: 20px;
}
.program-page-parts .content-wrap .gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
  margin-top: 50px;
  width: 100%;
}
.program-page-parts .content-wrap .gallery img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .program-page-parts .content-wrap {
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .program-page-parts .content-wrap .text {
    width: 100%;
  }
  .program-page-parts .content-wrap .text h1 {
    font-size: 46px;
  }
  .program-page-parts .content-wrap .text h2 {
    font-size: 26px;
  }
  .program-page-parts .content-wrap .text p {
    font-size: 18px;
    line-height: 160%;
    margin-bottom: 20px;
  }
  .program-page-parts .content-wrap .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
}
@media screen and (max-width: 768px) {
  .program-page-parts .share {
    margin-bottom: 0px;
    margin-top: 0px;
  }
  .program-page-parts .share .share-inner {
    padding: 0;
  }
  .program-page-parts .share .share-inner .item {
    padding: 10px 20px;
  }
  .program-page-parts .share .share-inner .item:first-child {
    padding-right: 20px;
  }
  .program-page-parts .share .share-inner .item:last-child {
    padding-left: 20px;
    border-right: none;
  }
}

.sl-navigation .sl-prev, .sl-navigation .sl-next {
  direction: ltr;
}
