@charset "UTF-8";
/* 
.класс
# идентификатор 
тег 
:псевдокласс
::псевдоэлемент (чекбоксы) 
*/
.photo1 {
  min-width: 320px;
  min-height: 230px;
  top: 358px; }

.title__text {
  font-family: var(--text-bold);
  position: relative;
  padding-left: 20px; }

.title__text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  width: 5px;
  height: 40px;
  border-radius: 0 5px 5px 0;
  background-color: aquamarine; }

.about__text > p {
  font-family: var(--text-regular);
  max-width: 490px; }

/**/
.about__list {
  display: flex;
  gap: 15px;
  padding-bottom: 20px; }

.about__list__btn {
  border: 2px solid transparent;
  width: 1fr;
  height: 40px;
  background-color: transparent;
  font-family: var(--text-regular);
  font-size: 16px;
  border-radius: 6px;
  white-space: nowrap; }

.about__list__btn:hover {
  border: 2px solid #b8ffec; }

.about__info {
  display: flex;
  flex-direction: row; }

/* АДАПТИВНЫЙ ABOUT */
.about__info {
  flex-direction: column; }

@media (min-width: 768px) {
  .about__info {
    flex-direction: row;
    align-items: center;
    gap: 30px; } }

.photo1 {
  width: 100%;
  max-width: 531px;
  height: auto; }

.about__list {
  overflow-x: auto;
  padding-bottom: 10px;
  margin: 0;
  padding-left: 16px;
  -webkit-overflow-scrolling: touch; }

.about__list::-webkit-scrollbar {
  display: none; }

/*бренды*/
.brand {
  display: flex;
  /* грид? */
  flex-direction: column;
  /* min-width: 100%; */
  background-color: var(--color-whitegray); }

.brand__title {
  background: linear-gradient(45deg, #f8f8f8, #ffffff);
  width: 100%;
  max-width: 100%;
  padding: 16px;
  margin: 0 0 20px 0;
  box-sizing: border-box; }

.brand__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 20px;
  margin: 0;
  padding: 0; }

@media (max-width: 768px) {
  .brand__list,
  .btn-arr-sh {
    display: none; } }

@media (min-width: 768px) and (max-width: 1439px) {
  .brand__list {
    grid-template-columns: repeat(3, 1fr); } }

@media (min-width: 1440px) {
  .brand__list {
    grid-template-columns: repeat(4, 1fr); } }

.brand__item {
  width: 240px;
  height: 72px;
  padding: 15px;
  box-sizing: border-box;
  border: 1px solid var(--color-gray);
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  background-color: var(--color-white); }

.brand__item > img {
  max-width: 128px;
  object-fit: contain; }

.brand__btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-pink);
  border-radius: 50px;
  background-color: transparent;
  background-image: url(./static/brand.svg);
  background-repeat: no-repeat;
  background-position: center; }

/* свайпер */
.swiper {
  width: 100%;
  min-width: 320px;
  padding: 0 16px 45px 16px !important;
  overflow: hidden;
  display: none; }

.swiper-wrapper {
  display: flex; }

.swiper-slide {
  flex-shrink: 0; }

.swiper-slide img {
  max-width: 128px;
  max-height: 52px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }

.swiper-slide .brand__btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%); }

/* бренд типы цены */
.swiper--brand .swiper-slide {
  width: 240px;
  height: 72px;
  border: 1px solid var(--color-gray);
  border-radius: 6px;
  padding: 15px;
  background-color: var(--color-white); }

.swiper--type .swiper-slide {
  width: 240px;
  height: 160px;
  border: 1px solid var(--color-gray);
  border-radius: 6px;
  padding: 10px;
  background-color: var(--color-white); }

.swiper--price .swiper-slide {
  width: 240px;
  border: 1px solid var(--color-gray);
  border-radius: 6px;
  padding: 16px;
  background-color: var(--color-white); }

/* моб */
@media (max-width: 768px) {
  .brand__list,
  .type__list,
  .price-table,
  .btn-arr-sh {
    display: none !important; }
  .swiper {
    display: block !important; } }

/* десктоп */
@media (min-width: 769px) {
  .swiper {
    display: none !important; } }

