.project-offers {
  max-width: 100%;
  display: flex;
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 30px;
}
.project-offers::-webkit-scrollbar {
  width: 5px;
  height: 7px;
}
.project-offers::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.project-offers::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
  cursor: poiner;
}
.project-offers .offer {
  position: relative;
  max-width: 325px;
  min-width: 255px;
  margin-right: 50px;
}
.project-offers .offer .top {
  display: flex;
  border-bottom: 1px solid var(--color-gray-border);
  padding-bottom: 20px;
  margin-bottom: 20px;
  padding-right: 45px;
}
.project-offers .offer .top.without-bottom {
  border-bottom: none;
}
.project-offers .offer .top .logo {
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 21px;
  background: var(--color-yellow);
  font-size: 22px;
  font-weight: 500;
  line-height: 42px;
  text-align: center;
}
.project-offers .offer .top .text {
  margin-left: 17px;
}
.project-offers .offer .top .text h4 {
  font-size: 14px;
  margin: 0;
}
.project-offers .offer .top .text span {
  font-size: 12px;
  color: var(--color-gray-text);
}
.project-offers .offer .top .arrow {
  position: absolute;
  width: 12%;
  height: 20px;
  top: 0;
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='42' height='8' viewBox='0 0 42 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M41.3536 4.35356C41.5488 4.15829 41.5488 3.84171 41.3536 3.64645L38.1716 0.464469C37.9763 0.269207 37.6597 0.269207 37.4645 0.464469C37.2692 0.659732 37.2692 0.976314 37.4645 1.17158L40.2929 4L37.4645 6.82843C37.2692 7.02369 37.2692 7.34027 37.4645 7.53554C37.6597 7.7308 37.9763 7.7308 38.1716 7.53554L41.3536 4.35356ZM-4.37114e-08 4.5L41 4.5L41 3.5L4.37114e-08 3.5L-4.37114e-08 4.5Z' fill='black'/%3E%3C/svg%3E%0A");
  background-position: center right;
  background-repeat: no-repeat;
}
.project-offers .offer .bottom p {
  margin: 0;
}
@media screen and (max-width: 768px) {
.project-offers {
    max-width: 100%;
    width: 100%;
    padding-left: 30px;
}
.project-offers::-webkit-scrollbar {
    height: 0;
}
}
@media screen and (max-width: 550px) {
.project-offers {
    padding: 0 15px;
}
.project-offers::-webkit-scrollbar {
    height: 0;
}
.project-offers .offer {
    padding-right: 15px;
    margin-right: 35px;
    min-width: 270px;
}
.project-offers .offer .top .arrow {
    right: 15px;
}
}

