.section-welcome-app {
  padding: 4.44444vw 2.22222vw;
  border-radius: 3.33333vw;
}
@media (min-width: 1200px) {
  .section-welcome-app {
    padding: 20px;
    border-radius: 20px;
    gap: 20px;
  }
}

.welcome-app {
  display: flex;
  flex-direction: column;
  gap: 3.33333vw;
}
@media (min-width: 1200px) {
  .welcome-app {
    gap: 20px;
  }
}
.welcome-app__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3.33333vw 1.66667vw;
}
@media (min-width: 1200px) {
  .welcome-app__header {
    flex-wrap: nowrap;
    gap: 30px;
  }
}
.welcome-app__logo {
  width: 21.66667vw;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 3;
  border-radius: 4.44444vw;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .welcome-app__logo {
    width: 190px;
    order: 1;
    flex-shrink: 0;
    border-radius: 40px;
  }
}
.welcome-app__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.welcome-app__info {
  display: contents;
}
@media (min-width: 1200px) {
  .welcome-app__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    order: 2;
    flex-grow: 1;
  }
}
.welcome-app__meta {
  order: 1;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 6.66667vw;
  line-height: 1.16667;
}
@media (min-width: 1200px) {
  .welcome-app__meta {
    font-size: 14px;
    line-height: 1.21429;
    gap: 28px;
  }
}
.welcome-app__publish {
  border-radius: 2.22222vw 0 0 2.22222vw;
  background: rgb(var(--color-bg-blue));
  color: rgb(var(--color-gray));
  padding: 2.22222vw 0 2.22222vw 2.77778vw;
  position: relative;
  z-index: 2;
}
@media (min-width: 1200px) {
  .welcome-app__publish {
    padding: 8px 0 8px 10px;
    border-radius: 8px 0 0 8px;
  }
}
.welcome-app__publish::before {
  content: "";
  background: rgb(var(--color-bg-blue));
  position: absolute;
  top: 0;
  right: -2.77778vw;
  width: 8.33333vw;
  height: 100%;
  transform-origin: left center;
  transform: skew(-12deg);
  border-top-right-radius: 2.77778vw;
  border-bottom-right-radius: 1.11111vw;
  z-index: -1;
}
@media (min-width: 1200px) {
  .welcome-app__publish::before {
    right: -10px;
    width: 30px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 6px;
  }
}
.welcome-app__edit {
  border-radius: 0 2.22222vw 2.22222vw 0;
  background: #E8F7F3;
  color: rgb(var(--color-accident));
  padding: 2.22222vw 2.77778vw 2.22222vw 0;
  position: relative;
  z-index: 2;
}
@media (min-width: 1200px) {
  .welcome-app__edit {
    padding: 8px 10px 8px 0;
    border-radius: 0 8px 8px 0;
  }
}
.welcome-app__edit::before {
  content: "";
  background: #E8F7F3;
  position: absolute;
  top: 0;
  left: -1.94444vw;
  width: 8.33333vw;
  height: 100%;
  transform-origin: left center;
  transform: skew(-12deg);
  border-top-left-radius: 1.11111vw;
  border-bottom-left-radius: 2.22222vw;
  z-index: -1;
}
@media (min-width: 1200px) {
  .welcome-app__edit::before {
    left: -10px;
    width: 30px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 10px;
  }
}
.welcome-app__title {
  order: 2;
  width: 100%;
  font-size: 5.55556vw;
  font-weight: 500;
  margin: 0 2.22222vw;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .welcome-app__title {
    font-size: 36px;
    margin: 0;
    line-height: 1.19444;
  }
}
.welcome-app__description {
  order: 5;
  width: 100%;
  margin: 0 1.11111vw;
  color: rgb(var(--color-text-blue-gray));
  font-size: 3.33333vw;
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .welcome-app__description {
    font-size: 16px;
    margin: 0;
  }
}
.welcome-app__actions {
  order: 4;
  width: calc(100% - 21.66667vw - 1.66667vw);
  padding-left: 1.11111vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.53056vw;
}
@media (min-width: 1200px) {
  .welcome-app__actions {
    flex-shrink: 0;
    padding: 0;
    width: auto;
    gap: 20px;
    align-items: flex-end;
  }
}
.welcome-app__rating {
  display: flex;
  align-items: center;
  gap: 2.22222vw;
}
@media (min-width: 1200px) {
  .welcome-app__rating {
    gap: 10px;
    font-size: 14px;
  }
}
.welcome-app__rating-count {
  color: var(--Light-gray);
  line-height: 1;
}
.welcome-app__stars {
  display: flex;
  align-items: center;
  gap: 1.38889vw;
}
@media (min-width: 1200px) {
  .welcome-app__stars {
    gap: 5px;
  }
}
.welcome-app__star {
  width: 3.33333vw;
  aspect-ratio: 1;
}
@media (min-width: 1200px) {
  .welcome-app__star {
    width: 24px;
  }
}
@media (max-width: 1199.98px) {
  .welcome-app__cta-btn {
    font-size: 3.33333vw;
    min-height: 10vw;
    padding: 2.77778vw 3.05556vw;
  }
}
@media (min-width: 1200px) {
  .welcome-app__cta-btn {
    font-weight: 400;
    border-radius: 8px;
  }
}
.welcome-app__details {
  display: flex;
  align-items: center;
  gap: 1.11111vw;
  font-size: 2.77778vw;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .welcome-app__details {
    font-size: 14px;
    line-height: 1.21429;
    gap: 21px;
  }
}
.welcome-app__size {
  border-right: clamp(1px, .27777vw, .27777vw) solid rgb(var(--color-line-super-light-blue));
  padding-right: 2.53056vw;
  color: var(--Light-gray);
}
@media (min-width: 1200px) {
  .welcome-app__size {
    border-width: 1px;
    padding-right: 20px;
  }
}
.welcome-app__gallery {
  margin: 0 -2.22222vw;
  padding: 0 2.22222vw;
  width: calc(100% + 4.44444vw);
}
@media (min-width: 1200px) {
  .welcome-app__gallery {
    margin: 0 -20px;
    padding: 0 20px;
    width: calc(100% + 40px);
  }
}
.welcome-app__gallery-slide {
  width: 64.44444vw;
  aspect-ratio: 0.4585;
  max-width: 300px;
}
@media (min-width: 1200px) {
  .welcome-app__gallery-slide {
    width: 232px;
  }
}
.welcome-app__gallery-item {
  display: block;
  width: 100%;
  height: 100%;
}
.welcome-app__gallery-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4.44444vw;
}
@media (min-width: 1200px) {
  .welcome-app__gallery-img {
    border-radius: 16px;
  }
}
.welcome-app__content {
  margin: 0 1.11111vw;
  line-height: 1.33333;
}
@media (min-width: 1200px) {
  .welcome-app__content {
    margin: 0;
    line-height: 1.5;
    --img-margin-top: 16px;
    --img-margin-bottom: 16px;
    --p-margin-top: 16px;
    --p-margin-bottom: 16px;
    --h-margin-top: 16px;
    --h-margin-bottom: 16px;
    --l-margin-top: 16px;
    --l-margin-bottom: 16px;
    --l-margin-left: 20px;
    --table-margin-top: 16px;
    --table-margin-bottom: 16px;
  }
}

/*# sourceMappingURL=critical.css.map */
