@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --font-family: "Raleway", sans-serif;
  --second-family: "Jost", sans-serif; }
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0; }

*, *:before, *:after {
  box-sizing: border-box; }

:focus, :active {
  outline: none; }

a:focus, a:active {
  outline: none; }

nav, footer, header, aside {
  display: block; }

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

input, button, textarea {
  font-family: inherit; }

input::-ms-clear {
  display: none; }

button {
  cursor: pointer; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

a, a:visited {
  text-decoration: none; }

a:hover {
  text-decoration: none; }

ul li {
  list-style: none; }

img {
  vertical-align: top; }

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400; }
/*--------------------*/
html {
  scroll-behavior: smooth; }

body {
  background: #fff;
  color: #151515;
  height: 100%;
  font-size: 16px;
  font-family: var(--font-family); }
  body.hidden {
    overflow: hidden; }

.wrapper {
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column; }

.page {
  flex: 1 0 auto;
  margin-top: 102.12px; }
  @media (max-width: 480px) {
  .page {
    margin-top: 69.64px; } }

._container {
  max-width: 1246px;
  padding: 0 15px;
  margin: 0 auto; }

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  padding: 10px 0;
  background: #f8f8f8; }
  .header__body {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .header__logo {
    flex: 0 0 74px; }
    @media (max-width: 480px) {
  .header__logo {
    flex: 0 0 45px; } }
    .header__logo img {
      width: 100%; }
  .header__content {
    display: flex;
    align-items: center;
    column-gap: 35px; }
    @media (max-width: 480px) {
  .header__content {
    column-gap: 20px; } }
  .header__items {
    display: flex;
    align-items: center;
    column-gap: 20px; }
  @media (max-width: 1200px) {
    .header__desctop {
      display: none; } }
  .header__item {
    font-weight: 300;
    font-size: 14px;
    color: #292929;
    transition: 0.4s; }
    .header__item:hover {
      color: #0673a2; }
  .header__phone {
    display: flex;
    align-items: center;
    column-gap: 6px; }
    .header__phone span {
      font-weight: 400;
      font-size: 16px;
      color: #292929;
      font-family: var(--second-family); }
      @media (max-width: 480px) {
  .header__phone span {
    font-size: 14px; } }
  .header__button {
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.03em;
    color: #fff;
    font-family: var(--second-family);
    padding: 10px 19px;
    background: #0673a2;
    line-height: 1;
    transition: 0.5s; }
    .header__button:hover {
      box-shadow: 0 0 20px #0673a2; }
  .header .burger {
    cursor: pointer; }

.menu {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px;
  background: #f8f8f8;
  width: 310px;
  row-gap: 70px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: 0.5s; }
  @media (max-width: 480px) {
  .menu {
    padding: 30px 40px;
    width: 100%; } }
  .menu.active {
    transform: translateX(0); }
  .menu__close {
    display: flex;
    align-items: center;
    column-gap: 19px;
    cursor: pointer; }
    @media (max-width: 480px) {
  .menu__close {
    column-gap: 10px; } }
    .menu__close span {
      font-weight: 300;
      font-size: 20px;
      line-height: 70%;
      letter-spacing: 0.01em;
      color: #292929; }
      @media (max-width: 480px) {
  .menu__close span {
    font-size: 16px; } }
    @media (max-width: 480px) {
    .menu__close svg {
      transform: scale(0.8); } }
  .menu__items {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: start; }
  .menu__item {
    font-weight: 300;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: #292929;
    transition: 0.4s; }
    @media (max-width: 480px) {
  .menu__item {
    font-size: 16px; } }
    .menu__item:hover {
      color: #0673a2; }
  .menu .header__item {
    display: none; }
    @media (max-width: 1200px) {
  .menu .header__item {
    display: block; } }
  .menu__bottom {
    display: flex;
    flex-direction: column;
    row-gap: 20px; }
  .menu__socials {
    display: flex;
    align-items: center;
    column-gap: 10px; }

.footer {
  padding: 50px 0 30px;
  background: #f8f8f8; }
  @media (max-width: 480px) {
  .footer {
    padding: 30px 0 15px; } }
  .footer__body {
    display: flex;
    align-items: start;
    justify-content: space-between; }
    @media (max-width: 1180px) {
  .footer__body {
    flex-direction: column;
    row-gap: 40px; } }
  .footer__logo {
    display: flex;
    column-gap: 80px; }
    @media (max-width: 480px) {
  .footer__logo {
    column-gap: 40px; } }
    .footer__logo img {
      flex-shrink: 0;
      width: 102px; }
    .footer__logo span {
      font-weight: 300;
      font-size: 16px;
      line-height: 135%;
      letter-spacing: 0.02em;
      color: #292929;
      max-width: 251px;
      display: inline-block; }
      @media (max-width: 480px) {
  .footer__logo span {
    max-width: 100%;
    font-size: 14px; } }
  .footer__content {
    display: flex;
    align-items: start;
    column-gap: 80px; }
    @media (max-width: 767px) {
  .footer__content {
    flex-direction: column;
    row-gap: 30px; } }
  .footer__title {
    font-weight: 700;
    font-size: 14px;
    line-height: 157%;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #292929;
    margin-bottom: 18px; }
    .footer__title::after {
      content: "";
      display: block;
      height: 1px;
      width: 56px;
      background: #292929;
      margin-top: 6px; }
  .footer__items-list {
    display: flex;
    flex-direction: column;
    row-gap: 12px; }
    .footer__items-list a {
      font-weight: 400;
      font-size: 14px;
      line-height: 114%;
      letter-spacing: 0.01em;
      color: #292929;
      transition: 0.3s; }
      .footer__items-list a:hover {
        color: #0673a2; }
  .footer__contacts-items {
    display: flex;
    flex-direction: column;
    row-gap: 12px; }
  .footer__contacts-item {
    display: flex;
    align-items: center;
    column-gap: 10px; }
    .footer__contacts-item img {
      flex-shrink: 0; }
    .footer__contacts-item span {
      font-weight: 400;
      font-size: 14px;
      line-height: 120%;
      color: #292929;
      display: inline-block;
      max-width: 190px; }
      @media (max-width: 767px) {
  .footer__contacts-item span {
    max-width: 100%; } }
      .footer__contacts-item span strong {
        font-weight: 400; }
  .footer__foot {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-top: 20px;
    border-top: 1px solid rgba(41, 41, 41, 0.5);
    margin-top: 45px; }
    @media (max-width: 380px) {
  .footer__foot {
    flex-wrap: wrap; } }
    .footer__foot a {
      display: flex;
      align-items: center;
      justify-content: center; }
    .footer__foot span {
      font-weight: 700;
      font-size: 14px;
      line-height: 157%;
      letter-spacing: 0.04em;
      color: #292929; }
      @media (max-width: 480px) {
  .footer__foot span {
    font-size: 12px; } }

section {
  margin-top: 90px; }
  @media (max-width: 480px) {
  section {
    margin-top: 60px; } }

.banner {
  margin-top: 13px; }
  .banner__body {
    padding: 60px 60px 100px;
    background: center / cover no-repeat; }
    @media (max-width: 767px) {
  .banner__body {
    padding: 50px 30px 70px; } }
    @media (max-width: 480px) {
  .banner__body {
    padding: 40px 20px 50px; } }
  .banner__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 110%;
    color: #fff;
    font-family: var(--second-family);
    margin-bottom: 35px;
    max-width: 481px; }
    @media (max-width: 480px) {
  .banner__title {
    font-size: 30px;
    margin-bottom: 20px; } }
  .banner__text {
    font-weight: 300;
    font-size: 23px;
    line-height: 130%;
    color: #fff;
    max-width: 321px;
    padding-left: 57px;
    position: relative; }
    @media (max-width: 480px) {
  .banner__text {
    font-size: 18px;
    padding-left: 35px; } }
    .banner__text::after {
      content: "";
      display: block;
      height: 0.5px;
      width: 34px;
      background-color: #fff;
      position: absolute;
      left: 0;
      top: 22px; }
      @media (max-width: 480px) {
  .banner__text::after {
    top: 13px;
    width: 20px; } }
    .banner__text strong {
      font-weight: 600; }

.categories__items {
  display: flex;
  flex-direction: column;
  row-gap: 90px; }
  @media (max-width: 480px) {
    .categories__items {
      row-gap: 60px; } }
  .category__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 133%;
    letter-spacing: 0.02em;
    color: #292929;
    font-family: var(--second-family);
    margin-bottom: 40px; }
  @media (max-width: 480px) {
    .category__title {
      font-size: 30px;
      margin-bottom: 25px; } }
  .category__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px; }
  @media (max-width: 992px) {
    .category__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 550px) {
    .category__items {
      grid-template-columns: 1fr; } }
  .category__item {
    position: relative;
    overflow: hidden;
    padding-bottom: 90%;
    display: block; }
  .category__item:hover .category__image img {
    transform: scale(1.05); }
  .category__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
  .category__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s; }
  .category__name {
    font-weight: 700;
    font-size: 25px;
    color: #fff;
    position: absolute;
    left: 25px;
    bottom: 25px;
    right: 25px; }
  @media (max-width: 992px) {
    .category__name {
      font-size: 22px;
      left: 20px;
      right: 20px;
      bottom: 20px; } }

.block__body {
  display: flex;
  align-items: center;
  margin: 0 -22px; }
  @media (max-width: 992px) {
    .block__body {
      flex-direction: column;
      align-items: start;
      row-gap: 30px; } }
  .block__content {
    flex: 1 0 60%;
    padding: 0 22px; }
  .block__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 109%;
    color: #292929;
    margin-bottom: 60px;
    font-family: var(--second-family); }
  @media (max-width: 992px) {
    .block__title {
      margin-bottom: 30px; } }
  @media (max-width: 480px) {
    .block__title {
      font-size: 30px;
      margin-bottom: 25px; } }
  .block__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 18px;
    row-gap: 40px; }
  @media (max-width: 600px) {
    .block__items {
      grid-template-columns: 1fr;
      row-gap: 20px; } }
  .block__item {
    display: flex;
    align-items: center;
    column-gap: 20px; }
  @media (max-width: 480px) {
    .block__item {
      column-gap: 15px; } }
  .block__item img {
    flex-shrink: 0; }
  .block__item span {
    font-weight: 400;
    font-size: 20px;
    line-height: 142%;
    color: #292929; }
    @media (max-width: 480px) {
    .block__item span {
      font-size: 16px; } }
    .block__item span strong {
      font-weight: 600; }
  .block__image {
    flex: 0 0 40%;
    padding: 0 22px; }
  .block__image img {
    width: 100%; }

.reviews__subtitle {
  font-weight: 400;
  font-size: 25px;
  line-height: 132%;
  letter-spacing: 0.02em;
  color: #292929;
  margin-bottom: 15px; }
  @media (max-width: 480px) {
    .reviews__subtitle {
      font-size: 20px;
      margin-bottom: 10px; } }
  .reviews__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 125%;
    letter-spacing: 0.01em;
    color: #292929;
    font-family: var(--second-family);
    max-width: 740px;
    margin-bottom: 55px; }
  @media (max-width: 480px) {
    .reviews__title {
      font-size: 30px;
      margin-bottom: 25px; } }
  .reviews__items {
    padding: 20px;
    margin: -20px; }
  .reviews .swiper-slide {
    height: auto; }
  .reviews__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px; }
  @media (max-width: 480px) {
    .reviews__pagination {
      margin-top: 25px; } }
  .reviews__pagination .swiper-pagination-bullet {
    transition: 0.4s; }
    .reviews__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
      background-color: #0673a2; }

.review {
  height: 100%;
  padding: 30px;
  box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.05);
  background: #fff; }
  @media (max-width: 480px) {
  .review {
    padding: 30px 20px; } }
  .review__title {
    display: flex;
    align-items: center;
    column-gap: 15px;
    row-gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 15px; }
  .review__title span {
    font-weight: 600;
    font-size: 20px;
    line-height: 142%;
    color: #292929; }
  .review__title svg, .review__title img {
    flex-shrink: 0; }
  .review__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 144%;
    color: #292929;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .review__text {
      font-size: 16px; } }

