.req-btn {
  line-height: 50px;
  max-width: 300px;
  background-color: #2563EB;
  border-radius: 25px;
  color: #ffffff;
  font-weight: 600;
  font-size: 24px;
  margin: 30px auto 0;
  font-family: Roboto, sans-serif;
  display: block;
  text-align: center;
}

.req-title {
  background-image: url("../img/request_title_bg.png");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 110px 75px;
}
@media (max-width: 1500px) {
  .req-title {
    background-size: 40% auto;
  }
}
@media (max-width: 767px) {
  .req-title {
    background-image: url("../img/request_title_bg_mob.png");
    background-size: 100%;
    padding: 25px 20px;
  }
}
.req-title__content {
  max-width: 1000px;
}
.req-title__h1 {
  font-weight: 700;
  font-size: 64px;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .req-title__h1 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .req-title__h1 {
    width: 100%;
    font-size: 24px;
    text-align: center;
  }
}
.req-title__sub {
  max-width: 750px;
  font-size: 24px;
}
@media (max-width: 1200px) {
  .req-title__sub {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .req-title__sub {
    width: 100%;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 90px;
    text-align: center;
  }
}
.req-title__btn {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .req-title__btn {
    margin-left: auto;
    color: #ffffff;
    font-weight: 600;
    font-size: 24px;
  }
}

.filter {
  padding: 20px 75px;
  display: grid;
}
@media (max-width: 600px) {
  .filter {
    padding: 20px 15px;
    margin-bottom: 30px;
  }
}
.filter__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start; /* вместо center, чтобы поиск и селекты не смещались */
}
.filter__row--form {
    display: flex;
    flex-wrap: wrap;
    gap: 5%; /* промежутки между селектами и кнопкой */
    width: 60%; /* вместо 60% */
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .filter__row--form {
    width: 100%;
  }
}
@media (max-width: 767px) {
    .filter__row--form {
        flex-direction: column;
        align-items: center;
    }
}

.filter__select-cover {
  width: 300px;
  max-width: 30%;
}
@media (max-width: 767px) {
  .filter__select-cover {
    width: 80%;
    max-width: none;
    margin: 0 auto 30px;
  }
}
.filter__select-cover .select2-container {
  width: 100% !important;
}
.filter__select-cover:hover .select2-container--default .select2-selection--single {
  border-color: #1E66F4;
  background-color: #E1F0FF;
}
.filter__select-cover .select2-container--default .select2-selection--single {
  height: 50px;
  border-radius: 25px;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .filter__select-cover .select2-container--default .select2-selection--single {
    height: 40px;
  }
}
.filter__select-cover .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px;
  padding: 0 25px;
  font-size: 24px;
}
@media (max-width: 767px) {
  .filter__select-cover .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 18px;
    line-height: 40px;
    font-weight: 500;
  }
}
.filter__select-cover .select2-container--default .select2-selection--single .select2-selection__arrow {
  background: url("../img/gear.svg") no-repeat center;
  width: 50px;
  height: 50px;
}
@media (max-width: 767px) {
  .filter__select-cover .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 40px;
    height: 40px;
    right: 15px;
  }
}
.filter__select-cover .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.filter__select {
  width: 100%;
  height: 50px;
  border-radius: 25px;
}
.filter__button {
  display: flex;
  width: 300px;
  text-align: right;
  justify-content: end;
  align-items: center;
  height: 50px;
  background: #1E66F4;
  padding: 7px 15px;
  border-radius: 25px;
  max-width: 30%;
}
@media (max-width: 767px) {
  .filter__button {
    height: 40px;
  }
}
.filter__button span {
  margin-right: 12px;
  color: #ffffff;
  font-weight: 600;
  font-size: 24px;
}
@media (max-width: 767px) {
  .filter__button span {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .filter__button {
    max-width: 100%;
    width: 100%;
  }
  .filter__button span {
    margin: auto;
  }
}
.filter__search_form {
  display: flex;
  align-items: center;
  height: 50px;
  width: 35%;
  border-radius: 25px;
  border: 1px solid #D0D5DA;
  background-color: #F1F3F5;
  padding: 13px 0 13px 25px;
}
@media (max-width: 1200px) {
  .filter__search_form {
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .filter__search_form {
    height: 40px;
  }
}
.filter__search {
  font-size: 20px;
  line-height: 24px;
  color: #1A1A1A;
  background: none;
}
.filter__search-btn {
  width: 80px;
}
.filter__title {
  text-align: center;
  font-weight: 500;
  font-size: 42px;
  margin: 50px 12px;
  font-family: Roboto;
}
@media (max-width: 767px) {
  .filter__title {
    font-weight: 700;
    font-size: 24px;
    grid-row: 1/2;
  }
}

.requests {
  padding: 15px 75px;
}
@media (max-width: 767px) {
  .requests {
    padding: 15px 20px;
  }
}
.requests__grid {
  display: grid;
  grid-template-columns: repeat(5, calc(20% - 24px));
  grid-gap: 30px;
  max-width: 100%;
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 1600px) {
  .requests__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 1300px) {
  .requests__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1000px) {
  .requests__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .requests__grid {
    grid-template-columns: 100%;
  }
}
.requests__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 3px 3px 10px 0 #838383;
}
.requests__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
  word-break: break-all;
}
.requests__item_info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  margin: 15px 0;
}
.requests__made {
  display: none;
  max-width: fit-content;
  text-align: right;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 200;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #000000;
}
.requests__option {
  font-size: 14px;
  line-height: 18px;
}
.requests__tel a {
  display: flex;
}
.requests__tel span {
  margin-left: 10px;
  font-weight: 700;
}
.requests__btn {
  position: relative;
  max-width: 100%;
  width: 250px;
  background-color: #2563EB;
  color: #fff;
  border-radius: 25px;
  padding: 17px 10px;
  line-height: 1;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto auto 0;
  transition: 0.3s;
}
.requests__btn:hover {
  background-color: #0b338a;
}
.requests__pagination {
  display: flex;
  align-items: start;
  justify-content: end;
}
.requests__page {
  width: 24px;
  line-height: 24px;
  border-radius: 12px;
  margin-left: 5px;
  text-align: center;
  background: #ffffff;
}
.requests__page.active, .requests__page:hover {
  background: #D4F9F4;
}

.made-propose .requests__made {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.made-propose .requests__btn {
  background-color: #1ED7FD;
  color: #1B1A1A;
  font-size: 0;
}
.made-propose .requests__btn::before {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  content: attr(data-text);
  display: flex;
  justify-content: center;
  align-items: center;
  color: unset;
  width: 100%;
}
.made-propose .requests__btn:hover {
  background-color: #0991a8;
}

/*# sourceMappingURL=request.css.map */
