@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
     Пригодится в большинстве ситуаций
     (когда, например, нужно будет "прижать" футер к низу сайта)
    */
  height: 100%;
  /**
     Убираем скачок интерфейса по горизонтали
     при появлении / исчезновении скроллбара
    */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
     Пригодится в большинстве ситуаций
     (когда, например, нужно будет "прижать" футер к низу сайта)
    */
  min-height: 100%;
  /**
     Унифицированный интерлиньяж
    */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Roboto Regular";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Medium";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto ExtraBold";
  src: url("../fonts/Roboto-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Black";
  src: url("../fonts/Roboto-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-fill-pages: #E7EEF6;
  --color-bg-products: #FFFFFFE0;
  --color-txt-body: #344047;
  --color-txt-body-77: #344047C4;
  --color-blue: #1B81C4;
  --color-orange: #F9A31B;
  --color-orange-58: #F9A31B94;
  --color-h3: #3A78B2;
  --color-h3-54:#3A78B28A;
  --color-h3-14: #3A78B224;
  --color-footer: #325F8C;
  --color-footer-55: #325F8C8C;
  --color-youtube: #F9431B;
  --color-youtube-59: #F9431B96;
  --font-family-h1: "Roboto ExtraBold", sans-serif;
  --font-family-h2: "Roboto ExtraBold", sans-serif;
  --font-family-h3: "Roboto Medium", sans-serif;
  --font-family-h4: "Roboto ExtraBold", sans-serif;
  --font-family-lid-desktop:"Roboto Medium", sans-serif;
  --font-family-body: "Roboto Regular", sans-serif;
  --font-family-button: "Roboto Medium", sans-serif;
  --container-width: 73rem;
  --container-padding-x: 4.0625rem;
  --transition-duration: 0.2s;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 26.93625rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 26.93625rem) {
  .visible-mobile {
    display: none !important;
  }
}

html.is-lock {
  overflow: hidden;
}

body {
  font-size: clamp(1.0625rem, 1.0092821782rem + 0.198019802vw, 1.1875rem);
  display: flex;
  flex-direction: column;
  font-family: var(--font-family-lid-desktop);
  color: var(--color-txt-body);
  background-color: var(--color-bg-products);
}

main {
  flex-grow: 1;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
  color: var(--color-blue);
}

h1, .h1 {
  font-size: clamp(2.75rem, 2.2178217822rem + 1.9801980198vw, 4rem);
  font-weight: 800;
}

h2, .h2 {
  font-size: clamp(2.25rem, 2.25rem + 0vw, 2.25rem);
  font-weight: 800;
}

h3, .h3 {
  font-size: clamp(1.375rem, 1.375rem + 0vw, 1.375rem);
  font-weight: 500;
}

h4, .h4 {
  font-size: clamp(1.1875rem, 1.1875rem + 0vw, 1.1875rem);
  font-weight: 500;
}

a,
button,
label,
input,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  color: var(--color-txt-body-77);
}
@media (any-hover: hover) {
  a:hover {
    font-weight: 600;
  }
}
@media (any-hover: none) {
  a:active {
    font-weight: 600;
  }
}
a[class] {
  text-decoration: none;
}

:focus-visible {
  outline: 0.125rem dashed var(--color-blue);
  outline-offset: 0.25rem;
  transition-duration: 0s !important;
}

a[aria-label],
button[aria-label] {
  position: relative;
}
a[aria-label]::before,
button[aria-label]::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 2.75rem;
  height: 2.75rem;
  content: "";
}

.logo {
  max-width: clamp(8.8125rem, 8.8125rem + 0vw, 8.8125rem);
  flex-shrink: 0;
}

.nordson-logo {
  max-width: clamp(5.6875rem, 4.9956683168rem + 2.5742574257vw, 7.3125rem);
  flex-shrink: 0;
}

.burger-button {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding: 0.5625rem 0.25rem;
  color: var(--color-txt-body);
  background-color: transparent;
  border: none;
}
.burger-button.is-active .burger-button__line:first-child {
  rotate: 45deg;
  transform-origin: 0;
  translate: 0.3em -0.07em;
}
.burger-button.is-active .burger-button__line:nth-child(2) {
  rotate: -45deg;
}
.burger-button.is-active .burger-button__line:last-child {
  width: 0;
}
.burger-button__line {
  width: 100%;
  height: 0.125rem;
  background-color: currentColor;
  transition-duration: var(--transition-duration);
}

