:root {
  --dark: #081a28;
  --dark-2: #0b2233;
  --orange: #ec8f23;
  --orange-2: #ff9a27;
  --blue: #44a7f2;
  --rose: #d9587b;
  --text: #151922;
  --muted: #6d7683;
  --line: #dce3eb;
  --soft: #f3f6f9;
  --white: #fff;
  --container: 1396px;
  --header-height: 100px;
  --anchor-offset: var(--header-height);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background: var(--white);
  font: var(--type-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.is-locked {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 80px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

:where(section[id], form[id]) {
  scroll-margin-top: var(--anchor-offset);
}

.section-title,
.section h2 {
  margin: 0 0 28px;
  font: var(--type-section-title);
}

.section-copy h2 {
  max-width: 700px;
}

.section-copy h3 {
  margin: 0 0 18px;
  color: var(--orange);
  font: var(--type-section-kicker);
}

.section-copy p {
  margin: 0 0 14px;
  color: #303945;
}

.plain-list {
  margin: 14px 0 0;
  padding-left: 20px;
}

.plain-list li + li {
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--orange);
  font: var(--type-button);
  white-space: nowrap;
}

.btn--small {
  min-height: 42px;
  padding: 0 22px;
  font: var(--type-button-small);
}

.site-header .btn--small {
  min-height: 53px;
  padding: 0 25px;
  border-radius: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--dark);
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: var(--header-height);
}

.brand-logo {
  --logo-icon: 36px;
  --logo-gap: 18px;
  --logo-title: 24px;
  --logo-subtitle: 12px;
  --logo-color: var(--white);
  --logo-accent: var(--orange-2);
  display: inline-flex;
  align-items: center;
  gap: var(--logo-gap);
  color: var(--logo-color);
  font-family: var(--font-logo);
  font-weight: 300;
  letter-spacing: 0;
  white-space: nowrap;
}

.logo {
  flex: 0 0 266px;
}

.brand-logo__icon {
  flex: 0 0 var(--logo-icon);
  width: var(--logo-icon);
  height: var(--logo-icon);
}

.brand-logo__text {
  display: grid;
  gap: 0;
}

.brand-logo__title {
  color: var(--logo-color);
  font: 300 var(--logo-title)/1.2 var(--font-logo);
}

.brand-logo__title span {
  color: var(--logo-accent);
}

.brand-logo__subtitle {
  color: var(--logo-color);
  font: 300 var(--logo-subtitle)/1.2 var(--font-logo);
}

.burger {
  display: none;
  width: 36px;
  height: 36px;
  padding: 2px;
  border: 0;
  background: transparent;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.9);
  font: var(--type-nav);
}

.mobile-menu-contacts {
  display: none;
}

.main-nav a:hover,
.header-phones a:hover {
  color: var(--orange-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
}

.socials img {
  width: 32px;
  height: 32px;
  transition: transform 0.18s ease;
}

.socials a:hover img,
.socials a:focus-visible img {
  transform: scale(1.12);
}

.header-phones {
  display: grid;
  gap: 3px;
  color: rgba(255, 255, 255, 0.72);
  font: var(--type-phone);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  color: var(--white);
  background: #111;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 764px 1fr;
  align-items: center;
  column-gap: 56px;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  padding: 48px 0 58px 58px;
}

.hero-copy {
  transform: translateY(15px);
}

.hero-copy h1 {
  max-width: 700px;
  margin: 0 0 23px;
  font: var(--type-hero-title);
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: var(--orange-2);
}

.hero-copy p {
  max-width: 720px;
  margin: 0 0 56px;
  color: rgba(255, 255, 255, 0.84);
  font: var(--type-hero-text);
}

.icon-list {
  display: grid;
  gap: 31px;
  margin: 0 0 76px;
  padding: 0;
  list-style: none;
  font: var(--type-hero-feature);
  text-transform: uppercase;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 31px;
}

.icon-list img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.hero .btn {
  min-height: 61px;
  padding: 0 25px;
  border-radius: 8px;
  font: var(--type-hero-button);
}

.hero-product {
  position: absolute;
  top: 25px;
  right: 42px;
  bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 560px;
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 58px;
}

.split--intro {
  align-items: start;
}

.intro-section {
  padding: 49px 0 25px;
  background: var(--soft);
}

.intro-section .container {
  width: min(100% - 80px, 1280px);
}

.intro-section .split--intro {
  grid-template-columns: minmax(0, 560px) 574px;
  gap: 126px;
}

.intro-section .section-copy {
  padding-top: 39px;
}

.intro-section .section-copy h2 {
  margin-bottom: 50px;
}

.intro-section .section-copy p {
  max-width: 520px;
  margin-bottom: 22px;
  color: #111722;
  font: var(--font-regular) 16px/var(--lh-120) var(--font-primary);
}

.intro-section .plain-list {
  margin-top: 0;
  color: #111722;
  font: var(--font-regular) 16px/var(--lh-120) var(--font-primary);
}

.intro-section .plain-list li + li {
  margin-top: 14px;
}

.intro-section .video-preview {
  width: 574px;
  max-width: 100%;
  aspect-ratio: 574 / 401;
}

.decor-castor {
  position: relative;
  z-index: 0;
}

.decor-castor::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: -40px;
  z-index: -1;
  width: 330px;
  height: 270px;
  background: url("../assets/images/mask.png") center / contain no-repeat;
}

