@import url("https://fonts.googleapis.com/css2?family=Arsenal&display=swap");

/* style css about company */

.block-style {
  padding-top: 25px;
  padding-bottom: 35px;
  border-bottom: 1px solid #c4c4c4;
}

/* about */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
  justify-content: space-between;
}

.about-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  text-transform: uppercase;
  color: #151515;
  padding-bottom: 25px;
}

.about-item {
  text-align: center;
}

.about-item_desc {
  text-align: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 161.3%;
  text-align: center;
  color: #1d1d1d;
  padding: 20px 60px 0px 60px;
}

/* page stocks start */
.stock-carousel-wrapper {
  padding-top: 15px;
}
.stock-carousel-wrapper img {
  max-width: 100%;
}
.stocks-items {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  /* height: 46vh; */
  grid-gap: 20px;
  padding: 30px 0 15px 0;
}
.stock-item {
  display: flex;
  /* padding: 10px; */
  /* height: 19vh; */
  flex-direction: column;
  position: relative;
}
.stock-item_el {
  transition: 0.5s;
}
.stock-item_el.front {
  position: relative;
  height: 100%;
  top: 0;
  z-index: 1;
  transform: translateY(0);
  background-color: #ffffff;
  padding: 10px;
  -webkit-box-shadow: 0px -6px 13px -6px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px -6px 13px -6px rgba(34, 60, 80, 0.2);
  box-shadow: 0px -6px 13px -6px rgba(34, 60, 80, 0.2);
}

.stock-item:hover .stock-item_el.front {
  transform: translateY(-90px);
}

.stock-item_el.back {
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  padding: 10px;
  -webkit-box-shadow: 0px 6px 13px -6px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 6px 13px -6px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 6px 13px -6px rgba(34, 60, 80, 0.2);
}

/* .stock-item_el-back .stock-content{
    display: flex;
    flex-direction: column;
} */

.stock-item_img {
  width: 100%;
  margin-bottom: 15px;
}
.stock-item_title,
.stock-item_period {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
}
.stock-item_period {
  font-weight: 500;
}

.stock-detail {
  color: #931515;
  border: 1px solid #931515;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px;
  font-size: 14px;
  text-align: center;
  display: block;
  margin-top: 10px;
  text-decoration: none;
  position: relative;
  transition: 0.5s;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.stock-detail::before,
.stock-detail::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #931515;
  top: 0;
  left: -100%;
  opacity: 0.5;
  transition: 0.3s;
  z-index: -1;
}

.stock-detail::after {
  opacity: 1;
  transition-delay: 0.1s;
}

.stock-detail:hover {
  color: #ffffff;
}

.stock-detail:hover::before,
.stock-detail:hover::after {
  left: 0;
}

.slick-prev,
.slick-next {
  transition-duration: 0.3s;
  opacity: 0.7;
  width: 35px !important;
  height: 35px !important;
  border-radius: 50% !important;
  background: #959698 !important;
}

.slick-prev:before,
.slick-next:before {
  font-weight: 500 !important;
  text-align: center !important;
  opacity: 1 !important;
  line-height: 10px !important;
}

.slick-prev:hover,
.slick-next:hover {
  background: #111111 !important;
}

.slick-next {
  right: 16px !important;
  z-index: 5 !important;
}

.slick-next:before {
  content: url(/img/icons/right-arrow.svg) !important;
}

.slick-prev {
  left: 16px !important;
  z-index: 5 !important;
}

.slick-prev:before {
  content: url(/img/icons/left-arrow.svg) !important;
}
/* page stocks end */

/* about */

/* catalogue */

.about-catalogue_desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
  padding-bottom: 30px;
}

.catalogue-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-column-gap: 60px;
}

.catalogue-item {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  cursor: pointer;
  text-decoration: none;
}

.catalogue-item_link {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
  border-bottom: 1px solid #ffffff;
}

.catalogue-item:hover .about-box {
  background: #931515;
  border-radius: 50%;
}

.catalogue-item:hover .about-box_icon {
  filter: brightness(0) invert(1);
}

.catalogue-item:hover .catalogue-item_link {
  font-weight: 500;
  color: #931515;
  border-bottom: 1px solid #931515;
}

.about-box {
  width: 36px;
  height: 36px;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-box_icon {
  display: block;
  width: 22px;
  height: 22px;
}

/* catalogue */

/* about about-advantages */

.circle-icon {
  width: 55px;
  height: 55px;
  background: #931515;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 20px;
}

.advantages-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
}

