@charset "UTF-8";
/*Обнуление*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Jost:wght@500;600&family=Open+Sans:wght@400;600;700&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

input,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}
.wrapper .main {
  flex: 1 1 auto;
}

.container {
  max-width: 1225px;
  padding: 0 10px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .container {
    padding: 0 7px;
  }
}

/*
.breadcrump {
  display: flex;
  color: #999;
  font-size: 12px;
  line-height: 16px;
}
*/


.breadcrump {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  color: #999;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
}
.breadcrump::-webkit-scrollbar {
  height: 4px;
}
.breadcrump::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.breadcrump::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 2px;
}
.breadcrump::-webkit-scrollbar-thumb:hover {
  background: #555;
}



.breadcrump__item {
  position: relative;
}
.breadcrump__link {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}
.breadcrump li + li:before {
  padding-left: 6px;
  padding-right: 4px;
  content: "/ ";
}
@media (max-width: 576px) {
  .breadcrump {
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.03em;
  }
}

.title {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 49px;
  color: #333333;
}
@media (max-width: 768px) {
  .title {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .title {
    font-size: 20px;
    line-height: 27px;
  }
}

.--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  padding: 0 30px;
  background: #ff8a00;
  border: none;
  border-radius: 5px;
}
.--btn span {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #ffffff;
}

._popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(43, 38, 48, 0.4);
  backdrop-filter: blur(5px);
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, opacity 0.2s linear;
}

body._popup-open {
  overflow: hidden;
}

.rub:after {
  content: " ₽";
}

span.bold-text {
  font-weight: bold;
}

span.blue-text {
  color: #0057ff;
}

span.orange-text {
  color: #ff8a00;
}

.exclamation-mark {
  position: relative;
  top: 3px;
  display: inline-block;
  width: 5px;
  height: 19px;
  background-image: url("../image/icons/exclamation-mark.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-right: 3px;
}

.line {
  height: 2px;
  background-color: #ddd;
  border: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  opacity: 0;
  background: transparent;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.scrollbar-hidden::-webkit-scrollbar {
  width: 0;
  background-color: transparent;
}

.spoilers {
  display: none;
  position: absolute;
}

@media (max-width: 768px) {
  .title {
    text-align: left;
  }
}

.method {
  padding: 33px 0 74px;
  background-color: #fff;
}
@media (max-width: 576px) {
  .method {
    padding: 13px 0 44px;
  }
}
.method__breadcrump {
  margin-bottom: 9px;
}
.method__page-title {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #333333;
}
.method .line {
  margin-top: 25px;
  margin-bottom: 70px;
}
.method__title {
  margin-bottom: 45px;
}
.method__items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -25px;
}
.method__item {
  flex: 0 1 calc(33.333% - 50px);
  border: 1px solid #e6e6e6;
  margin: 0 25px 25px 25px;
}
.method__item--1 .method__item-img {
  top: 50%;
  left: 50%;
  width: 173px;
  height: auto;
}
.method__item--2 .method__item-img {
  top: 50%;
  left: 50%;
  width: 170px;
  height: auto;
}
.method__item--3 .method__item-img {
  top: 50%;
  left: 50%;
  width: 136px;
  height: auto;
}
.method__item--4 .method__item-img {
  top: 50%;
  left: 50%;
  width: 174px;
  height: auto;
}
.method__item--5 .method__item-img {
  top: 50%;
  left: 50%;
  width: 166px;
  height: auto;
}
.method__item--6 .method__item-img {
  top: 50%;
  left: 50%;
  width: 186px;
  height: auto;
}
.method__item-image {
  position: relative;
  width: 100%;
  height: 204px;
  background: #f5f5f6;
}
.method__item-img {
  position: absolute;
  transform: translate(-50%, -50%);
}
.method__item-info {
  padding: 33px 32px 36px 28px;
}
.method__item-title {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #333333;
  margin-bottom: 19px;
}
.method__item-description {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #333333;
}
.method .method__slider {
  margin-bottom: 35px;
}
.method .slick-track {
  display: flex;
}
.method .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 0;
  color: transparent;
}
.method .slick-dots li button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #dedede;
  margin: 0 3px;
  transition: all 0.2s ease;
}
.method .slick-dots li.slick-active button {
  background-color: #ff8a00;
  border: 1px solid #ff8a00;
}
.method .method__slider-nav {
  position: relative;
}
.method .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 0;
  color: transparent;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}