.intro-section .decor-castor::after {
  left: 85px;
  top: -16px;
  right: auto;
  bottom: auto;
  width: 630px;
  height: 468px;
}

.video-preview,
.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #e8edf2;
  cursor: pointer;
}

.video-preview img,
.video-preview video,
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-preview {
  aspect-ratio: 574 / 401;
}

.play-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.18s ease;
}

.play-mark img {
  width: 66px;
  height: 66px;
  opacity: 0.95;
}

.video-preview.is-playing .play-mark {
  opacity: 0;
}

.video-preview.is-playing:hover .play-mark,
.video-preview.is-playing:focus-visible .play-mark {
  opacity: 1;
}

.catalog-section {
  padding-top: 80px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 366px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-5px);
  border-color: #cfd7df;
  box-shadow: 0 18px 34px rgba(8, 26, 40, 0.13);
  cursor:pointer;	
}

.product-card__badge {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  max-width: calc(100% - 16px);
  padding: 0 10px;
  border-radius: 0 18px 18px 0;
  color: var(--white);
  background: #f35d74;
  font: var(--type-card-meta);
  white-space: nowrap;
}

.product-card__image {
  display: grid;
  place-items: center;
  height: 200px;
  background: #eee;
  padding: 38px 24px 20px;
}

.product-card__image img {
  max-width: 76%;
  max-height: 150px;
  object-fit: contain;
}

.product-card h3 {
  margin: 22px 16px 9px;
  font: var(--type-card-title);
}

.product-card p {
  margin: 0 16px 22px;
  color: #48515d;
  font: var(--type-card-text);
}

.product-card a {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: #ee5570;
  font: var(--type-card-link);
}

.promo-slider {
  display: flex;
  width: 100%;
  height: 341px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  background: linear-gradient(90deg, var(--rose), var(--blue));
  cursor: grab;
  user-select: none;
  touch-action: pan-y pinch-zoom;
}

.promo-slider::-webkit-scrollbar {
  display: none;
}

.promo-slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.promo-slider.is-snapping,
.promo-slider.is-jumping {
  scroll-snap-type: none;
}

.promo-slider.is-jumping {
  scroll-behavior: auto;
}

.promo-slider img {
  -webkit-user-drag: none;
  user-select: none;
}

.promo-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: minmax(420px, 48.3%) 1fr;
  align-items: center;
  height: 341px;
  min-height: 341px;
  background: linear-gradient(100deg, #dd5276 0%, #b66ca7 48%, #42a7f4 100%);
}

.promo-slide__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 341px;
  overflow: visible;
}

.promo-slide__image img {
  width: min(430px, 80%);
  max-height: 330px;
  object-fit: contain;
}

.promo-slide__content {
  display: grid;
  justify-items: start;
  gap: 16px;
  padding-right: 0;
}

.promo-slide__content strong {
  display: block;
  width: 100%;
  min-height: 164px;
  padding: 49px 32px 32px;
  background: var(--white);
  color: #0c1220;
  font: var(--type-promo-title);
}

.promo-slide__content .btn {
  min-height: 61px;
  font: var(--type-hero-button);
}

.dark-section {
  color: var(--white);
  background: var(--dark);
}

.advantages-about-section {
  position: relative;
  overflow: hidden;
  padding: 58px 0 82px;
  isolation: isolate;
}

.advantages-about {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 70px;
}

.advantages-about::before {
  content: "";
  position: absolute;
  top: 2%;
  left: 50%;
  bottom: 2%;
  z-index: -1;
  width: min(42vw, 620px);
  transform: translateX(-50%);
  background: url("../assets/images/about_backgound.png") center / auto 104%
    no-repeat;
  opacity: 0.86;
  pointer-events: none;
}

.advantages-block h2 {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--white);
  font: var(--type-panel-title);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  min-height: 164px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.benefit-card img {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
}

.benefit-card p {
  margin: 0;
  font: var(--type-benefit);
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(560px, 620px);
  gap: 44px;
  align-items: center;
}

.about-copy p {
  max-width: 650px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font: var(--type-about-text);
}

.about-copy h2 {
  color: var(--white);
  font: var(--type-panel-title);
}

.about-image {
  align-self: start;
  margin-top: 0;
}

