@font-face {
  font-family: "Manrope";
  src: url("/css/fonts/Manrope-VariableFont_wght.ttf")
    format("truetype-variations"); /* Для переменных шрифтов */
  font-display: swap;
  font-weight: 200 800; /*  диапазон жирности  */
  font-style: normal;
}

:root {
  --tekst: #5b5b5b;

  --font-family: "Inter", sans-serif;
  --second-family: "Manrope", sans-serif;
}

h1 {
  font-size: 110px;
  line-height: 110%;
}
h2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 38px;
  text-transform: uppercase;
  color: #282828;
  line-height: 110%;
}
h3 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 30px;
  text-transform: uppercase;
  color: #282828;
  line-height: 110%;
}
h4 {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  color: #282828;
}
h5 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #282828;
}

body {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #767676;

  text-align: left;
}

.container {
  max-width: 1716px;
  margin: 0 auto;
}

.nav {
  border-bottom: 1px solid #e2e2e2;
  padding: 10px 30px;

  background-color: #fff;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.nav-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;

  height: 58px;
}
.nav-list-start {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 100%;
  max-height: 100%;
}
.nav-list-start-item {
  max-height: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-list-start-item a {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--tekst);
  max-height: 100%;
  transition: all 0.3s ease;

  position: relative;
  &:hover {
    &::after {
      opacity: 1;
    }
  }
  &::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -29px;
    width: 100%;
    height: 3px; /* Толщина border-bottom */
    background-image: linear-gradient(to right, #e12e2e 0%, #b72323 100%);
    transition: all 0.3s ease;
    opacity: 0;
  }
}
.nav-list-start-item.active a {
  color: #000;

  &::after {
    opacity: 1;
  }
}