.project-preview {
  margin-bottom: 50px;
}
.project-preview__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.project-preview__head .title {
  display: flex;
  align-items: center;
}
.project-preview__head .title .map-image {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: var(--color-gray-border);
  margin-right: 24px;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.project-preview__head .title .map-image:hover {
  transform: scale(1.1);
}
.project-preview__head .title .map-image:hover img {
  transform: scale(1.5);
}
.project-preview__head .title .map-image img {
  width: 100%;
  transition: 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.project-preview__head .title .text h2 {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
}
.project-preview__head .title .text a {
  font-weight: 500;
}
.project-preview__footer {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.project-preview__footer .project-offers {
  max-width: calc(100% - 220px);
}
.project-preview__footer .note {
  display: flex;
  align-items: center;
  max-width: 500px;
}
.project-preview__footer .note p {
  margin: 0;
}
.project-preview__footer .prices .min-price {
  position: relative;
  display: block;
  font-size: 22px;
  font-weight: 500;
  padding-top: 17px;
  margin-bottom: 20px;
}
.project-preview__footer .prices .min-price::before {
  content: 'від';
  position: absolute;
  font-size: 14px;
  line-height: 100%;
  font-weight: 400;
  top: 0;
}
.project-preview__footer .prices .not-available {
  display: none;
  font-size: 22px;
  font-weight: 500;
}
.project-preview__footer .prices .button {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
.project-preview__head .title .map-image {
    width: 50px;
    height: 50px;
}
.project-preview__head .title .text h2 {
    font-size: 22px;
}
.project-preview__footer {
    flex-direction: column-reverse;
}
.project-preview__footer .project-offers {
    max-width: 100vw;
    width: 100vw;
    margin-left: -30px;
}
.project-preview__footer .project-offers::-webkit-scrollbar {
    height: 0;
}
.project-preview__footer .prices {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.project-preview__footer .prices .min-price {
    margin-bottom: 0;
}
.project-preview__footer .prices .not-available {
    display: flex;
    align-items: center;
}
}
@media screen and (max-width: 550px) {
.project-preview__head .title .map-image {
    width: 38px;
    min-width: 38px;
    height: 38px;
    margin-right: 12px;
}
.project-preview__head .title .text h2 {
    font-size: 16px;
}
.project-preview__head .title .text a {
    font-size: 12px;
}
.project-preview__footer {
    flex-direction: column-reverse;
}
.project-preview__footer .project-offers {
    max-width: calc(100% + 30px);
    width: calc(100% + 30px);
    padding: 0 15px;
    margin-left: -15px;
}
.project-preview__footer .project-offers::-webkit-scrollbar {
    height: 0;
}
.project-preview__footer .project-offers .offer {
    padding-right: 15px;
    margin-right: 35px;
    min-width: 270px;
}
.project-preview__footer .project-offers .offer .top .arrow {
    right: 15px;
}
.project-preview__footer .prices {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.project-preview__footer .prices .min-price {
    margin-bottom: 0;
    font-size: 16px;
}
.project-preview__footer .prices .not-available {
    font-size: 16px;
}
.project-preview .base-button {
    padding: 0 15px;
    min-height: 40px;
}
}
@media screen and (max-width: 380px) {
.project-preview .base-button {
    padding: 0 8px;
}
}

.news-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px 30px;
}
.news-items__item .image {
  position: relative;
  min-height: 150px;
  margin-bottom: 27px;
}
.news-items__item .image img {
  width: 100%;
}
.news-items__item .image::after {
  content: '';
  position: absolute;
  height: 0px;
  width: 100%;
  background: var(--color-yellow);
  left: 0;
  bottom: 0;
  transition: var(--duration-fast) var(--ease-out-cubic);
}
.news-items__item .text time {
  display: block;
  color: var(--color-gray-text);
  font-size: 12px;
}
.news-items__item .text .project {
  font-size: 12px;
}
.news-items__item .text h2 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  margin: 7px 0;
}
.news-items__item .text p {
  margin: 0;
}
.news-items__item:hover .image::after {
  height: 17px;
  bottom: -8px;
}
@media screen and (max-width: 768px) {
.news-items__item .image::after {
    display: none;
}
}
@media screen and (max-width: 550px) {
.news-items {
    grid-template-columns: 1fr;
}
.news-items .image {
    margin-bottom: 20px;
}
}

.news-subscribe {
  position: relative;
  padding-top: 10px;
}
.news-subscribe__form {
  position: relative;
  display: flex;
}
.news-subscribe__form .email label {
  padding-left: 0;
  font-size: 12px;
  color: var(--color-black);
}
.news-subscribe__form .button {
  margin-left: 10px;
  min-width: 50px;
  min-height: 50px;
}
.news-subscribe__form._hide:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 120%;
  left: 0;
  top: -20%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 2;
}
.news-subscribe .notification {
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 35px;
}
.news-subscribe .subscribe {
  display: block;
  font-size: 12px;
  color: var(--color-gray-text);
  margin-top: 10px;
  margin-bottom: 35px;
}
.news-subscribe .terms label {
  font-size: 12px;
  color: var(--color-gray-text);
  font-weight: normal;
}
.news-subscribe .subscribe-confirm {
  font-size: 12px;
}
.news-subscribe .result p {
  font-size: 12px;
}
.news-subscribe .base-loader {
  display: flex;
  align-items: center;
}
.news-subscribe .base-loader svg {
  margin: auto;
}

.section-mainpage-news .body {
  display: flex;
  justify-content: space-between;
}
.section-mainpage-news__left {
  width: 715px;
}
.section-mainpage-news__left .news-link {
  display: inline-block;
  margin-top: 50px;
}
.section-mainpage-news__right {
  width: calc(100% - 780px);
}
.section-mainpage-news__right .news-items-small {
  display: block;
}
.section-mainpage-news__right .news-items-small:not(:first-child) {
  margin-top: 30px;
}
.section-mainpage-news__right .news-items-small time {
  display: block;
  color: var(--color-gray-text);
  font-size: 12px;
}
.section-mainpage-news__right .news-items-small h2 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  margin: 7px 0;
}
.section-mainpage-news__right .news-link {
  display: none;
}
.section-mainpage-news__right .news-subscribe {
  margin-top: 50px;
}
@media screen and (max-width: 1250px) {
.section-mainpage-news__left {
    width: 60%;
}
.section-mainpage-news__right {
    width: 35%;
}
}
@media screen and (max-width: 992px) {
.section-mainpage-news .body {
    display: block;
}
.section-mainpage-news__left {
    width: 100%;
}
.section-mainpage-news__left .news-link {
    display: none;
}
.section-mainpage-news__right {
    width: 100%;
    max-width: 450px;
    margin-top: 50px;
}
.section-mainpage-news__right .news-link {
    display: inline-block;
    margin-top: 40px;
}
.section-mainpage-news__right .news-subscribe {
    margin-top: 70px;
}
}
@media screen and (max-width: 600px) {
.section-mainpage-news__left .news-items {
    grid-template-columns: 1fr;
}
.section-mainpage-news__left .news-items__item:last-child {
    display: none;
}
}

.buttons[data-v-a2dc666c] {
  display: flex;
  gap: 2px;
}

