/* title section */
.title-page{
    text-align: center;
    padding: 150px 0 0;
}
.title-page h1{
    font-size: 64px;
    line-height: 1;
    margin-bottom: 30px;
    color: #F4F5F7;
    font-weight: 500;
}
.title-page p{
    font-size: 18px;
    color: #8B8F97;
    line-height: 1.44;
    max-width: 730px;
    margin: auto;
}
@media screen and (max-width: 1199px){
    .title-page{
        padding: 120px 0 0;
    }
    .title-page h1{
        font-size: 50px;
    }
}
@media screen and (max-width: 991px){
    .title-page h1{
        font-size: 40px;
    }
    .title-page p{
        font-size: 16px;
    }
}
@media screen and (max-width: 767px){

}
@media screen and (max-width: 479px){
    .title-page h1{
        font-size: 30px;
    }
}
/* -- title section */

/* section-vacancies */
.section-vacancies .container{
  display: flex;
  gap: 30px;
  border-top: 1px solid #232325;
  padding-top: 60px;
}
.filter{
  width: 34%;
}
.filter-sticky{
  position: sticky;
  top: 100px;
}
.filter .top-filter{
  display: flex;
  align-items: center;
  gap: 40px;
}
.filter .top-filter{
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 50px;
  color: #8B8F97;
  font-family: "Geist Mono", monospace;
}
.filter .top-filter .clear{
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.filter .top-filter .clear p{
  color: #8B8F97;
  transition: all .3s;
}
.filter .top-filter .clear:hover p{
  color: #fff;
}
.filter .top-filter .clear svg path{
  transition: all .3s;
}
.filter .top-filter .clear:hover svg path{
  fill: #fff;
}
.filter .wrapper-filter .filter-group{
  margin-bottom: 40px;
}
.filter .wrapper-filter .filter-group .filter-group-label{
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: .02em;
  font-family: "Geist Mono", monospace;
  color: #8B8F97;
}
.filter .wrapper-filter input{
  display: none;
}
.filter .wrapper-filter label{
  display: block;
  line-height: 16px;
  font-size: 12px;
  letter-spacing: .02em;
  font-family: "Geist Mono", monospace;
  color: #fff;
  position: relative;
  padding-left: 31px;
  margin-bottom: 19px;
  cursor: pointer;
  transition: all .3s;
}
.filter .wrapper-filter label:hover{
  opacity: .8;
}
.filter .wrapper-filter label:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #8B8F97;
  border-radius: 2px;
  z-index: 1;
}
.filter .wrapper-filter label:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #D9D9D9;
  background-image: url(../images/vacancies/icon-check-filter.svg);
  background-position: center;
  background-size: 11px auto;
  background-repeat: no-repeat;
  opacity: 0;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  z-index: 0;
}
.filter .wrapper-filter input:checked + label:before{
  opacity: 1;
}

