.projects-hero {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 144px 0 0;
  background-color: #1C1B1B;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .projects-hero {
    padding: 104px 0 0;
    border-radius: 0 0 32px 32px;
  }
}
.projects-hero__container {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media (max-width: 1023px) {
  .projects-hero__container {
    row-gap: 32px;
  }
}
.projects-hero__content {
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-content: space-between;
  padding-bottom: 69px;
  padding-right: 80px;
  padding-left: 0px;
  position: relative;
}
@media (max-width: 1023px) {
  .projects-hero__content {
    flex-direction: column;
    padding-inline: 16px;
    padding-bottom: 64px;
  }
}
.projects-hero__image-block {
  max-width: 54%;
  position: relative;
  z-index: 2;
  display: flex;
}
@media (max-width: 1023px) {
  .projects-hero__image-block {
    max-width: unset;
  }
}
.projects-hero__image-wrapper {
  width: 100%;
  border-radius: 24px;
  border: 4px solid #000000;
  overflow: hidden;
  /*display: flex;*/
  position: relative;
  left: -16px;
  height: fit-content;
}
@media (max-width: 1023px) {
  .projects-hero__image-wrapper {
    left: unset;
    border-radius: 12px;
    border: 2px solid #000000;
  }
}
.projects-hero__image-wrapper.vertical {
  width: 52%;
  margin: 0 auto;
  left: unset;
  right: unset;
  top: 0;
  margin-bottom: -95px;
}
.projects-hero__image-wrapper img {
  width: 100%;
  height: 100%;
  /*-o-object-fit: cover;*/
  /*   object-fit: cover;*/
  -o-object-position: center;
     object-position: center;
}

.projects-hero__image-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    object-position: center;
    display: block;
}