.nav-burger {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translate(0, -50%);

  background-image: url(/img/burger.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 20px;
  display: none;
  transition: all 0.3s ease;
}
.nav-burger.active {
  background-image: url(/img/burger-close.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
}

.hero {
  margin-top: 79px;
  padding: 0 30px 80px;
  margin-bottom: 120px;

  height: calc(100vh - 79px);
  position: relative;

  background-image: url(/img/hero_main.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.hero-title {
  position: absolute;
  bottom: 80px;

  text-shadow: 0 10px 36px 0 rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  background: linear-gradient(352deg, #b72323 0%, #e12e2e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rent-hero {
  margin-top: 79px;
  padding: 40px 30px 0;

  margin-bottom: 70px;
}
.rent-hero-img {
  max-width: 100%;
  img {
    width: 100%;
  }
}

.rent-info {
  padding: 0px 30px;
  margin-bottom: 120px;
  max-width: 100%;
}
.rent-info-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.rent-info-left {
  display: flex;
  justify-content: space-between;
  flex-direction: column;

  flex-grow: 1;
  flex-basis: 30%;
  flex-shrink: 1;

  height: 85vh;

  position: sticky;
  /* padding-top: 30px; */
  top: 110px;

  min-width: 300px;
}
.rent-info-left-up {
}
.rent-info-left-title {
  margin-bottom: 33px;

  text-transform: uppercase;
}
.rent-info-left-wrapper {
  display: flex;
  flex-direction: column;
}
.rent-info-left-btn {
  color: #6b6b6b;
  font-weight: 400;

  padding: 10px 25px;

  border-left: 1px solid #e2e2e2;
  margin-left: 1px;

  transition: color 0.3s ease;

  &:hover {
    color: #b72323;
  }
}
.rent-info-left-btn.active {
  border-left: 3px solid #b72323;
  margin-left: 0px;

  padding: 10px 25px 10px 24px;

  color: #282828;
}
.rent-info-left-down {
}
.rent-info-left-down-title {
  color: #6b6b6b;
  margin-bottom: 16px;
}
.rent-info-left-down-btn {
  font-weight: 400;
  font-size: 30px;

  color: #282828;
}
.rent-info-left-down-btn-text {
  margin-bottom: 6px;
  color: #6b6b6b;
  font-size: 16px;
}

.rent-info-right {
  flex-basis: 70%;
  flex-grow: 1;
  flex-shrink: 1;
  overflow: hidden;
}
.rent-info-title {
  margin-bottom: 25px;
}
.rent-info-right-text {
  font-size: 18px;
  line-height: 145%;
  color: var(--tekst);

  margin-bottom: 40px;

  width: 90%;
}
.rent-info-right-wrapper {
  display: flex;
  gap: 50px;

  max-width: 954px;

  margin-bottom: 40px;
}
.rent-info-right-item {
  max-width: 49%;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 45%;
}
.rent-info-right-item-title {
  margin-bottom: 20px;

  text-transform: none;
}
.rent-info-right-btn {
  text-transform: uppercase;
  color: #b72323;

  border: 1px solid #b72323;
  border-radius: 2px;
  padding: 15px 30px;

  margin-bottom: 80px;

  transition: background-color 0.3s ease, color 0.3s ease;
  &:hover {
    background-color: #b72323;
    color: #fff;
  }
}

.rent-info-right-title {
  margin-bottom: 25px;
}

.rent-info-right-slider {
  height: 240px;

  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.rent-info-right-slider-item {
  display: flex;
  justify-content: center;
  align-items: center;

  border: 1px solid #e2e2e2;

  height: 100%;

  width: 100%;
  max-width: 100%;
  padding: 10px;
  img {
    width: 100%;
    object-fit: cover;
  }
}
#TC {
  width: 100%;
  scroll-margin-top: 100px;
  margin-bottom: 160px;
}

#BC {
  width: 100%;

  scroll-margin-top: 100px;
  margin-bottom: 160px;
}
#TV {
  width: 100%;

  scroll-margin-top: 130px;
}

.rent-info-right-list-title {
  text-transform: uppercase;
  color: #282828;

  margin-bottom: 20px;
}
.rent-info-right-list {
  display: flex;
  flex-direction: column;
  gap: 15px;

  margin-bottom: 40px;

  max-width: 900px;
  li {
    list-style-type: none;
    padding-left: 25px;
    position: relative;
  }
  li::before {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    top: 3px;
    width: 13px;
    height: 14px;
    background-image: url(/img/mini_berry.svg);
    background-size: cover;
    background-repeat: no-repeat;
  }

  span {
    font-family: var(--font-family);
    font-size: 18px;
    color: #282828;
    margin-bottom: 10px;
  }
}

.BC-slider {
  height: 440px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.BC-slider-item {
  max-width: 100%;
  height: 100%;
  img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
  }
}

.quesions {
  margin-bottom: 120px;
  padding: 0 30px;
}
.quesions-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;

  background: linear-gradient(135deg, #282828 0%, #000 100%);

  border-radius: 2px;
  padding: 40px;

  position: relative;
  z-index: 2;
}
.quesions-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  background-image: url(/img/3_berry.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 250px;
  height: 100%;
  z-index: -1;
}
.quesions-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;

  background-image: url(/img/3_berry_2.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 197px;
  height: 100%;
  z-index: -1;
}
.quesions-title {
  font-weight: 300;
  color: #fff;
}
.quesions-text {
  color: #fff;
  font-weight: 300;

  display: flex;
  align-items: center;
  gap: 7px;

  a {
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    &:hover {
      text-decoration: underline;
    }
  }
  br {
    display: none;
  }
}
.quesions-btn {
  border: 1px solid #c3c3c3;
  border-radius: 2px;
  padding: 15px 30px;

  text-transform: uppercase;
  margin-left: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
  &:hover {
    background-color: #fff;
    color: #282828;
  }
}

.footer {
  background: #1e1e1e;

  padding: 50px 30px;
}

/* .footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 50px;
} */
/* .footer-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 14px;

  a {
    font-size: 14px;
    color: #767676;
    transition: color 0.3s ease;
    &:hover {
      color: #fff;
      text-decoration: underline;
    }
  }
} */
.footer-item:last-child a {
  opacity: 0.5;
  transition: opacity 0.3s ease;
  &:hover {
    opacity: 1;
    text-decoration: underline;
  }
}
.footer-item-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer-item-wrapper-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;

  color: #e2e2e2;

  a {
    font-weight: 400;
    font-size: 14px;
    text-transform: none;
    font-family: var(--font-family);
    color: #e2e2e2;
  }
}

.swiper-butiki {
  height: 250px;
}
.swiper-main-butiki {
  height: 240px;
}
.swiper-wrapper {
  padding-right: 30px;
}
.swiper-BC {
  height: 440px;
}

.slider-butiki {
  width: 100%;
}

.swiper-butiki-controls {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;

  top: 50%;
  transform: translateY(-50%);
  left: -1%;
  width: 102%;
  z-index: 3;
}
.swiper-button {
  height: 40px;
  width: 40px;

  border-radius: 52px;
  background-color: #fff;

  border: 1px solid #e2e2e2;

  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
  pointer-events: all;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 200;
  top: 0;
  left: 0;

  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.5);

  display: none;
}
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 201;

  border: 1px solid #f5f5f5;
  padding: 40px 60px 50px 60px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);

  background: #fff;
  max-width: 570px;

  display: none;
}
.cookie {
  top: auto;
  bottom: 30px;
  left: 30px;
  transform: none;

  padding: 20px;

  max-width: calc(100% - 60px);

  .cookie-title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    background: linear-gradient(117deg, #e12e2e 0%, #b72323 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 10px;
  }

  .cookie-content {
    display: flex;
    align-items: end;
    gap: 20px;
    .popup-text {
      margin-bottom: 0;
    }
    button {
      /* background: linear-gradient(117deg, #e12e2e 0%, #b72323 100%); */
      background: #282828;
      color: #fff;
      padding: 15px 30px;
      border-radius: 2px;
      transition: background-color 0.3s ease;
      &:hover {
        background-color: #b72323;
      }
    }
  }
  display: none;
}
.call {
  overflow: hidden;
}
.popup-close {
  position: absolute;
  top: 25px;
  right: 40px;
}
.popup-title {
  background: linear-gradient(117deg, #e12e2e 0%, #b72323 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-bottom: 40px;
}
.popup-text {
  color: #5a5a5a;

  margin-bottom: 40px;
}
.input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;

  margin-bottom: 10px;

  input {
    width: 100%;
    border-bottom: 1px solid #aeaeae;
    padding: 13px 20px 13px 0px;

    color: #282828;
  }
}
.popup-form-error {
  margin-bottom: 30px;

  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 135%;
  background: linear-gradient(117deg, #e12e2e 0%, #b72323 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  
}
.ckeck-wrapper {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 135%;
  text-transform: lowercase;
  color: #9d9d9d;

  width: 100%;

  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  input {
    appearance: none; /* Убираем стандартный вид */
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 2px;
    cursor: pointer;
    position: relative; /* Для позиционирования SVG */
    padding: 9px;
    margin-top: 5px;

    &:checked {
      background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='18' height='18' rx='2' fill='url(%23paint0_linear_434_16389)'/%3E%3Cpath d='M4.5 9L8.5 13L14 5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_434_16389' x1='1.75781' y1='6.57816' x2='15.2043' y2='6.82943' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23E12E2E'/%3E%3Cstop offset='1' stop-color='%23B72323'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
      background-size: 18px 18px;
      background-position: center;
      background-repeat: no-repeat;
      border: none;
      padding: 10px;
    }
  }
  a {
    color: #717171;

    &:hover {
      text-decoration: underline;
    }
  }
}
.popup-btn {
  border-radius: 2px;
  padding: 15px 30px;

  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  background: #c3c3c3;
}
.popup-btn.active {
  background: linear-gradient(117deg, #e12e2e 0%, #b72323 100%);
}
.popup-berry {
  object-fit: contain;
  position: absolute;
  bottom: -48px;
  right: 0;
  transform: rotate(-11deg);
  z-index: -1;
}

.shops {
  padding: 0 30px;
  margin-bottom: 120px;
}
.shops-wrapper-up {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 10px;

  height: 850px;

  margin-bottom: 10px;
}
.shops-wrapper-right {
  flex-basis: 50%;
  flex-grow: 1;
  flex-shrink: 1;
  max-width: calc(50% - 5px);
  .shops-item {
    width: 100%;
    height: 100%;
  }
}
.shops-item {
  position: relative;
  display: flex;

  transition: all 0.2s ease;

  &:hover {
    transform: scale(1.01);
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.05);
  }
}

.shops-wrapper-left .shops-item {
  position: relative;
  height: 100%;

  &:nth-child(1) {
    flex-basis: 50%;
    flex-grow: 1;
    flex-shrink: 1;
    max-width: calc(50% - 5px);
    max-height: calc(50% - 5px);
  }
  &:nth-child(2) {
    flex-basis: 50%;
    flex-grow: 1;
    flex-shrink: 1;
    max-width: calc(50% - 5px);
    max-height: calc(50% - 5px);
  }
  &:nth-child(3) {
    flex-basis: 100%;
    flex-grow: 1;
    flex-shrink: 1;
    max-width: 100%;
    max-height: calc(50% - 5px);
  }
}
.shops-item-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  img {
    object-position: center;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
.shops-item-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;

  border: 1px solid #e2e2e2;
  padding: 15px 20px;
  background: #fff;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #282828;
  z-index: 1;
}
.shops-wrapper-left {
  flex-basis: 50%;
  flex-grow: 1;
  flex-shrink: 1;
  max-width: calc(50% - 5px);

  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.shops-wrapper-down {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 10px;

  .shops-item {
    flex-basis: calc(100% / 4 - 9px);
    flex-grow: 1;
    flex-shrink: 1;
    max-width: calc(100% / 4 - 9px);
  }
}

.mfk {
  padding: 0 30px;

  margin-bottom: 120px;
}
.mfk-title {
  text-transform: uppercase;
  color: #282828;

  margin-bottom: 22px;
}
.mfk-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.mfk-bar {
  width: 550px;
}
.mfk-bar-item {
  width: 100%;
}
.mfk-bar-item-content {
  border: 1px solid #e2e2e2;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  position: relative;

  cursor: pointer;
  transition: background 0.3s ease;
  svg {
    transition: all 0.3s ease;
    transform: rotate(180deg);

    path {
      transition: all 0.3s ease;
      stroke: #6b6b6b;
    }
  }
  &:hover {
    background: #282828;
    .mfk-bar-title {
      color: #fff;
    }
    svg {
      transform: rotate(0);
      path {
        stroke: #fff;
      }
    }
  }
}
.mfk-bar-title {
  text-transform: uppercase;
  color: #282828;
  transition: color 0.3s ease;
}
.mfk-bar-sub {
  width: 100%;
  max-height: 0;

  overflow: hidden;
  a {
    text-align: left;
    float: left;

    font-size: 14px;
    color: #b72323;
    pointer-events: all;

    &:hover {
      text-decoration: underline;
    }
  }
  pointer-events: none;
}
.mfk-bar-item.active {
  background: #282828;
  .mfk-bar-title {
    color: #fff;
  }
  svg {
    transform: rotate(0);
    path {
      stroke: #fff;
    }
  }
  .mfk-bar-sub {
    background: #fff;
    max-height: none;
    height: auto;
    pointer-events: all;
  }
}
.mfk-bar-sub-content {
  padding: 30px 40px 40px 20px;
}
.mfk-bar-sub-text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--tekst);

  text-align: left;
}
.mfk-bar-sub-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  margin-top: 40px;
  margin-bottom: 30px;
}
.mfk-bar-sub-item {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 60px;
  &:nth-child(1) {
    flex-grow: 3;
  }
}
.mfk-bar-sub-item-title {
  text-align: left;

  color: #282828;
  margin-bottom: 10px;
}
.mfk-wrapper-img {
  flex-grow: 1;
  flex-shrink: 1;
  overflow: hidden;
  width: 100%;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.main-butiki {
  padding: 0 30px;
  margin-bottom: 120px;
}

.main-butiki-title {
  text-transform: uppercase;
  color: #282828;
  margin-bottom: 25px;
}
.main-butiki-filter {
  display: flex;
  justify-content: flex-start;
  align-items: center;

  border-bottom: 1px solid #e2e2e2;

  margin-bottom: 15px;
}
.main-butiki-filter-item {
  padding: 10px 20px;

  font-size: 16px;
  text-transform: uppercase;
  color: #6b6b6b;

  transition: color 0.3s ease;
  &:hover {
    color: #b72323;
  }

  cursor: pointer;
}
.main-butiki-filter-item.active {
  border-bottom: 2px solid #b72323;
  color: #b72323;
}
.main-butiki-slider {
  position: relative;
}
.main-butiki-slider .swiper-butiki-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  pointer-events: none;
}
.swiper-main-butiki .swiper-slide {
  img {
    transition: all 0.3s ease;
  }
  &:hover {
    img {
      transform: scale(1.03);
      /* box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1); */
    }
  }
}

