.purchase * {
  color: #000000;
  font-family: "Arial", sans-serif;
}
.purchase h1,
.purchase .h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
}
@media (max-width: 495px) {
  .purchase h1,
.purchase .h1 {
    font-size: 24px;
  }
}
.purchase h2,
.purchase .h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 110%;
}
@media (max-width: 495px) {
  .purchase h2,
.purchase .h2 {
    font-size: 22px;
  }
}
.purchase h3,
.purchase .h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
}
.purchase p, .purchase .p1 {
  font-weight: 400;
  font-size: 22px;
  line-height: 150%;
}
@media (max-width: 495px) {
  .purchase p, .purchase .p1 {
    font-size: 16px;
  }
}
.purchase .p2 {
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
}
.purchase .p3 {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
}
.purchase .p4 {
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
}
.purchase section,
.purchase .section {
  padding: 0;
  margin: 0;
  min-height: 100vh;
}
.purchase .container {
  width: 100%;
  padding-right: 0rem;
  padding-left: 0rem;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .purchase .container {
    padding: 0 40px;
  }
}
@media (max-width: 495px) {
  .purchase .container {
    padding: 0 15px;
  }
}
.purchase p,
.purchase h1,
.purchase h2,
.purchase h3,
.purchase h4,
.purchase h5,
.purchase h6 {
  margin: 0;
  padding: 0;
}
.purchase .btn {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  cursor: pointer;
  background: none;
  outline: none;
  border: none;
  height: auto;
  width: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.purchase .btn.__primary {
  padding: 10px 12px;
  border: 1px solid #BA0C2F;
}
.purchase .btn.__primary span {
  /* color: #000000; */
  color: #BA0C2F;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.purchase .btn.__primary ._icon {
  margin-left: 5px;
}
.purchase .btn.__primary ._icon svg {
  display: block;
}
.purchase .btn.__primary ._icon svg path {
  stroke: #BA0C2F;
}
.purchase .btn.__primary:hover {
  border-color: #4d4d4d;
}
/* .purchase .btn.__primary:hover span {
  border-color: #4d4d4d;
  color: #4d4d4d;
} */
.purchase .btn.__secondary {
  padding: 10px 35px;
  border-radius: 5px;
  background-color: #BA0C2F;
  color: #FFFFFF;
}
.purchase .btn.__secondary:hover {
  background-color: #a20a29;
}
.purchase .btn.__secondary:active {
  background-color: #8a0923;
}
.purchase .modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(203, 196, 188, 0.3);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow-y: auto;
  z-index: 99;
}
.purchase .modal.__active {
  opacity: 1;
  pointer-events: all;
}
.purchase .modal.__active .modal_inner .modal_content {
  pointer-events: all;
}
.purchase .modal .modal__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.purchase .modal .modal_inner {
  width: 100%;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 100px 40px;
}
@media (max-width: 495px) {
  .purchase .modal .modal_inner {
    padding: 0;
  }
}
.purchase .modal .modal_inner .modal_content {
  position: relative;
  max-width: 620px;
  padding: 48px;
  background-color: #FFFFFF;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 495px) {
  .purchase .modal .modal_inner .modal_content {
    padding: 155px 15px 50px;
    border-radius: 0;
    min-height: 100vh;
  }
}
.purchase .modal .modal_inner .modal_content .__close_modal {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 495px) {
  .purchase .modal .modal_inner .modal_content .__close_modal {
    top: 125px;
  }
}
.purchase .modal .modal_inner .modal_content .__close_modal:hover {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.purchase .modal .modal_inner .modal_content .__close_modal span {
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: #050505;
  border-radius: 10px;
}
.purchase .modal .modal_inner .modal_content .__close_modal span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.purchase .modal .modal_inner .modal_content .__close_modal span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.purchase .promo {
  background-image: url("https://abinbevefes.ru/wp-content/uploads/2023/05/bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 220px;
}
@media (max-width: 1024px) {
  .purchase .promo {
    background-image: url("https://abinbevefes.ru/wp-content/uploads/2023/05/bg__tablet.png");
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-bottom: 40px;
  }
}
@media (max-width: 495px) {
  .purchase .promo {
    background-image: url("https://abinbevefes.ru/wp-content/uploads/2023/05/bg__mobile.png");
  }
}
.purchase .promo .section_inner {
  max-width: 500px;
}
.purchase .promo .section_inner .promo__title {
  margin-bottom: 30px;
}
@media (max-width: 495px) {
  .purchase .promo .section_inner .promo__title {
    margin-bottom: 15px;
  }
}
.purchase .promo .section_inner .promo__title, .purchase .promo .section_inner .promo__text {
  color: #FFFFFF;
}
.purchase .cards {
  padding-top: 120px;
}
@media (max-width: 1024px) {
  .purchase .cards {
    padding-top: 80px;
  }
}
@media (max-width: 495px) {
  .purchase .cards {
    padding-top: 50px;
  }
}
.purchase .cards .card {
  margin-bottom: 120px;
}
@media (max-width: 1024px) {
  .purchase .cards .card {
    margin-bottom: 80px;
  }
}
@media (max-width: 495px) {
  .purchase .cards .card {
    margin-bottom: 50px;
  }
}
.purchase .cards .card .card__title::before, .purchase .cards .card .card__title::after {
  display: none;
}
.purchase .cards .card .card__items {
  margin-top: 30px;
}
.purchase .cards .card .card__items .card__item {
  padding-top: 30px;
  border-top: 1px solid #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1024px) {
  .purchase .cards .card .card__items .card__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.purchase .cards .card .card__items .card__item:not(:last-child) {
  margin-bottom: 30px;
}
.purchase .cards .card .card__items .card__item .card__item_title {
  max-width: 700px;
  width: 100%;
  margin-right: 30px;
}
@media (max-width: 1024px) {
  .purchase .cards .card .card__items .card__item .card__item_title {
    max-width: 100%;
    margin-right: 0;
  }
}
.purchase .cards .card .card__items .card__item .card__item_info .card__item_dates {
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .purchase .cards .card .card__items .card__item .card__item_info .card__item_dates {
    margin: 30px 0 20px;
    max-width: 260px;
  }
}
@media (max-width: 495px) {
  .purchase .cards .card .card__items .card__item .card__item_info .card__item_dates {
    max-width: 200px;
  }
}
.purchase .cards .card .card__items .card__item .card__item_info .card__item_dates .card__item_date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.purchase .cards .card .card__items .card__item .card__item_info .card__item_dates .card__item_date:not(:last-child) {
  margin-bottom: 5px;
}
.purchase .cards .card .card__items .card__item .card__item_info .card__item_dates .card__item_date p {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
.purchase .cards .card .card__items .card__item .card__item_info .card__item_dates .card__item_date p:nth-child(1) {
  width: 100%;
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.purchase .cards .card .card__items .card__item .card__item_info .card__item_dates .card__item_date p:nth-child(1)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 24px;
  background-color: #000000;
  right: 0;
}
.purchase .modal .modal__title {
  text-align: center;
}
.purchase .modal .modal__items {
  margin-top: 32px;
}
.purchase .modal .modal__items .modal__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 495px) {
  .purchase .modal .modal__items .modal__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.purchase .modal .modal__items .modal__item:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 495px) {
  .purchase .modal .modal__items .modal__item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.purchase .modal .modal__items .modal__item p {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
.purchase .modal .modal__items .modal__item p:nth-child(2) {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10px;
  margin-left: 10px;
}
@media (max-width: 495px) {
  .purchase .modal .modal__items .modal__item p:nth-child(2) {
    width: 100%;
    padding: 0 0 10px 0;
    margin: 10px 0 0 0;
    border-bottom: 1px solid #000;
  }
}
.purchase .modal .modal__items .modal__item p:nth-child(2)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 16px;
  left: 0;
  top: 0;
  background-color: #000000;
}
@media (max-width: 495px) {
  .purchase .modal .modal__items .modal__item p:nth-child(2)::before {
    display: none;
  }
}
.purchase .modal .modal__actions {
  margin: 32px 0;
}
.purchase .modal .modal__btn:not(:last-child) {
  margin-bottom: 16px;
}
@media (max-width: 495px) {
  .purchase .modal .modal__btn {
    width: 100%;
  }
}

.dss.__searchingpartners.unscroll .nav-logo svg g path:nth-child(4) {
  fill: #C82A4A;
}
.dss.__searchingpartners.unscroll .nav-logo svg g path:nth-child(3) {
  fill: #950824;
}

.dss.__searchingpartners .nav-logo svg g path:nth-child(4) {
  fill: #BA0C2F;
}
.dss.__searchingpartners .nav-logo svg g path:nth-child(3) {
  fill: #012169;
}