/**/
/* показать скрыть */
.btn-arr {
  display: flex;
  border: none;
  background-color: transparent;
  gap: 8px;
  font-family: var(--text-medium);
  position: relative;
  padding-left: 20px; }

.btn-arr::before {
  content: '';
  position: absolute;
  background-image: url(./static/arrow.svg);
  width: 8px;
  height: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%); }

.close {
  display: none !important; }

.cls-arr::before {
  transform: translateY(-50%) rotate(180deg); }

.call {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: white;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 9999;
  padding: 24px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15); }
  .call.active {
    transform: translateX(0); }

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9998; }

.call-open .overlay {
  display: block; }

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--text-regular); }

textarea {
  resize: vertical; }

.send__call {
  width: 136px;
  height: 32px;
  background: var(--color-pink);
  color: white;
  border: none;
  border-radius: 25px;
  font-family: var(--text-regular);
  font-weight: bold;
  float: right; }

.call .btn-exit,
.feedback .btn-exit {
  position: absolute;
  right: 400px;
  display: none; }

.call.active .btn-exit,
.feedback.active .btn-exit {
  display: flex; }

.send__txt {
  font-family: var(--text-regular);
  font-size: 14px; }

.privacy-link {
  color: var(--color-pink);
  text-decoration: none; }

.privacy-link:hover {
  color: var(--color-black);
  text-decoration: underline; }

@media (max-width: 767px) {
  .call,
  .feedback {
    width: 100% !important;
    right: 0 !important;
    box-sizing: border-box !important;
    overflow-y: auto !important; }
  body.call-open,
  body.feedback-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important; }
  .call .btn-exit,
  .feedback .btn-exit {
    position: absolute !important;
    right: 24px !important;
    top: 24px !important;
    display: none !important; }
  .call.active .btn-exit,
  .feedback.active .btn-exit {
    display: flex !important; } }

.feedback {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: white;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 9999;
  padding: 24px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 16px; }
  .feedback.active {
    transform: translateX(0); }
  .feedback input,
  .feedback textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--text-regular); }
  .feedback textarea {
    resize: vertical; }
  .feedback .send__feedback {
    width: 136px;
    height: 32px;
    background: var(--color-pink);
    color: white;
    border: none;
    border-radius: 25px;
    font-family: var(--text-regular);
    font-weight: bold;
    align-self: flex-end; }

.feedback-open .overlay {
  display: block; }

.fot {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; }

/* АДАПТИВНЫЙ FOOTER */
.fot {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  padding: 30px 0; }

@media (min-width: 768px) {
  .fot {
    flex-direction: row;
    justify-content: space-between;
    text-align: left; } }

.logo {
  margin-right: 70px;
  margin-left: 10px;
  width: 97;
  height: 50;
  top: 19;
  left: 73;
  border: 0.5; }

/*хедер*/
header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background-color: var(--color-white);
  height: 88px;
  max-width: 1440px; }

.btn__red {
  background-color: var(--color-pink);
  width: 40px;
  height: 40px;
  margin: 0px 10px;
  border-radius: 50%; }

/*иконки*/
.btn-exit {
  background-image: url(./static/exit.svg); }

.btn-poisk {
  background-image: url(./static/lupa.svg); }

.btn-call {
  background-image: url(./static/call.svg); }

.btn-chat {
  background-image: url(./static/chat.svg); }

.btn-people {
  background-image: url(./static/people.svg); }

.btn-burger {
  background-image: url(./static/burger.svg); }

.btn-repair {
  background-image: url(./static/repair.svg); }

.btn-check {
  background-image: url(./static/checkstatus.svg); }

/* АДАПТИВНЫЙ HEADER */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0; }

.logo {
  margin: 0;
  position: static;
  transform: none; }

@media (max-width: 768px) {
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); } }

/*цены*/
.price {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0 auto; }

.price__title {
  background: linear-gradient(45deg, #f8f8f8, #ffffff);
  box-sizing: border-box; }

.price-table {
  width: 100%;
  border-collapse: collapse; }

.price-table th {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--color-white);
  font-weight: normal; }

.price-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--color-white);
  background-color: var(--color-white); }

.order-btn {
  background-color: var(--color-pink);
  color: var(--color-white);
  border-radius: 15px;
  height: 32px;
  width: 119px; }

