/* ALL COLORS */
:root {
  --color-orange: #e94416;
  --color-dark-orange: #9d4932;
  --color-orange-10: rgba(233, 68, 22, 0.1);
  --color-yellow-star: #ffee00;
  --color-black: #222222;
  --color-dark-grey: #151515;
  --color-white: #ffffff;
  --white-soft: #f4f4f4;
  --white-20: rgba(255, 255, 255, 0.2);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-12: rgba(255, 255, 255, 0.12);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-5: rgba(255, 255, 255, 0.05);
  --white-07: rgba(255, 255, 255, 0.07);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-40: rgba(255, 255, 255, 0.04);
  --black-20: rgba(0, 0, 0, 0.2);
  --black-10: rgba(34, 34, 34, 0.1);
  --black-40: rgba(34, 34, 34, 0.04);
  --black-60: rgba(34, 34, 34, 0.06);
  --black-70: rgba(0, 0, 0, 0.7);
  --black-05: rgba(34, 34, 34, 0.05);
  --succes-color-green: #07e380;
  --background-color-succes: rgba(7, 227, 128, 0.1);
}

body.dark {
  --background-primary: var(--color-dark-grey);
  --text-primary: var(--color-white);
  --text-primary-second: var(--white-70);
  --background-toggle: var(--white-10);
  --text-section-point: var(--white-60);
  --background-section-point: var(--white-40);
  --border-section-point: var(--white-12);
  --background-partlist-card: var(--white-40);
  --border-partlist-card: var(--white-12);
  --background-three-card: var(--white-5);
  --icon-benefits-card: var(--white-10);
  --icon-comma-reviews: var(--white-20);
  --button-arrows-reviews: var(--white-07);
  --background-rewiews-card: var(--color-black);
  --background-number-footer: var(--white-07);
  --background-color-buttons: var(--color-white);
  --color-buttons: var(--color-black);
  --color-icon-buttons: var(--color-black);
  --background-color-black: var(--color-black);
}

body.light {
  --background-primary: var(--color-white);
  --text-primary: var(--color-black);
  --text-primary-second: var(--black-70);
  --background-toggle: var(--black-10);
  --text-section-point: var(--color-black);
  --background-section-point: var(--black-40);
  --border-section-point: var(--black-60);
  --background-partlist-card: var(--black-40);
  --border-partlist-card: var(--black-60);
  --background-three-card: var(--black-05);
  --icon-benefits-card: var(--black-40);
  --icon-comma-reviews: var(--black-20);
  --button-arrows-reviews: var(--black-05);
  --background-rewiews-card: var(--black-60);
  --backgroung-number-footer: var(--black-60);
  --background-color-buttons: var(--black-70);
  --color-buttons: var(--color-white);
  --color-icon-buttons: var(--color-white);
  --background-color-black: var(--color-white);
}

body {
  background-color: var(--background-primary);
  font-family: 'Montserrat', sans-serif;
}

*::before,
*::after {
  cursor: none !important;
  box-sizing: border-box;
}
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
p,
a,
address,
img,
ul,
li,
form,
label,
legend,
footer,
header,
menu,
nav,
section,
menu,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
}
ol,
ul {
  padding: 0;
  list-style: none;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
main {
  display: block;
  unicode-bidi: isolate;
}
*,
::after,
::before {
  box-sizing: border-box;
}
.no-scroll {
  height: 100%;
  overflow: hidden;
}
/*! GLOBAL EFFECTS */
/* SCROLLS STYLES LAPTOP */
html {
  scroll-behavior: smooth;
}

/* HEADER NAVIGATOR LIGHT BUTTONS */
.link-header-navigation.active {
  border-radius: 8px;
  background-color: var(--color-orange);
  padding: 8px 14px;
  color: var(--color-white);
}
.list-footer-navigation .link-header-navigation.active {
  border-radius: 0;
  background-color: inherit;
  padding: 0;
  color: inherit;
  text-align: left;
}
.list-footer-navigation .link-header-navigation:hover,
.list-footer-navigation .link-header-navigation.active:hover {
  background-color: transparent !important;
  color: var(--color-orange) !important;
}
.list-footer-navigation .link-header-navigation {
  padding: 0;
}

.link-header-navigation.active:hover {
  background-color: var(--background-color-buttons);
  color: var(--color-buttons);
}

/* BUTTONS EFFECTS */
button {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

button:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: var(--background-color-buttons);
  color: var(--color-buttons);
}
.button-link:hover {
  transform: scale(1.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: var(--background-color-buttons);
  color: var(--color-buttons);
}

.icon-button-shop:hover {
  color: var(--color-icon-buttons);
}
.icon-button-shop {
  width: 18px;
  height: 18px;
}
/* FIXED HEADER */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-sizing: border-box;
  background-color: var(--background-primary);
  padding: 24px 0;
  width: 100%;
  color: var(--text-primary);
}

#main-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
}
@media (min-width: 1024px) {
  #toggle-modal {
    display: none;
  }
}
/*! LAPTOP EFFECTS CSS SCROLL CONTENT! */
.reveal-bottom {
  transform: translateY(50px);
  opacity: 0;
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
}