.quesions.pink .quesions-wrapper {
  background: linear-gradient(
    117deg,
    rgba(225, 46, 46, 0.1) 0%,
    rgba(183, 35, 35, 0.1) 100%
  );
  .quesions-title {
    color: #282828;
  }
  .quesions-text {
    color: #282828;
    a {
      color: #282828;
    }
  }
  .quesions-btn {
    border: 1px solid #b72323;
    color: #b72323;
    background-color: rgb(250, 233, 233);
    &:hover {
      background-color: #b72323;
      color: #fff;
    }
  }
}

.about-hero {
  margin-top: 79px;
  padding: 40px 30px 0;

  margin-bottom: 120px;
}
.about-hero-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
}
.about-hero-wrapper-left {
  flex-basis: 45%;
  flex-grow: 1;
  flex-shrink: 1;
}
.about-hero-wrapper-left-title {
  margin-bottom: 25px;
}
.about-hero-wrapper-left-text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--tekst);
}
.about-hero-wrapper-right {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 50px;

  flex-basis: 55%;
  flex-grow: 1;
  flex-shrink: 1;
}
.about-hero-wrapper-right-item {
  flex-basis: 32%;
  flex-grow: 1;
  flex-shrink: 1;
  max-width: calc(33% - 31px);
}
.about-hero-wrapper-right-item-title {
  text-transform: none;
  margin-bottom: 10px;
}
.about-hero-wrapper-right-item-text {
}
.about-hero-wrapper-right-item-img {
  margin-bottom: 10px;
}