body.call-open,
body.feedback-open,
body.sidebar--open {
  overflow: hidden; }

/* боковое меню */
.sidebar {
  display: none;
  position: sticky;
  margin-right: 20px;
  width: 320px;
  height: auto;
  flex-direction: column;
  background: white;
  z-index: 1000;
  box-shadow: 5px 0 20px -5px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  flex-shrink: 0; }

.sidebar--open {
  display: flex; }

.sidebar--open .overlay {
  display: block; }

@media (min-width: 1440px) {
  .sidebar {
    display: flex;
    box-shadow: none; } }

.sidebar__nav {
  padding: 5px;
  overflow-y: auto; }

.sidebar__list {
  font-family: var(--text-regular);
  list-style: none;
  margin: 10px;
  padding: 0; }

.sidebar__item {
  margin-bottom: 10px; }

.sidebar__link {
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
  height: 24px;
  font-size: 16px;
  position: relative;
  padding: 10px; }

.sidebar__link:hover {
  color: var(--color-gray);
  /*	transform: translateX(10px);*/ }

.sidebar__link:hover::before {
  content: '';
  position: absolute;
  display: flex;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 40px;
  border-radius: 0 5px 5px 0;
  background-color: aquamarine; }

.sidebar__footer {
  margin-top: 10px; }

.mail {
  font-family: var(--text-regular);
  margin-left: 10px;
  margin-top: 10px;
  text-decoration: none;
  color: #000; }

.tel {
  font-family: var(--text-bold);
  font-size: 24px;
  margin-left: 10px;
  margin-top: 10px;
  text-decoration: none;
  color: #000; }

.contacts {
  display: flex;
  flex-direction: column; }

/**/
.btn__lang {
  border: none;
  width: 25px;
  height: 24px;
  font-family: var(--text-regular);
  background-color: var(--color-white);
  margin-left: 5px; }

.btn__lang:hover {
  color: var(--color-gray); }

.type {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto; }

.type__title {
  background: linear-gradient(45deg, #f8f8f8, #ffffff);
  width: 100%;
  max-width: 100%;
  padding: 16px;
  margin: 0 0 20px 0;
  box-sizing: border-box; }

.type__list {
  display: flex;
  gap: 15px; }

.type__item {
  width: 240px;
  height: 160px;
  border: 1px solid var(--color-gray);
  border-radius: 6px;
  padding: 10px;
  position: relative;
  background-color: var(--color-white); }

.type__btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-pink);
  border-radius: 50px;
  background-color: transparent;
  background-image: url(./static/brand.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 15px;
  right: 15px; }

:root {
  --text-bold: 'TTLakesBold';
  --text-regular: 'TTLakesRegular';
  --text-medium: 'TTLakesMedium';
  --color-pink: #ff3e79;
  --color-white: #ffffff;
  --color-whitegray: #f8f8f8;
  --color-gray: #7e7e82; }

body {
  background-color: var(--color-whitegray);
  display: flex;
  width: 100%;
  margin: 0;
  font-family: var(--text-regular);
  z-index: 1; }

.layout {
  max-width: 1440px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto; }

li {
  list-style: none; }

/*кнопки*/
a {
  cursor: pointer; }

/* a:active,  {
	background-color: var(--color-pink);
	transform: translateY(1px);
} */
button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  /* none заменить 0? (видео)*/
  transition: all 0.3s ease; }

button:hover {
  transform: scale(1.15); }

button:active {
  -webkit-filter: hue-rotate(-15deg);
          filter: hue-rotate(-15deg);
  transform: scale(1.2) rotate(9deg); }

/*  */
.buttons {
  display: flex; }

/*шрифты*/
@font-face {
  font-family: 'TTLakesBold';
  src: url(./fonts/TTLakes-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'TTLakesMedium';
  src: url(./fonts/TTLakes-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'TTLakesRegular';
  src: url(./fonts/TTLakes-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

/* ЗАГОЛОВКИ */
.title__text {
  font-size: clamp(24px, 5vw, 32px); }

.brand__title,
.type__title,
.price__title {
  font-size: clamp(16px, 4vw, 24px);
  padding: 16px;
  width: calc(100% + 32px); }


/*# sourceMappingURL=style.css.map*/