.reveal-bottom.visible {
  transform: translateY(0);
  opacity: 1;
}

/* ---- */
/*! CONTAINER! */
.container {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 72px;
  max-width: 1440px;
}
/*! TOGGLE! */
.button-header-toggle .icon-toggle-nav {
  background-color: transparent;
}

.button-header-toggle.light-theme .icon-sun,
.button-header-toggle.dark-theme .icon-moon {
  background-color: var(--color-orange);
}

.button-header-toggle.light-theme .icon-sun .icon-toggle,
.button-header-toggle.dark-theme .icon-moon .icon-toggle {
  color: var(--color-white) !important;
}

/* --- */
/*! SECTION TITLE AND TEXT AND MARK CONTENT! */
.title-section {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
}

.point-section {
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(25px);
  box-sizing: border-box;
  border: 1px solid var(--border-section-point);
  border-radius: 8px;
  background-color: var(--background-section-point);
  padding: 12px 18px;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--text-section-point);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  white-space: nowrap;
}

.text-title-content {
  color: var(--text-primary-second);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
/*! CALL BTN */
.contact-btn-fixed {
  display: flex;
  display: flex;
  position: fixed;
  right: max(72px, calc((100vw - 1440px) / 2 + 72px));
  bottom: 72px;
  justify-content: center;
  justify-content: center;
  align-items: center;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  background-color: var(--color-orange);
  width: 70px;
  height: 70px;
}

.contact-btn-fixed:hover {
  transform: scale(1.1);
}
.calling-button-icon {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}
.contact-btn-fixed:hover .calling-button-icon {
  color: var(--background-primary);
}
/*! MODAL-WINDOW-CALLING */
/* Модальне вікно */
.modal-overlay {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  z-index: 10000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}

.modal-overlay.active {
  visibility: visible;
  opacity: 1;
}

.modal {
  position: relative;
  transform: translateY(50px);
  transition: transform 0.3s ease;
  box-sizing: border-box;
  border-radius: 12px;
  background: var(--background-color-black);
  padding: 40px;
  width: 100%;
  max-width: 500px;
  overflow-y: auto;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  transition: color 0.3s ease;
  cursor: pointer;
  border: none;
  background: none;
  font-size: 24px;
}
.close-btn:hover {
  transform: none;
  box-shadow: none;
  background: none !important;
}
.modal-salling-title {
  margin-bottom: 12px;
  padding: 0px 27px;
  width: 100%;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  text-align: center;
}

.modal-salling-description {
  margin-bottom: 40px;
  padding: 0px 53px;
  width: 100%;
  color: var(--text-primary-second);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.form-input {
  transition: all 0.3s ease;
  border: none;
  border-radius: 8px;
  background: var(--background-partlist-card);
  padding: 14px 16px;
  width: 100%;
  color: var(--text-primary);
  font-size: 16px;
}
.form-input:focus {
  outline: none;
  border: solid 1px var(--text-primary);
}

.form-input.error {
  border: 1px solid var(--color-orange);
}
.close-btn-calling {
  width: 12px;
  height: 12px;
  color: var(--text-primary);
}
.error-icon {
  position: absolute;
  top: 40px;
  right: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  fill: none;
  width: 15px;
  height: 15px;
  color: var(--color-orange);
}

.form-group.has-error .error-icon {
  opacity: 1;
}

.error-message {
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--text-primary);
  font-weight: 400;
  font-size: 12px;
}

.form-group.has-error .error-message {
  opacity: 1;
}

.submit-btn {
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  background: var(--color-orange);
  padding: 16px;
  width: 100%;
  color: var(--color-white);
  font-weight: 600;
  font-size: 16px;
}
.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Success Modal */
.success-content {
  text-align: center;
}

.success-icon {
  margin-bottom: 40px;
  border-radius: 8px;
  padding: 22px;
  height: 94px;
}

.success-title {
  margin-bottom: 12px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
}

.success-description {
  color: var(--text-primary-second);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
}

.hidden {
  display: none !important;
}

.no-scroll {
  overflow: hidden;
}
/*! HEADER! */
.button-header-burger-menu {
  display: none;
}
.back-window {
  display: none;
}
.header {
  background-color: var(--background-primary);
  padding: 24px 0;
  color: var(--text-primary);
}

.container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  max-width: 1296px;
  height: 36px;
}

.icon-header-logo {
  width: 100%;
  max-width: 155px;
  height: auto;
}

.list-header-navigation {
  display: flex;
  gap: 26px;
  white-space: nowrap;
}