.about-images-down {
  padding: 0 30px;

  margin-bottom: 120px;
}

.about-images-down-title {
  margin-bottom: 25px;
}
.about-images-down-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 10px;
}
.about-images-up-wrapper-item {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc((100% / 5) - 9px);
  max-width: calc((100% / 5) - 8px);
}
.about-images-up-wrapper-item-img {
  width: 100%;
  height: 207px;
  margin-bottom: 10px;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
.about-images-up-wrapper-item-date {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 145%;
  color: #6b6b6b;

  opacity: 0.5;
  margin-bottom: 10px;
}
.about-images-up-wrapper-item-text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #6b6b6b;
}

.brends {
  margin-top: 79px;
  padding: 40px 30px 0;

  margin-bottom: 120px;
}

.brends-title {
  margin-bottom: 46px;
}
.brends-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 70px;
}
.brends-bar {
  min-width: 360px;
}
.brends-bar-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.brends-bar-item {
  width: 100%;
  position: relative;
  border-radius: 2px;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  &:hover {
    background: #f8f8f8;
    .brends-bar-item-text {
      color: #282828;
    }
  }
}
.brends-bar-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(/img/butiki/berry-1.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 57px;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
.brends-bar-item.active {
  background: linear-gradient(117deg, #e12e2e 0%, #b72323 100%);
  .brends-bar-item-text {
    color: #fff;
  }
  .brends-bar-item-count {
    color: #fff;
  }
  &::after {
    opacity: 1;
  }
}
.brends-bar-item-text {
  color: #6b6b6b;
}
.brends-bar-item-count {
  font-size: 14px;
  color: #c3c3c3;
  position: relative;
  z-index: 2;
}
.brends-content {
  flex-grow: 1;
  flex-shrink: 1;
}
.brends-content-up {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 22px;
  input {
    border-bottom: 1px solid #aeaeae;
    padding: 13px 20px 13px 0px;

    height: 50px;
    width: calc((100% / 5) * 2);
  }
}
.brends-content-up-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.brends-content-up-btn {
  color: #6b6b6b;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  &:hover {
    &::after {
      opacity: 1;
    }
  }
  &::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px; /* Толщина border-bottom */
    background-image: linear-gradient(to right, #e12e2e 0%, #b72323 100%);
    transition: all 0.3s ease;
    opacity: 0;
  }
}
.brends-content-up-btn.active {
  color: #b72323;
  &::after {
    opacity: 1;
  }
}
.brends-content-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
#brandAlphabet {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 40px;
}
.brand-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  h3 {
    font-weight: 400;
    font-size: 30px;
    text-transform: uppercase;
    color: #282828;
    opacity: 0.2;
    margin-bottom: 10px;
  }
  .brand-group-list .brends-content-wrapper-item-title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: #6b6b6b;
    transition: all 0.3s ease;
    text-align: left;
    &:hover {
      color: #b72323;
    }
  }
}
.brends-content-wrapper-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;

  border: 1px solid #e2e2e2;
  padding: 20px 30px;
  height: 230px;
  position: relative;
  flex-grow: 1;
  flex-shrink: 1;
  max-width: calc(100% / 5);
  background-color: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  &:hover {
    transform: scale(1.03);
    z-index: 3;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.05);
    /* .brends-content-wrapper-item-img {
      transform: scale(1.03);
    } */
    .brends-content-wrapper-item-title {
      color: #b72323;
    }
    .brends-content-wrapper-item-level {
      color: #fff;
      background: #c3c3c3;
    }
  }
}
.brends-content-wrapper-item-level {
  position: absolute;
  top: 0;
  right: -1px;

  border-radius: 0 0 0 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 49px;
  height: 49px;
  color: #6b6b6b;

  background: #f8f8f8;
  z-index: 2;

  transition: all 0.3s ease;
}
.brends-content-wrapper-item-img {
  margin-top: 25px;
  margin-bottom: 20px;
  max-height: 125px;
  transition: all 0.3s ease;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
.brends-content-wrapper-item-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #6b6b6b;

  transition: all 0.3s ease;
}