.header {
  position: sticky;
  z-index: 100;
  top: 0;
  animation: scrolling-header;
  animation-fill-mode: both;
  animation-timeline: scroll();
  animation-range: 6.25rem 12.5rem;
}
@keyframes scrolling-header {
  to {
    box-shadow: 0 0 1rem 0 var(--color-txt-body-77);
  }
}
.header__body {
  padding-top: 1.125rem;
  padding-bottom: 1.0625rem;
  background-color: var(--color-fill-pages);
}
.header__body-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
}
@media (width > 26.93625rem) {
  .header__overlay {
    display: contents;
  }
}
@media (width <= 26.93625rem) {
  .header__overlay {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 3rem;
    padding: 1rem;
    transition-duration: var(--transition-duration);
    background-color: var(--color-bg-products);
  }
  .header__overlay:not(.is-active) {
    opacity: 0;
    visibility: hidden;
    translate: 100%;
  }
}
.header__menu-list {
  display: flex;
  align-items: center;
}
@media (width <= 26.93625rem) {
  .header__menu-list {
    flex-direction: column;
    row-gap: 1rem;
  }
}
.header__menu-link {
  padding: 0.75rem 1.5rem;
}
.header__menu-link:hover {
  text-decoration: underline;
  text-decoration-color: var(--color-orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 25%;
  text-decoration-style: solid;
}
.header__menu-link.is-active {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--color-orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 25%;
  text-decoration-style: solid;
  pointer-events: none;
}
.header__mobile {
  background-color: var(--color-bg-products);
}
.header__mobile-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 2.625rem;
  color: var(--color-bg-products);
  background-color: var(--color-orange-58);
  border-radius: 0.25rem;
  gap: 0.625rem;
  white-space: nowrap;
}
.button:hover {
  background-color: var(--color-orange);
}

.footer {
  background-color: var(--color-footer);
  color: var(--color-bg-products);
}
.footer__body {
  padding-block: clamp(1rem, 0.4412128713rem + 2.0792079208vw, 2.3125rem);
}
.footer__menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(0.875rem, 0.6089108911rem + 0.9900990099vw, 1.5rem);
  align-items: center;
  text-align: center;
  font-size: clamp(1.0625rem, 1.0625rem + 0vw, 1.0625rem);
}
@media (width <= 26.93625rem) {
  .footer__menu {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 1rem;
  }
  .footer__menu > *:last-child {
    grid-row: 2;
  }
}
.footer__menu-column {
  display: grid;
  row-gap: 0.875rem;
}
.footer__menu-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0rem;
}
.footer__menu-nav-link {
  padding: 0.75rem 1.5rem;
  color: var(--color-bg-products);
  font-weight: 400;
  font-size: clamp(1.1875rem, 1.1875rem + 0vw, 1.1875rem);
}
.footer__menu-nav-link:hover {
  text-decoration: underline;
  text-decoration-color: var(--color-orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 25%;
  text-decoration-style: solid;
}
.footer__menu-nav-link.is-active {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--color-orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 25%;
  text-decoration-style: solid;
  pointer-events: none;
}
.footer__menu-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
}
@media (width <= 26.93625rem) {
  .footer__menu-copyright {
    order: -1;
  }
}
.footer__menu-link {
  color: var(--color-bg-products);
  font-weight: 500;
  font-size: clamp(1.0625rem, 1.0625rem + 0vw, 1.0625rem);
  align-items: center;
}

@media (width <= 26.93625rem) {
  .hero__vid {
    max-height: 15.3125rem;
  }
}
@media (width <= 26.93625rem) {
  .hero__vid .hero-video {
    height: auto !important;
    max-height: 15.3125rem !important;
  }
}
.hero__vid::after {
  content: "";
  display: block;
  width: clamp(18.75rem, -4.3997524752rem + 86.1386138614vw, 73.125rem);
  height: clamp(0.1875rem, 0.1608910891rem + 0.099009901vw, 0.25rem);
  background-color: var(--color-orange);
  margin: 0 auto;
}
.hero__body {
  display: grid;
  grid-template-columns: auto 58%;
  grid-template-areas: "info slider" "info hardware";
}
@media (width <= 26.93625rem) {
  .hero__body {
    grid-template-columns: 1fr;
    grid-template-areas: "info" "slider" "hardware";
  }
}
.hero__info {
  grid-area: info;
  padding-top: clamp(1.5rem, -0.0167079208rem + 5.6435643564vw, 5.0625rem);
  padding-right: clamp(0.0625rem, -0.6293316832rem + 2.5742574257vw, 1.6875rem);
  padding-bottom: clamp(1.875rem, 0.6243811881rem + 4.6534653465vw, 4.8125rem);
  font-size: clamp(1.0625rem, 1.0092821782rem + 0.198019802vw, 1.1875rem);
}
.hero__info h1::after {
  content: "";
  display: block;
  width: 12.0625rem;
  height: 0.125rem;
  background-color: var(--color-orange);
  margin-top: clamp(1.5rem, 0.8879950495rem + 2.2772277228vw, 2.9375rem);
  margin-bottom: clamp(1.5rem, 0.6219059406rem + 3.2673267327vw, 3.5625rem);
}
.hero__hardware {
  grid-area: hardware;
}
.hero__hardware-item {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
}
@media (width <= 26.93625rem) {
  .hero__hardware-item {
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 1rem;
  }
}
.hero__description__span {
  color: var(--color-blue);
}
.hero__contacts {
  margin-top: 3.4375rem;
}
.hero__contacts:hover {
  background-color: var(--color-orange);
  color: var(--color-fill-pages);
}