.item-header-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
}

.link-header-navigation {
  outline: none;
  text-decoration: none;
}

.button-header-toggle {
  display: flex;
  justify-content: center;
  gap: 9px;
  border: none;
  border-radius: 8px;
  background-color: var(--background-toggle) !important;
  padding: 3px 0px;
  width: 100%;
  max-width: 75px;
}

.icon-toggle-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  width: 30px;
  height: 30px;
}

.icon-toggle {
  width: 18px;
  height: 18px;
  color: var(--text-primary) !important;
}

/*! HEADER END! */
/*! HERO! */
.section-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.container-hero-video {
  opacity: 1;
}
body.dark .container-hero-video {
  opacity: 0.6;
}
.container-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-intro-hero {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.container-hero-video::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 90), transparent);
  height: 30%;
  pointer-events: none;
  content: '';
}
.container-hero-content {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
  min-height: 100vh;
}
.container-hero-title-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  justify-items: flex-start;
  margin-top: 234px;
  margin-bottom: 234px;
  width: 100%;
  max-width: 601px;
}

.icon-title-page {
  width: 18px;
  height: 18px;
  color: var(--color-orange) !important;
}

.text-title-section {
  display: flex;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
  margin-bottom: 40px;
  border: 1px solid var(--white-12);
  border-radius: 8px;
  background-color: var(--white-40);
  padding: 12px 18px;
  width: 100%;
  max-width: 261px;
  color: var(--white-60);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-align: left;
  text-align: center;
}

.point-section-card {
  display: inline-block;
  box-sizing: border-box;
  margin-bottom: 48px;
  border: 1px solid var(--border-section-point);
  border-radius: 8px;
  background-color: var(--background-section-point);
  padding: 12px 32px;
  color: var(--text-section-point);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  text-align: center;
}
.title-hero {
  margin-bottom: 32px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 84px;
  line-height: 90px;
  letter-spacing: 1px;
}

.text-hero-description {
  margin-bottom: 64px;
  color: var(--white-70);
}

.button-hero-link-shop {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border: none;
  border-radius: 8px;
  background-color: var(--color-orange);
  padding: 16px 24px;
  width: 100%;
  max-width: 162px;
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}
.button-hero-link-shop:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: var(--color-white);
  color: var(--color-black);
}
.icon-button-shop-hero:hover {
  color: var(--color-black);
}
.icon-button-shop-hero {
  width: 18px;
  height: 18px;
}

/*! HERO END! */
/*! SECTION BRAND! */
.section-brand-line {
  position: relative;
  overflow: hidden;
}

.container-brand {
  position: relative;
  padding: 69px 0px;
  width: 100%;
  overflow: hidden;
}

.container-brand-icons {
  display: flex;
  align-items: center;
  gap: 96px;
  animation: scrollBrands 40s linear infinite;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
}

.icon-brand {
  flex-shrink: 0;
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.icon-brand:hover {
  opacity: 1;
}

@keyframes scrollBrands {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.section-brand-line::before,
.section-brand-line::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 200px;
  pointer-events: none;
  content: '';
}

.section-brand-line::before {
  left: 0;
  background: linear-gradient(to right, var(--background-primary), transparent);
}

.section-brand-line::after {
  right: 0;
  background: linear-gradient(to left, var(--background-primary), transparent);
}
/*! SECTION BRAND END! */
/*! SECTION PARLIST! */
.section-partlist {
  margin: 240px 0px 440px 0px;
}

.container-parlist-title {
  width: 100%;
  max-width: 650px;
}

.title-parlist {
  margin-bottom: 24px !important;
}

.text-title-page-parlist {
  margin-bottom: 32px;
  width: 100%;
  max-width: 127px;
}

.container-parlist-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}

.button-parlist-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border: none;
  border-radius: 8px;
  background-color: var(--color-orange);
  padding: 16px 24px;
  width: 100%;
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
}

.container-partlist-cataloges-buttons {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 12px;
}