.brend_detail {
  margin: 0 auto;
  margin-top: 79px;
  padding: 40px 30px 0;

  max-width: 1084px;
  width: 100%;
}

.brend_detail-hero {
  height: 500px;
  width: 100%;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
.brend_detail-content {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-top: -50px;
}
.brend_detail-content-text {
  padding: 100px 0px 0px 0px;
}
.brend_detail-content-back {
  font-size: 16px;
  color: #282828;

  margin-bottom: 10px;
}
.brend_detail-content-title {
  margin-top: 10px;
  margin-bottom: 30px;
}
.brend_detail-info {
  border: 1px solid #e2e2e2;
  border-radius: 2px;
  padding: 20px 28px 28px 28px;
  background: #fff;
  width: 350px;
  min-width: 350px;
}
.brend_detail-info-img {
  margin-bottom: 40px;
  width: 100%;
}
.brend_detail-info-content {
  border-bottom: 1px solid #e2e2e2;
  border-top: 1px solid #e2e2e2;
  padding: 20px 0px;

  margin-bottom: 20px;

  display: flex;
  flex-direction: column;
  gap: 20px;
}
.brend_detail-info-content-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;

  font-weight: 400;
  font-size: 16px;
  color: #6b6b6b;
  a {
    font-weight: 400;
    font-size: 16px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #000;
  }
}

