.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-middle-nav {
  width: 100px;
  margin-right: 40px;
}
.project-top-middle-nav.--only-mobile {
  display: none;
}
.project-top-middle-nav__house {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}
.project-top-middle-nav__house .swiper {
  display: flex;
}
.project-top-middle-nav__house .house-title {
  width: 100%;
  margin-bottom: 15px;
  font-weight: 500;
}
.project-top-middle-nav__house .house-name {
  display: inline-block;
  font-weight: 500;
  min-width: 35px;
}
.project-top-middle-nav__house svg {
  width: 12px;
  height: 12px;
}
.project-top-middle-nav__storey {
  text-align: center;
}
.project-top-middle-nav__storey .stage {
  display: block;
  font-weight: 500;
  margin-bottom: 18px;
}
.project-top-middle-nav__storey a {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0);
  transition: 0.2s;
}
.project-top-middle-nav__storey a:not(:last-child) {
  margin-bottom: 11px;
}
.project-top-middle-nav__storey a.active,
.project-top-middle-nav__storey a:hover {
  border: 1px solid var(--color-yellow);
}
.project-top-middle-nav__storey a._no-link {
  cursor: default;
}
@media screen and (max-width: 992px) {
.project-top-middle-nav {
    width: auto;
    margin-right: 0;
    margin-bottom: 20px;
}
.project-top-middle-nav.--only-mobile {
    display: block;
}
.project-top-middle-nav__house {
    display: block;
    text-align: left;
    margin-bottom: 25px;
}
.project-top-middle-nav__house .swiper {
    text-align: center;
    margin-top: 15px;
}
.project-top-middle-nav__storey {
    text-align: left;
}
.project-top-middle-nav__storey .links {
    display: flex;
    flex-wrap: wrap;
}
.project-top-middle-nav__storey .links a {
    margin-left: 0;
    margin-right: 15px;
    margin-bottom: 15px;
    border: 1px solid var(--color-yellow);
}
.project-top-middle-nav__storey .links a.active {
    background: var(--color-yellow);
}
}
@media screen and (max-width: 768px) {
.project-top-middle-nav {
    padding-left: 30px;
    padding-right: 30px;
}
}
@media screen and (max-width: 600px) {
.project-top-middle-nav {
    padding-left: 15px;
    padding-right: 15px;
}
}

.project-top-map {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  margin-right: 40px;
}
.project-top-map__wrap {
  position: relative;
}
.project-top-map img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  background-size: contain;
  background-position: center;
}
.project-top-map .svg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.project-top-map .svg svg {
  max-width: 100%;
  max-height: 100%;
}
.project-top-map .svg svg a {
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
}
.project-top-map .svg svg a:hover {
  opacity: 0.8;
}
.project-top-map .hint {
  position: absolute;
  bottom: 5px;
  right: 5px;
  padding: 2px 10px;
  background: white;
}
.project-top-map .hint span {
  font-size: 12px;
}
.project-top-map .info {
  position: absolute;
}
.project-top-map .info .text {
  position: absolute;
  bottom: 0;
  width: 140px;
  padding: 7px 10px;
  border-radius: 5px;
  background: white;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.03);
}
.project-top-map .info span {
  display: block;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
.project-top-map {
    margin-bottom: 40px;
}
.project-top-map .hint {
    position: relative;
    bottom: auto;
    right: auto;
    padding: 5px 15px;
    padding-bottom: 7px;
    background: var(--color-gray);
}
}