.list-cards {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.point-section-card {
  display: inline-block;
  box-sizing: border-box;
  margin-bottom: 48px;
  border: 1px solid var(--border-section-point);
  border-radius: 8px;
  background-color: var(--background-section-point);
  padding: 12px 32px;
  color: var(--text-section-point);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  text-align: center;
}
.title-category-partlist-card {
  margin-bottom: 24px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 100%;
}
.text-category-partlist-card {
  color: var(--text-primary-second);
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 28px;
  letter-spacing: 1%;
}

.card-3d {
  display: flex;
  position: relative;
  align-items: flex-start;
  gap: 16px;
  transform: rotate3d(0);
  transition:
    transform 300ms ease-out,
    box-shadow 300ms ease-out;
  box-shadow: 0 1px 5px #00000099;
  border-radius: 10px;
  background-size: cover;
  background-clip: padding-box;
  background-color: var(--background-rewiews-card);
  padding: 1em;
  width: 100%;
  height: 344px;
  overflow: hidden;
  color: var(--text-primary, #181a1a);
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .container-3d-card-image {
    max-width: 140px;
  }
}
@media (min-width: 1440px) {
  .container-3d-card-image {
    max-width: 189px;
  }
}
.card-image {
  flex: 0 0 120px;
  transition: transform 0.3s ease;
  border-radius: 8px;
  height: 272px;
  -o-object-fit: cover;
     object-fit: cover;
}

.hover-zone {
  perspective: 1000px;
  width: 100%;
  height: 344px;
}
.card-3d:hover {
  transition-duration: 150ms;
}

.card-3d .glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: radial-gradient(circle at 50% -20%, #ffffff22, #0000000f);
  pointer-events: none;
}

/*! SECTION PARLIST END! */
/*! ABOUT US! */
.container-about-us {
  display: flex;
  gap: 60px;
  margin-bottom: 200px;
}

.container-about-us-image {
  width: 100%;
  max-width: 800px;
}

.image-about-us {
  border-radius: 14px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.container-about-us-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  max-width: 436px;
}

.text-title-page-about-us {
  margin-bottom: 32px;
}

.title-about-us {
  margin-bottom: 24px !important;
}

.text-about-us {
  margin-bottom: 100px;
  letter-spacing: 0.3px;
}
/*! ABOUT US END! */
/*! ANIMATE COUNT! */
.container-about-us-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 200px;
  width: 100%;
}

.container-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  height: 42px;
  text-align: center;
}

.count {
  display: block;
  min-width: 8ch;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  text-align: start;
}

.container-stat-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: var(--color-orange-10);
  width: 42px;
  height: 42px;
}

.icon-about-us-info {
  width: 18px;
  height: 18px;
  color: var(--color-orange);
}

.container-about-use-stats {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.text-about-us-stats {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
}
/*! ANIMATE COUNT END! */
/*! SECTION OTHER! */
.container-other {
  display: flex;
  justify-content: center;
  margin: 340px 0px;
  width: 100%;
}

.container-other-text-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 12px 0px 0px 12px;
  background-image: none !important;
  background-color: var(--background-three-card);
  padding: 72px 76px 72px 72px;
}

.title-other {
  margin-bottom: 24px !important;
}

.text-other {
  margin-bottom: 104px;
  letter-spacing: 0.3px;
}

.button-other {
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
  border-radius: 8px;
  background-color: var(--color-orange);
  padding: 16px 24px;
  width: 100%;
  max-width: 171px;
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}

.container-other-image {
  width: 100%;
  max-width: 636px;
}

.image-other {
  border-radius: 0px 12px 12px 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/*! SECTION OTHER END! */
/*! SECTION BENEFITS! */
.section-benefits {
  margin-bottom: 400px;
}

.container-benefits-content {
  margin-bottom: 100px;
}
.container-benefits-title {
  width: 100%;
  max-width: 650px;
}
.text-title-page-benefits {
  margin-bottom: 32px;
  width: 100%;
  max-width: 128px;
}
.title-benefits {
  margin-bottom: 24px !important;
}

.list-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 24px;
  margin: 0 auto;
}

.item-benefits {
  display: flex;
  position: relative;
  align-items: flex-start;
  gap: 16px;
  transform: rotate3d(0);
  transition:
    transform 300ms ease-out,
    box-shadow 300ms ease-out;
  border-radius: 10px;
  background-image: none !important;
  background-size: cover;
  width: 100%;
  height: auto;
  color: var(--text-primary, #181a1a);
}
.no-padding {
  padding: 0 0 0 0 !important;
  height: 100%;
  max-height: 300px !important;
}

.container-benefits-item-content {
  display: flex;
  flex-direction: column;
  padding: 40px 40px 40px 40px;
  width: 100%;
}

.container-benefits-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: var(--color-orange-10);
  width: 64px;
  height: 64px;
}

.container-benefits-icon-scnd {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: var(--icon-benefits-card);
  width: 64px;
  height: 64px;
}

.icon-benefits {
  width: 24px;
  height: 24px;
  color: var(--color-orange);
}

.icon-benefits-scd {
  width: 24px;
  height: 24px;
  color: var(--text-primary);
}

.title-benefits-item {
  margin-top: 55px;
  margin-bottom: 24px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
}

.text-benefits-item {
  opacity: 70%;
  color: var(--text-primary-second);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}
/*! SECTION BENEFITS END! */
/*! SECTION REWIEWS */
.section-reviews {
  margin-bottom: 400px;
}

.container-reviews-title {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 124px;
  width: 100%;
}
.title-section-reviews {
  width: 100%;
  max-width: 650px;
}
.text-title-page-reviews {
  margin-bottom: 32px;
  width: 100%;
  max-width: 128px;
}