.brend_detail-info-category {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;

  color: #b72323;
}

.brend_detail-slider-controls {
  display: flex;
  gap: 5px;

  margin-bottom: 40px;
}
.brend_detail-slider-btn {
  cursor: pointer;
  margin-top: 80px;
}
.brend_detail-slider {
  padding: 0 30px;
  margin-bottom: 80px;
}

.brend_detail-slider-wrapper-item {
  max-width: 550px;
  height: 100%;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.brend_detail-slider-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;

  overflow: hidden;
  height: 365px;
  img {
    height: 100%;
  }
}
.galery {
  margin-top: 79px;
  padding: 40px 30px 0;

  margin-bottom: 120px;
}

.galery-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
  row-gap: 50px;
  .about-images-up-wrapper-item {
    &:hover {
      .about-images-up-wrapper-item-text {
        text-decoration: underline;
      }
    }
  }
}
.galery-title {
  margin-bottom: 40px;
}

.galery_detail {
  margin-top: 79px;
  padding: 40px 30px 0;

  margin-bottom: 120px;
  position: relative;
}
.galery_detail-back {
  position: absolute;
  color: #282828;
}

.galery_detail-main {
  max-width: 1024px;
  margin: 0 auto;

  margin-bottom: 40px;
  img {
    max-width: 100%;
  }
}
.galery_detail-main-title {
  margin-bottom: 40px;
  h2 {
    margin-bottom: 30px;
    color: #282828;
  }
}
.galery_detail-main-date {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--tekst);

  opacity: 0.5;
}
.galery_detail-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}
.galery_detail-wrapper-item {
  height: 175px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc((100% / 6) - 9px);
  max-width: calc((100% / 6) - 8px);
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.news {
  margin-top: 79px;
  padding: 40px 30px 0;

  margin-bottom: 120px;

  min-height: calc(85vh - (79px + 120px));
}
.news-title {
  margin-bottom: 40px;
}
.news-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}
.news-item {
  position: relative;

  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc((100% / 5) - 9px);
  max-width: calc((100% / 5) - 8px);

  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  height: 200px;

  border: 1px solid #e2e2e2;
  border-radius: 2px;
  padding: 20px 40px 20px 20px;
  overflow: hidden;

  img {
    width: 110px;
    height: 104px;

    position: absolute;
    top: 0;
    right: 0;
    transform: translate(20%, -20%);
    transition: all 0.3s ease;
    opacity: 0.2;
  }

  &:hover {
    img {
      transform: scale(1.1) rotate(-75deg) translate(15%, 7%);
      opacity: 0.8;
    }
    .news-item-date {
      opacity: 0.9;
    }
  }
}
.news-item-date {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 145%;
  color: #6b6b6b;

  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.news-item-title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #6b6b6b;
}