.hero__slider {
  grid-area: slider;
  position: relative;
  overflow: hidden;
}
@media (width <= 26.93625rem) {
  .hero__slider {
    margin-left: calc(-1 * var(--container-padding-x));
    margin-right: calc(-1 * var(--container-padding-x));
    width: 100vw;
  }
}
.hero__slider-container {
  width: 100%;
  max-width: clamp(26.875rem, 20.4888613861rem + 23.7623762376vw, 41.875rem);
  height: clamp(21.25rem, 18.323019802rem + 10.8910891089vw, 28.125rem);
  overflow: hidden;
  position: relative;
  padding-top: clamp(0.0625rem, -1.2413366337rem + 4.8514851485vw, 3.125rem);
}
@media (width <= 26.93625rem) {
  .hero__slider-container {
    width: 100vw;
    max-width: none;
  }
}
.hero__slider-overlay {
  position: absolute;
  bottom: clamp(1.375rem, 0.2574257426rem + 4.1584158416vw, 4rem);
  left: clamp(0rem, -0.9313118812rem + 3.4653465347vw, 2.1875rem);
  width: clamp(22.875rem, 22.7685643564rem + 0.396039604vw, 23.125rem);
  height: clamp(7.5rem, 6.4356435644rem + 3.9603960396vw, 10rem);
  background-color: rgba(50, 95, 140, 0.768627451); /* Semi-transparent blue */
  z-index: 10;
  padding: clamp(0.3125rem, -0.0866336634rem + 1.4851485149vw, 1.25rem);
  color: var(--color-bg-products);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero__slider-overlay-title {
  font-size: clamp(1.1875rem, 1.1076732673rem + 0.297029703vw, 1.375rem);
  color: var(--color-bg-products);
  transition: opacity 0.3s ease;
}
.hero__slider-overlay-text {
  font-size: 1rem;
  line-height: 1.4;
  transition: opacity 0.3s ease;
}
.hero__slider-overlay-link {
  color: var(--color-orange);
  font-weight: 500;
  align-self: flex-end;
  display: flex;
  align-items: start;
  transition: color 0.3s ease;
}
.hero__slider-overlay-link .arrow {
  transition: transform 0.3s ease;
}
.hero__slider-overlay-link:hover {
  color: var(--color-orange);
}
.hero__slider-overlay-link:hover .arrow {
  transform: translateX(0.3125rem);
}
.hero__slider-track {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}
.hero__slider-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__slider-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (width <= 26.93625rem) {
  .hero__slider-image {
    object-fit: cover;
    width: 100%;
    max-width: none;
  }
}
.hero__slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.9375rem;
}
.hero__slider-prev, .hero__slider-next {
  background-color: var(--color-blue);
  color: white;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.hero__slider-prev:hover, .hero__slider-next:hover {
  background-color: var(--color-orange);
}
.hero__slider-indicator {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
}
.hero__slider-indicator-number {
  color: var(--color-blue);
  font-weight: 600;
  font-size: 1rem;
}
.hero__slider-indicator-line {
  height: 0.125rem;
  width: 7.5rem;
  background-color: var(--color-blue);
  position: relative;
}
.hero__slider-indicator-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 33.3333333333%; /* Width divided by number of slides */
  background-color: var(--color-orange);
  transition: transform 0.5s ease;
  transform: translateX(0%);
}
.hero__slider-indicator-line.slide-1::before {
  transform: translateX(0%);
}
.hero__slider-indicator-line.slide-2::before {
  transform: translateX(100%);
}
.hero__slider-indicator-line.slide-3::before {
  transform: translateX(200%);
}
@media (width <= 26.93625rem) {
  .hero__slider-container {
    height: 18.75rem;
  }
  .hero__slider-controls {
    margin-top: 0.625rem;
  }
  .hero__slider-prev, .hero__slider-next {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 0.875rem;
  }
}

.hardware-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.3125rem;
  border-radius: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 15.625rem;
}
.hardware-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.1);
}
.hardware-card__image {
  margin-bottom: 0.625rem;
  max-width: 100%;
  height: auto;
}
.hardware-card__link {
  color: var(--color-h3-54);
  transition: color 0.3s ease;
}
.hardware-card__link:hover {
  color: var(--color-h3);
}

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