.project-top-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  margin-top: 40px;
}
.project-top-header .about {
  position: relative;
  padding-left: 75px;
}
.project-top-header .about h1 {
  margin-bottom: 4px;
  font-size: 26px;
  margin-top: 0;
  line-height: 1.2;
}
.project-top-header .about-map {
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  overflow: hidden;
  left: 0;
  transition: 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.project-top-header .about-map:hover {
  transform: scale(1.1);
}
.project-top-header .about-map:hover img {
  transform: scale(1.5);
}
.project-top-header .about-map img {
  width: 100%;
  transition: 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.project-top-header .about-link {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.project-top-header .about-link svg {
  width: 12px;
  height: 15px;
  margin-left: 4px;
  margin-top: -3px;
}
.project-top-header .designation {
  display: flex;
  align-items: center;
}
.project-top-header .designation .marks {
  display: flex;
  flex-wrap: wrap;
}
.project-top-header .designation .marks__item {
  display: block;
  position: relative;
}
.project-top-header .designation .marks__item:not(:last-child) {
  margin-right: 20px;
}
.project-top-header .designation .marks__item .color-square {
  display: inline-block;
  margin-right: 8px;
  width: 10px;
  height: 10px;
}
.project-top-header .designation .navigation {
  display: none;
}
.project-top-header .designation .navigation .active {
  border: 1px solid var(--color-yellow);
}
.project-top-header .designation .navigation__item {
  padding: 10px;
}
.project-top-header .designation .navigation__item:not(:last-child) {
  margin-right: 10px;
}
.project-top-header .price-and-feedback {
  display: flex;
  align-items: center;
}
.project-top-header .price-and-feedback .price {
  margin-right: 40px;
}
.project-top-header .price-and-feedback .plan {
  font-size: 21px;
  margin-right: 20px;
}
@media screen and (max-width: 1200px) {
.project-top-header .price-and-feedback .price {
    margin-right: 30px;
    font-size: 20px;
}
}
@media screen and (max-width: 992px) {
.project-top-header._designation {
    flex-direction: column;
    align-items: flex-start;
}
.project-top-header._designation .designation {
    margin-top: 30px;
}
.project-top-header .price-and-feedback {
    padding-top: 0;
}
.project-top-header .price-and-feedback .plan {
    margin-right: 0;
}
.project-top-header ._desctop-only {
    display: none;
}
}
@media screen and (max-width: 768px) {
.project-top-header {
    padding-left: 30px;
    padding-right: 30px;
}
.project-top-header .about {
    padding-left: 62px;
}
.project-top-header .about-map {
    width: 50px;
    height: 50px;
    border-radius: 25px;
}
}
@media screen and (max-width: 600px) {
.project-top-header {
    padding-left: 15px;
    padding-right: 15px;
}
}
@media screen and (max-width: 550px) {
.project-top-header .about {
    padding-left: 50px;
}
.project-top-header .about-map {
    width: 40px;
    height: 40px;
    border-radius: 20px;
}
.project-top-header .about-link span {
    font-size: 12px;
}
}
@media screen and (max-width: 375px) {
.project-top-header .about {
    padding-left: 0px;
}
.project-top-header .about-map {
    display: none;
}
}

.project-top-footer {
  width: 100%;
  border-top: solid 1px var(--color-gray-border);
  padding: 40px 0;
}
.project-top-footer .active::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  top: -4px;
  background-color: var(--color-yellow);
}
.project-top-footer a {
  position: relative;
  font-weight: 500;
}
.project-top-footer__price {
  display: none;
}
.project-top-footer__nav {
  display: flex;
  justify-content: space-between;
}
.project-top-footer__nav .left-nav {
  align-items: center;
}
.project-top-footer__nav .left-nav a:not(:last-child) {
  margin-right: 30px;
}
.project-top-footer__nav .right-nav a:not(:last-child) {
  margin-right: 30px;
}
@media screen and (max-width: 992px) {
.project-top-footer {
    border-top: none;
}
.project-top-footer__price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.project-top-footer__price h2 {
    position: relative;
    margin: 0;
    font-size: 20px;
    padding-top: 15px;
}
.project-top-footer__price h2:before {
    content: 'від';
    position: absolute;
    top: -5px;
    left: 0;
    font-size: 14px;
}
.project-top-footer__nav .left-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px 50px;
    align-items: flex-start;
}
.project-top-footer__nav .left-nav a:not(:last-child) {
    margin-right: 0;
}
.project-top-footer__nav .right-nav {
    display: none;
}
}
@media screen and (max-width: 768px) {
.project-top-footer {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
}
}
@media screen and (max-width: 600px) {
.project-top-footer {
    padding-left: 15px;
    padding-right: 15px;
}
.project-top-footer__price h2 {
    font-size: 16px;
}
.project-top-footer__price h2:before {
    top: -2px;
    font-size: 12px;
}
.project-top-footer__nav .left-nav {
    grid-gap: 20px 30px;
}
}

.project-videos__player iframe {
  width: 100%;
  height: 650px;
}
.project-videos__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
}
.project-videos__list .video-preview {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.project-videos__list .video-preview__image {
  position: relative;
}
.project-videos__list .video-preview__image img {
  width: 100%;
}
.project-videos__list .video-preview__duration {
  position: absolute;
  display: inline-block;
  right: 13px;
  bottom: 13px;
  padding: 3px 7px;
  border-radius: 5px;
  background: black;
  color: white;
  font-weight: 500;
}
.project-videos__list .video-preview__title {
  display: block;
  font-weight: 500;
  margin-bottom: 3px;
}
.project-videos__list .video-preview time {
  font-size: 12px;
}
.project-videos__top.container._shadow {
  padding-top: 0;
  padding-bottom: 0;
  display: flow-root;
}
.project-videos .project-top-footer {
  border-top: none;
}
@media screen and (max-width: 1200px) {
.project-videos__player iframe {
    height: 55vw;
}
}
@media screen and (max-width: 900px) {
.project-videos__list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}
}
@media screen and (max-width: 768px) {
.project-videos__top.container._shadow {
    padding-left: 0;
    padding-right: 0;
}
.project-videos__player iframe {
    height: 65vw;
}
}
@media screen and (max-width: 500px) {
.project-videos__list {
    grid-gap: 30px 20px;
}
}
@media screen and (max-width: 400px) {
.project-videos__list {
    grid-gap: 30px 10px;
}
}