.news-detail {
  margin-top: 79px;
  padding: 40px 30px 0;

  margin-bottom: 120px;

  position: relative;
}
.news-detail-content {
  max-width: 1024px;
  margin: 0 auto;
}
.news-detail-back {
  position: absolute;
  top: 40px;
  color: #282828;
}
.news-detail-title {
  margin-bottom: 60px;
  h2 {
    margin-bottom: 30px;
  }
}
.news-detail-date {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--tekst);

  opacity: 0.5;
}
.news-detail-text {
  color: #6b6b6b;

  margin-bottom: 60px;
}
.news-detail-img {
  height: 620px;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
.news-detail-more {
  padding: 0 30px 0;

  margin-bottom: 120px;
  .news-wrapper {
    flex-wrap: nowrap;
  }
}
.news-detail-more-title {
  margin-bottom: 40px;
}

.contact {
  margin-top: 79px;
  position: relative;
}
.contact-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  border-radius: 2px;
  padding: 60px;

  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
}
.contact-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  a {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #b72323;
    &:hover {
      text-decoration: underline;
    }
  }
}
.contact-item-text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  color: #000;

  opacity: 0.5;
}
.contact-item-text-bold {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  color: #282828;
  text-transform: uppercase;
}
.contact-mail {
  font-size: 18px;
  color: #282828;
  opacity: 0.7;
  &:hover {
    text-decoration: underline;
  }
}
.contact-line {
  margin-bottom: 30px;
  width: 100%;
}
.contact-item-phone {
  font-weight: 400;
  font-size: 30px !important;
  text-transform: uppercase;
  color: #282828 !important;
}
.btn-order-call {
  font-weight: 400;
  font-size: 16px;
  color: #b72323;

  cursor: pointer;
  &:hover {
    text-decoration: underline;
  }
}