.about-image img,
.production-image img {
  width: 100%;
  border-radius: 4px;
}

.stats {
  display: flex;
  gap: 48px;
  margin-top: 32px;
}

.stats strong {
  display: block;
  color: var(--orange);
  font: var(--type-stat-number);
}

.stats span {
  color: rgba(255, 255, 255, 0.72);
  font: var(--type-about-text);
}

.production-section {
  background: #f6f8fb;
}

@media (min-width: 1181px) {
  .production-section .container {
    width: min(100% - 144px, 1296px);
  }

  .production-section .split {
    grid-template-columns: 580px minmax(0, 1fr);
    gap: 64px;
  }

  .production-image {
    max-width: 580px;
  }
}

.contact-section {
  padding: 80px 0;
  background: #f6f8fb;
}

.contact-section .container {
  width: min(100% - 144px, 1296px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 557px 657px;
  gap: 51px;
  align-items: start;
}

.contact-card {
  display: flex;
  flex-direction: column;
  min-height: 834px;
  padding: 35px;
  border-radius: 10px;
  background: var(--dark);
  color: var(--white);
}

.contact-card h2 {
  margin: 0 0 30px;
  font: var(--type-panel-title);
}

.contact-card p {
  max-width: 430px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.76);
  font: var(--type-about-text);
}

.contact-lines {
  display: grid;
  gap: 0;
  margin-bottom: 70px;
  color: rgba(255, 255, 255, 0.82);
  font: var(--type-contact-lines);
}

.contact-card .icon-list {
  gap: 31px;
  margin: 0;
  font: var(--type-hero-feature);
}

.contact-card .icon-list li {
  gap: 28px;
}

.messenger-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: auto -13px 0;
}

.messenger-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  font: var(--type-contact-button);
  transition: color 0.18s ease;
}

.messenger-row img {
  width: 32px;
  height: 32px;
  transition: transform 0.18s ease;
}

.messenger-row a:hover,
.messenger-row a:focus-visible {
  color: var(--orange-2);
}

.messenger-row a:hover img,
.messenger-row a:focus-visible img {
  transform: scale(1.12);
}

.request-form {
  display: flex;
  flex-direction: column;
  min-height: 824px;
  padding: 31px 48px 23px;
  border-radius: 10px;
  background: var(--white);
}

.request-form h2 {
  margin: 0 0 40px;
  text-align: center;
  font: var(--type-form-title);
}

.request-form input,
.request-form textarea {
  width: 100%;
  min-height: 78px;
  margin-bottom: 24px;
  padding: 0 25px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #151922;
  outline: none;
  font: var(--type-form-field);
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: #858585;
  opacity: 1;
}

.request-form input:first-of-type {
  border-color: var(--orange);
}

.request-form textarea {
  min-height: 78px;
  margin-bottom: 18px;
  padding-top: 22px;
  resize: none;
}

.agree {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 26px;
  max-width: 560px;
  margin: 0;
  color: #9aa2ad;
  font: var(--type-form-consent);
}

.agree input[type="checkbox"] {
  appearance: none;
  align-self: start;
  display: grid;
  flex: 0 0 24px;
  place-items: center;
  width: 24px;
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  min-height: 24px;
  max-height: 24px;
  margin: 0;
  padding: 0;
  border: 1px solid #d2d7dd;
  border-radius: 0;
  background: var(--white);
  cursor: pointer;
}

.agree input[type="checkbox"]:checked {
  background: var(--white) url("../assets/icons/check.svg") center / 22px 22px
    no-repeat;
}

.agree p {
  margin: 0;
}

.agree a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.request-form .btn {
  width: 100%;
  min-height: 78px;
  margin-top: auto;
  border-radius: 10px;
  font: var(--type-hero-button);
  transition: color 0.18s ease;
}

.request-form .btn:hover,
.request-form .btn:focus-visible {
  color: var(--orange-2);
}

.call-modal {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 90;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 32px;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(3, 10, 16, 0.34);
  -webkit-overflow-scrolling: touch;
}

.call-modal.is-open {
  display: flex;
}

.call-form {
  position: relative;
  width: min(600px, 100%);
  min-height: 0;
  padding: 72px 40px 24px;
  overflow: visible;
  box-shadow: 0 18px 60px rgba(8, 26, 40, 0.18);
}

.call-modal__close {
  position: absolute;
  right: 28px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
}

.call-modal__close img {
  width: 28px;
  height: 28px;
}

.call-form h2 {
  margin-bottom: 14px;
}

.call-form h3 {
  margin: 0 0 30px;
  text-align: center;
  font: var(--type-modal-subtitle);
}

.call-form input {
  min-height: 60px;
  margin-bottom: 16px;
  padding: 0 22px;
}

.call-form input:nth-of-type(3) {
  margin-bottom: 14px;
}