.breadcrumbs {
  margin-top: 35px; }
  .breadcrumbs__links {
    display: flex;
    align-items: center;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 15px; }
  .breadcrumbs__link {
    font-weight: 300;
    font-size: 14px;
    line-height: 110%;
    letter-spacing: 0.02em;
    color: #575757;
    position: relative; }
  .breadcrumbs__link:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    width: 7px;
    height: 10px;
    background: url("../themes/demo/assets/images/breadcrumb.svg") center / 100% no-repeat; }
  .breadcrumbs__link.active {
    font-weight: 600; }

.services {
  margin-top: 40px; }
  .services__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 110%;
    letter-spacing: 0.02em;
    color: #292929;
    margin-bottom: 40px; }
  @media (max-width: 480px) {
    .services__title {
      font-size: 30px;
      margin-bottom: 25px; } }
  .services__items {
    display: flex;
    flex-direction: column;
    row-gap: 90px; }
  @media (max-width: 480px) {
    .services__items {
      row-gap: 60px; } }
  .service {
    display: flex;
    align-items: center;
    margin: 0 -36px; }
  .service:nth-of-type(even) {
    flex-direction: row-reverse; }
  @media (max-width: 992px) {
    .service:nth-of-type(even) {
      flex-direction: column; } }
  @media (max-width: 992px) {
  .service {
    flex-direction: column;
    align-items: start;
    row-gap: 30px; } }
  .service__image {
    flex: 0 0 54%;
    padding: 0 36px; }
  .service__image img {
    width: 100%; }
  .service__content {
    flex: 1 0 46%;
    padding: 0 36px; }
  .service__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 137%;
    color: #292929;
    margin-bottom: 14px; }
  @media (max-width: 480px) {
    .service__title {
      font-size: 20px; } }
  .service__text {
    font-weight: 300;
    font-size: 20px;
    line-height: 133%;
    letter-spacing: 0.02em;
    color: #292929;
    font-family: var(--second-family);
    margin-bottom: 30px; }
  @media (max-width: 480px) {
    .service__text {
      font-size: 16px;
      margin-bottom: 20px; } }
  .service__button {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: #fff;
    padding: 17px 45px;
    background: #0673a2;
    transition: 0.5s;
    white-space: nowrap;
    line-height: 1; }
  @media (max-width: 480px) {
    .service__button {
      font-size: 16px;
      padding: 14px 35px; } }
  .service__button:hover {
    box-shadow: 0 0 20px #0673a2; }

.form__body {
  padding: 0 115px;
  display: grid;
  grid-template-columns: 383px 1fr;
  column-gap: 120px;
  align-items: center;
  background: url("../themes/demo/assets/images/form-bg.jpg") center / cover no-repeat;
  align-items: flex-end; }
  @media (max-width: 650px) {
    .form__body {
      grid-template-columns: 1fr;
      padding: 50px 30px; } }
  @media (max-width: 480px) {
    .form__body {
      padding: 40px 20px; } }
  .form__content {
    padding: 55px 0; }
  @media (max-width: 650px) {
    .form__content {
      padding: 0; } }
  .form__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 125%;
    letter-spacing: 0.02em;
    color: #fff;
    font-family: var(--second-family);
    margin-bottom: 40px; }
  @media (max-width: 480px) {
    .form__title {
      margin-bottom: 25px;
      font-size: 30px; } }
  .form__inputs {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 25px; }
  .form__input input {
    width: 100%;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.06em;
    color: #fff;
    backdrop-filter: blur(6.0999999046px);
    border: 1px solid #d2d2d2;
    background-color: transparent;
    padding: 20px 30px; }
    @media (max-width: 480px) {
    .form__input input {
      padding: 15px;
      font-size: 16px; } }
    .form__input input::placeholder {
      color: #fff; }
  .form__button {
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.04em;
    color: #fff;
    padding: 25px;
    background: #0673a2;
    transition: 0.5s;
    width: 100%; }
  @media (max-width: 480px) {
    .form__button {
      padding: 15px;
      font-size: 16px; } }
  .form__button:hover {
    box-shadow: 0 0 20px #0673a2; }
  .form__image {
    margin-top: -40px; }
  @media (max-width: 1050px) {
    .form__image {
      display: none; } }
  .form__image img {
    width: 100%; }

#contactForm_forms_flash .close, #modalForm_forms_flash .close {
  display: none; }
  #contactForm_forms_flash p, #modalForm_forms_flash p {
    font-size: 16px;
    color: #fff;
    background-color: green;
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px; }