.project-top-info {
  max-width: 295px;
  min-width: 295px;
}
.project-top-info__logo {
  position: relative;
  width: 180px;
  margin-top: 20px;
}
.project-top-info__logo img {
  width: 100%;
}
.project-top-info__main {
  margin-top: 20px;
}
.project-top-info__main p {
  margin: 7px 0;
}
.project-top-info__main span.dt {
  display: inline-block;
  min-width: 170px;
}
.project-top-info__main span.dt._small {
  min-width: 110px;
}
.project-top-info__main span.dd {
  padding-left: 15px;
}
.project-top-info__main .base-button {
  width: 180px;
  padding: 0;
}
.project-top-info__main .base-button:first-of-type {
  margin-bottom: 20px;
}
.project-top-info__top {
  margin-bottom: 30px;
}
.project-top-info__body {
  margin-bottom: 30px;
}
.project-top-info__sale {
  margin: 30px 0;
}
.project-top-info__buttons {
  margin-top: 40px;
}
.project-top-info__buttons .generate-pdf {
  display: inline-block;
  position: relative;
}
.project-top-info__buttons .generate-pdf .base-button {
  margin-bottom: 0;
}
.project-top-info__buttons .generate-pdf .base-loader {
  display: flex;
  align-items: center;
}
.project-top-info__buttons .generate-pdf .base-loader svg {
  width: 30px;
  height: 30px;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
.project-top-info {
    padding-left: 30px;
    padding-right: 30px;
}
}
@media screen and (max-width: 600px) {
.project-top-info {
    padding-left: 15px;
    padding-right: 15px;
}
}

.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-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-top .container {
  padding-top: 0;
  padding-bottom: 0;
}
.project-top .body {
  display: flex;
  flex-wrap: wrap;
}
.project-top__middle {
  min-height: 50vh;
  width: 100%;
  display: flex;
  margin-bottom: 65px;
}
.project-top__mainimage {
  width: 100%;
}
.project-top__offers {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  max-width: 100%;
}
.project-top__offers .project-offers {
  max-width: 100% !important;
}
@media screen and (max-width: 992px) {
.project-top .body {
    display: flex;
    flex-direction: column;
}
.project-top__middle {
    display: block;
    margin-bottom: 30px;
}
.project-top__middle .project-top-main-nav {
    display: none;
}
.project-top-footer {
    grid-row-start: 7;
}
}
@media screen and (max-width: 768px) {
.project-top .container {
    padding-left: 0;
    padding-right: 0;
}
}

.section-video .video-wrap {
  overflow: hidden;
  position: relative;
}
.section-video .video-wrap:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 250px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0) 100%);
  bottom: 0;
  left: 0;
}
.section-video .video-wrap video {
  display: block;
}
.section-video .video-wrap .image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.section-video .video-wrap .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-video .video-wrap ._disable {
  opacity: 0;
  transition: 0.8s;
}
.section-video .video-wrap .details {
  position: absolute;
  left: 38px;
  bottom: 38px;
  z-index: 2;
}
.section-video .video-wrap .details-play {
  position: relative;
  height: 35px;
  margin-bottom: 27px;
}
.section-video .video-wrap .details-play svg {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  width: 35px;
  height: 35px;
}
.section-video .video-wrap .details-title p {
  color: white;
  font-weight: 500;
  font-size: 16px;
  margin: 0;
}
@media screen and (max-width: 768px) {
.section-video .container {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}
.section-video .video-wrap:after {
    height: 50%;
}
.section-video .video-wrap .details {
    left: 30px;
    bottom: 18px;
}
.section-video .video-wrap .details-play {
    margin-bottom: 18px;
}
}
@media screen and (max-width: 600px) {
.section-video .video-wrap .details {
    left: 15px;
}
}

.section-banner__content {
  position: relative;
}
.section-banner__image {
  position: relative;
}
.section-banner__image:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 250px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0) 100%);
  bottom: 0;
  left: 0;
}
.section-banner__details {
  position: absolute;
  left: 38px;
  bottom: 38px;
  max-width: 100%;
  width: 380px;
}
.section-banner__details h2 {
  color: white;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 23px;
}
@media screen and (max-width: 992px) {
.section-banner__details h2 {
    font-size: 20px;
}
}
@media screen and (max-width: 768px) {
.section-banner .container {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}
.section-banner__content {
    margin-bottom: 50px;
}
.section-banner__content:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 7px;
    bottom: -6px;
    background: var(--color-yellow);
}
.section-banner__image:after {
    height: 60%;
}
.section-banner__details {
    left: 30px;
    bottom: 25px;
    width: 320px;
    max-width: 90%;
}
.section-banner__details h2 {
    font-size: 18px;
    margin-bottom: 0;
}
.section-banner__details .base-button {
    position: absolute;
    bottom: -75px;
    z-index: 2;
}
}
@media screen and (max-width: 600px) {
.section-banner__details {
    left: 15px;
    bottom: 19px;
}
}
@media screen and (max-width: 550px) {
.section-banner .base-button {
    bottom: -63px;
}
}

