/* stylelint-disable */
.project-type {
  overflow: hidden;
  position: relative;
}
.project-type::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: clamp(134px, 12.188vw, 234px);
  clip-path: polygon(1% 92%, 100% 0%, 100% 100%, 0% 100%);
  background: var(--body-bg);
}
.project-type .container {
  z-index: 5;
}
.project-type__wrapp {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 3.854vw, 74px);
}
.project-type__items {
  display: flex;
  flex-direction: column;
  gap: 66px;
}
.project-type__box {
  display: flex;
}
.project-type__box .editor {
  max-width: 790px;
}
.project-type__box .editor p {
  max-width: 760px;
}
.project-type__animation {
  display: flex;
  max-width: 760px;
  width: 100%;
  min-height: clamp(360px, 25vw, 480px);
  border-radius: 12px;
  overflow: hidden;
}
.project-type__animation video {
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .project-type__box {
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .project-type__box:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1025px) {
  .project-type {
    background-color: var(--cl-d);
    padding: clamp(36px, 3.333vw, 64px) 0 clamp(36px, 15.938vw, 306px);
  }
}
@media (max-width: 1024px) {
  .project-type {
    padding: clamp(36px, 7.813vw, 80px) 0;
  }
  .project-type::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .project-type__box {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
@media (max-width: 575px) {
  .project-type__wrapp .editor h3 {
    text-align: left !important;
  }
}
/*# sourceMappingURL=section-project-type.css.map */