.advantages-item {
  display: flex;
  align-items: center;
}

.advantages-item_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
  padding-right: 80px;
  text-align: justify;
  line-height: 161.3%;
}

.circle-icon_img {
  filter: brightness(0) invert(1);
  width: 35px;
  height: 35px;
}

/* about about-advantages */

/* about-description */

.about-description {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 70px;
}

.desc-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 161.3%;
  color: #000000;
  text-align: justify;
}

.about-desc {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.about-desc,
.about-picture {
  padding-right: 50px;
}

.skill {
  display: flex;
  flex-direction: row;
}

.skill .circle-icon {
  margin-right: 30px;
}

.skill .advantages-item_text {
  max-width: 850px;
  line-height: 161.3%;
  text-align: justify;
}

/* about-description */

/* about-skills */

.skill:nth-child(2) {
  padding-top: 20px;
}

.skill-text {
  display: flex;
  flex-direction: column;
}

/* about-skills */

/* about-inf */

.about-inf {
  font-weight: 400;
  font-size: 14px;
  line-height: 161.3%;
  text-align: center;
  color: #000000;
  display: flex;
}

.inf-block {
  padding-left: 50px;
  padding-right: 50px;
}

.inf-block.inf-block_safe {
  font-weight: 400;
  font-size: 14px;
  line-height: 161.3%;
  text-align: center;
  color: #000000;
  width: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inf-number {
  display: flex;
  justify-content: center;
}

.inf-desc {
  width: 400px;
  padding-top: 20px;
}

.number-icon {
  width: 125px;
  height: 52px;
  background: #931515;
  border-radius: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #ffffff;
}

.number-icon .circle-icon_img {
  width: 25px;
  height: 25px;
  margin-right: 8px;
}

.inf-block:first-child {
  border-right: 1px solid #c4c4c4;
}

.inf-block.inf-block_safe {
  display: flex;
  flex-direction: column;
  width: 600px;
}

.inf-number .inf-number_arrow {
  margin-right: 30px;
  margin-left: 15px;
}

.inf-block.inf-block_safe .inf-desc {
  width: 480px;
}

.inf-desc a {
  color: #931515;
}

/* about-inf */

/* страница "как заказать?" */

.title-step {
  display: flex;
  align-items: center;
  padding-bottom: 25px;
}

.step-icon {
  min-width: 106px;
  height: 39px;
  background: #931515;
  border-radius: 89px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 25px;
}

.step-icon p {
  font-weight: 700;
  font-size: 22px;
  line-height: 29px;
  color: #ffffff;
}

.title-step_subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #931515;
}

a.title-step_subtitle:hover {
  border-bottom: 1px solid #931515;
}

.options-step {
  padding-left: 35px;
  padding-right: 35px;
}

.step-groups_desc {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.step-item {
  display: flex;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 15px;
}

.step-item_circle {
  width: 10px;
  height: 10px;
  background: #931515;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-item_subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #931515;
  margin-left: 15px;
}

.step-img {
  width: 100%;
}

.double-step {
  display: flex;
  justify-content: space-between;
}

.double-col_equal {
  width: 520px;
}

.step-item_desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  margin-left: 15px;
}

.options-step_desc {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #000000;
}

.options-step.options-step_form {
  display: flex;
}

.step-box_img {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 40px;
}

.step-box_arrow {
  position: absolute;
  bottom: -50px;
  right: -100px;
}

.double-col .step-box_arrow {
  bottom: 10%;
}

.step-box_arrow.step-box_arrow-rotate {
  transform: rotate(-25deg);
  bottom: 35%;
}

/* страница "как заказать?" */

/* страница "Акции" */

.stocks {
  padding-top: 25px;
  min-height: calc(100vh - 242px);
}
.stocks-wrap {
  min-height: calc(100vh - 242px);
}
.stocks-img {
  width: 100%;
  height: auto;
}

.stocks-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
  padding: 50px 0;
  text-align: justify;
}

.stocks-block-img {
  display: flex;
  justify-content: space-around;
}

.stock-link {
  text-decoration: none;
  border-bottom: 1px solid #ffffff;
  color: #931515;
  text-transform: uppercase;
}

.stock-link:hover {
  border-bottom: 1px solid #931515;
}

/* страница "Акции" */