.section-youtube {
  position: relative;
  z-index: 3;
}
.section-youtube .body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: white;
}
.section-youtube .video {
  width: 100%;
  height: 100%;
  background: grey;
}
.section-youtube .video img {
  display: block;
  width: 100%;
}
.section-youtube .video iframe {
  width: 100%;
  height: 100%;
}
.section-youtube__main {
  position: relative;
  height: 400px;
  width: 715px;
}
.section-youtube__list {
  width: 370px;
}
.section-youtube__list .item {
  display: flex;
  height: 85px;
  cursor: pointer;
}
.section-youtube__list .item:not(:last-child) {
  margin-bottom: 20px;
}
.section-youtube__list .item .video {
  width: 152px;
  min-width: 152px;
}
.section-youtube__list .item .video img {
  width: 100%;
}
.section-youtube__list .item .description {
  padding-left: 20px;
}
.section-youtube__list .item .description .title {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 4px;
}
.section-youtube__list .item .description .time {
  font-size: 12px;
  color: var(--color-gray-text);
}
.section-youtube__description {
  display: flex;
  justify-content: space-between;
  width: 715px;
  margin-top: 40px;
}
.section-youtube__description .info {
  display: flex;
}
.section-youtube__description .info__logo {
  width: 75px;
}
.section-youtube__description .info__text {
  padding-left: 20px;
}
.section-youtube__description .info__text .name {
  margin: 0;
  font-weight: 500;
}
.section-youtube__description .info__text .subscribers {
  margin: 0;
  color: var(--color-gray-text);
  font-size: 12px;
}
.section-youtube__description .subscribe {
  margin-left: auto;
}
.section-youtube__description .subscribe .button {
  display: inline-block;
  padding: 10px;
  background-color: red;
  text-transform: uppercase;
  color: white;
  font-weight: bold;
  border-radius: 2px;
}
@media screen and (max-width: 1270px) and (min-width: 768px) {
.section-youtube__main {
    width: 100%;
    height: 45vw;
}
.section-youtube__list {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    width: 100%;
}
.section-youtube__list .item {
    display: flex;
    flex-direction: column;
    width: calc(25% - 60px / 4);
    height: auto;
}
.section-youtube__list .item .video {
    width: 100%;
    min-width: auto;
    height: auto;
}
.section-youtube__list .item .description {
    padding-left: 0px;
    margin-top: 10px;
}
.section-youtube__list .item .description .title {
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 4px;
}
.section-youtube__list .item .description .time {
    font-size: 12px;
    color: var(--color-gray-text);
}
.section-youtube__description {
    width: 100%;
}
}
@media screen and (max-width: 768px) {
.section-youtube__main {
    width: 100%;
    height: 45vw;
}
.section-youtube__list {
    margin-top: 20px;
    order: 2;
    width: 100%;
}
.section-youtube__list .item {
    width: 100%;
    max-width: 400px;
}
.section-youtube__description {
    width: 100%;
}
}
@media screen and (max-width: 550px) {
.section-youtube__description {
    align-items: flex-end;
    margin-bottom: 30px;
}
.section-youtube__description .info {
    display: block;
}
.section-youtube__description .info__logo {
    width: 75px;
    margin-bottom: 5px;
}
.section-youtube__description .info__text {
    padding-left: 0;
}
.section-youtube__description .subscribe .button {
    font-size: 11px;
}
}
@media screen and (max-width: 370px) {
.section-youtube__list .item {
    height: auto;
}
.section-youtube__list .item .video {
    width: 120px;
    min-width: 120px;
    height: 75px;
}
.section-youtube__list .item .description {
    margin-top: 3px;
    padding-left: 15px;
}
.section-youtube__list .item .description .title,
  .section-youtube__list .item .description .time {
    font-size: 12px;
    line-height: 1.45;
}
.section-youtube__description {
    display: block;
    margin-bottom: 10px;
}
.section-youtube__description .info {
    margin-bottom: 15px;
}
.section-youtube__description .subscribe {
    width: 150px;
    margin-left: 0;
}
.section-youtube__description .subscribe .button {
    font-size: 12px;
    text-align: center;
}
}