.projects-hero__info-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 32px;
  color: #FFFFFF;
  max-width: 36%;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  .projects-hero__info-block {
    max-width: 45%;
  }
}
@media (max-width: 1023px) {
  .projects-hero__info-block {
    max-width: unset;
    row-gap: 24px;
  }
}
.projects-hero__divide-block {
  display: flex;
  gap: 105px;
}
.projects-hero__results {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
@media (max-width: 1199px) {
  .projects-hero__divide-block {
    gap: 105px;
 }
}
@media (max-width: 1023px) {
  .projects-hero__results {
    justify-content: center;
    height: 112px;
    text-align: center;
  }
  
  
  .projects-hero__results:first-of-type {
    padding-left: 55px;
  }
}
@media (max-width: 550px) {
  .projects-hero__divide-block {
    gap: 24px;
    justify-content: space-between;
  }
  .projects-hero__results {
    width: 100%;
    max-width: unset;
  }
  .projects-hero__results:first-of-type {
    padding-left: unset;
  }  
}
.projects-hero__results h3 {
  font-size: 48px;
  line-height: 56px;
  font-weight: 400;
}
.projects-hero__results p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
@media (max-width: 1023px) {
  .projects-hero__results p {
    font-size: 12px;
    line-height: 18px;
  }
}
.projects-hero__results:not(:first-of-type) {
  position: relative;
}
.projects-hero__results:not(:first-of-type)::before {
  content: "";
  background: rgba(255, 255, 255, 0.2392156863);
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -54px;
}
@media (max-width: 1023px) {
  .projects-hero__results:not(:first-of-type)::before {
    left: -30px;
  }
}
@media (max-width: 550px) { 
  .projects-hero__results:not(:first-of-type)::before {
    left: -12px;
  }
}
.projects-hero__top-block {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
@media (max-width: 1023px) {
  .projects-hero__top-block {
    row-gap: 16px;
  }
}
.projects-hero__title-top {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media (max-width: 1023px) {
  .projects-hero__title-top {
    row-gap: 24px;
  }
}
.projects-hero__title-top h1 {
  text-align: left;
}

@media (min-width: 1024px) and (max-width: 1340px) {
    .projects-hero__title-top h1 {
        font-size: 48px;
        line-height: 64px;
    }

    .projects-hero__text-block p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 1023px) {
  .projects-hero__title-top h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
.projects-hero__location-block {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 16px;
  line-height: 32px;
}
.projects-hero__text-block {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  font-size: var(--font-size-a);
  line-height: var(--line-height-a);
}
.projects-hero__bottom-block {
  display: flex;
  flex-direction: column;
  row-gap: 48px;
}
@media (max-width: 1023px) {
  .projects-hero__bottom-block {
    row-gap: 24px;
  }
}
.projects-hero__techstack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.projects-hero__techstack li {
  font-size: 16px;
  line-height: 24px;
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
}
@media (max-width: 1023px) {
  .projects-hero__techstack li {
    font-size: 12px;
  }
}
.projects-hero__circle {
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  filter: blur(160px);
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -80%;
  z-index: 1;
}
@media (max-width: 1023px) {
  .projects-hero__circle {
    width: 620px;
    bottom: -20%;
  }
}
.projects-hero__circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.projects-hero__small-text {
  font-size: 40px;
  line-height: 56px;
}
@media (max-width: 1023px) {
  .projects-hero__small-text {
    font-size: 32px;
    line-height: 40px;
  }
}
.projects-hero--reverse .projects-hero__content {
  flex-direction: row-reverse;
  padding-left: 80px;
  padding-right: 0px;
}
@media (max-width: 1023px) {
  .projects-hero--reverse .projects-hero__content {
    flex-direction: column;
    padding-inline: 16px;
    padding-bottom: 64px;
  }
}
.projects-hero--reverse .projects-hero__content .projects-hero__image-wrapper {
  left: unset;
  right: -24px;
}
@media (max-width: 1023px) {
  .projects-hero--reverse .projects-hero__content .projects-hero__image-wrapper {
    right: unset;
  }
}

.projects-tasks {
  padding: 160px 0 0 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1023px) {
  .projects-tasks {
    padding: 80px 0 0 0;
  }
}
.projects-tasks__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) {
  .projects-tasks__container {
    max-width: 100%;
  }
}
.projects-tasks__container h2 {
  grid-column: span 6;
}
@media (max-width: 1023px) {
  .projects-tasks__container h2 {
    grid-column: 1/-1;
    font-size: 24px;
    line-height: 32px;
  }
}
.projects-tasks__list {
  grid-column: span 6;
}
@media (max-width: 1023px) {
  .projects-tasks__list {
    grid-column: 1/-1;
  }
}
.projects-tasks__list ul {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.projects-tasks__list ul li {
  padding-left: 14px;
  position: relative;
  font-size: var(--font-size-p);
  line-height: var(--line-height-p);
}
@media (max-width: 1023px) {
  .projects-tasks__list ul li {
    font-size: 16px;
    line-height: 24px;
  }
}
.projects-tasks__list ul li h4 {
  font-weight: 400;
}
.projects-tasks__list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-highlight);
}
.projects-tasks__list ul li:not(:last-of-type) {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2392156863);
}

.projects-solution {
  padding: 160px 0 0 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1023px) {
  .projects-solution {
    padding: 80px 0 0 0;
  }
}
.projects-solution__container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 56px;
}
@media (max-width: 1023px) {
  .projects-solution__container {
    row-gap: 32px;
    align-items: flex-start;
  }
}
@media (max-width: 1023px) {
  .projects-solution__container h2 {
    font-size: 24px;
    line-height: 32px;
  }
}
.projects-solution__list {
  width: 100%;
}
.projects-solution__list > ul {
  display: flex;
  flex-direction: column;
  row-gap: 64px;
}
@media (max-width: 767px) {
  .projects-solution__list > ul {
    row-gap: 80px;
  }
}
.projects-solution__list > ul > li {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.projects-solution__list > ul > li .projects-solution__image {
  grid-column: span 5;
}
.projects-solution__list > ul > li .projects-solution__content {
  grid-column: 7/-1;
}
.projects-solution__list > ul > li:nth-child(even) .projects-solution__image {
  grid-column: 8/-1;
}
.projects-solution__list > ul > li:nth-child(even) .projects-solution__content {
  grid-column: 1/7;
  grid-row: 1/2;
}
@media (max-width: 767px) {
  .projects-solution__list > ul > li .projects-solution__image {
    grid-column: 1/-1;
  }
  .projects-solution__list > ul > li .projects-solution__content {
    grid-column: 1/-1;
    grid-row: 1/2;
  }
  .projects-solution__list > ul > li:nth-child(even) .projects-solution__image {
    grid-column: 1/-1;
  }
  .projects-solution__list > ul > li:nth-child(even) .projects-solution__content {
    grid-column: 1/-1;
    grid-row: 1/2;
  }
}
.projects-solution__image {
  align-self: center;
}
.projects-solution__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.projects-solution__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
@media (max-width: 767px) {
  .projects-solution__content {
    row-gap: 16px;
  }
}
.projects-solution__content h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .projects-solution__content h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
  }
}
.projects-solution__content ul {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.projects-solution__content ul li {
  padding-left: 14px;
  position: relative;
  font-size: var(--font-size-p);
  line-height: var(--line-height-p);
  font-weight: 400;
}
@media (max-width: 1023px) {
  .projects-solution__content ul li {
    font-size: 16px;
    line-height: 24px;
  }
}
.projects-solution__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-highlight);
}