.slick-prev:before, .slick-next:before {
    background: none;
}
.method .slick-prev {
  left: calc(50% - 85px);
  background-image: url("../image/payment/method/arrow-prev.svg");
}
.method .slick-next {
  right: calc(50% - 85px);
  background-image: url("../image/payment/method/arrow-next.svg");
}
@media (max-width: 992px) {
  .method .method__item {
    flex: 0 1 calc(50% - 50px);
  }
}
@media (max-width: 620px) {
  .method .method__items {
    margin: 0;
  }
  .method .method__item {
    flex: 0 1 100%;
    margin: 0 0px 20px 0px;
  }
}
@media (min-width: 576.1px) {
  .method .method__slider,
.method .method__slider-nav {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    opacity: 0;
    background: transparent;
    clip: rect(0 0 0 0);
    overflow: hidden;
  }
}
@media (max-width: 576px) {
  .method .method__breadcrump {
    margin-bottom: 5px;
  }
  .method .method__page-title {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 45px;
  }
  .method .line {
    margin: 0;
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    opacity: 0;
    background: transparent;
    clip: rect(0 0 0 0);
    overflow: hidden;
  }
  .method .method__title {
    margin-bottom: 30px;
  }
  .method .method__items {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    opacity: 0;
    background: transparent;
    clip: rect(0 0 0 0);
    overflow: hidden;
  }
  .method .method__item-image {
    height: 117px;
  }
  .method .method__item {
    position: relative;
    left: -30px;
    transform: scale(0.75);
    transition: all 0.3s ease;
  }
  .method .method__item--1 .method__item-img {
    top: 50%;
    left: 50%;
    width: 111px;
    height: auto;
  }
  .method .method__item--2 .method__item-img {
    top: 50%;
    left: 50%;
    width: 110px;
    height: auto;
  }
  .method .method__item--3 .method__item-img {
    top: 50%;
    left: 50%;
    width: 88px;
    height: auto;
  }
  .method .method__item--4 .method__item-img {
    top: 50%;
    left: 50%;
    width: 114px;
    height: auto;
  }
  .method .method__item--5 .method__item-img {
    top: 50%;
    left: 50%;
    width: 108px;
    height: auto;
  }
  .method .method__item--6 .method__item-img {
    top: 50%;
    left: 50%;
    width: 121px;
    height: auto;
  }
  .method .slick-current.method__item {
    transform: scale(1);
    left: 0px;
  }
  .method .method__item-image {
    height: 117px;
  }
  .method .method__item-info {
    padding: 20px;
  }
  .method .method__item-title {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .method .method__item-description {
    font-size: 13px;
    line-height: 23px;
  }
}
@media (max-width: 425px) {
  .method .method__item {
    left: -15px;
  }
}
@media (max-width: 375px) {
  .method .method__item {
    left: -10px;
  }
}

.advantages {
  padding: 71px 0 73px;
}
@media (max-width: 1024px) {
  .advantages {
    padding: 71px 0 43px;
  }
}
@media (max-width: 620px) {
  .advantages {
    padding: 71px 0 73px;
  }
}
@media (max-width: 576px) {
  .advantages {
    padding: 44px 0 63px;
  }
}
.advantages__items {
  display: flex;
  flex-direction: row;
  margin: 0 -30px;
}
.advantages__item {
  flex: 0 1 calc(33.333% - 60px);
  padding: 41px 40px 40px 34px;
  margin: 0 30px;
  background: #ffffff;
}
.advantages__item--1 .advantages__item-img {
  width: 35px;
  height: 45px;
}
.advantages__item--2 .advantages__item-img {
  width: 38px;
  height: 40px;
}
.advantages__item--3 .advantages__item-img {
  width: 39px;
  height: 46px;
}
.advantages__item-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 71px;
  background: #eaebef;
  border-radius: 21px;
  margin-bottom: 15px;
}
.advantages__item-title {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #333333;
  margin-bottom: 11px;
}
.advantages__item-description {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #333333;
}
@media (max-width: 1024px) {
  .advantages .advantages__items {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .advantages .advantages__item {
    flex: 0 1 calc(50% - 60px);
    margin-bottom: 30px;
  }
}
@media (max-width: 620px) {
  .advantages .advantages__items {
    margin: 0;
  }
  .advantages .advantages__item {
    flex: 0 1 100%;
    margin: 0 0 30px 0;
  }
  .advantages .advantages__item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 576px) {
  .advantages .advantages__item {
    padding: 30px;
    margin: 0 0 10px 0;
  }
  .advantages .advantages__item-title {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .advantages .advantages__item-title:last-child {
    margin-bottom: 0;
  }
  .advantages .advantages__item-description {
    font-size: 13px;
    line-height: 22px;
  }
}

.requisites {
  padding: 61px 0 61px;
  background-color: #fff;
}
@media (max-width: 576px) {
  .requisites {
    padding: 38px 0 38px;
  }
}
.requisites__title {
  margin-bottom: 49px;
}
.requisites__btn-open {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #0057ff;
  border: none;
  background-color: transparent;
  margin-bottom: 35px;
}
.requisites__wrapper {
  position: relative;
  z-index: -1;
  color: transparent;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
}
.requisites__wrapper._open {
  z-index: 1;
  color: #333333;
  opacity: 1;
}
.requisites__list {
  margin-bottom: 60px;
}
.requisites__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: inherit;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}
.requisites__item-left {
  flex: 0 1 50%;
  padding-right: 20px;
}
.requisites__item-right {
  flex: 0 1 50%;
}
.requisites__link-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.requisites__link-img {
  display: block;
  width: 24px;
  height: 32px;
  margin-right: 15px;
}
.requisites__link {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #0057ff;
}
@media (max-width: 576px) {
  .requisites .requisites__title {
    margin-bottom: 38px;
  }
  .requisites .requisites__btn-open {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 30px;
  }
  .requisites .requisites__item {
    flex-direction: column;
    font-size: 13px;
    line-height: 18px;
  }
  .requisites .requisites__item-left {
    flex: 0 1 auto;
    padding-right: 0px;
    margin-bottom: 10px;
  }
  .requisites .requisites__item-right {
    flex: 0 1 auto;
    font-style: italic;
  }
  .requisites .requisites__list {
    margin-bottom: 30px;
  }
  .requisites .requisites__link-img {
    width: 31px;
    height: 41px;
  }
  .requisites .requisites__link {
    font-size: 16px;
    line-height: 22px;
  }
}

.contacts {
  position: relative;
  padding: 70px 0 165px;
}
@media (max-width: 768px) {
  .contacts {
    padding: 50px 0 50px;
  }
}
@media (max-width: 576px) {
  .contacts {
    padding: 40px 0 20px;
  }
}
.contacts__inner {
  position: relative;
  z-index: 1;
  max-width: 997px;
  margin: 0 auto;
  padding: 80px 0 100px;
  background: #ffffff;
  box-shadow: 2px 5px 40px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 5px 5px;
}
.contacts__inner:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #ff8a00;
}
.contacts__title {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  text-align: center;
  margin-bottom: 25px;
}
.contacts__title-top {
  display: block;
  color: #f98700;
}
.contacts__title-bottom {
  display: block;
  color: #333333;
}
.contacts__subtitle {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #333333;
  margin-bottom: 55px;
}
.contacts__items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
}
.contacts__item {
  flex: 0 1 33.333%;
  text-align: center;
}
.contacts__item-title {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #333333;
  margin-bottom: 10px;
}
.contacts__item-link {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #f98700;
}
.contacts__bg-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: #ffffff;
}
.contacts__bg-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  background: #f2f2f2;
}
@media (max-width: 576px) {
  .contacts .contacts__inner {
    padding: 53px 0 32px;
  }
  .contacts .contacts__title {
    max-width: 260px;
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    margin: 0 auto 15px auto;
  }
  .contacts .contacts__subtitle {
    max-width: 245px;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    margin: 0 auto 45px auto;
  }
  .contacts .contacts__items {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .contacts .contacts__item {
    flex: 0 1 50%;
    margin-bottom: 15px;
  }
  .contacts .contacts__item:last-child {
    margin-bottom: 0;
  }
  .contacts .contacts__item-title {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 5px;
  }
  .contacts .contacts__item-link {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
  }
}