.hero{
  padding: 30px 0;
}
.hero__wrapper{
  margin-bottom: 32px;
}
.hero__img{
  border-top: 50px solid var(--black);
  border-radius: 19px 19px 0 0;
  position: relative;
}
.hero__img::before{
  content: '';
  position: absolute;
  height: 11px;
  width: 53px;
  background-image: url(../img/dots.svg);
  left: 20px;
  top: -30px;
}

.hero__img {
  width: 100%;
}
.hero__img img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__description p{
  margin-bottom: 24px;

}
.details__item{
  color: var(--black);
  display: inline-block;
  margin-right: 40px;
  padding-left: 28px;
  position: relative;
}
.details__item::before{
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
}
.details__item-ind::before{
  background-image: url(../img/icons/industry.svg);
}
.details__item-time::before{
  background-image: url(../img/icons/time.svg);
}
.details__item-team::before{
  background-image: url(../img/icons/team.svg);
}


@media screen and (min-width: 768px){
  .hero{
    padding: 60px 0;
  }
  .hero__wrapper{
    margin-bottom: 52px;
    display: flex;
  }
  .hero__header{
    margin: 0;
    padding: 0;
    flex-basis: 50%;
    flex-shrink: 0;
  }
  .hero__description{
    padding-left: 24px;
  }
}
@media screen and (min-width: 1200px){
  .hero__header{
    max-width: 600px;
    font-size: 40px;
  }
  .hero__description{
    max-width: 485px;
    padding-left: 0;
    margin-left: auto;
  }
}

/* INTRO */
.intro{
  padding: 50px 0;
}
.intro__overtext{
  color: var(--blue);
  margin-bottom: 16px;
  font-size: 12px;
}
.intro__description{
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.intro__description>h2{
  margin-bottom: 18px;
}

@media screen and (min-width: 768px){
  .intro{
    padding: 100px 0;
  }
  .intro__overtext{
    margin-bottom: 24px;
    font-size: 14px;
  }
  .intro__description>h2{
    margin-bottom: 32px;
  }
}

/* TECHNOLOGIES */
.technologies{
  padding: 50px 0 60px;
}
.technologies__header>h2{
  margin-bottom: 32px;
}
.technologies__item{
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 12px;
  background-color: var(--light-gray-2);
  border-radius: 8px;
  color: var(--black);
  font-weight: 600;
  padding: 12px 18px;
}
@media screen and (min-width: 768px){
  .technologies{
    padding: 100px 0 120px;
  }
  .technologies__wrapper{
    display: flex;
    justify-content: space-between;
  }
  .technologies__list{
    flex-basis: 70%;
  }
  .technologies__header{
    flex-basis: 25%;
  }
  .technologies__item{
    margin-right: 16px;
    margin-bottom: 16px;
    padding: 16px 28px;
    font-size: 18px;
  }
}

/* PAGINATION */

.pagination{
  padding: 40px 0;
}
.pagination__wrapper{
  border-top: 1px solid var(--light-gray-1);
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  column-gap: 24px;
}
.pagination__item{
  flex-basis: 50%;
  max-width: 290px;
}
.pagination a{
  display: inline-block;
  font-size: 14px;
  color: var(--blue);
  text-transform: uppercase;
  position: relative;
  margin-bottom: 20px;
}
.pagination a::before{
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  background-image: url(../img/pagination-arrow.svg);
}
.pagination__item-prev a{
  padding-left: 24px;
}
.pagination__item-next a{
  padding-right: 24px;
}
.pagination__item-next a::before{
  right: 0;
  transform: rotate(180deg);
}
.pagination__item-prev a::before{
  left: 0;
}
.pagination__item-next{
  text-align: right;
}