.projects-ready {
  padding: 160px 0 0 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1023px) {
  .projects-ready {
    padding: 80px 0 0 0;
  }
}
.projects-ready__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px;
  background-color: #FFFFFF;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--color-bg);
}
@media (max-width: 767px) {
  .projects-ready__container {
    flex-direction: column;
    align-items: flex-start;
    padding: 64px var(--container-padding);
  }
}
.projects-ready__container h2 {
  flex: 1;
}
@media (max-width: 767px) {
  .projects-ready__container h2 {
    font-size: 22px;
    line-height: 32px;
  }
}
.projects-ready__container p {
  flex: 1;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  color: #070707;
}
@media (max-width: 767px) {
  .projects-ready__container p {
    font-size: 16px;
    line-height: 24px;
  }
}

.projects-before-after {
  padding: 160px 0 0 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1023px) {
  .projects-before-after {
    padding: 80px 0 0 0;
  }
}
.projects-before-after__container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 56px;
}
.projects-before-after__slider {
  width: 100%;
}
.projects-before-after__slider .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}
@media (max-width: 1023px) {
  .projects-before-after__slider .swiper-wrapper {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .projects-before-after__slider .swiper-wrapper {
    display: flex;
    gap: 0;
    padding-bottom: 32px;
    position: relative;
  }
}
.projects-before-after__slider .swiper-wrapper .swiper-slide {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 64px;
}
@media (max-width: 767px) {
  .projects-before-after__slider .swiper-wrapper .swiper-slide {
    row-gap: 24px;
  }
}
.projects-before-after__slider .swiper-wrapper .swiper-slide h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
}
.projects-before-after__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.projects-before-after__pagination {
  display: none;
}
@media (max-width: 767px) {
  .projects-before-after__pagination {
    display: flex;
    justify-content: center;
    bottom: 0 !important;
    width: auto;
    height: 7px;
    overflow: hidden;
  }
  .projects-before-after__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #333232;
    opacity: 1 !important;
  }
  .projects-before-after__pagination .swiper-pagination-bullet-active {
    background: #fff;
  }
}