.call-form .agree {
  margin-bottom: 28px;
}

.call-form .btn {
  min-height: 60px;
  margin-top: 0;
}

.logistics {
  background: #f6f8fb;
}

@media (min-width: 1181px) {
  .logistics .container {
    width: min(100% - 144px, 1296px);
  }
}

.logistics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.info-card {
  display: flex;
  flex-direction: column;
  min-height: 571px;
  padding: 48px;
  border-radius: 8px;
  background: var(--white);
}

.info-card h2 {
  margin: 0 0 48px;
  text-align: center;
  font: var(--type-info-title);
}

.info-card p {
  max-width: 512px;
  margin: 0;
  color: #6f7885;
  font: var(--type-info-text);
}

.company-list {
  display: grid;
  gap: 8px;
  margin: 47px 0 0;
  padding: 0;
  list-style: none;
}

.company-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 10px 12px;
  border-radius: 4px;
  background: #f7f8fa;
  color: var(--text);
  font: var(--type-info-text);
}

.company-list img {
  flex: 0 0 44px;
  width: 44px;
  height: 28px;
  object-fit: contain;
}

.geo-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 47px 0 0;
}

.geo-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 51px;
  padding: 0 16px;
  border-radius: 4px;
  background: #f7f8fa;
  color: var(--text);
  font: var(--type-info-text);
}

.geo-list img {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.notice {
  margin-top: 48px;
  padding: 26px 24px;
  border-radius: 10px;
  background: #ffe7c6;
  font: var(--type-info-text);
}

.notice strong {
  font-weight: var(--font-bold);
}

.case-section h2 {
  font: var(--type-panel-title);
}

.case-section .container {
  width: min(100% - 160px, 1280px);
}

.case-section .case-title {
  max-width: 900px;
  margin-bottom: 52px;
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 620px) 574px;
  gap: 80px;
  align-items: start;
}

.case-grid .video-preview {
  width: 574px;
  max-width: 100%;
}

.case-grid .section-copy p {
  color: var(--text);
  font: var(--type-body);
}

.site-footer {
  padding: 58px 0 56px;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--dark);
  color: var(--white);
}

.osm-map {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  height: 380px;
  margin-bottom: 50px;
  border-radius: 3px;
  background: #dce7f2;
}

.osm-map__canvas {
  position: absolute;
  inset: 0;
}

.osm-map .leaflet-container {
  width: 100%;
  height: 100%;
  background: #dce7f2;
}

.osm-map .leaflet-control-attribution {
  display: none;
}

.osm-map__guard {
  position: absolute;
  inset: 0;
  z-index: 500;
  border: 0;
  background: transparent;
  cursor: grab;
}

.osm-map.is-active .osm-map__guard {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
}

.footer-logo {
  --logo-icon: 28px;
  --logo-gap: 12px;
  --logo-title: 19px;
  --logo-subtitle: 9.5px;
  margin-bottom: 22px;
}

.footer-brand p,
.footer-products p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.68);
  font: var(--type-footer-text);
}

.footer-products h3 {
  margin: 0 0 20px;
  font: var(--type-footer-title);
}

.breadcrumbs {
  padding: 18px 0;
  background: #f3f5f8;
  color: #596371;
  font: var(--type-small);
}

.breadcrumbs .container {
  display: flex;
  gap: 10px;
  align-items: center;
}

.breadcrumbs strong {
  color: #1d2430;
}

.product-detail {
  padding-top: 50px;
}

@media (min-width: 1181px) {
  .product-detail > .container {
    width: min(100% - 150px, 1290px);
  }
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 576px 1fr;
  gap: 47px;
  align-items: start;
}

.product-gallery,
.product-info {
  min-width: 0;
}

.gallery-main {
  --gallery-pad: 40px;
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 501px;
  padding: var(--gallery-pad);
  border: 0;
  border-radius: 3px;
  background: #f0f0f0;
  overflow: hidden;
  cursor: pointer;
}

.gallery-main > img,
.gallery-main > video {
  position: absolute;
  inset: var(--gallery-pad);
  display: block;
  width: calc(100% - (var(--gallery-pad) * 2));
  height: calc(100% - (var(--gallery-pad) * 2));
  object-fit: contain;
}

.gallery-main .play-mark img {
  width: 78px;
  height: 78px;
}

.thumb-strip {
  --thumb-gap: 14px;
  display: flex;
  gap: var(--thumb-gap);
  margin-top: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  touch-action: pan-y;
  cursor: grab;
}

.thumb-strip::-webkit-scrollbar {
  display: none;
}

.thumb-strip.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.product-thumb {
  position: relative;
  flex: 0 0 calc((100% - (var(--thumb-gap) * 4)) / 5);
  display: grid;
  place-items: center;
  height: 104px;
  padding: 8px;
  border: 2px solid transparent;
  border-radius: 4px;
  background: #eff1f4;
  overflow: hidden;
  scroll-snap-align: start;
  user-select: none;
}

