.hero{
  background-color: var(--light-gray-2);
  height: calc(100vh - 65px);
}
.hero>.container{
  height: 100%;
}
.hero__wrapper{
  height: 100%;
  box-sizing: border-box;
  padding-top: 80px;
  background-image: url(../img/hero-careers.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 50%;
}
.hero__description p{
  margin-bottom: 20px;
}
.hero__description span{
  color: var(--black);
  font-weight: 600;
}
.hero__link{
  display: inline-block;
  position: relative;
  padding-left: 48px;
  padding-top: 2px;
  color: var(--black);
  font-weight: 600;
}
.hero__link:hover::before{
  transform: rotateZ(45deg);
}
.hero__link::before{
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  background-color: var(--blue);
  background-image: url(../img/link-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  transition: transform .3s ease-in-out;
}
@media screen and (min-width: 768px){
  .hero{
    height: calc(100vh - 97px);
  }

  .hero__wrapper{
    background-size: auto 100%;
    background-position: right center;
    position: relative;
  }
  .hero__description{
    width: 40%;
    max-width: 405px;
    position: absolute;
    top: 20%;
    left: 0;
  }
  .hero__description p{
    margin-bottom: 44px;
  }
  .hero__link{
    padding-left: 108px;
    padding-top: 18px;
  }
  .hero__link::before{
    width: 68px;
    height: 68px;
    background-size: 24px;
  }
}

/* VACANCIES */

.vacancies{
  padding: 60px 0;
}
.vacancies__header{
  margin-bottom: 30px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 32px;
}
.vacancies__item{
  padding: 16px 20px;
  border: 1px solid var(--light-gray-1);
  border-radius: 16px;
  margin-bottom: 16px;
}
.vacancies__item:last-child{
  margin-bottom: 0;
}
.vacancies__title{
  margin-bottom: 16px;
}
.vacancies__info{
  margin-bottom: 24px;
}
.vacancies__link{
  background-color: var(--blue);
  color: var(--white);
}
.vacancies__details{
  display: inline-block;
  padding-left: 28px;
  position: relative;
  color: var(--black);
  margin-right: 20px;
}
.vacancies__details:last-child{
  margin-right: 0;
}
.vacancies__details::before{
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
}
.vacancies__details-loc::before{
  background-image: url(../img/icons/loc.svg);
}
.vacancies__details-time::before{
  background-image: url(../img/icons/time.svg);
}
@media screen and (min-width: 768px){
  .vacancies{
    padding: 120px 0;
  }
  .vacancies__header{
    margin-bottom: 60px;
  }
  .vacancies__item{
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .vacancies__title{
    flex-basis: 40%;
    margin-bottom: 0;
  }
  .vacancies__details{
    margin-right: 56px;
  }
  .vacancies__info{
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px){
  .vacancies__title{
    flex-basis: 50%;
  }
}

/* HIRING PROCESS */
.process{
  padding: 50px 0;
  background-color: var(--light-gray-2);
}
.process__header{
  margin-bottom: 30px;
}
.process__item{
  margin-bottom: 32px;
}
.process__title{
  opacity: .3;
  transition: opacity .4s ease-in-out;
}
.process__item:last-child .process__title{
  transition: .4s opacity .4s ease-in-out;
}
.process__desc{
  opacity: 0;
}
.visible .process__title{
  opacity: 1;
}
.visible .process__desc{
  opacity: 1;
}
.process__title p{
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--blue);
  margin-bottom: 30px;
}
.process__title h3{
  margin-bottom: 32px;
}
@media screen and (min-width: 768px){
  .process{
    padding: 100px 0;
  }
  .process__header{
    margin-bottom: 60px;
  }
  .process__list{
    display: flex;
    gap: 20px;
  }
  .process__item{
    flex-basis: 33.3%;
    margin-bottom: 0;
  }
  .process__title p{
    font-size: 24px;
  }
} 
@media screen and (min-width: 1200px){
  .process__list{
    gap: 40px;
  }
}

/* WHY US */
.why{
  padding: 50px 0;
}
.why__header{
  margin-bottom: 32px;
}
.why__item{
  padding: 32px;
  padding-left: 72px;
  border-top: 1px solid var(--light-gray-1);
  position: relative;
}
.why__item:last-child{
  border-bottom: 1px solid var(--light-gray-1);
}
.why__item::before{
  content: '';
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--blue);
  box-shadow: 8px 8px 22px 0px rgba(79, 106, 251, 0.30);
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: center;
  position: absolute;
  top: 32px;
  left: 16px;
}
.why__item-global::before{
  background-image: url(../img/icons/globe-white.svg);
}
.why__item-team::before{
  background-image: url(../img/icons/team-white.svg);
}
.why__item-innovation::before{
  background-image: url(../img/icons/setting-white.svg);
}
.why__item-benefits::before{
  background-image: url(../img/icons/star-white.svg);
}
@media screen and (min-width: 768px){
  .why{
    padding: 120px 0 100px;
  }
  .why__header{
    width: 40%;
  }
  .why__list{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding-top: 75px;
  }
  .why__item{
    height: 350px;
    box-sizing: border-box;
    padding: 48px 80px;
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
  }
  .why__item>h3{
    margin-top: auto;
    margin-bottom: 28px;
  }
  .why__item:nth-child(even){
    /* position: absolute; */
    transform: translateY(-50%) translateX(-1px);
    border-left: 1px solid var(--light-gray-1);
  }
  .why__item:nth-child(3){
    border-bottom: 1px solid var(--light-gray-1);
    border-right: 1px solid var(--light-gray-1);

  }
  .why__item::before{
    left: 80px;
    top: 48px;
  }
}