.projects-advantages {
  padding: 160px 0 0 0;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1023px) {
  .projects-advantages {
    padding: 80px 0 0 0;
  }
}
.projects-advantages__container {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.projects-advantages__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 1023px) {
  .projects-advantages__list {
    flex-direction: column;
  }
}
.projects-advantages__item {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  width: -moz-fit-content;
  width: fit-content;
}
.projects-advantages__item:not(:last-of-type) {
  border-right: 1px solid #333232;
}
@media (max-width: 1023px) {
  .projects-advantages__item {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid #333232;
  }
  
  .projects-advantages__item img {
    width: 32px;
  }
    
  .projects-advantages__item:not(:last-of-type) {
    border-right: none;
  }
}
.projects-advantages__item span {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.projects-reviews {
  padding: 160px 0 0 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1023px) {
  .projects-reviews {
    padding: 80px 0 0 0;
  }
}
.projects-reviews__container {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  color: var(--color-bg);
  position: relative;
}
@media (max-width: 1023px) {
  .projects-reviews__container {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 32px;
  }
}

@media (min-width: 1024px) {
	.projects-reviews__container {
		min-height: 384px;
	}
}
.projects-reviews__content {
  width: 50%;
  display: flex;
  flex-direction: column;
  row-gap: 48px;
  padding: 80px;
  padding-right: 0;
}
@media (max-width: 1023px) {
  .projects-reviews__content {
    padding: 64px var(--container-padding) 16px;
  }
}
@media (max-width: 767px) {
  .projects-reviews__content {
    width: 100%;
    row-gap: 24px;
  }
}
@media (max-width: 767px) {
  .projects-reviews__content h2 {
    font-size: 24px;
    line-height: 32px;
  }
}
.projects-reviews__review-block {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.projects-reviews__review-block p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #070707;
}
.projects-reviews__right-block {
  width: 44%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
}
@media (max-width: 767px) {
  .projects-reviews__right-block {
    position: relative;
    width: 100%;
  }
  .projects-reviews__right-block.hidden {
    display: none;
  }
}
.projects-reviews__image {
  width: 80%;
  aspect-ratio: 1.43;
  margin: 0 auto;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (max-width: 767px) {
  .projects-reviews__image {
    width: calc(100% - 32px);
    aspect-ratio: 0.95;
    position: relative;
    padding-top: 58px;
    margin: unset;
  }
}
.projects-reviews__image img {
  width: 100%;
  height: 100%;
/*   -o-object-fit: cover;
     object-fit: cover; */
/*   -o-object-position: center top;
     object-position: center top; */
}
@media (max-width: 767px) {
  .projects-reviews__image img {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}
.projects-reviews__mobile-image {
  display: none;
}
@media (max-width: 767px) {
  .projects-reviews__mobile-image {
    display: flex;
    width: 57%;
    padding: 0 var(--container-padding) 64px;
  }
}
.projects-reviews__mobile-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.projects-reviews__ellipse {
  position: absolute;
  width: 156%;
  aspect-ratio: 1;
  border-radius: 50%;
  left: -78%;
  top: 50%;
  filter: blur(200px);
  pointer-events: none;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .projects-reviews__ellipse {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.projects-reviews__ellipse img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.projects-tech-stack {
  padding: 160px 0 0 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1023px) {
  .projects-tech-stack {
    padding: 80px 0 0 0;
  }
}
.projects-tech-stack__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 56px;
  padding: 0 var(--container-padding);
}
@media (max-width: 767px) {
  .projects-tech-stack__container {
    row-gap: 24px;
  }
}
@media (max-width: 767px) {
  .projects-tech-stack__container h2 {
    font-size: 24px;
    line-height: 32px;
  }
}
.projects-tech-stack__list {
  width: 100%;
}
.projects-tech-stack__list ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .projects-tech-stack__list ul {
    gap: 15px;
  }
}
.projects-tech-stack__list ul li {
  grid-column: span 1;
  height: 120px;
  border-radius: 24px;
  border: 1px solid #333232;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .projects-tech-stack__list ul li {
    grid-column: span 2;
    height: 65px;
  }
}
.projects-tech-stack__list ul li img {
  width: auto;
  max-width: 70%;
  height: auto;
  max-height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.projects-tech-stack--centered .projects-tech-stack__list ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .projects-tech-stack--centered .projects-tech-stack__list ul {
    display: grid;
  }
}
.projects-tech-stack--centered .projects-tech-stack__list ul li {
  width: 302px;
}
@media (max-width: 767px) {
  .projects-tech-stack--centered .projects-tech-stack__list ul li {
    width: unset;
  }
}

.projects-info {
  padding: 160px 0 0 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1023px) {
  .projects-info {
    padding: 80px 0 0 0;
  }
}
.projects-info__container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 64px;
}
@media (max-width: 767px) {
  .projects-info__container {
    row-gap: 24px;
  }
}
.projects-info__content {
  width: 100%;
  padding: 80px;
  background-color: #FFFFFF;
  border-radius: 40px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  color: var(--color-bg);
}
@media (max-width: 1023px) {
  .projects-info__content {
    padding: 64px var(--container-padding);
  }
}
.projects-info__content h2 {
  grid-column: span 6;
}
@media (max-width: 1023px) {
  .projects-info__content h2 {
    grid-column: 1/-1;
    font-size: 22px;
    line-height: 32px;
  }
}
.projects-info__info {
  grid-column: 7/-1;
  grid-row: 1/3;
}
@media (max-width: 1023px) {
  .projects-info__info {
    grid-column: 1/-1;
    grid-row: 2/3;
  }
}
.projects-info__info ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1023px) {
  .projects-info__info ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.projects-info__info ul li {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 0 8px 16px 24px;
  border-bottom: 1px solid rgba(7, 7, 7, 0.1019607843);
  border-right: 1px solid rgba(7, 7, 7, 0.1019607843);
}
@media (min-width: 1024px) {
	.projects-info__info ul li:nth-child(n+4) {
	  border-bottom: none;
	  padding-bottom: 0;
	  padding-top: 16px;
	}
}
.projects-info__info ul li:nth-child(3n) {
  border-right: none;
}
.projects-info__info ul li span {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.projects-info__info ul li h3 {
  font-size: 48px;
  line-height: 56px;
  color: #070707;
  text-align: start;
}
@media (max-width: 1023px) {
  .projects-info__info ul li {
    border-bottom: 1px solid rgba(7, 7, 7, 0.1019607843) !important;
    border-right: 1px solid rgba(7, 7, 7, 0.1019607843) !important;
    padding-top: 0 !important;
    justify-content: space-between;
  }
  .projects-info__info ul li:nth-child(2n) {
    border-right: none !important;
    /*padding-bottom: 16px !important;*/
  }
}
.projects-info__duration {
  grid-column: span 4;
  grid-row: 2/3;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  align-self: flex-end;
}
@media (max-width: 1023px) {
  .projects-info__duration {
    grid-column: 1/-1;
    grid-row: 3/4;
  }
}
.projects-info__duration h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  color: #070707;
  text-align: left;
}
.projects-info__duration p {
  font-size: 16px;
  line-height: 24px;
  color: #070707;
}
@media (max-width: 1023px) {
  .projects-info__duration p {
    padding-right: 35%;
  }
}
.projects-info__button {
  background-color: #FEC92B;
  color: #070707;
  padding: 24px 40px;
  min-width: 411px;
  border-radius: 99px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.projects-info__button:hover {
  background-color: #fff;
}
@media (max-width: 767px) {
  .projects-info__button {
    width: 100%;
    min-width: unset;
    max-width: 343px;
    font-size: 14px;
    padding-block: 16px;
  }
}

.projects-image {
  padding: 160px 0 0 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1023px) {
  .projects-image {
    padding: 80px 0 0 0;
  }
}
.projects-image__container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  aspect-ratio: 2.05;
  overflow: hidden;
  border-radius: 40px;
}
@media (max-width: 767px) {
  .projects-image__container {
    width: 100%;
    aspect-ratio: 1;
    max-height: 430px;
  }
}
.projects-image__container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}



.breadcrumbs {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  color: var(--color-text-secondary);
  font-size: var(--font-size-p);
  line-height: var(--line-height-p);
  position: relative;
  z-index: 2;
}
@media (max-width: 1023px) {
  .breadcrumbs {
    font-size: var(--font-size-a);
    line-height: var(--line-height-a);
    padding-inline: var(--container-padding);
  }
}
.breadcrumbs ul {
  display: flex;
  align-items: center;
  gap: 23px;
  position: relative;
  padding-left: 32px;
}
.breadcrumbs ul::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translate(0, -50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M12 4L4 12L12 20" stroke="white" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M4 12H20" stroke="white" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}
.breadcrumbs ul li {
  position: relative;
}
.breadcrumbs ul li:not(:last-of-type)::after {
  content: "/";
  position: absolute;
  right: -14px;
}
.breadcrumbs ul li a {
  text-decoration: none;
  color: inherit;
}/*# sourceMappingURL=style.css.map */