.button-reviews {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-bottom: 10px;
  border: none;
  border-radius: 8px;
  background-color: var(--color-orange);
  padding: 16px 24px;
  width: 100%;
  max-width: 177px;
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}

.container-reviews-slider {
  display: flex;
  position: relative;
  align-items: flex-start;
  gap: 134px;
  overflow: hidden;
}

.container-reviews-content-left {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
}

.icon-reviews-comma {
  margin-bottom: 32px;
  width: 110px;
  height: 87px;
  color: var(--icon-comma-reviews) !important;
}

.title-reviews-cards {
  margin-bottom: 98px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
}

.container-reviews-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-slider {
  display: flex;
  flex-shrink: 0;
  gap: 24px;
  transition: transform 0.3s ease;
}

.card {
  display: flex;
  flex-shrink: 0;
  border-radius: 12px;
  background-color: var(--background-rewiews-card);
  width: 100%;
  max-width: 336px;
  font-weight: bold;
  font-size: 24px;
}

.card-reviews-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px 40px;
}

.text-reviews-card-name {
  margin-bottom: 14px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
}

.text-reviews-card {
  color: var(--text-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.container-reviews-icons {
  display: flex;
  gap: 4px;
  margin-bottom: 72px;
}

.icon-star {
  fill: var(--color-yellow-star);
  width: 18px;
  height: 18px;
}

.icon-dark-star {
  opacity: 16%;
  fill: var(--color-yellow-star);
}

.button-reviews-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  background-color: var(--button-arrows-reviews);
  width: 50px;
  height: 50px;
}

.button-reviews-arrow:hover {
  transform: scale(0.95);
  background-color: var(--color-orange);
}

.button-reviews-arrow:hover .icon-button-arrow-reviews {
  color: var(--color-white);
}

.icon-button-arrow-reviews {
  width: 20px;
  height: 20px;
  color: var(--text-primary);
}

.slider-progress-indicator {
  margin: 0 15px;
  width: 182px;
  height: 2px;
}

.progress-track {
  position: relative;
  border-radius: 2px;
  background-color: var(--background-toggle);
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.progress-bar {
  transform: translateX(0%);
  transition: transform 0.3s ease;
  border-radius: 2px;
  background-color: var(--text-primary);
  width: 20%;
  height: 100%;
}
/*! SECTION REWIEWS END*/
/*! FOOTER! */
.container-footer {
  display: flex;
  gap: 236px;
  margin-bottom: 70px;
  border-bottom: solid 1px var(--white-10);
  padding-bottom: 70px;
}

.container-footer-logo-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 314px;
}

.icon-footer-logo {
  width: 100%;
  max-width: 196px;
  height: 100%;
  max-height: 46px;
}

.text-footer-info {
  color: var(--text-primary-second);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.2px;
}

.container-footer-list-info {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  width: 100%;
}

.list-footer-navigation {
  display: flex;
  flex-direction: column;
}

.list-frts {
  width: 100%;
  max-width: 196px;
}

.list-scnd {
  width: 100%;
  max-width: 272px;
}

.item-header-navigation-footer-name {
  margin-bottom: 18px;
  color: var(--text-primary-second);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.2px;
}

.email {
  margin-top: 32px;
}

.email-link-footer:hover {
  color: var(--color-orange);
  text-decoration: underline;
}
.footer-social-media:hover {
  color: var(--color-orange);
}
.address-link-footer:hover {
  color: var(--color-orange);
}
.item-header-navigation-footer {
  margin-top: 8px;
  color: var(--text-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.3px;
}

.container-footer-mark-phone {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 150px;
}

.footer-brand {
  color: var(--text-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.footer-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background-color: var(--background-number-footer);
  padding: 8px 14px;
  width: 100%;
  max-width: 196px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}

.icon-footer-phone {
  width: 18px;
  height: 18px;
  color: var(--text-primary);
}
/*! FOOTER END! */

@media (max-width: 1023px) {
  .container {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 48px;
    width: 100%;
    max-width: 834px;
  }
  html,
  body {
    position: relative;
    width: 100%;
    overflow-x: hidden;
  }
  #main-header {
    padding: 32px 0px;
  }
  /* MODAL MENU */
  .back-window {
    display: flex;
  }
  .back-window {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 123;
    background-color: var(--background-primary);
    width: 100%;
    height: 100%;
  }
  .modal-window {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding-right: 48px;
    padding-left: 48px;
    width: 100%;
    max-width: 738px;
  }
  .button-window-close {
    border: none;
    border-radius: 8px;
    background-color: var(--color-orange);
    width: 66px;
    height: 50px;
  }
  .modal-button-close {
    width: 12px;
    height: 12px;
    color: var(--color-white);
  }

  .button-window-close.active .modal-button-close,
  .button-window-close:hover .modal-button-close {
    color: var(--color-buttons);
  }
  .container-header-modal-window {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 72px;
    height: 50px;
  }
  .modal-content {
    margin-bottom: 88px;
  }
  .button-header-toggle {
    margin: 0 auto;
  }
  .is-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .title-section {
    font-size: 36px;
    line-height: 46px;
  }
  /*! CALLING-BTN */
  .contact-btn-fixed {
    right: max(48px, calc((100vw - 834px) / 2 + 48px));
    bottom: 71px;
    width: 60px;
    height: 60px;
  }
  .success-icon {
    padding: 22px;
    height: 88px;
  }
  /*! HEADER */
  .header {
    padding: 32px 0;
  }
  .container-header {
    position: relative;
    justify-content: space-between;
    align-items: center;
    height: 50px;
  }

  .navigation-header {
    display: none;
  }
  .button-header-burger-menu {
    display: block;
    order: 3;
    margin-left: auto;
    border: none;
    border-radius: 8px;
    background-color: var(--color-orange);
    width: 66px;
    height: 50px;
  }
  .button-header-burger-menu:hover,
  .button-header-burger-menu:active {
    background-color: var(--background-color-buttons);
  }
  .icon-header-burger-menu {
    width: 18px;
    height: 18px;
    color: var(--color-white);
  }
  .button-header-burger-menu:hover .icon-header-burger-menu,
  .button-header-burger-menu:active .icon-header-burger-menu {
    color: var(--color-buttons);
  }
  .toggle-laptop {
    display: none;
  }
  .list-header-navigation {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  .link-header-navigation {
    display: block;
    box-sizing: border-box;
    padding: 12px 24px;
    width: 100%;
    color: inherit;
    text-decoration: none;
  }
  .list-footer-navigation .link-header-navigation.active {
    border-radius: 0;
    background-color: transparent;
    padding: 0;
    color: inherit;
  }
  /*! HEADER END! */
  /*! HERO! */
  .container-hero-title-content {
    margin-top: 199px;
    margin-bottom: 170px;
    width: 100%;
    max-width: 738px;
  }
  .icon-title-page {
    width: 18px;
    height: 18px;
    color: var(--color-orange) !important;
  }
  .text-title-section {
    margin-bottom: 40px;
    max-width: 261px;
  }

  .title-hero {
    font-size: 64px;
  }
  .text-hero-description {
    width: 100%;
  }
  /*! HERO END! */
  /*! SECTION BRAND! */
  .section-brand-line {
    display: none;
  }
  /*! SECTION BRAND END! */
  /*! SECTION PARLIST! */
  .section-partlist {
    margin: 172px 0px 344px 0px;
  }
  .container-parlist-title {
    margin-bottom: 48px;
  }
  .container-parlist-content {
    display: flex;
    flex-direction: column;
  }
  .button-parlist-link {
    gap: 12px;
    width: 100%;
    max-width: 214px;
  }

  .container-partlist-cataloges-buttons {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 12px;
  }

  .list-cards {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .hover-shadow {
    transition-duration: 150ms;
    box-shadow: var(--card-shadow-hover);
  }
  /*! SECTION PARLIST END! */
  /*! ABOUT US! */
  .container-about-us {
    display: flex;
    flex-direction: column;
    margin-bottom: 172px;
  }
  .container-about-us-image {
    width: 100%;
    max-width: 738px;
  }
  .container-about-us-content {
    width: 100%;
    max-width: 636px;
  }
  .image-about-us {
    border-radius: 18px;
  }
  .title-about-us {
    width: 100%;
    max-width: 460px;
    font-size: 36px;
    line-height: 46px;
  }
  /*! ABOUT US END! */
  /*! ANIMATE COUNT! */
  .container-about-us-info {
    margin-bottom: 172px;
  }
  .count {
    display: flex;
    flex-wrap: wrap;
    min-width: unset;
    max-width: 140px;
    font-size: 34px;
  }
  .container-stat-icon {
    flex: 0 0 42px;
  }
  .container-about-use-stats {
    width: 100%;
  }
  .stats-one {
    max-width: 142px;
  }
  .stats-two {
    max-width: 200px;
  }
  .stats-three {
    max-width: 195px;
  }
  .text-about-us {
    margin-bottom: 100px;
  }
  .text-about-us-stats {
    font-size: 20px;
  }
  .container-stat-item {
    margin-bottom: 20px;
  }
  /*! ANIMATE COUNT END! */
  /*! SECTION OTHER! */
  .container-other {
    flex-direction: column;
    margin: 272px 0px;
  }

  .container-other-text-content {
    border-radius: 12px 12px 0px 0px;
    padding: 32px 234px 76px 32px;
  }
  .title-other {
    margin-bottom: 18px !important;
    width: 100%;
  }
  .text-other {
    margin-bottom: 48px;
    width: 100%;
  }
  .container-other-image {
    width: 100%;
    max-width: 738px;
  }
  .image-other {
    border-radius: 0px 0px 12px 12px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  /*! SECTION OTHER END! */
  /*! SECTION BENEFITS! */
  .section-benefits {
    margin-bottom: 172px;
  }
  .list-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .no-padding {
    height: 100%;
    max-height: 324px !important;
  }
  .container-benefits-title {
    width: 100%;
    max-width: 497px;
  }
  /*! SECTION BENEFITS END! */
  /*! SECTION REWIEWS */
  .section-reviews {
    margin-top: 344px;
    margin-bottom: 172px;
  }
  .container-reviews-title {
    width: 100%;
    max-width: 446px;
  }
  .title-section-reviews {
    margin-bottom: 48px;
  }
  .container-reviews-content-left {
    display: none;
  }

  .container-reviews-buttons {
    display: none;
  }

  .title-reviews-cards {
    display: none;
  }
  .button-reviews {
    position: static;
    width: auto;
  }
  .container-reviews-slider {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .reviews-slider {
    flex-wrap: nowrap;
    gap: 16px;
    padding-right: 16px;
    width: -moz-max-content;
    width: max-content;
    scroll-snap-type: x mandatory;
  }
  .card {
    flex-shrink: 0;
    width: 336px;
    height: auto;
    scroll-snap-align: start;
  }
  /*! SECTION REWIEWS END*/
  /*! FOOTER! */
  .container-footer {
    flex-direction: column;
    gap: 100px;
    width: 100%;
  }
  .container-footer-list-info {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    width: 100%;
  }
  .list-footer-navigation {
    display: flex;
    flex-direction: column;
  }
  .list-frts {
    width: 100%;
    max-width: 196px;
  }
  .list-scnd {
    width: 100%;
    max-width: 272px;
  }
  .item-header-navigation-footer-name {
    margin-bottom: 18px;
    color: var(--text-primary-second);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.2px;
  }
  .email {
    margin-top: 32px;
  }
  .email-link-footer {
    color: var(--color-orange);
    text-decoration: underline;
  }
  .item-header-navigation-footer {
    margin-top: 8px;
    color: var(--text-primary);
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.3px;
  }
  .container-footer-mark-phone {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 150px;
  }
  .footer-brand {
    color: var(--text-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
  }
  .footer-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
  }
  .footer-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background-color: var(--background-number-footer);
    padding: 8px 14px;
    width: 100%;
    max-width: 196px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
  }
  .icon-footer-phone {
    width: 18px;
    height: 18px;
    color: var(--text-primary);
  }
  /*! FOOTER END! */
}

@media (min-width: 320px) and (max-width: 737px) {
  .container {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    max-width: 430px;
  }
  html,
  body {
    position: relative;
    width: 100%;
    overflow-x: hidden;
  }
  #main-header {
    padding-top: 56px;
    padding-bottom: 32px;
  }
  .point-section {
    padding: 10px 12px;
    font-size: 13px;
  }
  .text-title-content {
    font-size: 16px;
    line-height: 24px;
  }
  /*! MODAL MENU */
  .button-window-close {
    width: 46px;
    height: 35px;
  }
  .modal-button-close {
    width: 9px;
    height: 9px;
  }
  /*! CALLING-BTN */
  .contact-btn-fixed {
    width: 50px;
    height: 50px;
  }
  .calling-button-icon {
    width: 18px;
    height: 18px;
  }
  /*! MODAL CALLING */
  .success-icon {
    padding: 22px;
    width: 100%;
    height: 78px;
  }
  /*! HEADER */
  .header {
    padding-top: 56px;
    padding-bottom: 32px;
  }
  /*! HERO! */
  .container-hero-title-content {
    margin-top: 238px;
    margin-bottom: 120px;
    max-width: 382px;
  }
  .icon-title-page {
    width: 16px;
    height: 16px;
  }

  .text-title-section {
    margin-bottom: 32px;
    width: 100%;
  }

  .title-hero {
    margin-bottom: 24px;
    font-size: 48px;
    line-height: 100%;
  }

  .text-hero-description {
    margin-bottom: 54px;
  }

  .button-hero-link-shop {
    max-width: 382px;
  }
  .icon-button-shop {
    width: 18px;
    height: 18px;
  }
  /*! SECTION BRAND! */
  .section-brand-line {
    display: none;
  }
  /*! SECTION PARLIST! */
  .section-partlist {
    margin: 100px 0px 296px 0px;
  }

  .container-parlist-title {
    margin-bottom: 48px;
  }
  .button-parlist-link {
    max-width: 382px;
  }

  .point-section-card {
    margin-bottom: 32px;
    padding: 10px 24px;
    font-size: 13px;
  }

  .title-category-partlist-card {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 32px;
  }
  .text-category-partlist-card {
    font-size: 16px;
    line-height: 24px;
  }
  .list-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .partlist-link-3d-card {
    display: block;
    overflow: hidden;
  }
  .card-3d {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    transform: rotate3d(0);
    transition:
      transform 300ms ease-out,
      box-shadow 300ms ease-out;
    box-shadow: 0 1px 5px #00000099;
    border-radius: 10px;
    background-size: cover;
    background-clip: padding-box;
    background-color: var(--background-rewiews-card);
    padding: 1em;
    width: 100%;
    height: 394px;
    color: var(--text-primary, #181a1a);
  }

  .card-content {
    flex: 1;
    min-width: 0;
  }

  .container-3d-card-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 346px;
  }

  .card-image {
    height: 346px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  /*! ABOUT US! */
  .container-about-us {
    margin-bottom: 100px;
  }

  .container-about-us-image {
    width: 100%;
    max-width: 382px;
  }
  .container-about-us-content {
    width: 100%;
    max-width: 382px;
  }

  .text-about-us {
    margin-bottom: 72px;
  }
  /*! ANIMATE COUNT! */
  .container-about-us-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 54px;
    margin-bottom: 148px;
    width: 100%;
  }
  .count {
    font-size: 28px;
  }

  .container-stat-icon {
    border-radius: 8px;
    width: 34px !important;
    height: 34px;
  }
  .container-stat-item {
    height: 34px;
  }
  .container-about-use-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 384px;
  }
  .text-about-us-stats {
    font-size: 16px;
  }
  /*! SECTION OTHER! */
  .container-other {
    margin: 248px px;
  }

  .container-other-text-content {
    border-radius: 12px 12px 0px 0px;
    padding: 24px 24px 76px 24px;
  }

  .title-other {
    margin-bottom: 18px !important;
  }
  .text-other {
    margin-bottom: 48px;
  }

  .button-other {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 334px;
  }

  .container-other-image {
    width: 100%;
    max-width: 382px;
  }
  .image-other {
    border-radius: 0px 0px 12px 12px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  /*! SECTION BENEFITS! */
  .section-benefits {
    margin-bottom: 296px;
  }

  .container-benefits-title {
    width: 100%;
  }
  .item-benefits {
    width: 100%;
    max-height: 268px !important;
  }
  .text-title-page-benefits {
    width: 100%;
    max-width: 110px;
  }
  .no-padding {
    height: 100%;
    max-height: 268px !important;
  }
  .list-benefits {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    margin: 0 auto;
    width: 100%;
  }

  .container-benefits-item-content {
    padding: 24px 24px 24px 24px;
  }

  .text-benefits-item {
    font-size: 16px;
  }
  /*! SECTION REWIEWS */

  .section-reviews {
    margin-bottom: 296px;
  }

  .container-reviews-title {
    width: 100%;
    max-width: 382px;
  }

  .button-reviews {
    margin-bottom: 0px;
    width: 100%;
    max-width: 382px;
  }

  .card {
    flex-shrink: 0;
    width: 100%;
    max-width: 340px;
    max-height: 248px;
    scroll-snap-align: start;
  }
  .container-reviews-icons {
    margin-bottom: 48px;
  }
  .text-reviews-card-name {
    font-size: 20px;
  }
  .text-reviews-card {
    font-size: 16px;
  }
  .card-reviews-content {
    padding: 24px 24px;
  }
  @media (min-width: 320px) and (max-width: 420px) {
    .card {
      max-width: 236px;
    }
    .card-reviews-content {
      padding: 14px 14px;
    }
    .text-reviews-card-name {
      margin-bottom: 12px;
      font-size: 16px;
    }
    .text-reviews-card {
      font-size: 14px;
      line-height: 1.3;
    }
    .icon-star {
      fill: var(--color-yellow-star);
      width: 14px;
      height: 14px;
    }
  }
  /*! FOOTER! */
  .container-footer {
    display: flex;
    flex-direction: column;
    gap: 100px;
  }
  .container-footer-list-info {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 16px;
         column-gap: 16px;
    row-gap: 72px;
    width: 100%;
  }
  .container-footer-list-info .list-footer-navigation:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    max-width: 272px;
    max-width: none;
  }
  .list-footer-navigation {
    display: flex;
    flex-direction: column;
  }
  .link-header-navigation {
    padding: 0px 0px;
  }

  .container-footer-mark-phone {
    gap: 32px;
    margin-bottom: 100px;
  }
  /*! MODAL-WINDOW-CALLING */

  .modal {
    width: 100%;
    max-width: 384px;
  }

  .modal-salling-title {
    padding: 0px 15px;
    font-size: 28px;
  }

  .modal-salling-description {
    padding: 0px 0px;
    font-size: 16px;
  }
  .success-title {
    font-size: 28px;
  }

  .success-description {
    font-size: 16px;
  }
}