.product-thumb.is-active {
  border-color: var(--orange);
}

.product-thumb img {
  max-width: 100%;
  max-height: 86px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.thumb-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(8, 26, 40, 0.12);
  pointer-events: none;
}

.thumb-play img {
  width: 34px;
  height: 34px;
}

.product-info h1 {
  margin: 14px 0 20px;
  font: var(--type-product-title);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.tag-row span {
  padding: 13px 24px;
  border-radius: 7px;
  color: var(--white);
  background: #2c9ee8;
  font: var(--type-feature-list);
}

.tag-row span + span {
  background: #f25f79;
}

.buy-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
}

.buy-row strong {
  font: var(--type-price);
}

.feature-panel {
  padding: 24px 26px 27px;
  border-radius: 8px;
  background: #f2f5f9;
}

.feature-panel h2 {
  margin: 0 0 24px;
  font: var(--type-feature-title);
}

.feature-panel ul {
  display: grid;
  gap: 23px;
  margin: 0;
  padding: 0;
  list-style: none;
  font: var(--type-feature-list);
}

.feature-panel li {
  display: flex;
  gap: 28px;
  align-items: center;
}

.feature-panel img {
  width: 22px;
  height: 22px;
}

.equipment-banner {
  display: grid;
  grid-template-columns: 291px 1fr;
  align-items: center;
  min-height: 145px;
  margin-top: 46px;
  overflow: hidden;
  border-radius: 6px;
  background: #d75d81;
  color: var(--white);
  cursor: pointer;
}

.equipment-banner img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}

.equipment-banner strong {
  padding: 25px 24px;
  font: var(--type-equipment-title);
}

.detail-media {
  padding: 18px 0 28px;
}

.media-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 4);
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-y;
  cursor: grab;
}

.media-strip::-webkit-scrollbar {
  display: none;
}

.media-strip.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.media-card {
  aspect-ratio: 304 / 401;
  scroll-snap-align: start;
  user-select: none;
}

.spec-section {
  padding-top: 0;
}

.tabs {
  display: flex;
  gap: 30px;
  align-items: flex-end;
  margin-bottom: 28px;
  border-bottom: 1px solid #e7ebf0;
}

.tabs button {
  position: relative;
  padding: 0 0 14px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: var(--type-tabs);
  white-space: nowrap;
}

.tabs button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: transparent;
}

.tabs button.is-active::after {
  background: #ef5570;
}

.tab-panel[hidden] {
  display: none;
}

.tab-copy {
  padding: 24px 28px;
  border: 1px solid var(--line);
  color: var(--text);
  font: var(--type-table);
}

.tab-copy p {
  max-width: 920px;
  margin: 0 0 18px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  font: var(--type-table);
}

th,
td {
  padding: 15px 18px;
  text-align: left;
  vertical-align: top;
}

tr:nth-child(odd) {
  background: #f3f6fa;
}

th {
  width: 44%;
  font: var(--type-table-head);
}

.related-section {
  padding-top: 54px;
}

.product-grid--related {
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 42px;
  background: rgba(3, 10, 16, 0.72);
}

.media-modal.is-open {
  display: flex;
}

.media-modal__body {
  position: relative;
  width: min(100%, 1120px);
  max-height: 88vh;
}

.media-modal__content {
  width: 100%;
  height: 100%;
}

.media-modal__content > img,
.media-modal__content > video {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  background: #111;
}

.media-modal--video .media-modal__body {
  width: min(728px, calc(100vw - 48px), calc((100vh - 84px) * 0.7913));
  max-height: calc(100vh - 84px);
  aspect-ratio: 728 / 920;
  overflow: hidden;
  border-radius: 2px;
  background: #f4f4f4;
}

.media-modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
}

.media-modal--video .media-modal__close {
  width: 42px;
  height: 42px;
  border-radius: 0;
  background: transparent;
}

.media-modal__close img {
  width: 24px;
  height: 24px;
}

.modal-player {
  position: relative;
  width: 100%;
  height: 100%;
  background: #f4f4f4;
}

.modal-player video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f4f4f4;
}

.modal-player__toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.18s ease;
}

.modal-player__toggle img {
  width: 48px;
  height: 48px;
}

.modal-player__progress {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 32px;
  z-index: 3;
  height: 22px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.modal-player:hover .modal-player__toggle,
.modal-player:hover .modal-player__progress {
  opacity: 1;
  pointer-events: auto;
}

.modal-player__progress::-webkit-slider-runnable-track {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--blue) 0 var(--progress, 0%),
    rgba(255, 255, 255, 0.95) var(--progress, 0%) 100%
  );
}