.nav-search {
  position: fixed;
  top: 79px;
  left: 0;
  z-index: 9;
  width: 100%;

  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  background: #fff;

  padding: 5px 30px 15px 30px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.input-search {
  width: 600px;
  border-bottom: 1px solid #aeaeae;
  padding: 13px 20px 13px 0px;

  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #282828;
}
.modal-search {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 8;
  top: 79px;
  left: 0;

  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.5);

  display: none;
}

.brends-content-up-btn-cat {
  border-radius: 2px;
  padding: 10px 20px;
  height: 50px;
  border: 1px solid #b72323;

  font-family: var(--second-family);
  font-weight: 500;
  font-size: 16px;
  color: #b72323;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.brends-content-up.mob {
  display: none;
}
.contact-abs {
  padding-left: 30px;
}
.contact-box-title {
  display: none;
  margin-bottom: 35px;
}

.nav-mobile-menu {
  position: fixed;
  top: 79px;
  left: 0;
  height: calc(100vh - 79px);
  width: 100%;
  transform: translateY(calc(-100% - 79px));
  display: none;
  background-color: #fff;
  max-height: 550px;

  transition: all 0.3s ease;
  z-index: 12;
}
.nav-mobile-menu-content {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 100%;
}
.nav-mobile-menu-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.nav-mobile-menu-item a {
  font-family: var(--font-family);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
  color: var(--tekst);
}

.rent-info-right-title .swiper-butiki-controls {
  display: none;
}

.footer-log {
  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 40px;
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;

  margin-bottom: 40px;
}
.footer-wrapper-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;

  width: calc(100% / 5);

  &:last-of-type {
    opacity: 0.9;
    flex-grow: 1;
    flex-shrink: 1;

    .footer-item-list li a {
      opacity: 0.9;
    }
  }
}
.footer-item {
  width: 100%;
}
.footer-item-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px;
}
.footer-item-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
    color: #fff;
    a {
      color: #fff;
      opacity: 0.5;
      transition: all 0.3s ease;
      &:hover {
        text-decoration: underline;
        opacity: 1;
      }
    }
  }
}
.WW_logo-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  &:hover {
    opacity: 1;
  }
}
.footer-phone {
  font-weight: 400;
  font-size: 23px;
  color: #e2e2e2;

  letter-spacing: 0.06em;
  text-wrap: nowrap;
}
.footer-item-list.info {
  font-size: 14px;
  color: #e2e2e2;
  opacity: 0.5;
  text-transform: none;
  a {
    font-size: 14px;
    color: #e2e2e2;
    opacity: 0.5;
    transition: all 0.3s ease;
    text-transform: none;
    &:hover {
      opacity: 1;
    }
  }
}
.swiper-wrapper.news-wrapper {
  gap: 0;
}

.news-detail-more-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  .swiper-butiki-controls {
    position: relative;
    width: auto;
    top: auto;
    transform: none;
    gap: 20px;
  }
}

.about-images-down {
  .galery-wrapper {
    gap: 0;
    flex-wrap: nowrap;
  }
}

.about-images-down-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  .swiper-butiki-controls {
    position: relative;
    width: auto;
    top: auto;
    transform: none;
    gap: 20px;
  }
}

.search-text {
  margin-bottom: 40px;
}
.search-query {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #282828;
}
.search-results {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.search-results-section {
  h4 {
    margin-bottom: 15px;
  }
}
.search-result-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  a {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 30px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #b72323;
    transition: all 0.3s ease;
    &:hover {
      color: rgb(150, 27, 27);
    }
  }
}
.search-result-item-news {
  a {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 18px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #282828;
  }
}

.main {
  margin-top: 79px;
  padding: 50px 30px 80px;
  margin-bottom: 120px;
}
.policy__heading {
  margin-bottom: 50px;
}
.policy_heading {
}
.policy__block {
  margin-bottom: 30px;
}
.policy__title {
  margin-bottom: 20px;
  font-size: 18px;
}
.policy__text {
  margin-bottom: 5px;
}
.policy__list .policy__item {
  list-style: disc;
}

.cookie {
}
.cookie-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
.popup-text {
}
