body {
  background-image: url("../images/main_search.webp") !important;
}

.header {
  margin-bottom: 40px;
}

.content_block {
  gap: 32px;
}

.content_inner {
  width: 1179px;
}

.footer {
  margin-top: 40px;
}

.profile_card {
  display: flex;
  gap: 40px;
  padding: 40px;
  border: 1px solid var(--transparent-orange);
  border-radius: 6px;
}

.profile_card-video {
  position: relative;
  width: 572px;
  height: 398px;
  overflow: hidden;
}

.profile_card-video .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background: #190B28;
  opacity: 0.60;
}

.profile_card-video:hover .bg {
  opacity: 0.50;
}

.profile_card-video_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  z-index: 1;
}

.content_block-video-play.profile_card-video_play {
  position: absolute;
  inset: 0;
  margin: auto;

  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 3;
  /* выше оверлея */
}

.profile_card-video_label {
  color: var(--white);
}

.profile_card-content {
  width: 488px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}

.profile_card-content_text {
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.profile_card-content_product {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-content_price del {
  display: table;
  font-size: 14px;
}

.card-content_block-buttons {
  display: flex;
  gap: 24px;
}

.card-content_button {
  display: inline-flex;
  border: 2px solid var(--transparent-orange);
  border-radius: 8px;
  padding: 6px 16px;
  box-shadow: 0 0 4px 0 var(--light-orange);
  background: var(--violet);
  color: var(--transparent-orange);
  text-decoration: none;
}

.card-content_button:hover {
  background: var(--transparent-orange);
  color: #fff;
  opacity: 1;
}

@media screen and (max-width:1280px) {
  section.header {
    margin-bottom: 0px;
  }

  .profile_card {
    padding: 24px;
    gap: 12px;
  }

  .card-content_block-buttons {
    gap: 12px;
  }

  .card-content_button {
    font-weight: 200;
    font-size: 12px;
    line-height: 140%;
  }

  .profile_card-video {
    width: 300px;
    height: 207px;
  }

  .profile_card-content_title {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
  }

  .profile_card-content_p {
    font-weight: 200;
    font-size: 12px;
    line-height: 140%;
  }


  .profile_card-content {
    width: 300px;
    gap: 16px;
  }

  .card-content_price {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
  }
}

@media screen and (max-width:720px) {
  .profile_card {
    flex-direction: column;
    padding: 16px;
    gap: 8px;
  }

  section.header {
    margin-bottom: 16px;
  }

  footer.footer {
    margin-top: 16px;
  }

  .profile_card-content_text,
  .profile_card-content {
    gap: 8px;
  }

  .content_inner {
    gap: 16px;
  }

  .card-content_price {
    font-size: 12px;
  }
}