.all-vacancies{
  width: calc(66% - 30px);
}
.all-vacancies .count-vacancies{
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 20px;
  color: #8B8F97;
  font-family: "Geist Mono", monospace;
}
.all-vacancies .item{
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.09);
  position: relative;
  background: rgba(137,137,137,.05);
  margin-bottom: 20px;
  transition: all .3s;
}
.all-vacancies .item:hover{
  border: 1px solid rgba(255,255,255,.5);
}
.all-vacancies .item a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.all-vacancies .item .department{
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 30px;
  color: #8B8F97;
  font-family: "Geist Mono", monospace;
}
.all-vacancies .item .marker{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.all-vacancies .item .marker .hot{
  line-height: 20px;
  background: #FF512B;
  color: #fff;
  padding: 0 10px;
  border-radius: 2px;
}
.all-vacancies .item h2{
  font-size: 30px;
  font-weight: 500;
  line-height: 1.27;
  margin-bottom: 50px;
}
.all-vacancies .item .meta{
  display: flex;
  align-items: center;
}
.all-vacancies .item .meta .tech-level{
  min-width: 130px;
  padding-left: 26px;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 16px;
}
.all-vacancies .item .meta .tech-level[data-name="20"]{
  background-image: url(../images/vacancies/icon-senior.svg);
}
.all-vacancies .item .meta .tech-level[data-name="19"]{
  background-image: url(../images/vacancies/icon-middle.svg);
}
.all-vacancies .item .meta .tech-level[data-name="18"]{
  background-image: url(../images/vacancies/icon-junior.svg);
}
.all-vacancies .item .meta .tech-level,
.all-vacancies .item .meta .location{
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 30px;
  color: #8B8F97;
  font-family: "Geist Mono", monospace;
  margin-bottom: 0;
  line-height: 16px;
}
.all-vacancies .item .meta .location {
  padding-left: 26px;
  background-image: url(../images/vacancies/icon-location.svg);
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 16px;
}
.vacancies-pagination{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 15px;
}
.vacancies-pagination button{
  font-size: 12px;
  font-family: "Geist Mono", monospace;
  color: #8B8F97;
  line-height: 20px;
  text-align: center;
  min-width: 38px;
  padding: 9px 0;
  border-radius: 5px;
  background: #0E0E0E;
  transition: all .3s;
}
.vacancies-pagination button:hover,
.vacancies-pagination button.active{
  color: #000;
  background: #fff;
}
@media screen and (max-width: 991px){
  .all-vacancies .item .department{
    margin-bottom: 20px;
  }
  .all-vacancies .item h2{
    margin-bottom: 30px;
    font-size: 24px;
  }
}
@media screen and (max-width: 767px){
  .section-vacancies .container{
    flex-wrap: wrap;
  }
  .all-vacancies,
  .filter{
    width: 100%;
  }
  .filter{
    position: relative;
    top: 0;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 8px;
  }
  .wrapper-filter{
    display: none;
    margin-top: 20px;
    padding-left: 20px;
  }
  .filter .top-filter{
    margin: 0;
    height: 50px;
    padding-left: 20px;
    position: relative;

  }
  .filter .top-filter:after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 52px;
    height: 100%;
    background-image: url(../images/arrow-faq.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
    transition: all .3s;
    z-index: 9;
  }
  .filter .top-filter.open:after{
    transform: rotate(180deg);
  }
}
@media screen and (max-width: 479px){
  .all-vacancies .item{
    padding: 20px;
  }
}
/* -- section-vacancies */

/* section-cta */
.section-cta{
  padding-bottom: 60px;
  margin-top: 60px;
  margin-bottom: 60px;
}
.section-cta .container{
    max-width: 996px;
}
.section-cta .item-cta{
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(137,137,137,.05);
}
.section-cta .item-cta:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
}
.section-cta .item-cta:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: url(../images/vacancies/line-white.svg);
    background-position: 100% 0;
    background-repeat: no-repeat;
    background-size: auto 1px;
    z-index: 3;
}
.section-cta .content{
    padding: 60px 70px;
    max-width: 740px;
    position: relative;
    z-index: 9;
}
.section-cta .image{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 1;
}
.section-cta .image:after {
    content: '';
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(100.08deg, #080808 25.47%, rgba(17, 17, 17, 0) 96.79%);
}
.section-cta .image img{
    display: block;
    height: 100%;
}
.section-cta .content p{
    margin-bottom: 30px;
    font-size: 18px;
    color: #8B8F97;
    max-width: 500px;
}
.section-cta .content p.title{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 36px;
    line-height: 1;
    color: #fff;
    margin-bottom: 20px;
    max-width: 100%;
}
.section-cta .content .buttons{
    display: flex;
    align-items: center;
    gap: 22px;
}
.section-cta .content .buttons a{
    min-width: 250px;
}
@media screen and (max-width: 1199px){

}
@media screen and (max-width: 991px){

}
@media screen and (max-width: 767px){
    .section-cta .content p.title{
        font-size: 28px;
    }
    .section-cta .image:after {
        background: linear-gradient(-90deg, rgba(17, 17, 17, 0.6) 0%, #070707 100%);
        width: 100%;
    }
    .section-cta .content{
        padding: 40px 50px;
    }
    .section-cta .content p{
        font-size: 16px;
    }
}
@media screen and (max-width: 599px){
  .section-cta .content .buttons{
    flex-wrap: wrap;
  }
  .section-cta .content .buttons a{
    width: 100%;
  }
}
@media screen and (max-width: 479px){
    .section-cta .content p.title{
        font-size: 24px;
    }
    .section-cta .content p{
        font-size: 14px;
    }
    .section-cta .content{
        padding: 20px;
    }
}
/* --section-cta */

/* section-contact-us */
.section-contact-us .container{
    max-width: 996px;
}
.section-contact-us .subtitle{
  font-size: 18px;
  color: #8B8F97;
  line-height: 1.44;
}
.section-contact-us form{
    margin-top: 50px;
}
.section-contact-us .form-group-buttons{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.section-contact-us [type="file"]{
  display: none;
}
.section-contact-us [type="file"] + label{
  border: 1px solid #3A3A3E;
  border-radius: 5px;
  height: 45px;
  font-size: 12px;
  color: #8B8F97;
  line-height: 45px;
  padding-left: 42px;
  cursor: pointer;
  transition: all .3s;
  background-image: url(../images/vacancies/icon-upload-file.svg);
  background-size: 20px;
  background-position: 10px center;
  background-repeat: no-repeat;
}
.section-contact-us [type="file"] + label:hover{
  border: 1px solid #fff;
  color: #fff;
}
.section-contact-us button{
  min-width: 400px;
}
@media screen and (max-width: 991px){
  .section-contact-us .subtitle{
    font-size: 16px;
  }
}
@media screen and (max-width: 767px){
    .section-contact-us form{
        margin-top: 40px;
    }
    .section-contact-us h2{
      font-size: 28px;
    }
}
@media screen and (max-width: 599px){
  .section-contact-us .form-group-buttons{
    flex-wrap: wrap;
  }
  .section-contact-us .form-group-buttons button{
    width: 100%;
  }
}
@media screen and (max-width: 479px){
  .section-contact-us .subtitle{
    font-size: 14px;
  }
}
/* -- section-contact-us */