.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;
}
}

.section-news .news-items {
  grid-template-columns: repeat(3, 1fr);
}
.section-news .news-link {
  display: inline-block;
  margin-top: 50px;
}
@media screen and (max-width: 992px) {
.section-news .container {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}
.section-news .news-items {
    overflow-x: scroll;
    overflow-y: hidden;
    grid-template-columns: repeat(3, 325px) 50px;
    padding-left: 40px;
    padding-bottom: 30px;
    -webkit-overflow-scrolling: touch;
}
.section-news .news-items:after {
    content: '';
}
.section-news .news-wrap {
    position: relative;
}
.section-news .news-wrap:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 25px;
    background: white;
    bottom: -5px;
}
.section-news .news-link {
    margin-top: 20px;
    margin-left: 40px;
}
}
@media screen and (max-width: 768px) {
.section-news .news-items {
    padding-left: 30px;
}
.section-news .news-link {
    margin-left: 30px;
}
}
@media screen and (max-width: 600px) {
.section-news .news-items {
    padding-left: 15px;
}
.section-news .news-link {
    margin-top: 5px;
    margin-left: 15px;
}
}
@media screen and (max-width: 420px) {
.section-news .news-items {
    grid-template-columns: repeat(3, 270px) 30px;
    grid-gap: 20px;
}
}

.section-projects__title h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
}
.section-projects__title p {
  margin-top: 5px;
}
.section-projects__items {
  margin-top: 40px;
  display: grid;
  grid-gap: 66px;
  grid-template-columns: repeat(3, 1fr);
}
.section-projects__item-top h3 {
  font-size: 22px;
  margin-bottom: 5px;
}
.section-projects__item-top a {
  font-weight: 500;
}
.section-projects__item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--color-gray-border);
}
.section-projects__item-bottom .price {
  position: relative;
}
.section-projects__item-bottom .price span {
  font-size: 20px;
  font-weight: 500;
}
.section-projects__item-bottom .price .vid {
  display: block;
  position: relative;
  padding-top: 15px;
}
.section-projects__item-bottom .price .vid:before {
  content: 'від';
  position: absolute;
  font-size: 14px;
  font-weight: 400;
  top: -7px;
  left: 0;
}
@media screen and (max-width: 1260px) and (min-width: 992px) {
.section-projects__items {
    grid-gap: 40px;
}
}
@media screen and (max-width: 1200px) and (min-width: 992px) {
.section-projects__item-top h3 {
    font-size: 20px;
}
.section-projects__item-bottom .price span {
    font-size: 18px;
}
.section-projects__item .base-button {
    padding: 0 25px;
}
}
@media screen and (max-width: 992px) {
.section-projects .container {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}
.section-projects__title,
  .section-projects__items {
    padding-left: 40px;
}
.section-projects__items {
    grid-template-columns: repeat(3, 325px) 50px;
    grid-gap: 30px;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-bottom: 30px;
    -webkit-overflow-scrolling: touch;
}
.section-projects .swipe-wrap {
    position: relative;
}
.section-projects .swipe-wrap:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 25px;
    background: white;
    bottom: -5px;
}
}
@media screen and (max-width: 768px) {
.section-projects__title,
  .section-projects__items {
    padding-left: 30px;
}
}
@media screen and (max-width: 600px) {
.section-projects__title,
  .section-projects__items {
    padding-left: 15px;
}
}
@media screen and (max-width: 420px) {
.section-projects__items {
    grid-template-columns: repeat(3, 270px) 30px;
    grid-gap: 20px;
}
.section-projects__item-top img {
    height: 270px;
}
.section-projects__item-top h3 {
    font-size: 19px;
}
.section-projects__item-bottom .price span {
    font-size: 17px;
}
.section-projects__item .base-button {
    padding: 0 25px;
}
}