.modal-player__progress::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  appearance: none;
  opacity: 0;
}

.modal-player__progress::-moz-range-track {
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
}

.modal-player__progress::-moz-range-progress {
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
}

.modal-player__progress::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 0;
  opacity: 0;
}

@media (max-width: 1180px) {
  :root {
    --header-height: 52px;
  }

  .container {
    width: min(100% - 36px, 680px);
  }

  .header-inner {
    gap: 12px;
  }

  .burger {
    display: block;
    flex: 0 0 32px;
  }

  .logo {
    --logo-icon: 24px;
    --logo-gap: 8px;
    --logo-title: 16px;
    --logo-subtitle: 7.5px;
    flex-basis: 150px;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-height);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px 22px 22px;
    background: var(--dark);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 11px 0;
  }

  .header-actions {
    margin-left: auto;
    gap: 10px;
  }

  .header-phones {
    display: none;
  }

  .header-actions .btn {
    min-height: 34px;
    padding: 0 14px;
  }

  .hero,
  .hero-grid {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 40px 0 38px;
  }

  .hero-copy {
    max-width: 520px;
  }

  .hero-product {
    display: none;
  }

  .section {
    padding: 42px 0;
  }

  .split,
  .contact-grid,
  .logistics-grid,
  .about-grid,
  .product-detail__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .info-card {
    min-height: auto;
  }

  .intro-section {
    padding: 42px 0;
  }

  .intro-section .container {
    width: min(100% - 36px, 680px);
  }

  .intro-section .split--intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-section .section-copy {
    padding-top: 0;
  }

  .intro-section .section-copy h2 {
    margin-bottom: 24px;
  }

  .intro-section .video-preview {
    width: 100%;
  }

  .product-grid,
  .product-grid--related {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .catalog-section .product-grid {
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 22px) / 2);
    grid-template-columns: none;
    grid-template-rows: repeat(4, auto);
    overflow-x: auto;
    padding-bottom: 12px;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .catalog-section .product-grid::-webkit-scrollbar {
    display: none;
  }

  .catalog-section .product-card {
    scroll-snap-align: start;
  }

  .promo-slider {
    height: 619px;
  }

  .promo-slide {
    grid-template-columns: 1fr;
    height: 619px;
    min-height: 619px;
  }

  .promo-slide__image {
    height: 330px;
  }

  .promo-slide__image img {
    width: min(430px, 72%);
    max-height: 318px;
  }

  .promo-slide__content {
    align-self: stretch;
    justify-items: center;
    gap: 22px;
    padding: 0 18px 28px;
  }

  .promo-slide__content strong {
    width: calc(100% + 36px);
    min-height: 0;
    padding: 24px 52px;
    font: var(--type-promo-title);
  }

  .promo-slide__content .btn {
    align-self: start;
    width: min(100%, 520px);
    height: 42px;
    min-height: 42px;
    padding: 0 20px;
    font: var(--font-bold) 14px/var(--lh-120) var(--font-primary);
    white-space: nowrap;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-block h2,
  .case-section h2 {
    font: var(--type-panel-title);
  }

  .case-section .container {
    width: min(100% - 36px, 680px);
  }

  .case-section .case-title {
    margin-bottom: 32px;
  }

  .case-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .case-grid .video-preview {
    width: 100%;
  }

  .about-copy h2 {
    font: var(--font-bold) 40px/var(--lh-120) var(--font-primary);
  }

  .stats span {
    font: var(--font-regular) 24px/var(--lh-120) var(--font-primary);
  }

  .production-section .section-copy h2 {
    font: var(--font-bold) 32px/var(--lh-120) var(--font-primary);
  }

  .production-section .production-image {
    order: 1;
  }

  .production-section .section-copy {
    order: 2;
  }

  .advantages-about-section {
    padding: 48px 0 68px;
  }

  .advantages-about {
    gap: 48px;
  }

  .advantages-about::before {
    left: 50%;
    width: 360px;
    transform: translateX(-50%);
    background-size: auto 102%;
    opacity: 0.68;
  }

  .about-image {
    display: none;
    margin-top: 0;
  }

  .stats {
    justify-content: space-between;
    gap: 26px;
  }

  .contact-card,
  .request-form,
  .info-card {
    padding: 28px;
  }

  .contact-section .container {
    width: min(100% - 36px, 680px);
  }

  .contact-card,
  .request-form {
    min-height: auto;
  }

  .contact-card h2,
  .request-form h2 {
    margin-bottom: 20px;
  }

  .contact-card p {
    margin-bottom: 24px;
  }

  .contact-lines {
    margin-bottom: 30px;
  }

  .contact-card .icon-list {
    gap: 18px;
  }

  .messenger-row {
    margin: 36px 0 0;
  }

  .request-form input,
  .request-form textarea {
    min-height: 54px;
    margin-bottom: 14px;
    padding: 0 18px;
    border-radius: 6px;
  }

  .request-form textarea {
    min-height: 80px;
    padding-top: 16px;
  }

  .agree {
    gap: 12px;
  }

  .request-form .btn {
    min-height: 52px;
    margin-top: 14px;
    border-radius: 6px;
  }

  .call-modal {
    padding: 24px;
  }

  .call-form {
    width: min(656px, 100%);
    padding: 76px 36px 28px;
  }

  .call-form h2 {
    margin-bottom: 18px;
  }

  .call-form h3 {
    margin-bottom: 34px;
  }

  .call-form .agree {
    margin-bottom: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .osm-map {
    height: 245px;
  }

  .gallery-main {
    height: 440px;
  }

  .product-info h1 {
    margin-top: 0;
  }

  .equipment-banner {
    grid-template-columns: 1fr 1.4fr;
    margin-top: 28px;
  }

  .media-strip {
    grid-auto-columns: 222px;
  }
}

@media (max-height: 820px) and (min-width: 521px) {
  .call-modal {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .call-form {
    width: min(560px, 100%);
    padding: 46px 32px 18px;
  }

  .call-modal__close {
    right: 22px;
    top: 16px;
    width: 28px;
    height: 28px;
  }

  .call-modal__close img {
    width: 22px;
    height: 22px;
  }

  .call-form h2 {
    margin-bottom: 8px;
  }

  .call-form h3 {
    margin-bottom: 18px;
  }

  .call-form input {
    min-height: 44px;
    margin-bottom: 12px;
    padding: 0 16px;
  }

  .call-form input:nth-of-type(3) {
    margin-bottom: 12px;
  }

  .call-form .agree {
    margin-bottom: 18px;
  }

  .call-form .btn {
    min-height: 52px;
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  :root {
    --header-height: 92px;
  }

  .container {
    width: min(100% - 24px, 336px);
  }

  .site-header {
    position: sticky;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  }

  .header-inner {
    gap: 8px;
  }

  .burger {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .logo {
    --logo-icon: 42px;
    --logo-gap: 10px;
    --logo-title: 24px;
    --logo-subtitle: 10px;
    flex-basis: 160px;
    white-space: normal;
  }

  .logo .brand-logo__title {
    white-space: nowrap;
  }

  .logo .brand-logo__subtitle {
    max-width: 112px;
  }

  .socials {
    gap: 1px;
  }

  .socials a {
    width: 32px;
    height: 32px;
  }

  .socials img {
    width: 32px;
    height: 32px;
  }

  .header-actions .btn {
    display: none;
  }

  .main-nav {
    top: var(--header-height);
  }

  .mobile-menu-contacts {
    display: grid;
    width: 100%;
    gap: 14px;
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .mobile-menu-phones {
    display: grid;
    gap: 5px;
    color: rgba(255, 255, 255, 0.78);
    font: var(--type-phone);
  }

  .mobile-menu-phones a {
    width: max-content;
    padding: 0;
  }

  .mobile-menu-contacts .btn {
    width: 100%;
    min-height: 44px;
    border-radius: 8px;
  }

  .hero,
  .hero-grid {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
  }

  .hero-copy h1 {
    max-width: 310px;
  }

  .hero-copy p {
    max-width: 310px;
  }

  .icon-list {
    gap: 12px;
  }

  .icon-list img {
    width: 22px;
    height: 22px;
  }

  .btn {
    min-height: 42px;
    padding: 0 18px;
  }

  .section {
    padding: 30px 0;
  }

  .intro-section {
    padding: 30px 0;
  }

  .intro-section .container {
    width: min(100% - 24px, 336px);
  }

  .intro-section .section-copy h2 {
    margin-bottom: 18px;
  }

  .intro-section .section-copy p {
    margin-bottom: 18px;
  }

  .intro-section .plain-list li + li {
    margin-top: 10px;
  }

  .section-title,
  .section h2,
  .case-section h2 {
    margin-bottom: 18px;
  }

  .case-section .container {
    width: min(100% - 24px, 336px);
  }

  .case-section .case-title {
    margin-bottom: 18px;
  }

  .case-grid {
    gap: 18px;
  }

  .case-grid .video-preview {
    order: 1;
  }

  .case-grid .section-copy {
    order: 2;
  }

  .product-grid,
  .product-grid--related {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .catalog-section .product-grid {
    grid-auto-columns: 100%;
    grid-template-rows: repeat(4, auto);
    gap: 14px;
    padding-bottom: 10px;
  }

  .product-grid--related {
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    grid-template-rows: repeat(4, auto);
    overflow-x: auto;
    padding-bottom: 10px;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .product-grid--related::-webkit-scrollbar {
    display: none;
  }

  .product-grid--related .product-card {
    scroll-snap-align: start;
  }

  .product-card {
    min-height: 338px;
  }

  .product-card__image {
    height: 180px;
    padding: 36px 18px 18px;
  }

  .product-card__image img {
    max-height: 132px;
  }

  .product-card h3 {
    margin: 18px 14px 7px;
  }

  .product-card p {
    margin: 0 14px 18px;
  }

  .product-card a {
    left: 14px;
    bottom: 14px;
  }

  .product-card__badge {
    top: 14px;
    min-height: 30px;
    max-width: calc(100% - 12px);
    padding: 0 9px;
    border-radius: 0 15px 15px 0;
  }

  .promo-slider {
    height: 609px;
  }

  .promo-slide {
    height: 609px;
    min-height: 609px;
  }

  .promo-slide__image {
    height: 315px;
  }

  .promo-slide__image img {
    width: min(310px, 88%);
    max-height: 300px;
  }

  .promo-slide__content {
    padding-bottom: 24px;
  }

  .promo-slide__content strong {
    width: calc(100% + 24px);
    padding: 18px 24px;
  }

  .promo-slide__content .btn {
    width: 100%;
    min-height: 56px;
    height: auto;
    padding: 8px 18px;
    font: var(--font-bold) 14px/var(--lh-120) var(--font-primary);
    white-space: normal;
    text-align: center;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefit-card {
    min-height: 128px;
    padding: 18px;
  }

  .advantages-about::before {
    display: none;
  }

  .stats {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .production-section .split {
    display: flex;
    flex-direction: column;
  }

  .contact-card,
  .request-form,
  .info-card {
    padding: 22px 18px;
  }

  .info-card h2 {
    margin-bottom: 28px;
  }

  .company-list,
  .geo-list {
    margin-top: 28px;
  }

  .notice {
    margin-top: 28px;
    padding: 20px 18px;
  }

  .contact-section .container {
    width: min(100% - 24px, 336px);
  }

  .messenger-row {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .request-form input,
  .request-form textarea {
    min-height: 44px;
    padding: 0 12px;
  }

  .geo-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-footer {
    padding: 32px 0;
  }

  .osm-map {
    height: 190px;
    margin-bottom: 30px;
  }

  .footer-logo {
    --logo-icon: 22px;
    --logo-gap: 8px;
    --logo-title: 15px;
    --logo-subtitle: 7px;
  }

  .product-detail {
    padding-top: 26px;
  }

  .gallery-main {
    --gallery-pad: 20px;
    height: 260px;
  }

  .thumb-strip {
    --thumb-gap: 10px;
    margin-top: 10px;
  }

  .product-thumb {
    flex-basis: calc((100% - (var(--thumb-gap) * 2)) / 3);
    height: 65px;
    padding: 5px;
  }

  .product-thumb img {
    max-height: 54px;
  }

  .thumb-play img {
    width: 24px;
    height: 24px;
  }

  .tag-row {
    gap: 8px;
    margin-bottom: 18px;
  }

  .tag-row span {
    padding: 8px 10px;
    border-radius: 5px;
  }

  .buy-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
  }

  .feature-panel {
    padding: 16px;
  }

  .feature-panel ul {
    gap: 10px;
  }

  .feature-panel img {
    width: 18px;
    height: 18px;
  }

  .equipment-banner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .equipment-banner img {
    height: 120px;
  }

  .equipment-banner strong {
    padding: 14px;
  }

  .media-strip {
    grid-auto-columns: 100%;
    gap: 0;
  }

  .tabs {
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tabs button {
    padding-bottom: 10px;
  }

  .tab-copy {
    padding: 16px 12px;
  }

  th,
  td {
    display: block;
    width: 100%;
    padding: 10px 12px;
  }

  td {
    padding-top: 0;
  }

  .media-modal {
    padding: 18px;
  }

  .media-modal--video .media-modal__body {
    width: min(100%, calc((100vh - 36px) * 0.7913));
    max-height: calc(100vh - 36px);
  }

  .media-modal__close {
    right: 12px;
    top: 12px;
  }

  .modal-player__progress {
    left: 16px;
    right: 16px;
    bottom: 18px;
  }

  .call-modal {
    padding: 12px;
  }

  .call-form {
    padding: 64px 24px 24px;
  }

  .call-modal__close {
    right: 18px;
    top: 18px;
    width: 32px;
    height: 32px;
  }

  .call-modal__close img {
    width: 24px;
    height: 24px;
  }

  .call-form h2 {
    margin-bottom: 12px;
  }

  .call-form h3 {
    margin-bottom: 24px;
    font: var(--type-modal-subtitle);
  }

  .call-form .agree {
    margin-bottom: 20px;
  }
}


/* vikman74 styles */

.orgg {display:none; height:0; width:0; padding:0; border:none;}