#modalForm_forms_flash p {
  text-align: center;
  margin-left: auto;
  margin-top: auto; }

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(28.1000003815px);
  background: rgba(53, 53, 53, 0.5);
  padding: 10px;
  display: none; }
  .modal.active {
    display: flex; }
  .modal__body {
    background-color: #fff;
    padding: 64px;
    position: relative;
    display: flex;
    flex-direction: column; }
  @media (max-width: 480px) {
    .modal__body {
      padding: 64px 20px; } }
  .modal__close {
    position: absolute;
    right: 25px;
    top: 25px;
    cursor: pointer; }
  .modal__title {
    font-weight: 700;
    font-size: 25px;
    line-height: 137%;
    text-align: center;
    color: #1f1f1f;
    max-width: 353px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px; }
  @media (max-width: 480px) {
    .modal__title {
      font-size: 20px;
      margin-bottom: 20px; } }
  .modal .form {
    align-self: stretch;
    width: 100%; }
  .modal__inputs {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    margin-bottom: 15px;
    width: 100%; }
  .modal__input {
    width: 100%; }
  .modal__input input {
    width: 100%;
    padding: 15px 25px;
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 0.06em;
    color: #292929;
    border: 1px solid rgba(0, 0, 0, 0.6);
    background-color: transparent; }
    @media (max-width: 480px) {
    .modal__input input {
      font-size: 16px;
      padding: 15px; } }
  .modal__button {
    width: 100%;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.04em;
    color: #fff;
    padding: 15px;
    background: #0673a2;
    transition: 0.5s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
  @media (max-width: 480px) {
    .modal__button {
      font-size: 16px; } }
  .modal__button:hover {
    box-shadow: 0 0 20px #0673a2; }

.contacts {
  margin-top: 40px;
  position: relative; }
  @media (max-width: 767px) {
  .contacts {
    margin-bottom: 60px; } }
  .contacts__body {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    background: #f8f8f8;
    margin: 120px 0;
    padding: 60px;
    display: inline-block;
    position: relative;
    z-index: 1; }
  @media (max-width: 767px) {
    .contacts__body {
      padding: 0;
      box-shadow: none;
      margin: 0;
      margin-bottom: 40px;
      background-color: #fff; } }
  .contacts__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0.04em;
    color: #292929;
    font-family: var(--second-family);
    margin-bottom: 40px; }
  @media (max-width: 480px) {
    .contacts__title {
      font-size: 30px;
      margin-bottom: 25px; } }
  .contacts__items {
    display: flex;
    flex-direction: column;
    row-gap: 20px; }
  .contacts__map {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
  @media (max-width: 767px) {
    .contacts__map {
      position: relative;
      height: 400px; } }
  .contacts__map iframe, .contacts__map div {
    height: 100%;
    width: 100%; }

.contact {
  display: flex;
  column-gap: 20px; }
  @media (max-width: 480px) {
  .contact {
    column-gap: 10px; } }
  @media (max-width: 480px) {
      .contact__image img {
        height: 30px;
        width: 30px; } }
  .contact__title {
    font-weight: 300;
    font-size: 18px;
    line-height: 144%;
    color: #292929;
    margin-bottom: 6px; }
  @media (max-width: 480px) {
    .contact__title {
      font-size: 15px;
      margin-bottom: 2px; } }
  .contact__text {
    font-weight: 300;
    font-size: 20px;
    line-height: 130%;
    color: #292929;
    font-family: var(--second-family); }
  @media (max-width: 480px) {
    .contact__text {
      font-size: 16px; } }
  .contact__text strong {
    font-weight: 500; }
  .contact__text a {
    color: #292929; }

.products {
  margin-top: 40px; }
  .products__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 133%;
    letter-spacing: 0.02em;
    color: #292929;
    margin-bottom: 40px; }
  @media (max-width: 480px) {
    .products__title {
      font-size: 30px;
      margin-bottom: 25px; } }
  .products__items {
    display: flex;
    flex-direction: column;
    row-gap: 40px; }
  .product {
    padding: 40px;
    box-shadow: 0 0 47px 0 rgba(0, 0, 0, 0.07);
    background: #fff;
    border-radius: 5px;
    display: grid;
    grid-template-columns: 4fr 4fr 4fr;
    column-gap: 40px;
    align-items: center; }
  @media (max-width: 800px) {
  .product {
    padding: 20px; } }
  @media (max-width: 1050px) {
  .product {
    grid-template-columns: 1fr 1fr;
    row-gap: 30px; } }
  @media (max-width: 767px) {
  .product {
    grid-template-columns: 1fr; } }
  .product__images {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 264px 73px;
    gap: 10px; }
  @media (max-width: 400px) {
    .product__images {
      grid-template-rows: 240px 60px; } }
  .product__poster {
    height: 100%; }
  .product__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .product__thumbs {
    height: 100%;
    display: flex;
    margin: 0 -5px;
    overflow: hidden; }
  .product__thumb {
    flex: 0 0 33.333%;
    padding: 0 5px;
    height: 100%; }
  .product__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .product__title {
    font-weight: 600;
    font-size: 23px;
    line-height: 130%;
    color: #292929;
    font-family: var(--second-family);
    margin-bottom: 10px; }
  @media (max-width: 480px) {
    .product__title {
      font-size: 20px; } }
  .product__address {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 30px; }
  .product__address svg {
    flex-shrink: 0; }
  .product__address span {
    font-weight: 300;
    font-size: 14px;
    line-height: 143%;
    color: #292929; }
  .product__desc-title {
    font-weight: 300;
    font-size: 14px;
    line-height: 143%;
    color: #292929;
    margin-bottom: 15px; }
  .product__desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: #444;
    -webkit-line-clamp: 5;
    /* Число отображаемых строк */
    display: -webkit-box;
    /* Включаем флексбоксы */
    -webkit-box-orient: vertical;
    /* Вертикальная ориентация */
    overflow: hidden;
    /* Обрезаем всё за пределами блока */
    margin-bottom: 15px; }
  .product__more {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #0673a2;
    text-decoration: dashed; }
  .product__right {
    padding-left: 40px;
    position: relative; }
  @media (max-width: 1050px) {
    .product__right {
      padding-left: 0; } }
  .product__right::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: -30px;
    bottom: -30px;
    width: 1px;
    background-color: #dcdcdc; }
    @media (max-width: 1050px) {
    .product__right::after {
      display: none; } }
  .product__price {
    font-weight: 600;
    font-size: 23px;
    line-height: 130%;
    color: #292929;
    font-family: var(--second-family);
    margin-bottom: 12px; }
  .product__ipoteka {
    font-weight: 300;
    font-size: 14px;
    line-height: 143%;
    color: #292929;
    padding: 5px;
    background: #f8f8f8;
    margin-bottom: 30px; }
  .product__owner {
    margin-bottom: 30px; }
  .product__owner-button {
    font-weight: 700;
    font-size: 15px;
    line-height: 133%;
    color: #fff;
    padding: 10px 55px;
    background: #0673a2;
    transition: 0.5s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; }
  .product__owner-button:hover {
    box-shadow: 0 0 20px #0673a2; }

.owner {
  display: flex;
  align-items: center;
  column-gap: 17px; }
  .owner__image {
    height: 80px;
    width: 80px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%; }
  .owner__image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .owner__title {
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    color: #292929;
    margin-bottom: 8px;
    text-transform: capitalize; }
  .owner__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #424b5a; }

.single {
  margin-top: 40px; }
  .single__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 133%;
    letter-spacing: 0.02em;
    color: #292929;
    margin-bottom: 40px;
    font-family: var(--second-family); }
  @media (max-width: 480px) {
    .single__title {
      font-size: 30px;
      margin-bottom: 25px; } }
  .single__images-wrapper {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 480px;
    gap: 15px;
    margin-bottom: 50px; }
  @media (max-width: 767px) {
    .single__images-wrapper {
      grid-template-rows: 380px; } }
  @media (max-width: 480px) {
    .single__images-wrapper {
      margin-bottom: 30px;
      grid-template-rows: 280px;
      gap: 10px; } }
  @media (max-width: 400px) {
    .single__images-wrapper {
      grid-template-rows: 240px; } }
  .single__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .single__images {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr; }
  .single__image {
    position: relative;
    display: block; }
  .single__image:nth-child(2) {
    margin-top: 15px; }
    @media (max-width: 480px) {
    .single__image:nth-child(2) {
      margin-top: 10px; } }
  .single__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .single__items {
    display: flex;
    column-gap: 50px; }
  @media (max-width: 1200px) {
    .single__items {
      flex-wrap: wrap;
      row-gap: 20px; } }
  .single__price {
    font-weight: 700;
    font-size: 35px;
    color: #292929;
    font-family: var(--second-family);
    margin-bottom: 15px;
    white-space: nowrap; }
  @media (max-width: 480px) {
    .single__price {
      font-size: 30px; } }
  .single__ipoteka {
    font-weight: 300;
    font-size: 14px;
    line-height: 143%;
    color: #292929; }
  .single__address {
    display: flex;
    align-items: start;
    column-gap: 15px; }
  .single__address span {
    font-weight: 300;
    font-size: 23px;
    line-height: 133%;
    letter-spacing: 0.02em;
    color: #292929;
    font-family: var(--second-family);
    display: inline-block;
    max-width: 355px; }
    @media (max-width: 480px) {
    .single__address span {
      max-width: 100%;
      font-size: 20px; } }
    .single__address span strong {
      font-weight: 600; }
  .single__address svg {
    flex-shrink: 0; }
  .single__area {
    display: flex;
    align-items: start;
    column-gap: 15px; }
  .single__area svg {
    flex-shrink: 0; }
  .single__area span {
    font-weight: 300;
    font-size: 23px;
    line-height: 133%;
    letter-spacing: 0.02em;
    color: #292929;
    display: inline-block;
    max-width: 236px;
    font-family: var(--second-family); }
    @media (max-width: 480px) {
    .single__area span {
      max-width: 100%;
      font-size: 20px; } }
    .single__area span strong {
      font-weight: 600; }
  .single__floor {
    display: flex;
    align-items: start;
    column-gap: 15px; }
  .single__floor span {
    font-weight: 300;
    font-size: 23px;
    line-height: 133%;
    letter-spacing: 0.02em;
    color: #292929;
    flex-shrink: 0;
    display: inline-block;
    max-width: 95px;
    font-family: var(--second-family); }
    @media (max-width: 480px) {
    .single__floor span {
      max-width: 100%;
      font-size: 20px; } }
    .single__floor span strong {
      font-weight: 600; }
  .single__floor svg {
    flex-shrink: 0; }

.items__title {
  font-weight: 700;
  font-size: 40px;
  color: #292929;
  font-family: var(--second-family);
  margin-bottom: 40px; }
  @media (max-width: 480px) {
    .items__title {
      font-size: 30px;
      margin-bottom: 25px; } }
  .items__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 35px;
    column-gap: 110px; }
  @media (max-width: 992px) {
    .items__items {
      column-gap: 50px; } }
  @media (max-width: 767px) {
    .items__items {
      grid-template-columns: 1fr; } }
  .items__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    padding-bottom: 20px;
    border-bottom: 0.8px solid rgba(16, 16, 16, 0.2); }
  @media (max-width: 480px) {
    .items__item {
      column-gap: 15px;
      padding-bottom: 10px; } }
  .items__item-left {
    font-weight: 300;
    font-size: 23px;
    line-height: 133%;
    letter-spacing: 0.02em;
    color: #292929;
    font-family: var(--second-family); }
  @media (max-width: 480px) {
    .items__item-left {
      font-size: 16px; } }
  .items__item-right {
    font-weight: 600;
    font-size: 23px;
    line-height: 133%;
    letter-spacing: 0.02em;
    color: #292929;
    font-family: var(--second-family); }
  @media (max-width: 480px) {
    .items__item-right {
      font-size: 16px; } }

.desc__title {
  font-weight: 700;
  font-size: 40px;
  color: #292929;
  font-family: var(--second-family);
  margin-bottom: 40px; }
  @media (max-width: 480px) {
    .desc__title {
      font-size: 30px;
      margin-bottom: 25px; } }
  .desc__text {
    font-weight: 300;
    font-size: 23px;
    line-height: 139%;
    letter-spacing: 0.02em;
    color: #292929;
    max-width: 935px;
    font-family: var(--second-family); }
  @media (max-width: 992px) {
    .desc__text {
      font-size: 20px; } }
  @media (max-width: 480px) {
    .desc__text {
      font-size: 16px; } }

.map__title {
  font-weight: 700;
  font-size: 40px;
  color: #292929;
  font-family: var(--second-family);
  margin-bottom: 40px; }
  @media (max-width: 480px) {
    .map__title {
      font-size: 30px;
      margin-bottom: 25px; } }
  .map__content {
    height: 400px; }
  .map__content iframe, .map__content div {
    height: 100%;
    width: 100%; }

.vacancies__title {
  font-weight: 700;
  font-size: 40px;
  color: #292929;
  font-family: var(--second-family);
  margin-bottom: 40px; }
  @media (max-width: 480px) {
    .vacancies__title {
      font-size: 30px;
      margin-bottom: 25px; } }
  .vacancies__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px; }
  @media (max-width: 1050px) {
    .vacancies__items {
      grid-template-columns: 1fr; } }
  .vacancy {
    display: flex;
    align-items: start;
    column-gap: 50px;
    padding: 22px 35px;
    background: #f5f5f5; }
  @media (max-width: 480px) {
  .vacancy {
    padding: 20px; } }
  .vacancy__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 139%;
    color: #292929;
    margin-bottom: 10px; }
  .vacancy__text {
    font-weight: 300;
    font-size: 16px;
    line-height: 156%;
    color: #292929;
    margin-bottom: 15px; }
  .vacancy__link {
    font-weight: 500;
    font-size: 16px;
    line-height: 156%;
    color: #0673a2;
    text-decoration: dashed;
    display: block; }
  ul.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px; }

ul.pagination li {
  margin: 0 3px;
  padding: 3px;
  border: 1px solid #dcdcdc;
  min-width: 23px;
  text-align: center; }

ul.pagination li.active, ul.pagination li:hover {
  border-color: #0673a2;
  color: #fff;
  background: #0673a2; }

ul.pagination li.active a, ul.pagination li:hover a {
  color: #fff; }

.filter {
  background: #fbfbfb;
  box-shadow: 0 0 44.3px rgba(0, 0, 0, 0.15);
  padding: 45px 35px;
  display: flex;
  flex-wrap: wrap;
  width: 100%; }

.filter-item {
  position: relative;
  flex-grow: 1;
  margin-right: 20px; }

.filter-item select, .filter-item input {
  background: #f5f5f5;
  border-radius: 5px;
  padding: 20px;
  width: 100%;
  flex-grow: 1;
  font-size: 16px; }

.range-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #f5f5f5;
  border-radius: 5px;
  padding: 20px; }

.range-item {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  justify-content: space-between; }

span.range-t {
  margin-right: 20px;
  position: absolute;
  right: 0; }

.range-item input {
  width: calc(100% - 70px);
  flex-grow: unset;
  padding: 0;
  max-width: 100px; }

.filter-btn {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #fff;
  font-family: var(--second-family);
  padding: 10px;
  background: #0673a2;
  line-height: 1;
  transition: 0.5s; }

@media (max-width: 1024px) {
  .filter-item {
    margin-bottom: 10px; }

  .filter-btn {
    margin-left: auto;
    margin-right: 20px;
    margin-bottom: 10px; } }

@media (max-width: 480px) {
  .filter-btn {
    padding: 20px 10px;
    width: 100%; } }
