@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --font-family: "Montserrat", 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; }

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: 75.54px; }
  @media (max-width: 480px) {
  .page {
    margin-top: 66px; } }

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.05em;
  text-align: center;
  line-height: 1;
  color: #fff;
  padding: 10px;
  min-width: 185px;
  border-radius: 6px;
  background: linear-gradient(86deg, #9c3619 0%, #233655 100%); }

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  background-color: #fff;
  border-bottom: 1px solid #ebebeb; }
  .header__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    height: 75px; }
    @media (max-width: 480px) {
  .header__body {
    height: 65px; } }
  .header__logo {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0; }
    .header__logo img {
      max-height: 100%;
      max-width: 100%; }
  .header__items {
    display: flex;
    align-items: center;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 10px; }
  .header__item {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.05em;
    color: #333;
    transition: 0.5s; }
    .header__item:hover {
      color: #9a3a18; }
  .header__right {
    display: flex;
    column-gap: 10px; }
    @media (max-width: 1200px) {
  .header__right {
    align-items: center;
    column-gap: 20px; } }
  .header__langs-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    height: 32px;
    width: 54px; }
  .header__langs {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    text-align: right;
    color: #333;
    font-family: var(--font-family); }
  .header__call {
    display: flex;
    column-gap: 10px; }
  .header__call-icon {
    width: 29px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: linear-gradient(86deg, #9c3619 0%, #233655 100%); }
  .header__call-text {
    align-self: center;
    font-weight: 600;
    font-size: 31px;
    letter-spacing: -0.05em;
    color: #1f375a; }
  @media (max-width: 1200px) {
    .header__desc {
      display: none; } }
  .header .burger {
    display: none; }
    @media (max-width: 1200px) {
  .header .burger {
    display: block; } }

.menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 50px;
  overflow-y: auto;
  padding: 30px 30px 120px;
  background-color: #fff;
  justify-content: space-between;
  transform: translateX(-100%);
  transition: 0.8s; }
  .menu.active {
    transform: translateX(0); }
  .menu__close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 50px;
    color: #bbb; }
    @media (max-width: 480px) {
  .menu__close {
    font-size: 40px;
    top: 10px;
    right: 15px; } }
  .menu__items {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 30px; }

.footer {
  padding: 40px 0 20px;
  border-radius: 25px 25px 0 0;
  background: #f2f4f4; }
  .footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 30px; }
    @media (max-width: 992px) {
  .footer__top {
    flex-direction: column;
    align-items: start;
    row-gap: 30px; } }
  .footer__left {
    display: flex;
    align-items: center;
    column-gap: 20px; }
  .footer__call {
    display: flex;
    align-items: center;
    column-gap: 10px; }
  .footer__call-icon {
    border-radius: 5px;
    width: 25px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #9b3a18; }
  .footer__call-text {
    font-weight: 500;
    font-size: 29px;
    letter-spacing: -0.05em;
    color: #333; }
  .footer__button {
    display: flex;
    column-gap: 7px; }
  .footer__button-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.05em;
    color: #333;
    border-radius: 10px;
    padding: 10px;
    height: 44px;
    background-color: #fff; }
  .footer__button-icon {
    border-radius: 10px;
    width: 36px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff; }
  .footer__right {
    display: flex;
    align-items: center;
    column-gap: 20px; }
    @media (max-width: 480px) {
  .footer__right {
    flex-direction: column;
    align-items: start;
    row-gap: 20px; } }
  .footer__right-text {
    max-width: 397px;
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    letter-spacing: -0.05em;
    color: #6a7076; }
  .footer__socials {
    display: flex;
    align-items: center;
    column-gap: 12px; }
  .footer__social {
    transition: 0.5s; }
    .footer__social:hover {
      transform: scale(1.1); }
  .footer__body {
    display: flex;
    column-gap: 96px;
    row-gap: 30px;
    padding-bottom: 50px;
    margin-bottom: 40px;
    border-bottom: 1px solid #e9e9e9;
    flex-wrap: wrap; }
    @media (max-width: 767px) {
  .footer__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 20px;
    padding-bottom: 30px;
    margin-bottom: 20px; } }
  .footer__info {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 30px; }
    @media (max-width: 550px) {
  .footer__info {
    flex-direction: column; } }
  .footer__text {
    font-weight: 400;
    font-size: 12px;
    line-height: 133%;
    letter-spacing: -0.05em;
    color: #909ba6;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    max-width: 889px; }
  .footer__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e9e9e9;
    margin-top: 40px; }
    @media (max-width: 480px) {
  .footer__foot {
    flex-direction: column;
    row-gap: 10px; } }
  .footer__company {
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    letter-spacing: -0.05em;
    color: #333; }
  .footer__abc {
    display: flex;
    gap: 5px; }
    .footer__abc span {
      font-weight: 400;
      font-size: 13px;
      line-height: 120%;
      letter-spacing: -0.05em;
      color: #333; }
    .footer__abc a {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px; }

.nav-footer__title {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.05em;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.2; }
  .nav-footer__items {
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  .nav-footer__item {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.05em;
    color: #6a7076;
    line-height: 1.2;
    transition: 0.5s; }
    .nav-footer__item:hover {
      color: #9b3a18; }

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

.main {
  margin-top: 35px; }
  @media (max-width: 480px) {
  .main {
    margin-top: 20px; } }
  .main__body {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    grid-template-rows: 582px;
    gap: 16px; }
    @media (max-width: 992px) {
  .main__body {
    grid-template-columns: 1fr;
    grid-template-rows: 400px 500px; } }
  .main__slider {
    width: 100%;
    height: 100%; }
  .main__right {
    position: relative; }
  .main .swiper-slide {
    height: auto; }

.slider-main__item {
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding: 70px 55px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; }
  @media (max-width: 480px) {
    .slider-main__item {
      padding: 30px 20px; } }
  .slider-main__item::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 33, 33, 0.55); }
  .slider-main__title {
    position: relative;
    z-index: 1;
    font-weight: 500;
    font-size: 46px;
    letter-spacing: -0.05em;
    color: #fff;
    max-width: 480px;
    margin-bottom: 22px; }
  @media (max-width: 480px) {
    .slider-main__title {
      font-size: 28px;
      margin-bottom: 15px; } }
  .slider-main__text {
    position: relative;
    z-index: 1;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.05em;
    color: #fff;
    margin-bottom: 25px;
    max-width: 405px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .slider-main__text {
      font-size: 14px;
      margin-bottom: 15px; } }
  .slider-main__button {
    position: relative;
    z-index: 1;
    display: flex;
    column-gap: 10px; }
  .slider-main__button-text {
    border-radius: 10px;
    min-width: 184px;
    height: 32px;
    padding: 5px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.05em;
    text-align: center;
    color: #fff; }
  .slider-main__button-icon {
    border-radius: 10px;
    width: 28px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.3); }

.right-main {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: start;
  border-radius: 20px;
  overflow: hidden;
  background: url("/storage/app/media/home/banner-second.jpg") bottom center / cover no-repeat; }
  @media (max-width: 480px) {
  .right-main {
    padding: 30px 20px;
    background-position: 95% center; } }
  .right-main__title {
    font-weight: 500;
    font-size: 35px;
    letter-spacing: -0.05em;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2; }
  @media (max-width: 480px) {
    .right-main__title {
      font-size: 28px;
      margin-bottom: 10px; } }
  .right-main__three {
    font-weight: 500;
    font-size: 69px;
    letter-spacing: -0.05em;
    color: #fff;
    border-bottom: 1px solid #fff;
    margin-bottom: 28px;
    line-height: 1.2; }
  @media (max-width: 480px) {
    .right-main__three {
      font-size: 50px;
      margin-bottom: 15px; } }
  .right-main__phone {
    font-weight: 400;
    font-size: 29px;
    letter-spacing: -0.05em;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px; }
  @media (max-width: 480px) {
    .right-main__phone {
      font-size: 18px;
      padding-bottom: 5px; } }

.title {
  font-weight: 400;
  font-size: 46px;
  letter-spacing: -0.05em;
  color: #333;
  margin-bottom: 20px; }
  @media (max-width: 480px) {
  .title {
    font-size: 28px; } }

.sort {
  margin-top: 36px; }
  @media (max-width: 480px) {
  .sort {
    margin-top: 25px; } }
  .sort__content {
    padding: 32px 24px;
    border-radius: 20px;
    background: #f2f4f4; }
  @media (max-width: 480px) {
    .sort__content {
      padding: 20px 15px; } }
  .sort__inputs {
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    width: 100%; }
  @media (max-width: 992px) {
    .sort__inputs {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 550px) {
    .sort__inputs {
      grid-template-columns: 1fr; } }
  .sort__input {
    border-radius: 10px;
    background: #fff;
    padding: 10px 18px;
    position: relative;
    height: 50px; }
  @media (max-width: 480px) {
    .sort__input {
      padding: 10px 12px; } }
  .sort__input input, .sort__input select {
    width: 100%;
    height: 100%;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.05em;
    color: #151515;
    font-family: var(--font-family); }
    @media (max-width: 480px) {
    .sort__input input, .sort__input select {
      font-size: 15px; } }
    .sort__input input::placeholder, .sort__input select::placeholder {
      color: #333; }
  .sort__prices {
    grid-column: 3 / 5; }
  @media (max-width: 992px) {
    .sort__prices {
      grid-column: 1 / 3; } }
  @media (max-width: 550px) {
    .sort__prices {
      grid-column: auto; } }
  .sort__button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    height: auto;
    min-width: 109px; }
  .sort__boxes {
    margin-top: 16px;
    display: flex;
    gap: 9px;
    flex-wrap: wrap; }
  @media (max-width: 480px) {
    .sort__boxes {
      margin-top: 12px; } }
  .sort__box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.05em;
    text-align: center;
    color: #333;
    line-height: 1.2;
    padding: 10px 25px;
    border: 1px solid #a1a1a1;
    border-radius: 300px;
    background: transparent;
    transition: 0.5s;
    position: relative;
    overflow: hidden; }
  @media (max-width: 480px) {
    .sort__box {
      font-size: 15px;
      padding: 10px 15px; } }
  .sort__box span {
    position: relative;
    z-index: 1; }
  .sort__box::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(86deg, #9c3619 0%, #233655 100%);
    opacity: 0;
    transition: 0.5s; }
  .sort__box.active, .sort__box:hover {
    color: #fff; }
    .sort__box.active::after, .sort__box:hover::after {
      opacity: 1; }

.prices-sort {
  border-radius: 10px;
  background: #fff;
  padding: 10px 18px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 20px; }
  @media (max-width: 480px) {
  .prices-sort {
    padding: 10px 12px; } }
  .prices-sort__input {
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.05em;
    color: #151515;
    line-height: 1.2;
    width: 100%; }
  @media (max-width: 480px) {
    .prices-sort__input {
      font-size: 15px; } }
  .prices-sort__input:first-child {
    border-right: 1px solid #cdcdcd; }
  .prices-sort__input::placeholder {
    color: #333; }
  .prices-sort__text {
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.05em;
    color: #333;
    line-height: 1.2; }
  @media (max-width: 480px) {
    .prices-sort__text {
      font-size: 15px; } }

.projects {
  margin-top: 20px; }
  .projects__items {
    padding: 26px 24px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 26px;
    border-radius: 20px;
    background-color: #f2f4f4; }
  @media (max-width: 1100px) {
    .projects__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 650px) {
    .projects__items {
      grid-template-columns: 1fr;
      gap: 15px; } }
  @media (max-width: 480px) {
    .projects__items {
      padding: 15px; } }
  .item-projects {
    padding: 15px 15px 20px;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.5s; }
  @media (max-width: 480px) {
  .item-projects {
    padding: 10px 10px 15px; } }
  .item-projects:hover {
    border-color: #9b3a18; }
  .item-projects__image {
    position: relative;
    display: block;
    padding-bottom: 60%;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 24px; }
  @media (max-width: 480px) {
    .item-projects__image {
      margin-bottom: 15px; } }
  .item-projects__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-projects__list {
    position: absolute;
    left: 12px;
    top: 12px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap; }
  .item-projects__list-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.05em;
    color: #333;
    padding: 0 8px;
    background: #fff;
    border-radius: 300px;
    height: 22px; }
  .item-projects__list-item.active {
    background: linear-gradient(13deg, #9b3a18 0%, #1f375a 72.35%);
    color: #fff; }
  .item-projects__title {
    font-weight: 500;
    font-size: 30px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2; }
  @media (max-width: 767px) {
    .item-projects__title {
      font-size: 22px; } }
  @media (max-width: 480px) {
    .item-projects__title {
      font-size: 20px;
      margin-bottom: 10px; } }
  .item-projects__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    letter-spacing: -0.05em;
    color: #333;
    margin-bottom: 30px; }
  @media (max-width: 480px) {
    .item-projects__text {
      margin-bottom: 20px; } }
  .item-projects__items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    row-gap: 10px;
    margin-bottom: 20px;
    flex-grow: 1; }
  .item-projects__item {
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.05em;
    color: #6a7076;
    line-height: 1.3;
    position: relative; }
  @media (max-width: 480px) {
    .item-projects__item {
      font-size: 13px; } }
  .item-projects__item:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5px;
    background-color: #6a7076;
    height: 13px; }
  .item-projects__button {
    display: flex;
    gap: 10px; }
  .item-projects__button-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.05em;
    color: #333;
    line-height: 1.2;
    padding: 0 10px;
    border: 1px solid #a1a1a1;
    border-radius: 10px;
    height: 37px;
    flex-grow: 1; }
  @media (max-width: 767px) {
    .item-projects__button-text {
      font-size: 15px; } }
  .item-projects__button-icon {
    flex: 0 0 56px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a1a1a1;
    border-radius: 10px; }

.prj {
  backdrop-filter: blur(14px);
  background: linear-gradient(86deg, #9c3619 0%, #233655 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 50px 20px 20px;
  cursor: pointer; }
  @media (max-width: 480px) {
  .prj {
    padding: 30px 15px 15px; } }
  .prj__icon {
    margin-bottom: 45px; }
  @media (max-width: 480px) {
    .prj__icon {
      margin-bottom: 25px; } }
  .prj__title {
    font-weight: 500;
    font-size: 30px;
    letter-spacing: -0.05em;
    color: #fff;
    margin-bottom: 28px;
    line-height: 1.2; }
  @media (max-width: 480px) {
    .prj__title {
      font-size: 20px;
      margin-bottom: 15px; } }
  .prj__text {
    flex-grow: 1;
    font-weight: 400;
    font-size: 21px;
    line-height: 143%;
    letter-spacing: -0.05em;
    color: #e3e3e3;
    margin-bottom: 35px; }
  @media (max-width: 480px) {
    .prj__text {
      font-size: 16px;
      margin-bottom: 20px; } }
  .prj__button {
    display: flex;
    gap: 10px;
    max-width: 310px; }
  .prj__button-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.05em;
    color: #fff;
    line-height: 1.2;
    height: 37px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.3); }
  @media (max-width: 480px) {
    .prj__button-text {
      font-size: 15px; } }
  .prj__button-icon {
    border-radius: 10px;
    width: 55px;
    height: 37px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center; }

.numbers__body {
  display: grid;
  grid-template-columns: 1fr 3.3fr;
  gap: 26px;
  padding: 26px 24px;
  border-radius: 20px;
  background-color: #f2f4f4; }
  @media (max-width: 992px) {
    .numbers__body {
      gap: 15px; } }
  @media (max-width: 650px) {
    .numbers__body {
      grid-template-columns: 1fr; } }
  @media (max-width: 480px) {
    .numbers__body {
      padding: 15px; } }
  .numbers__image img {
    width: 100%; }
  .numbers__items {
    display: grid;
    grid-template-columns: 1fr 0.5fr 0.5fr 1fr;
    gap: 26px; }
  @media (max-width: 992px) {
    .numbers__items {
      gap: 15px; } }
  @media (max-width: 767px) {
    .numbers__items {
      grid-template-columns: 1fr; } }
  @media (max-width: 480px) {
    .numbers__items {
      grid-template-columns: 1fr 1fr;
      gap: 10px; } }
  .numbers__item {
    border-radius: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px; }
  .numbers__item:nth-child(2), .numbers__item:nth-child(4), .numbers__item:nth-child(5) {
    grid-column: span 2; }
    @media (max-width: 480px) {
    .numbers__item:nth-child(2), .numbers__item:nth-child(4), .numbers__item:nth-child(5) {
      grid-column: auto; } }
  @media (max-width: 992px) {
    .numbers__item {
      padding: 30px; } }
  @media (max-width: 480px) {
    .numbers__item {
      padding: 15px; } }
  .numbers__number {
    font-weight: 600;
    font-size: 70px;
    letter-spacing: -0.05em;
    color: #9b3a18;
    margin-bottom: 18px;
    line-height: 1; }
  @media (max-width: 1100px) {
    .numbers__number {
      font-size: 40px;
      margin-bottom: 10px; } }
  @media (max-width: 992px) {
    .numbers__number {
      font-size: 26px; } }
  .numbers__text {
    font-weight: 400;
    font-size: 20px;
    letter-spacing: -0.05em;
    color: #6a7076;
    line-height: 1.2; }
  @media (max-width: 1100px) {
    .numbers__text {
      font-size: 20px; } }
  @media (max-width: 992px) {
    .numbers__text {
      font-size: 16px; } }
  @media (max-width: 480px) {
    .numbers__text {
      font-size: 13px; } }

.news__items {
  padding: 26px 24px;
  border-radius: 20px;
  background: #f2f4f4; }
  @media (max-width: 480px) {
    .news__items {
      padding: 15px; } }
  .news .swiper-slide {
    height: auto; }

.item-news {
  padding: 15px 15px 25px;
  border-radius: 20px;
  background-color: #fff;
  border: 2px solid transparent;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  height: 100%; }
  .item-news:hover {
    border-color: #9b3a18; }
  .item-news__image {
    position: relative;
    overflow: hidden;
    display: block;
    padding-bottom: 78%;
    margin-bottom: 25px;
    border-radius: 20px; }
  @media (max-width: 480px) {
    .item-news__image {
      margin-bottom: 15px; } }
  .item-news__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-news__title {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: -0.05em;
    color: #333;
    line-height: 1.2;
    margin-bottom: 40px; }
  @media (max-width: 480px) {
    .item-news__title {
      margin-bottom: 20px; } }
  .item-news__button {
    display: flex;
    gap: 10px;
    max-width: 328px;
    flex-grow: 1; }
  .item-news__button-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.05em;
    color: #333;
    line-height: 1.2;
    padding: 0 10px;
    border: 1px solid #a1a1a1;
    border-radius: 10px;
    height: 37px;
    flex-grow: 1; }
  @media (max-width: 767px) {
    .item-news__button-text {
      font-size: 15px; } }
  .item-news__button-icon {
    flex: 0 0 56px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a1a1a1;
    border-radius: 10px; }
  .item-news__date {
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #333;
    line-height: 1.2;
    padding-top: 15px;
    margin-top: 20px;
    border-top: 1px solid #d9d9d9; }

.swiper-pagination-bullets {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px; }
  @media (max-width: 480px) {
  .swiper-pagination-bullets {
    margin-top: 15px; } }
  .swiper-pagination-bullets.swiper-pagination-lock {
    display: none; }
  .swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: #9a3a18;
    transition: 0.5s; }

.gallery__title {
  margin-bottom: 30px;
  max-width: 920px; }
  @media (max-width: 480px) {
    .gallery__title {
      margin-bottom: 20px; } }
  .gallery__item {
    position: relative;
    overflow: hidden;
    display: block;
    padding-bottom: 120%;
    border-radius: 20px; }
  .gallery__item:hover img {
    transform: scale(1.1); }
  .gallery__item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s; }
  .gallery__item svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
    @media (max-width: 480px) {
    .gallery__item svg {
      width: 100px;
      height: 100px; } }
  .info__item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    padding: 55px 45px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 582px; }
  .info__item:hover .info-hover {
    transform: translateY(0); }
  @media (max-width: 767px) {
    .info__item {
      height: 400px; } }
  @media (max-width: 480px) {
    .info__item {
      padding: 20px; } }
  .info__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
  .info__image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .info__title {
    font-weight: 400;
    font-size: 46px;
    letter-spacing: -0.05em;
    color: #151515;
    margin-bottom: 35px;
    line-height: 1.2;
    position: relative;
    z-index: 1; }
  @media (max-width: 480px) {
    .info__title {
      font-size: 28px;
      margin-bottom: 15px; } }
  .info__button {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 10px;
    max-width: 222px; }
  .info__button-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: -0.05em;
    text-align: center;
    color: #333;
    padding: 0 10px;
    flex-grow: 1;
    border-radius: 10px;
    background-color: #fff;
    height: 32px; }
  @media (max-width: 480px) {
    .info__button-text {
      font-size: 15px; } }
  .info__button-icon {
    border-radius: 10px;
    width: 28px;
    height: 32px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center; }

.start {
  margin-top: 0;
  position: relative; }
  .start__container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 336px;
    padding: 50px 15px; }
  .start__title {
    font-weight: 400;
    font-size: 46px;
    letter-spacing: -0.05em;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2; }
  @media (max-width: 480px) {
    .start__title {
      font-size: 28px;
      margin-bottom: 15px; } }
  .start__text {
    font-weight: 400;
    font-size: 17px;
    color: #e3e3e3;
    max-width: 432px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .start__text {
      font-size: 14px; } }
  .start__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
  .start__image::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.55); }
  .start__image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.links {
  margin-top: 25px; }
  .links__items {
    display: flex;
    column-gap: 70px;
    border-bottom: 1px solid #bfbfbf;
    flex-wrap: wrap;
    row-gap: 20px; }
  @media (max-width: 767px) {
    .links__items {
      column-gap: 20px; } }
  @media (max-width: 480px) {
    .links__items {
      row-gap: 15px; } }
  .links__item {
    font-weight: 400;
    font-size: 19px;
    letter-spacing: -0.05em;
    color: #999;
    padding-bottom: 15px;
    line-height: 1.2;
    position: relative;
    transition: 0.5;
    white-space: nowrap; }
  @media (max-width: 480px) {
    .links__item {
      font-size: 15px;
      padding-bottom: 10px; } }
  .links__item::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #9a3a18;
    opacity: 0;
    transition: 0.5; }
  .links__item.active {
    color: #9b3a18; }
    .links__item.active::after {
      opacity: 1; }

.history__body {
  display: grid;
  grid-template-columns: 310px 1fr;
  align-items: start;
  column-gap: 135px; }
  @media (max-width: 992px) {
    .history__body {
      column-gap: 50px;
      grid-template-columns: 240px 1fr; } }
  @media (max-width: 767px) {
    .history__body {
      grid-template-columns: 1fr;
      row-gap: 20px; } }
  .history__left {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 38px; }
  @media (max-width: 480px) {
    .history__left {
      column-gap: 25px; } }
  .history__years {
    width: 100%; }
  .history__years .swiper-slide {
    width: 111px; }
    .history__years .swiper-slide.active-year .history__year {
      color: #fff; }
      .history__years .swiper-slide.active-year .history__year::after {
        opacity: 1; }
  .history__year {
    cursor: pointer;
    border: 1px solid #a1a1a1;
    border-radius: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 37px;
    width: 100%;
    transition: 0.5s;
    position: relative;
    overflow: hidden; }
  .history__year::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(86deg, #9c3619 0%, #233655 100%);
    transition: 0.5s;
    opacity: 0; }
  .history__year span {
    position: relative;
    z-index: 1; }
  .history__arrows {
    display: flex;
    align-items: center;
    column-gap: 10px; }
  .history__arrow {
    cursor: pointer;
    transition: 0.5s; }
  .history__arrow.swiper-button-disabled {
    opacity: 0.5; }
  .history__items {
    width: 100%; }
  .history__title {
    font-weight: 400;
    font-size: 40px;
    letter-spacing: -0.05em;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2; }
  @media (max-width: 480px) {
    .history__title {
      font-size: 28px;
      margin-bottom: 15px; } }
  .history__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 144%;
    letter-spacing: -0.05em;
    color: #333;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .history__text {
      font-size: 14px; } }
  .history__images {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1.3fr;
    gap: 26px;
    margin-top: 80px; }
  @media (max-width: 480px) {
    .history__images {
      grid-template-columns: 1fr;
      margin-top: 40px;
      gap: 15px; } }
  .history__image {
    position: relative;
    overflow: hidden;
    display: block;
    padding-bottom: 70%;
    border-radius: 29px; }
  .history__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }

.soc__container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px; }
  @media (max-width: 992px) {
    .soc__container {
      grid-template-columns: 1fr;
      gap: 20px; } }
  @media (max-width: 480px) {
    .soc__container {
      gap: 15px; } }
  @media (max-width: 992px) {
    .soc__image {
      max-width: 500px; } }
  .soc__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px; }
  .soc__content {
    border-radius: 20px;
    background: #f6f7f7;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  @media (max-width: 480px) {
    .soc__content {
      padding: 30px 20px; } }
  @media (max-width: 480px) {
    .soc__title {
      margin-bottom: 10px; } }
  .soc__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 144%;
    letter-spacing: -0.05em;
    color: #333;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  .soc__text::-webkit-scrollbar {
    width: 5px; }
  .soc__text::-webkit-scrollbar-track {
    background: #f1f1f1; }
  .soc__text::-webkit-scrollbar-thumb {
    background: #888; }
  .soc__text ul {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding-left: 20px; }
  @media (max-width: 480px) {
    .soc__text {
      font-size: 14px; } }
  .soc__arrows {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-top: 25px; }
  .soc__arrow {
    cursor: pointer;
    transition: 0.5s; }
  .soc__arrow.swiper-button-disabled {
    opacity: 0.5; }

.charters__title {
  margin-bottom: 35px; }
  @media (max-width: 480px) {
    .charters__title {
      margin-bottom: 20px; } }
  .charters__item {
    position: relative;
    display: block;
    padding-bottom: 144%;
    border: 7px solid #000;
    border-radius: 20px;
    overflow: hidden; }
  @media (max-width: 480px) {
    .charters__item {
      border-width: 4px;
      border-radius: 10px; } }
  .charters__item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .team__title {
    margin-bottom: 35px; }
  @media (max-width: 480px) {
    .team__title {
      margin-bottom: 20px; } }
  .team .swiper-slide {
    height: auto; }

.item-team {
  height: 100%;
  padding: 15px 15px 30px;
  border-radius: 20px;
  background: #f6f7f7; }
  .item-team__image {
    position: relative;
    display: block;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px; }
  .item-team__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-team__title {
    font-weight: 400;
    font-size: 32px;
    letter-spacing: -0.05em;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
    padding: 0 5px; }
  @media (max-width: 480px) {
    .item-team__title {
      font-size: 24px;
      margin-bottom: 10px; } }
  .item-team__text {
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.05em;
    color: #333;
    line-height: 1.2;
    padding: 0 5px; }
  @media (max-width: 480px) {
    .item-team__text {
      font-size: 15px; } }

.docs__title {
  margin-bottom: 35px; }
  @media (max-width: 480px) {
    .docs__title {
      margin-bottom: 20px; } }
  .docs__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 26px; }
  @media (max-width: 1100px) {
    .docs__items {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 767px) {
    .docs__items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) {
    .docs__items {
      grid-template-columns: 1fr;
      gap: 15px; } }
  .item-docs {
    padding: 45px 35px;
    border-radius: 20px;
    background: #f6f7f7;
    display: flex;
    flex-direction: column; }
  @media (max-width: 992px) {
  .item-docs {
    padding: 30px 20px; } }
  @media (max-width: 480px) {
  .item-docs {
    padding: 25px 15px; } }
  .item-docs__icon {
    margin-bottom: 20px; }
  @media (max-width: 480px) {
    .item-docs__icon {
      margin-bottom: 15px; } }
  .item-docs__title {
    font-weight: 400;
    font-size: 20px;
    letter-spacing: -0.05em;
    color: #333;
    line-height: 1.2;
    margin-bottom: 24px;
    flex-grow: 1; }
  @media (max-width: 480px) {
    .item-docs__title {
      font-size: 18px;
      margin-bottom: 18px; } }
  .item-docs__actions {
    display: flex;
    align-items: center;
    column-gap: 20px;
    row-gap: 10px;
    flex-wrap: wrap; }
  .item-docs__action {
    display: flex;
    align-items: center;
    column-gap: 8px; }
  .item-docs__action span {
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.05em;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #333;
    line-height: 1.2; }

.advantages__title {
  margin-bottom: 35px; }
  @media (max-width: 480px) {
    .advantages__title {
      margin-bottom: 20px; } }
  .advantages__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 26px; }
  @media (max-width: 992px) {
    .advantages__items {
      grid-template-columns: 1fr 1fr;
      gap: 15px; } }
  @media (max-width: 600px) {
    .advantages__items {
      grid-template-columns: 1fr; } }
  .item-advantages {
    border-radius: 20px;
    background: #f6f7f7;
    padding: 70px 28px 60px; }
  @media (max-width: 480px) {
  .item-advantages {
    padding: 40px 20px 30px; } }
  .item-advantages:nth-of-type(odd) {
    background: linear-gradient(86deg, #9c3619 0%, #233655 100%); }
  .item-advantages:nth-of-type(odd) .item-advantages__title {
    color: #fff; }
  .item-advantages__icon {
    margin-bottom: 30px; }
  @media (max-width: 480px) {
    .item-advantages__icon {
      margin-bottom: 20px; } }
  .item-advantages__title {
    font-weight: 400;
    font-size: 21px;
    line-height: 124%;
    letter-spacing: -0.05em;
    color: #333; }
  @media (max-width: 480px) {
    .item-advantages__title {
      font-size: 17px; } }

.partners__title {
  margin-bottom: 35px; }
  @media (max-width: 480px) {
    .partners__title {
      margin-bottom: 20px; } }
  .partners__item {
    border-radius: 20px;
    height: 196px;
    background: #f6f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px; }
  @media (max-width: 480px) {
    .partners__item {
      height: 100px;
      padding: 20px; } }
  .partners__item img {
    max-width: 100%;
    max-height: 100%; }

.vacancies__title {
  margin-bottom: 35px; }
  @media (max-width: 480px) {
    .vacancies__title {
      margin-bottom: 20px; } }
  .vacancies__items {
    display: flex;
    flex-direction: column;
    row-gap: 40px; }
  @media (max-width: 480px) {
    .vacancies__items {
      row-gap: 0; } }
  .item-vacancies {
    padding: 45px 25px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    transition: 0.5s;
    position: relative;
    column-gap: 50px; }
  @media (max-width: 992px) {
  .item-vacancies {
    column-gap: 30px; } }
  @media (max-width: 767px) {
  .item-vacancies {
    grid-template-columns: 1fr;
    row-gap: 20px; } }
  @media (max-width: 480px) {
  .item-vacancies {
    padding: 30px 20px; } }
  .item-vacancies:hover {
    background-color: #f2f4f4; }
  .item-vacancies:hover::before, .item-vacancies:hover::after {
    opacity: 0; }
  .item-vacancies:first-child::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background-color: #d5d5d5;
    transition: 0.5s; }
  .item-vacancies::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: #d5d5d5;
    transition: 0.5s; }
  .item-vacancies__city {
    font-weight: 300;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.05em;
    color: #6a7076;
    margin-bottom: 15px; }
  @media (max-width: 480px) {
    .item-vacancies__city {
      margin-bottom: 10px; } }
  .item-vacancies__title {
    font-weight: 500;
    font-size: 21px;
    line-height: 133%;
    letter-spacing: -0.05em;
    color: #333; }
  @media (max-width: 480px) {
    .item-vacancies__title {
      font-size: 18px; } }
  .item-vacancies__right {
    padding-left: 100px;
    border-left: 1px solid #d5d5d5; }
  @media (max-width: 992px) {
    .item-vacancies__right {
      padding-left: 50px; } }
  @media (max-width: 767px) {
    .item-vacancies__right {
      border-left: 0;
      padding-left: 0; } }
  .item-vacancies__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.05em;
    color: #6a7076;
    margin-bottom: 20px; }
  @media (max-width: 480px) {
    .item-vacancies__text {
      font-size: 14px;
      margin-bottom: 15px; } }
  .item-vacancies__button {
    display: flex;
    gap: 10px;
    max-width: 368px; }
  .item-vacancies__button-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.05em;
    color: #333;
    line-height: 1.2;
    border: 1px solid #a1a1a1;
    border-radius: 10px;
    height: 37px;
    flex-grow: 1; }
  @media (max-width: 480px) {
    .item-vacancies__button-text {
      font-size: 15px; } }
  .item-vacancies__button-icon {
    border: 1px solid #a1a1a1;
    border-radius: 10px;
    width: 55px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center; }

.sposov {
  padding: 70px 0;
  position: relative;
  margin-top: 0; }
  @media (max-width: 480px) {
  .sposov {
    padding: 40px 0; } }
  .sposov__container {
    position: relative;
    z-index: 1; }
  .sposov__title {
    font-weight: 400;
    font-size: 46px;
    letter-spacing: -0.05em;
    color: #fff;
    line-height: 1.2; }
  @media (max-width: 480px) {
    .sposov__title {
      font-size: 28px; } }
  .sposov__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
  .sposov__image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.us__title {
  font-weight: 400;
  margin-bottom: 30px; }
  .us__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 144%;
    letter-spacing: -0.05em;
    color: #333;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  .us__text ul {
    padding-left: 30px; }
  .us__text strong {
    font-weight: 500;
    color: #151515; }
  @media (max-width: 480px) {
    .us__text {
      font-size: 14px; } }

.news-page {
  margin-top: 50px; }
  .news-page__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 26px; }
  @media (max-width: 992px) {
    .news-page__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 600px) {
    .news-page__items {
      grid-template-columns: 1fr;
      gap: 15px; } }
  .news-page .news__item {
    background: #f6f7f7; }

.contacts {
  margin-top: 40px; }
  .contacts__items {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 32px; }
  @media (max-width: 1200px) {
    .contacts__items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 767px) {
    .contacts__items {
      grid-template-columns: 1fr;
      gap: 15px; } }
  .contacts__map {
    height: 430px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 32px; }
  @media (max-width: 767px) {
    .contacts__map {
      margin-top: 15px;
      height: 380px; } }
  .contacts__map iframe, .contacts__map div {
    width: 100%;
    height: 100%; }

.item-contacts {
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #e3e3e3; }
  @media (max-width: 480px) {
  .item-contacts {
    padding: 20px; } }
  .item-contacts__title {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px; }
  .item-contacts__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 145%;
    letter-spacing: -0.05em;
    color: #333; }
  @media (max-width: 480px) {
    .item-contacts__text {
      font-size: 18px; } }
  .item-contacts__text a {
    color: inherit; }
  .item-contacts__text-phones {
    display: flex;
    column-gap: 40px; }
  .item-contacts__text-phones a {
    position: relative; }
    .item-contacts__text-phones a:not(:last-child)::after {
      content: "";
      display: block;
      position: absolute;
      right: -20px;
      top: 50%;
      transform: translateY(-50%);
      height: 17px;
      width: 1px;
      background-color: #aeaeae; }
  .item-contacts__schedule {
    font-weight: 300;
    font-size: 14px;
    line-height: 157%;
    letter-spacing: -0.05em;
    color: #6a7076;
    margin-top: 10px; }
  .item-contacts__socials {
    display: flex;
    column-gap: 9px;
    margin-top: 10px; }
  .fixed {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  .fixed img {
    width: 70px;
    height: 70px; }
  @media (max-width: 480px) {
  .fixed {
    bottom: 10px;
    right: 10px;
    row-gap: 5px; }
    .fixed img {
      width: 50px;
      height: 50px; } }

.block.block--reverse .block__body {
  flex-direction: row-reverse; }
  @media (max-width: 992px) {
      .block.block--reverse .block__body {
        flex-direction: column; } }
  .block__body {
    display: flex;
    align-items: center;
    margin: 0 -50px; }
  @media (max-width: 992px) {
    .block__body {
      display: grid;
      grid-template-columns: 1fr; } }
  @media (max-width: 480px) {
    .block__body {
      row-gap: 20px; } }
  .block__images {
    flex: 0 0 50%;
    padding: 0 50px; }
  @media (max-width: 992px) {
    .block__images {
      width: 100%; } }
  .block__images img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover; }
  .block__image {
    flex: 0 0 50%;
    padding: 0 50px; }
  @media (max-width: 992px) {
    .block__image {
      max-width: 100%; } }
  .block__image img {
    width: 100%;
    border-radius: 20px; }
  .block__content {
    flex: 1 1 50%;
    padding: 0 50px; }
  .block__title {
    margin-bottom: 25px; }
  @media (max-width: 480px) {
    .block__title {
      margin-bottom: 15px; } }
  .block__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 144%;
    letter-spacing: -0.05em;
    color: #333;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  .block__text ul {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding-left: 30px; }
  @media (max-width: 480px) {
    .block__text {
      font-size: 14px; } }
  .block__items {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap; }
  .block__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    border-radius: 5px;
    padding: 5px 10px;
    background-color: #e3e3e3; }
  .block__item img {
    width: 20px; }
  @media (max-width: 480px) {
      .block__item img {
        width: 15px; } }
  .block__item span {
    font-size: 13px;
    line-height: 1.2;
    color: #151515; }
  @media (max-width: 480px) {
      .block__item span {
        font-size: 12px; } }
  .block__arrows {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-top: 20px; }
  .block__arrow {
    cursor: pointer;
    transition: 0.5s; }
  .block__arrow.swiper-button-disabled {
    opacity: 0.5; }

.property-card {
  margin-top: 30px; }
  .property-card__body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 580px;
    gap: 16px; }
  @media (max-width: 992px) {
    .property-card__body {
      grid-template-columns: 1fr;
      grid-template-rows: 400px auto; } }
  .property-card__visual {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; }
  @media (max-width: 992px) {
    .property-card__visual {
      padding: 50px 30px; } }
  @media (max-width: 480px) {
    .property-card__visual {
      padding: 40px 20px; } }
  .property-card__images {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
  .property-card__image {
    height: 100%;
    position: relative; }
  .property-card__image::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 33, 33, 0.7); }
  .property-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .property-card__top {
    position: relative;
    z-index: 1; }
  .property-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.05em;
    color: #333;
    line-height: 1.2;
    padding: 10px 30px;
    border-radius: 300px;
    background: #fff;
    margin-bottom: 40px; }
  @media (max-width: 480px) {
    .property-card__badge {
      font-size: 15px;
      padding: 10px 20px; } }
  .property-card__bottom {
    position: relative;
    z-index: 1; }
  .property-card__bottom .property-card__label {
    color: #fff;
    opacity: 0.6; }
  .property-card__title {
    font-weight: 500;
    font-size: 46px;
    letter-spacing: -0.05em;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2; }
  @media (max-width: 480px) {
    .property-card__title {
      font-size: 28px; } }
  .property-card__button {
    display: inline-flex;
    column-gap: 10px; }
  .property-card__button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.05em;
    text-align: center;
    color: #fff;
    line-height: 1.2;
    padding: 8px 24px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.3); }
  .property-card__button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 9px 9px;
    flex-shrink: 0; }
  .property-card__info {
    padding: 50px 25px 30px;
    backdrop-filter: blur(14px);
    background: linear-gradient(86deg, #9c3619 0%, #233655 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden; }
  .property-card__info::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 33, 33, 0.7); }
  @media (max-width: 480px) {
    .property-card__info {
      padding: 40px 20px; } }
  .property-card__heading {
    font-weight: 500;
    font-size: 28px;
    letter-spacing: -0.05em;
    color: #fff;
    margin-bottom: 18px; }
  @media (max-width: 480px) {
    .property-card__heading {
      font-size: 22px; } }
  .property-card__list {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 40px; }
  @media (max-width: 480px) {
    .property-card__list {
      margin-bottom: 20px; } }
  .property-card__item {
    list-style: none; }
  .property-card__label {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: -0.05em;
    color: #fff;
    line-height: 1.3;
    opacity: 0.8; }
  @media (max-width: 480px) {
    .property-card__label {
      font-size: 16px; } }
  .property-card__value {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: -0.05em;
    color: #fff;
    line-height: 1.3; }
  @media (max-width: 480px) {
    .property-card__value {
      font-size: 16px; } }
  .property-card__short-number {
    display: flex;
    align-items: center;
    column-gap: 16px;
    margin-bottom: 20px; }
  @media (max-width: 480px) {
      .property-card__short-number svg {
        height: 50px;
        width: auto; } }
  .property-card__short-number span {
    font-weight: 400;
    font-size: 69px;
    letter-spacing: -0.05em;
    color: #fff; }
  @media (max-width: 480px) {
      .property-card__short-number span {
        font-size: 50px; } }
  .property-card__full-number {
    font-weight: 400;
    font-size: 29px;
    letter-spacing: -0.05em;
    color: #fff;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff; }
  @media (max-width: 480px) {
    .property-card__full-number {
      font-size: 22px; } }

.project-info__title {
  margin-bottom: 25px; }
  @media (max-width: 480px) {
    .project-info__title {
      margin-bottom: 15px; } }
  .project-info__text {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 144%;
    letter-spacing: -0.05em;
    color: #333;
    overflow: hidden;
    transition: max-height 0.4s ease;
    /*&.collapsed {
     max-height: 10em;
     }
     &.expanded {
     max-height: 1000px;
     }*/ }
  @media (max-width: 480px) {
    .project-info__text {
      font-size: 14px; } }
  .project-info__text strong {
    font-weight: 500;
    color: #151515; }
  .project-info__button {
    display: flex;
    column-gap: 9px;
    background: transparent;
    margin-top: 20px; }
  .project-info__button.hidden {
    display: none; }
  @media (max-width: 480px) {
    .project-info__button {
      margin-top: 15px; } }
  .project-info__button-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.05em;
    color: #333;
    line-height: 1.3;
    border: 1px solid #a1a1a1;
    padding: 8px;
    border-radius: 10px;
    min-width: 303px; }
  .project-info__button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a1a1a1;
    border-radius: 10px;
    flex: 0 0 55px; }

.rasp__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  row-gap: 20px; }
  @media (max-width: 480px) {
    .rasp__top {
      margin-bottom: 15px; } }
  .rasp__title {
    margin-bottom: 0; }
  .rasp__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 0 0 400px;
    border: 1px solid #a1a1a1;
    border-radius: 300px; }
  @media (max-width: 600px) {
    .rasp__buttons {
      flex: 1 1 auto;
      width: 100%; } }
  .rasp__button {
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.05em;
    text-align: center;
    color: #333;
    line-height: 1.2;
    padding: 10px;
    background: transparent;
    transition: 0.5s;
    border-radius: 300px; }
  @media (max-width: 600px) {
    .rasp__button {
      font-size: 15px; } }
  .rasp__button.active {
    background: linear-gradient(86deg, #9c3619 0%, #233655 100%);
    color: #fff; }
  .rasp__image {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative; }
  .rasp__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .rasp__image-content {
    position: absolute;
    left: 50%;
    top: 60px;
    border-radius: 20px;
    width: 405px;
    background: #f6f7f7;
    z-index: 1;
    padding: 40px; }
  @media (max-width: 480px) {
      .rasp__image-content {
        width: auto;
        top: 15px;
        left: 15px;
        right: 15px; } }
  .rasp__image-text {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.05em;
    color: #000;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
      .rasp__image-text {
        font-size: 14px; } }
  .rasp__image-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer; }
  .rasp__map {
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    display: none; }
  .rasp__map iframe, .rasp__map div {
    width: 100%;
    height: 100%; }
  @media (max-width: 480px) {
    .rasp__map {
      height: 400px; } }

@media (max-width: 480px) {
  .sposov-my::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #151515;
    opacity: 0.4; } }

.range-sort {
  display: flex !important;
  align-items: center !important;
  flex-direction: row !important;
  column-gap: 20px !important; }

.infas__title {
  margin-bottom: 40px; }
  @media (max-width: 480px) {
    .infas__title {
      margin-bottom: 20px; } }
  .infas__image {
    position: relative;
    overflow: hidden;
    padding-bottom: 140%;
    border-radius: 20px; }
  .infas__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .infas__name {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -5%;
    color: #333;
    margin-top: 15px; }

.plans__title {
  margin-bottom: 40px; }
  @media (max-width: 480px) {
    .plans__title {
      margin-bottom: 20px; } }
  .plans .swiper-slide {
    height: auto; }

.item-plans {
  height: 100%;
  padding: 15px 15px 20px;
  border-radius: 20px;
  background: #f6f7f7; }
  .item-plans__image {
    border-radius: 15px;
    background-color: #fff;
    display: flex;
    align-items: center;
    height: 222px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-bottom: 20px; }
  .item-plans__image img {
    max-width: 100%;
    max-height: 100%; }
  .item-plans__title {
    font-weight: 400;
    font-size: 23px;
    letter-spacing: -0.05em;
    color: #333;
    line-height: 1.2;
    margin-bottom: 15px; }
  @media (max-width: 480px) {
    .item-plans__title {
      font-size: 20px; } }
  .item-plans__price {
    font-weight: 400;
    font-size: 26px;
    letter-spacing: -0.05em;
    color: #333;
    line-height: 1.2;
    margin-bottom: 15px; }
  @media (max-width: 480px) {
    .item-plans__price {
      font-size: 22px; } }
  .item-plans__text {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: -0.05em;
    color: #6a7076;
    margin-bottom: 20px; }

.contacts__title {
  margin-bottom: 40px; }
  @media (max-width: 480px) {
  .contacts__title {
    margin-bottom: 20px; } }

.soc-fifty .soc__container {
  grid-template-columns: 1fr 1fr; }
  @media (max-width: 992px) {
    .soc-fifty .soc__container {
      grid-template-columns: 1fr; } }

.as__body {
  padding: 10px 50px 10px 10px;
  border-radius: 20px;
  background: #f6f7f7;
  display: flex;
  align-items: center;
  column-gap: 70px; }
  .as__icon {
    flex: 0 0 147px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 109px;
    border-radius: 20px;
    background: linear-gradient(86deg, #9c3619 0%, #233655 100%); }
  .as__title {
    flex-grow: 1;
    font-weight: 400;
    font-size: 29px;
    line-height: 131%;
    letter-spacing: -0.05em;
    color: #000; }
  .as__button {
    padding: 12px 45px;
    border-radius: 10px;
    background: linear-gradient(86deg, #9c3619 0%, #233655 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: -0.05em;
    text-align: center;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap; }

.design__title {
  margin-bottom: 40px; }
  @media (max-width: 480px) {
    .design__title {
      margin-bottom: 20px; } }
  .design__items {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 26px; }
  @media (max-width: 767px) {
    .design__items {
      grid-template-columns: 1fr;
      gap: 15px; } }
  .design__item {
    position: relative;
    display: block;
    overflow: hidden;
    padding-bottom: 70%;
    border-radius: 29px; }
  .design__item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }

@media (max-width: 767px) {
    .sort__input:nth-child(3) {
      grid-column: auto !important; } }

.xt {
  border-radius: 10px;
  background: #fff;
  padding: 10px 18px;
  position: relative;
  background: #f6f7f7;
  display: flex;
  align-items: center;
  column-gap: 20px; }
  @media (max-width: 767px) {
  .xt {
    grid-column: auto !important; } }
  @media (max-width: 480px) {
  .xt {
    padding: 10px 12px; } }
  @media (max-width: 480px) {
  .xt {
    flex-wrap: wrap;
    row-gap: 10px; } }
  .xt input {
    background: #fff;
    font-size: 13px;
    padding: 8px 10px;
    width: 100px; }
  @media (max-width: 480px) {
    .xt__title {
      width: 100%; } }

.sort__input--rooms {
  display: flex;
  align-items: center;
  column-gap: 20px; }

.materials__title {
  margin-bottom: 40px; }
  @media (max-width: 480px) {
    .materials__title {
      margin-bottom: 20px; } }
  .materials__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 26px; }
  @media (max-width: 992px) {
    .materials__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 600px) {
    .materials__items {
      grid-template-columns: 1fr;
      gap: 15px; } }

.material {
  padding: 33px 28px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #d7d7d7;
  display: flex;
  flex-direction: column; }
  @media (max-width: 480px) {
  .material {
    padding: 25px 20px; } }
  .material__icon {
    margin-bottom: 28px; }
  .material__title {
    font-weight: 400;
    font-size: 23px;
    letter-spacing: -0.05em;
    color: #151515;
    margin-bottom: 35px;
    flex-grow: 1; }
  @media (max-width: 480px) {
    .material__title {
      font-size: 20px;
      margin-bottom: 20px; } }
  .material__actions {
    display: flex;
    align-items: center;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 15px; }
  .material__action {
    display: flex;
    align-items: center;
    column-gap: 9px; }
  .material__action span {
    font-weight: 400;
    font-size: 17px;
    letter-spacing: -0.05em;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #151515; }

.assde {
  margin-top: 60px; }
  @media (max-width: 480px) {
  .assde {
    margin-top: 30px; } }
  .assde__items {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1.3fr;
    grid-template-rows: 259px 259px;
    gap: 26px; }
  @media (max-width: 992px) {
    .assde__items {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 200px 200px 200px; } }
  @media (max-width: 480px) {
    .assde__items {
      gap: 15px;
      grid-template-rows: 120px 120px 120px; } }
  .assde__item {
    border-radius: 20px;
    overflow: hidden; }
  @media (max-width: 480px) {
    .assde__item {
      border-radius: 15px; } }
  .assde__item:first-child {
    grid-row: span 2; }
  .assde__item img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.end__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px; }
  @media (max-width: 992px) {
    .end__body {
      grid-template-columns: 1fr;
      gap: 20px; } }
  @media (max-width: 480px) {
    .end__body {
      gap: 15px; } }
  .end__content {
    padding: 38px 48px;
    border: 1px solid #e3e3e3;
    border-radius: 20px;
    overflow: hidden; }
  @media (max-width: 480px) {
    .end__content {
      padding: 30px 20px; } }
  .end__title {
    font-weight: 400;
    font-size: 31px;
    line-height: 151%;
    letter-spacing: -0.05em;
    color: #151515;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px; }
  @media (max-width: 480px) {
    .end__title {
      font-size: 24px;
      margin-bottom: 15px;
      padding-bottom: 15px; } }
  .end__title::after {
    content: "";
    display: block;
    position: absolute;
    left: -50px;
    right: -50px;
    height: 1px;
    bottom: 0;
    background-color: #e3e3e3; }
  .end__items {
    display: flex;
    flex-direction: column;
    row-gap: 30px; }
  @media (max-width: 480px) {
    .end__items {
      row-gap: 15px; } }
  .end__item {
    position: relative; }
  .end__item:not(:last-child) {
    padding-bottom: 30px; }
  @media (max-width: 480px) {
      .end__item:not(:last-child) {
        padding-bottom: 15px; } }
  .end__item:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    left: -50px;
    right: -50px;
    height: 1px;
    bottom: 0;
    background-color: #e3e3e3; }

.item-end {
  display: flex;
  align-items: start;
  column-gap: 30px; }
  @media (max-width: 480px) {
  .item-end {
    column-gap: 15px; } }
  .item-end__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    width: 56px;
    height: 56px;
    background: #9b3a18; }
  @media (max-width: 480px) {
    .item-end__icon {
      width: 45px;
      height: 45px; }
      .item-end__icon svg {
        width: 30px;
        height: auto; } }
  .item-end__title {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 8px; }
  .item-end__address {
    font-weight: 400;
    font-size: 20px;
    line-height: 145%;
    letter-spacing: -0.05em;
    color: #333;
    max-width: 320px;
    margin-bottom: 8px; }
  @media (max-width: 480px) {
    .item-end__address {
      font-size: 16px; } }
  .item-end__schedule {
    font-weight: 300;
    font-size: 14px;
    line-height: 157%;
    letter-spacing: -0.05em;
    color: #6a7076; }
  .item-end__phones {
    display: flex;
    column-gap: 40px; }
  .item-end__phone {
    position: relative;
    font-weight: 400;
    font-size: 20px;
    line-height: 145%;
    letter-spacing: -0.05em;
    color: #333; }
  @media (max-width: 480px) {
    .item-end__phone {
      font-size: 16px; } }
  .item-end__phone::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    width: 1px;
    height: 17px;
    background-color: #aeaeae; }
  .item-end__phone:last-child::after {
    display: none; }
  .item-end__email {
    font-weight: 400;
    font-size: 20px;
    line-height: 145%;
    letter-spacing: -0.05em;
    color: #333;
    margin-bottom: 10px; }
  @media (max-width: 480px) {
    .item-end__email {
      font-size: 16px; } }
  .item-end .item-contacts__social svg, .item-end .item-contacts__social img {
    width: 32px;
    height: 32px; }

.form {
  padding: 38px 48px;
  border: 1px solid #e3e3e3;
  border-radius: 20px;
  overflow: hidden; }
  @media (max-width: 480px) {
  .form {
    padding: 30px 20px; } }
  .form__inputs {
    display: flex;
    flex-direction: column;
    row-gap: 20px; }
  @media (max-width: 480px) {
    .form__inputs {
      row-gap: 15px; } }
  .form__input input, .form__input textarea {
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    line-height: 142%;
    letter-spacing: -0.05em;
    color: #151515;
    padding: 12px 30px;
    border: 1px solid #e3e3e3;
    border-radius: 10px; }
  @media (max-width: 480px) {
      .form__input input, .form__input textarea {
        padding: 12px 20px;
        font-size: 15px; } }
  .form__input input::placeholder, .form__input textarea::placeholder {
    color: #777; }
  .form__input textarea {
    height: 125px;
    resize: none; }
  .form__button {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 50px;
    border-radius: 6px;
    background: linear-gradient(86deg, #9c3619 0%, #233655 100%);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.05em;
    text-align: center;
    color: #fff;
    line-height: 1.2; }

#contactForm_forms_flash .close {
  display: none; }
  #contactForm_forms_flash p {
    color: green;
    margin-bottom: 10px; }

.news-single__content {
  max-width: 800px; }
  .news-single__title {
    margin-bottom: 30px; }
  @media (max-width: 480px) {
    .news-single__title {
      margin-bottom: 15px; } }
  .news-single__text {
    font-size: 18px;
    line-height: 1.3;
    color: #333;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 40px; }
  @media (max-width: 480px) {
    .news-single__text {
      font-size: 14px;
      margin-bottom: 20px; } }
  .news-single__text a {
    color: #9c3619; }
  .news-single__image img {
    width: 100%;
    border-radius: 20px; }

.view__body {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  border: 1px solid #ddd;
  border-radius: 20px; }
  @media (max-width: 992px) {
    .view__body {
      grid-template-columns: 1fr 1.4fr; } }
  @media (max-width: 767px) {
    .view__body {
      grid-template-columns: 1fr; } }
  .view__items {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding: 40px; }
  @media (max-width: 992px) {
    .view__items {
      padding: 20px; } }
  @media (max-width: 480px) {
    .view__items {
      padding: 15px; } }
  .view__content {
    padding: 50px;
    display: none;
    border-left: 1px solid #ddd; }
  @media (max-width: 992px) {
    .view__content {
      padding: 20px; } }
  @media (max-width: 767px) {
    .view__content {
      border-left: none;
      border-top: 1px solid #ddd; } }
  @media (max-width: 480px) {
    .view__content {
      padding: 20px 15px; } }
  .view__title {
    font-weight: 500;
    font-size: 30px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2; }
  @media (max-width: 480px) {
    .view__title {
      font-size: 24px; } }
  .view__image {
    position: relative;
    overflow: hidden;
    padding-bottom: 50%;
    display: block;
    border-radius: 20px;
    margin-bottom: 20px; }
  .view__image img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover; }
  .view__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    letter-spacing: -0.05em;
    color: #333;
    margin-bottom: 20px; }
  .view__list {
    display: flex;
    align-items: center;
    column-gap: 24px;
    flex-wrap: wrap;
    row-gap: 10px; }
  .view__list-item {
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.05em;
    color: #6a7076;
    line-height: 1.2;
    position: relative; }
  .view__list-item::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: -12px;
    height: 13px;
    width: 1px;
    background: #6a7076;
    transform: translateY(-50%); }
  .view__list-item:last-child::after {
    display: none; }
  .view__button {
    display: flex;
    gap: 5px;
    margin-top: 20px; }
  .view__button-text {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.05em;
    text-align: center;
    color: #fff;
    line-height: 1.2;
    padding: 8px 50px;
    border-radius: 10px;
    background: linear-gradient(86deg, #9c3619 0%, #233655 100%); }
  .view__button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    width: 28px;
    height: 32px;
    background: linear-gradient(86deg, #9c3619 0%, #233655 100%); }

.item-view {
  padding: 10px;
  border-radius: 10px;
  transition: 0.5s;
  background-color: #fff;
  display: flex;
  align-items: center;
  column-gap: 18px;
  cursor: pointer; }
  @media (max-width: 480px) {
  .item-view {
    column-gap: 12px; } }
  .item-view:hover, .item-view.active {
    background: #e0e6ea; }
  .item-view__image {
    border-radius: 10px;
    width: 55px;
    height: 69px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden; }
  .item-view__image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-view__title {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.05em;
    color: #333;
    line-height: 1.2;
    margin-bottom: 7px; }
  .item-view__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    letter-spacing: -0.05em;
    color: #333; }

.view-all {
  padding: 10px;
  border-radius: 10px;
  transition: 0.5s;
  background-color: #fff;
  display: flex;
  align-items: center;
  column-gap: 18px; }
  @media (max-width: 480px) {
  .view-all {
    column-gap: 12px; } }
  .view-all:hover, .view-all.active {
    background: #e0e6ea; }
  .view-all__icon {
    border-radius: 10px;
    width: 55px;
    height: 69px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(86deg, #9c3619 0%, #233655 100%);
    display: flex;
    align-items: center;
    justify-content: center; }
  .view-all__title {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: -0.05em;
    color: #333;
    margin-bottom: 7px;
    line-height: 1.2; }
  .view-all__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    letter-spacing: -0.05em;
    color: #333; }
  .view-all__arrow {
    margin-left: auto; }

.info-hover {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  border-radius: 20px;
  background: #f6f7f7;
  padding: 45px;
  z-index: 1;
  transition: 0.5s;
  transform: translateY(100%); }
  @media (max-width: 767px) {
  .info-hover {
    padding: 20px; } }
  .info-hover__title {
    font-weight: 400;
    font-size: 46px;
    letter-spacing: -0.05em;
    color: #151515;
    line-height: 1.2;
    margin-bottom: 20px; }
  @media (max-width: 767px) {
    .info-hover__title {
      font-size: 24px;
      margin-bottom: 10px; } }
  .info-hover__text {
    font-weight: 400;
    font-size: 22px;
    line-height: 150%;
    letter-spacing: -0.05em;
    color: #151515; }
  @media (max-width: 767px) {
    .info-hover__text {
      font-size: 16px; } }

.info__items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px; }
  @media (max-width: 767px) {
  .info__items-grid {
    grid-template-columns: 1fr;
    gap: 15px; } }

.plan-card {
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 16px;
  background: #fff;
  display: flex;
  flex-direction: column; }

.plan-card__top {
  background: #f6f6f6;
  border-radius: 14px;
  padding: 12px;
  position: relative;
  min-height: 160px; }

.plan-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px; }

.plan-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px; }

.plan-img img {
  max-height: 160px;
  max-width: 100%;
  object-fit: contain; }

.plan-title {
  margin-top: 14px;
  font-size: 18px; }

.plan-price {
  margin-top: 6px;
  font-size: 20px; }

.plan-meta {
  margin-top: 10px;
  color: #777;
  font-size: 13px;
  line-height: 1.35;
  flex-grow: 1; }

.plan-actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  align-items: center; }

.btn {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 10px 14px;
  text-align: center;
  display: inline-block;
  color: #151515; }

.btn-icon {
  width: 42px;
  height: 42px;
  border: 1px solid #ddd;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center; }

.plans-filter {
  padding: 10px 14px;
  border: 1px solid #a1a1a1;
  border-radius: 10px;
  background: #fff;
  cursor: pointer; }

.plans-filter.is-active {
  border-color: #151515;
  background: #151515;
  color: #fff; }

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px 0 0;
  flex-wrap: wrap; }

.pager__pages {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06); }

.pager__page, .pager__dots {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1;
  user-select: none; }

.pager__page {
  text-decoration: none;
  color: #9c3619;
  border: 1px solid transparent;
  transition: 0.18s ease; }

.pager__page:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.06); }

.pager__page.is-active {
  background: #9c3619;
  color: #fff;
  border-color: #9c3619;
  font-weight: 600; }

.pager__dots {
  color: rgba(0, 0, 0, 0.45); }

.pager__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: #111;
  transition: 0.18s ease; }

.pager__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08); }

.pager__icon {
  font-size: 18px;
  line-height: 1;
  opacity: 0.8; }

.pager__text {
  font-size: 14px;
  font-weight: 500; }

.pager__btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  transform: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04); }

.ads__title {
  margin-bottom: 40px; }
  @media (max-width: 480px) {
    .ads__title {
      margin-bottom: 20px; } }
  .ads__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px; }
  @media (max-width: 767px) {
    .ads__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 550px) {
    .ads__items {
      grid-template-columns: 1fr; } }
  .ads__item-top {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 10px; }
  .ads__item-icon svg {
    width: 50px; }
    .ads__item-icon svg path {
      fill: #9c3619; }
  .ads__item-title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    color: #151515;
    margin-bottom: 10px; }
  .ads__item-text {
    font-size: 14px;
    font-weight: 400;
    color: #636363;
    line-height: 1.2; }

.swiper-button-next:after, .swiper-button-prev:after {
  color: #9b3a18; }

.swiper-button-prev {
  left: -40px; }

.swiper-button-next {
  right: -40px; }

@media (max-width: 1100px) {
  .swiper-button-prev {
    left: 10px;
    z-index: 2; }

  .swiper-button-next {
    right: 10px;
    z-index: 2; } }

.asdasdsd {
  position: relative; }
  .asdasdsd::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #151515;
    opacity: 0.5; }
  .asdasdsd ._container {
    position: relative;
    z-index: 1; }
