.info-block {
  position: relative;
}
.info-block .info-tagline-decor {
  position: absolute;
  top: 50%;
  lefT: 50%;
  transform: translateX(-100px) translateY(-80px);
}
.info-block .info-tagline-decor > svg {
  max-width: 100%;
  height: auto;
}
.info-block .wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.info-block .wrapper > div {
  width: 50%;
}
.info-block .top-section {
  background: var(--blue-to-dark-color);
}
.info-block .top-section .image-left {
  margin-left: calc(-50vw + 50%);
  height: 600px;
  width: calc(50vw - 50% + 620px);
}
.info-block .top-section .image-left > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info-block .top-section .meta-right {
  position: relative;
  color: #FFF;
}
.info-block .top-section .meta-right .arrow-decor {
  position: absolute;
  top: 5px;
  right: -180px;
  z-index: 0;
}
.info-block .top-section .meta-right .metadata-container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-left: 115px;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.info-block .top-section .meta-right .metadata-container h2 {
  font-size: clamp(1.5rem, calc(0.87rem + 3.17vw), 3.13rem);
  margin-bottom: 10px;
}
.info-block .top-section .meta-right .metadata-container .description {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
}
.info-block .top-section .meta-right .metadata-container .lists-tags {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}
.info-block .top-section .meta-right .metadata-container .lists-tags > span {
  width: 50%;
}
.info-block .bottom-section {
  border-bottom: 1px solid var(--main-color);
  background: var(--form-color);
}
.info-block .bottom-section .image-right {
  margin-right: calc(-50vw + 50%);
  height: 600px;
  width: calc(50vw - 50% + 620px);
}
.info-block .bottom-section .image-right > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info-block .bottom-section .meta-left {
  position: relative;
}
.info-block .bottom-section .meta-left .bike-decor {
  position: absolute;
  bottom: -7px;
  right: 240px;
  z-index: 0;
}
.info-block .bottom-section .meta-left .bike-decor #pointer-icon,
.info-block .bottom-section .meta-left .bike-decor #pointer-center {
  opacity: 0;
}
.info-block .bottom-section .meta-left .metadata-container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-right: 40px;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.info-block .bottom-section .meta-left .metadata-container h2 {
  font-size: clamp(1.5rem, calc(0.87rem + 3.17vw), 3.13rem);
  margin-bottom: 10px;
  max-width: 440px;
}
.info-block .bottom-section .meta-left .metadata-container .description {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 30px;
  max-width: 440px;
}
.info-block .bottom-section .meta-left .metadata-container a {
  color: var(--icon-color);
}
@media (max-width: 1520px) {
  .info-block .top-section .meta-right .arrow-decor {
    display: none;
  }
}
@media (max-width: 1240px) {
  .info-block .top-section .meta-right .metadata-container {
    padding-left: 40px;
  }
  .info-block .top-section .wrapper,
  .info-block .bottom-section .wrapper {
    padding: 0;
  }
  .info-block .top-section .image-left,
  .info-block .bottom-section .image-right {
    width: 50%;
  }
  .info-block .info-tagline-decor {
    max-width: 200px;
  }
}
@media (max-width: 900px) {
  .info-block .info-tagline-decor {
    display: none;
  }
  .info-block .top-section .wrapper,
  .info-block .bottom-section .wrapper {
    flex-direction: column;
  }
  .info-block .top-section .image-left {
    width: 100%;
    margin-left: 0;
    height: 300px;
  }
  .info-block .bottom-section .image-right {
    margin-right: 0;
    width: 100%;
    height: 300px;
  }
  .info-block .top-section .meta-right,
  .info-block .bottom-section .meta-left {
    width: 100%;
    padding: 80px 20px;
  }
  .metadata-container {
    padding: 0!important;
  }
}
@media (max-width: 500px) {
  .info-block .top-section .meta-right .metadata-container .lists-tags > span {
    width: 100%;
  }
  .info-block .bottom-section .meta-left .bike-decor {
    display: none;
  }
}
