.air-datepicker-cell.-day-.-other-month-,
.air-datepicker-cell.-year-.-other-decade- {
  color: var(--adp-color-other-month);
}
.air-datepicker-cell.-day-.-other-month-:hover,
.air-datepicker-cell.-year-.-other-decade-:hover {
  color: var(--adp-color-other-month-hover);
}
.-disabled-.-focus-.air-datepicker-cell.-day-.-other-month-,
.-disabled-.-focus-.air-datepicker-cell.-year-.-other-decade- {
  color: var(--adp-color-other-month);
}
.-selected-.air-datepicker-cell.-day-.-other-month-,
.-selected-.air-datepicker-cell.-year-.-other-decade- {
  color: #fff;
  background: var(--adp-background-color-selected-other-month);
}
.-selected-.-focus-.air-datepicker-cell.-day-.-other-month-,
.-selected-.-focus-.air-datepicker-cell.-year-.-other-decade- {
  background: var(--adp-background-color-selected-other-month-focused);
}
.-in-range-.air-datepicker-cell.-day-.-other-month-,
.-in-range-.air-datepicker-cell.-year-.-other-decade- {
  background-color: var(--adp-background-color-in-range);
  color: var(--adp-color);
}
.-in-range-.-focus-.air-datepicker-cell.-day-.-other-month-,
.-in-range-.-focus-.air-datepicker-cell.-year-.-other-decade- {
  background-color: var(--adp-background-color-in-range-focused);
}
.air-datepicker-cell.-day-.-other-month-:empty,
.air-datepicker-cell.-year-.-other-decade-:empty {
  background: 0 0;
  border: none;
}
.air-datepicker-cell {
  border-radius: var(--adp-cell-border-radius);
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.air-datepicker-cell.-focus- {
  background: var(--adp-cell-background-color-hover);
}
.air-datepicker-cell.-current- {
  color: var(--adp-color-current-date);
}
.air-datepicker-cell.-current-.-focus- {
  color: var(--adp-color);
}
.air-datepicker-cell.-current-.-in-range- {
  color: var(--adp-color-current-date);
}
.air-datepicker-cell.-disabled- {
  cursor: default;
  color: var(--adp-color-disabled);
}
.air-datepicker-cell.-disabled-.-focus- {
  color: var(--adp-color-disabled);
}
.air-datepicker-cell.-disabled-.-in-range- {
  color: var(--adp-color-disabled-in-range);
}
.air-datepicker-cell.-disabled-.-current-.-focus- {
  color: var(--adp-color-disabled);
}
.air-datepicker-cell.-in-range- {
  background: var(--adp-cell-background-color-in-range);
  border-radius: 0;
}
.air-datepicker-cell.-in-range-:hover {
  background: var(--adp-cell-background-color-in-range-hover);
}
.air-datepicker-cell.-range-from- {
  border: 1px solid var(--adp-cell-border-color-in-range);
  background-color: var(--adp-cell-background-color-in-range);
  border-radius: var(--adp-cell-border-radius) 0 0 var(--adp-cell-border-radius);
}
.air-datepicker-cell.-range-to- {
  border: 1px solid var(--adp-cell-border-color-in-range);
  background-color: var(--adp-cell-background-color-in-range);
  border-radius: 0 var(--adp-cell-border-radius) var(--adp-cell-border-radius) 0;
}
.air-datepicker-cell.-range-to-.-range-from- {
  border-radius: var(--adp-cell-border-radius);
}
.air-datepicker-cell.-selected- {
  color: #fff;
  border: none;
  background: var(--adp-cell-background-color-selected);
}
.air-datepicker-cell.-selected-.-current- {
  color: #fff;
  background: var(--adp-cell-background-color-selected);
}
.air-datepicker-cell.-selected-.-focus- {
  background: var(--adp-cell-background-color-selected-hover);
}
.air-datepicker-body {
  transition: all var(--adp-transition-duration) var(--adp-transition-ease);
}
.air-datepicker-body.-hidden- {
  display: none;
}
.air-datepicker-body--day-names {
  display: grid;
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
  margin: 8px 0 3px;
}
.air-datepicker-body--day-name {
  color: var(--adp-day-name-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8em;
}
.air-datepicker-body--day-name.-clickable- {
  cursor: pointer;
}
.air-datepicker-body--day-name.-clickable-:hover {
  color: var(--adp-day-name-color-hover);
}
.air-datepicker-body--cells {
  display: grid;
}
.air-datepicker-body--cells.-days- {
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
  grid-auto-rows: var(--adp-day-cell-height);
}
.air-datepicker-body--cells.-months- {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: var(--adp-month-cell-height);
}
.air-datepicker-body--cells.-years- {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: var(--adp-year-cell-height);
}
.air-datepicker-nav {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--adp-border-color-inner);
  min-height: var(--adp-nav-height);
  padding: var(--adp-padding);
  box-sizing: content-box;
}
.-only-timepicker- .air-datepicker-nav {
  display: none;
}
.air-datepicker-nav--action,
.air-datepicker-nav--title {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.air-datepicker-nav--action {
  width: var(--adp-nav-action-size);
  border-radius: var(--adp-border-radius);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.air-datepicker-nav--action:hover {
  background: var(--adp-background-color-hover);
}
.air-datepicker-nav--action:active {
  background: var(--adp-background-color-active);
}
.air-datepicker-nav--action.-disabled- {
  visibility: hidden;
}
.air-datepicker-nav--action svg {
  width: 32px;
  height: 32px;
}
.air-datepicker-nav--action path {
  fill: none;
  stroke: var(--adp-nav-arrow-color);
  stroke-width: 2px;
}
.air-datepicker-nav--title {
  border-radius: var(--adp-border-radius);
  padding: 0 8px;
}
.air-datepicker-nav--title i {
  font-style: normal;
  color: var(--adp-nav-color-secondary);
  margin-left: 0.3em;
}
.air-datepicker-nav--title:hover {
  background: var(--adp-background-color-hover);
}
.air-datepicker-nav--title:active {
  background: var(--adp-background-color-active);
}
.air-datepicker-nav--title.-disabled- {
  cursor: default;
  background: 0 0;
}
.air-datepicker-buttons {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.air-datepicker-button {
  display: inline-flex;
  color: var(--adp-btn-color);
  border-radius: var(--adp-btn-border-radius);
  cursor: pointer;
  height: var(--adp-btn-height);
  border: none;
  background: rgba(255, 255, 255, 0);
}
.air-datepicker-button:hover {
  color: var(--adp-btn-color-hover);
  background: var(--adp-btn-background-color-hover);
}
.air-datepicker-button:focus {
  color: var(--adp-btn-color-hover);
  background: var(--adp-btn-background-color-hover);
  outline: 0;
}
.air-datepicker-button:active {
  background: var(--adp-btn-background-color-active);
}
.air-datepicker-button span {
  outline: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.air-datepicker-time {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  grid-column-gap: 12px;
  align-items: center;
  position: relative;
  padding: 0 var(--adp-time-padding-inner);
}
.-only-timepicker- .air-datepicker-time {
  border-top: none;
}
.air-datepicker-time--current {
  display: flex;
  align-items: center;
  flex: 1;
  font-size: 14px;
  text-align: center;
}
.air-datepicker-time--current-colon {
  margin: 0 2px 3px;
  line-height: 1;
}
.air-datepicker-time--current-hours,
.air-datepicker-time--current-minutes {
  line-height: 1;
  font-size: 19px;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  position: relative;
  z-index: 1;
}
.air-datepicker-time--current-hours:after,
.air-datepicker-time--current-minutes:after {
  content: "";
  background: var(--adp-background-color-hover);
  border-radius: var(--adp-border-radius);
  position: absolute;
  left: -2px;
  top: -3px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  opacity: 0;
}
.air-datepicker-time--current-hours.-focus-:after,
.air-datepicker-time--current-minutes.-focus-:after {
  opacity: 1;
}
.air-datepicker-time--current-ampm {
  text-transform: uppercase;
  align-self: flex-end;
  color: var(--adp-time-day-period-color);
  margin-left: 6px;
  font-size: 11px;
  margin-bottom: 1px;
}
.air-datepicker-time--row {
  display: flex;
  align-items: center;
  font-size: 11px;
  height: 17px;
  background: linear-gradient(
      to right,
      var(--adp-time-track-color),
      var(--adp-time-track-color)
    )
    left 50%/100% var(--adp-time-track-height) no-repeat;
}
.air-datepicker-time--row:first-child {
  margin-bottom: 4px;
}
.air-datepicker-time--row input[type="range"] {
  background: 0 0;
  cursor: pointer;
  flex: 1;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}
.air-datepicker-time--row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
.air-datepicker-time--row input[type="range"]::-ms-tooltip {
  display: none;
}
.air-datepicker-time--row input[type="range"]:hover::-webkit-slider-thumb {
  border-color: var(--adp-time-track-color-hover);
}
.air-datepicker-time--row input[type="range"]:hover::-moz-range-thumb {
  border-color: var(--adp-time-track-color-hover);
}
.air-datepicker-time--row input[type="range"]:hover::-ms-thumb {
  border-color: var(--adp-time-track-color-hover);
}
.air-datepicker-time--row input[type="range"]:focus {
  outline: 0;
}
.air-datepicker-time--row input[type="range"]:focus::-webkit-slider-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}
.air-datepicker-time--row input[type="range"]:focus::-moz-range-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}
.air-datepicker-time--row input[type="range"]:focus::-ms-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}
.air-datepicker-time--row input[type="range"]::-webkit-slider-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -webkit-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}
.air-datepicker-time--row input[type="range"]::-moz-range-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -moz-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}
.air-datepicker-time--row input[type="range"]::-ms-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -ms-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}
.air-datepicker-time--row input[type="range"]::-webkit-slider-thumb {
  margin-top: calc(var(--adp-time-thumb-size) / 2 * -1);
}
.air-datepicker-time--row input[type="range"]::-webkit-slider-runnable-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: transparent;
  background: 0 0;
}
.air-datepicker-time--row input[type="range"]::-moz-range-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: transparent;
  background: 0 0;
}
.air-datepicker-time--row input[type="range"]::-ms-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: transparent;
  background: 0 0;
}
.air-datepicker-time--row input[type="range"]::-ms-fill-lower {
  background: 0 0;
}
.air-datepicker-time--row input[type="range"]::-ms-fill-upper {
  background: 0 0;
}
.air-datepicker {
  --adp-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
  --adp-font-size: 14px;
  --adp-width: 246px;
  --adp-z-index: 100;
  --adp-padding: 4px;
  --adp-grid-areas: "nav" "body" "timepicker" "buttons";
  --adp-transition-duration: 0.3s;
  --adp-transition-ease: ease-out;
  --adp-transition-offset: 8px;
  --adp-background-color: #fff;
  --adp-background-color-hover: #f0f0f0;
  --adp-background-color-active: #eaeaea;
  --adp-background-color-in-range: rgba(92, 196, 239, 0.1);
  --adp-background-color-in-range-focused: rgba(92, 196, 239, 0.2);
  --adp-background-color-selected-other-month-focused: #8ad5f4;
  --adp-background-color-selected-other-month: #a2ddf6;
  --adp-color: #4a4a4a;
  --adp-color-secondary: #9c9c9c;
  --adp-accent-color: #4eb5e6;
  --adp-color-current-date: var(--adp-accent-color);
  --adp-color-other-month: #dedede;
  --adp-color-disabled: #aeaeae;
  --adp-color-disabled-in-range: #939393;
  --adp-color-other-month-hover: #c5c5c5;
  --adp-border-color: #dbdbdb;
  --adp-border-color-inner: #efefef;
  --adp-border-radius: 4px;
  --adp-border-color-inline: #d7d7d7;
  --adp-nav-height: 32px;
  --adp-nav-arrow-color: var(--adp-color-secondary);
  --adp-nav-action-size: 32px;
  --adp-nav-color-secondary: var(--adp-color-secondary);
  --adp-day-name-color: #ff9a19;
  --adp-day-name-color-hover: #8ad5f4;
  --adp-day-cell-width: 1fr;
  --adp-day-cell-height: 32px;
  --adp-month-cell-height: 42px;
  --adp-year-cell-height: 56px;
  --adp-pointer-size: 10px;
  --adp-poiner-border-radius: 2px;
  --adp-pointer-offset: 14px;
  --adp-cell-border-radius: 4px;
  --adp-cell-background-color-hover: var(--adp-background-color-hover);
  --adp-cell-background-color-selected: #5cc4ef;
  --adp-cell-background-color-selected-hover: #45bced;
  --adp-cell-background-color-in-range: rgba(92, 196, 239, 0.1);
  --adp-cell-background-color-in-range-hover: rgba(92, 196, 239, 0.2);
  --adp-cell-border-color-in-range: var(--adp-cell-background-color-selected);
  --adp-btn-height: 32px;
  --adp-btn-color: var(--adp-accent-color);
  --adp-btn-color-hover: var(--adp-color);
  --adp-btn-border-radius: var(--adp-border-radius);
  --adp-btn-background-color-hover: var(--adp-background-color-hover);
  --adp-btn-background-color-active: var(--adp-background-color-active);
  --adp-time-track-height: 1px;
  --adp-time-track-color: #dedede;
  --adp-time-track-color-hover: #b1b1b1;
  --adp-time-thumb-size: 12px;
  --adp-time-padding-inner: 10px;
  --adp-time-day-period-color: var(--adp-color-secondary);
  --adp-mobile-font-size: 16px;
  --adp-mobile-nav-height: 40px;
  --adp-mobile-width: 320px;
  --adp-mobile-day-cell-height: 38px;
  --adp-mobile-month-cell-height: 48px;
  --adp-mobile-year-cell-height: 64px;
}
.air-datepicker-overlay {
  --adp-overlay-background-color: rgba(0, 0, 0, 0.3);
  --adp-overlay-transition-duration: 0.3s;
  --adp-overlay-transition-ease: ease-out;
  --adp-overlay-z-index: 99;
}
.air-datepicker {
  background: var(--adp-background-color);
  border: 1px solid var(--adp-border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: var(--adp-border-radius);
  box-sizing: content-box;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, -webkit-max-content);
  grid-template-rows: repeat(4, max-content);
  grid-template-areas: var(--adp-grid-areas);
  font-family: var(--adp-font-family), sans-serif;
  font-size: var(--adp-font-size);
  color: var(--adp-color);
  width: var(--adp-width);
  position: absolute;
  transition: opacity var(--adp-transition-duration) var(--adp-transition-ease),
    transform var(--adp-transition-duration) var(--adp-transition-ease);
  z-index: var(--adp-z-index);
}
.air-datepicker:not(.-custom-position-) {
  opacity: 0;
}
.air-datepicker.-from-top- {
  transform: translateY(calc(var(--adp-transition-offset) * -1));
}
.air-datepicker.-from-right- {
  transform: translateX(var(--adp-transition-offset));
}
.air-datepicker.-from-bottom- {
  transform: translateY(var(--adp-transition-offset));
}
.air-datepicker.-from-left- {
  transform: translateX(calc(var(--adp-transition-offset) * -1));
}
.air-datepicker.-active-:not(.-custom-position-) {
  transform: translate(0, 0);
  opacity: 1;
}
.air-datepicker.-active-.-custom-position- {
  transition: none;
}
.air-datepicker.-inline- {
  border-color: var(--adp-border-color-inline);
  box-shadow: none;
  position: static;
  left: auto;
  right: auto;
  opacity: 1;
  transform: none;
}
.air-datepicker.-inline- .air-datepicker--pointer {
  display: none;
}
.air-datepicker.-is-mobile- {
  --adp-font-size: var(--adp-mobile-font-size);
  --adp-day-cell-height: var(--adp-mobile-day-cell-height);
  --adp-month-cell-height: var(--adp-mobile-month-cell-height);
  --adp-year-cell-height: var(--adp-mobile-year-cell-height);
  --adp-nav-height: var(--adp-mobile-nav-height);
  --adp-nav-action-size: var(--adp-mobile-nav-height);
  position: fixed;
  width: var(--adp-mobile-width);
  border: none;
}
.air-datepicker.-is-mobile- * {
  -webkit-tap-highlight-color: transparent;
}
.air-datepicker.-is-mobile- .air-datepicker--pointer {
  display: none;
}
.air-datepicker.-is-mobile-:not(.-custom-position-) {
  transform: translate(-50%, calc(-50% + var(--adp-transition-offset)));
}
.air-datepicker.-is-mobile-.-active-:not(.-custom-position-) {
  transform: translate(-50%, -50%);
}
.air-datepicker.-custom-position- {
  transition: none;
}
.air-datepicker-global-container {
  position: absolute;
  left: 0;
  top: 0;
}
.air-datepicker--pointer {
  --pointer-half-size: calc(var(--adp-pointer-size) / 2);
  position: absolute;
  width: var(--adp-pointer-size);
  height: var(--adp-pointer-size);
  z-index: -1;
}
.air-datepicker--pointer:after {
  content: "";
  position: absolute;
  background: #fff;
  border-top: 1px solid var(--adp-border-color-inline);
  border-right: 1px solid var(--adp-border-color-inline);
  border-top-right-radius: var(--adp-poiner-border-radius);
  width: var(--adp-pointer-size);
  height: var(--adp-pointer-size);
  box-sizing: border-box;
}
.-top-center- .air-datepicker--pointer,
.-top-left- .air-datepicker--pointer,
.-top-right- .air-datepicker--pointer,
[data-popper-placement^="top"] .air-datepicker--pointer {
  top: calc(100% - var(--pointer-half-size) + 1px);
}
.-top-center- .air-datepicker--pointer:after,
.-top-left- .air-datepicker--pointer:after,
.-top-right- .air-datepicker--pointer:after,
[data-popper-placement^="top"] .air-datepicker--pointer:after {
  transform: rotate(135deg);
}
.-right-bottom- .air-datepicker--pointer,
.-right-center- .air-datepicker--pointer,
.-right-top- .air-datepicker--pointer,
[data-popper-placement^="right"] .air-datepicker--pointer {
  right: calc(100% - var(--pointer-half-size) + 1px);
}
.-right-bottom- .air-datepicker--pointer:after,
.-right-center- .air-datepicker--pointer:after,
.-right-top- .air-datepicker--pointer:after,
[data-popper-placement^="right"] .air-datepicker--pointer:after {
  transform: rotate(225deg);
}
.-bottom-center- .air-datepicker--pointer,
.-bottom-left- .air-datepicker--pointer,
.-bottom-right- .air-datepicker--pointer,
[data-popper-placement^="bottom"] .air-datepicker--pointer {
  bottom: calc(100% - var(--pointer-half-size) + 1px);
}
.-bottom-center- .air-datepicker--pointer:after,
.-bottom-left- .air-datepicker--pointer:after,
.-bottom-right- .air-datepicker--pointer:after,
[data-popper-placement^="bottom"] .air-datepicker--pointer:after {
  transform: rotate(315deg);
}
.-left-bottom- .air-datepicker--pointer,
.-left-center- .air-datepicker--pointer,
.-left-top- .air-datepicker--pointer,
[data-popper-placement^="left"] .air-datepicker--pointer {
  left: calc(100% - var(--pointer-half-size) + 1px);
}
.-left-bottom- .air-datepicker--pointer:after,
.-left-center- .air-datepicker--pointer:after,
.-left-top- .air-datepicker--pointer:after,
[data-popper-placement^="left"] .air-datepicker--pointer:after {
  transform: rotate(45deg);
}
.-bottom-left- .air-datepicker--pointer,
.-top-left- .air-datepicker--pointer {
  left: var(--adp-pointer-offset);
}
.-bottom-right- .air-datepicker--pointer,
.-top-right- .air-datepicker--pointer {
  right: var(--adp-pointer-offset);
}
.-bottom-center- .air-datepicker--pointer,
.-top-center- .air-datepicker--pointer {
  left: calc(50% - var(--adp-pointer-size) / 2);
}
.-left-top- .air-datepicker--pointer,
.-right-top- .air-datepicker--pointer {
  top: var(--adp-pointer-offset);
}
.-left-bottom- .air-datepicker--pointer,
.-right-bottom- .air-datepicker--pointer {
  bottom: var(--adp-pointer-offset);
}
.-left-center- .air-datepicker--pointer,
.-right-center- .air-datepicker--pointer {
  top: calc(50% - var(--adp-pointer-size) / 2);
}
.air-datepicker--navigation {
  grid-area: nav;
}
.air-datepicker--content {
  box-sizing: content-box;
  padding: var(--adp-padding);
  grid-area: body;
}
.-only-timepicker- .air-datepicker--content {
  display: none;
}
.air-datepicker--time {
  grid-area: timepicker;
}
.air-datepicker--buttons {
  grid-area: buttons;
}
.air-datepicker--buttons,
.air-datepicker--time {
  padding: var(--adp-padding);
  border-top: 1px solid var(--adp-border-color-inner);
}
.air-datepicker-overlay {
  position: fixed;
  background: var(--adp-overlay-background-color);
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  transition: opacity var(--adp-overlay-transition-duration)
      var(--adp-overlay-transition-ease),
    left 0s, height 0s, width 0s;
  transition-delay: 0s, var(--adp-overlay-transition-duration),
    var(--adp-overlay-transition-duration),
    var(--adp-overlay-transition-duration);
  z-index: var(--adp-overlay-z-index);
}
.air-datepicker-overlay.-active- {
  opacity: 1;
  width: 100%;
  height: 100%;
  transition: opacity var(--adp-overlay-transition-duration)
      var(--adp-overlay-transition-ease),
    height 0s, width 0s;
}
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style-image: url("c1986af3c26609b8b7d8933f99c51c1a89e9ea6b.png");
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: 0;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:after,
.slick-track:before {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
  margin-bottom: 16px;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
@font-face {
  font-family: fico;
  src: url("");
  src: url("") format("eot"), url("fico.woff2") format("woff2"),
    url("fico.woff") format("woff"), url("fico.ttf") format("truetype"),
    url("") format("svg");
  font-display: swap;
}
.fico:before {
  font-family: fico;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  text-decoration: none;
  text-transform: none;
}
.fico-address:before {
  content: "\E001";
}
.fico-arrow-down:before {
  content: "\E002";
}
.fico-arrow-right:before {
  content: "\E003";
}
.fico-btn_up:before {
  content: "\E004";
}
.fico-calendar:before {
  content: "\E005";
}
.fico-check:before {
  content: "\E006";
}
.fico-checktag:before {
  content: "\E007";
}
.fico-clear:before {
  content: "\E008";
}
.fico-copy:before {
  content: "\E009";
}
.fico-cross:before {
  content: "\E00A";
}
.fico-email:before {
  content: "\E00B";
}
.fico-fb:before {
  content: "\E00C";
}
.fico-file:before {
  content: "\E00D";
}
.fico-in:before {
  content: "\E00E";
}
.fico-open:before {
  content: "\E00F";
}
.fico-phone:before {
  content: "\E010";
}
.fico-slick-arrow:before {
  content: "\E011";
}
.fico-telegram:before {
  content: "\E012";
}
.fico-tw:before {
  content: "\E013";
}
  .btn_blue:hover {
    box-shadow: 0 1px 2px 0 rgba(17, 24, 39, 0.05);
    background: #38755e;
  }
  .btn_blue:active {
    box-shadow: 0 1px 2px 0 rgba(17, 24, 39, 0.05), 0 0 0 4px #38755e, 0 0 0 2px #fff;
    background: #2a5747;
  }
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 50px;
  -ms-user-select: none;
  user-select: none;
  border-radius: 8px;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 15px;
  padding-right: 46px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.select2-container[dir="rtl"]
  .select2-selection--single
  .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 50px;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}
.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}
.select2-container
  .select2-search--inline
  .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-dropdown {
  background-color: #fff;
  padding: 10px 0;
  border: 2px solid #707070;
  border-radius: 0;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}
.select2-dropdown.select2-dropdown--below {
  border-top: none;
}
.select2-results {
  display: block;
}
.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}
.select2-results__option {
  padding: 0 15px;
  line-height: 150%;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  font-size: 21px;
}
.select2-results__option:not(:last-of-type) {
  margin-bottom: 7px;
}
.select2-results__option--selectable {
  cursor: pointer;
}
.select2-container--open .select2-dropdown {
  left: 0;
}
.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--open .select2-dropdown--below {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-search--dropdown {
  display: block;
  padding: 4px;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}
.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
}
.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 2px solid #38755e;
  border-radius: 0;
}
.app-select--selected ~ .select2-container--default .select2-selection--single {
  border: 2px solid #38755e
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 46px;
  font-size: 21px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: 700;
  height: 46px;
  margin-right: 20px;
  padding-right: 0;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: #757575;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 15px;
  border: 2px solid #757575;
  border-left: none;
  border-top: none;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.1s;
  transition: -webkit-transform 0.1s;
  transition: transform 0.1s;
  transition: transform 0.1s, -webkit-transform 0.1s;
  margin-top: -10px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}
.select2-container--default[dir="rtl"]
  .select2-selection--single
  .select2-selection__clear {
  float: left;
}
.select2-container--default[dir="rtl"]
  .select2-selection--single
  .select2-selection__arrow {
  left: 1px;
  right: auto;
}
.select2-container--default.select2-container--disabled
  .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled
  .select2-selection--single
  .select2-selection__clear {
  display: none;
}
.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  margin-top: -5px;
}
.select2-container--default .select2-selection--multiple {
  background-color: #fff;
  border: 2px solid #707070;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}
.select2-container--default
  .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}
.select2-container--default
  .select2-selection--multiple
  .select2-selection__clear {
  cursor: pointer;
  font-weight: 700;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: 700;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove:focus,
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove:hover {
  background-color: #f1f1f1;
  color: #333;
  outline: 0;
}
.select2-container--default[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--default[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}
.select2-container--default[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.select2-container--default[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}
.select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border: solid #000 1px;
  outline: 0;
}
.select2-container--default.select2-container--disabled
  .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled
  .select2-selection__choice__remove {
  display: none;
}
.select2-container--default.select2-container--open.select2-container--above
  .select2-selection--multiple,
.select2-container--default.select2-container--open.select2-container--above
  .select2-selection--single {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--multiple,
.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--single {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: 0 0;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}
.select2-container--default
  .select2-results__option
  .select2-results__option
  .select2-results__group {
  padding-left: 0;
}
.select2-container--default
  .select2-results__option
  .select2-results__option
  .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-container--default
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-container--default
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-container--default
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-container--default
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option
  .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-container--default .select2-results__option--group {
  padding: 0;
}
.select2-container--default .select2-results__option--disabled {
  color: #999;
}
.select2-container--default .select2-results__option--selected {
  color: #1b75bb;
}
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  color: #1b75bb;
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 2px solid #707070;
  border-radius: 0;
  outline: 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(50%, #fff),
    to(#eee)
  );
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
}
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic
  .select2-selection--single
  .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--classic
  .select2-selection--single
  .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: 700;
  height: 26px;
  margin-right: 20px;
}
.select2-container--classic
  .select2-selection--single
  .select2-selection__placeholder {
  color: #999;
}
.select2-container--classic
  .select2-selection--single
  .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #707070;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(50%, #eee),
    to(#ccc)
  );
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
}
.select2-container--classic
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--classic[dir="rtl"]
  .select2-selection--single
  .select2-selection__clear {
  float: left;
}
.select2-container--classic[dir="rtl"]
  .select2-selection--single
  .select2-selection__arrow {
  border: none;
  border-right: 1px solid #707070;
  border-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  left: 1px;
  right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open
  .select2-selection--single
  .select2-selection__arrow {
  background: 0 0;
  border: none;
}
.select2-container--classic.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--classic.select2-container--open.select2-container--above
  .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(white),
    color-stop(50%, #eee)
  );
  background-image: linear-gradient(to bottom, #fff 0, #eee 50%);
  background-repeat: repeat-x;
}
.select2-container--classic.select2-container--open.select2-container--below
  .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(50%, #eee),
    to(white)
  );
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
}
.select2-container--classic .select2-selection--multiple {
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 0;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic
  .select2-selection--multiple
  .select2-selection__clear {
  display: none;
}
.select2-container--classic
  .select2-selection--multiple
  .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #707070;
  border-radius: 0;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}
.select2-container--classic
  .select2-selection--multiple
  .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}
.select2-container--classic
  .select2-selection--multiple
  .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: 700;
  padding: 0 4px;
}
.select2-container--classic
  .select2-selection--multiple
  .select2-selection__choice__remove:hover {
  color: #555;
  outline: 0;
}
.select2-container--classic[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--classic[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}
.select2-container--classic[dir="rtl"]
  .select2-selection--multiple
  .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--classic.select2-container--open
  .select2-selection--multiple {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open.select2-container--above
  .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--classic.select2-container--open.select2-container--below
  .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #707070;
  outline: 0;
}
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}
.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}
.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}
.select2-container--classic .select2-dropdown--below {
  border-top: none;
}
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--classic .select2-results__option--group {
  padding: 0;
}
.select2-container--classic .select2-results__option--disabled {
  color: grey;
}
.select2-container--classic
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: #fff;
}
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}
.air-datepicker-body--day-name {
  color: #757575;
}
.air-datepicker-cell {
  border-radius: 0;
}
.air-datepicker-cell.-selected-,
.air-datepicker-cell.-selected-.-current- {
  background: #1b75bb;
  border-radius: 0;
}
.air-datepicker-cell.-selected-.-current-.-focus-,
.air-datepicker-cell.-selected-.-current-:hover,
.air-datepicker-cell.-selected-.-focus-,
.air-datepicker-cell.-selected-:hover {
  background: #1b75bb;
  color: #fff;
}
html {
  -webkit-text-size-adjust: none;
}
body {
  font-size: 21px;
  line-height: 1.5;
  font-family: Roboto, sans-serif;
  color: #757575;
}
.out {
  background: #fafafa;
  overflow: hidden;
}
.fico {
  display: inline-block;
  font-size: 3rem;
}
.fico::before {
  display: block;
  color: #403d3d
}
.container {
  max-width: 1280px;
  padding: 0 15px;
  margin: 0 auto;
}
.text {
  margin-bottom: 10px;
}
.text:last-of-type {
  margin-bottom: 0;
}
.c_blue {
  color: #1b75bb;
}
.c_orange {
  color: #ff4d00;
}
.tooltip-copy {
  font-size: 10px;
  line-height: 120%;
  color: #fff;
  padding: 0 4px;
  background-color: #1b75bb;
  border-radius: 4px;
  pointer-events: none;
  min-width: 50px;
  text-align: center;
}
.shadow {
  box-shadow: 0 0 29px rgba(122, 137, 148, 0.24),
    0 94px 78px -64px rgba(122, 137, 148, 0.57);
}
.list__el {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #575353;
}
.list__el::before {
  position: absolute;
  content: "";
  left: 10px;
  border-radius: 50%;
  top: 12px;
  width: 7px;
  height: 7px;
  background: #757575;
}
.list__el:last-of-type {
  margin-bottom: 0;
}
.list + .text {
  margin-top: 10px;
}
.list-pl-el {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 700;
  color: #ff4d00;
}
.list-pl-el__ico {
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 8px;
}
.list-pl-el__ico::after,
.list-pl-el__ico::before {
  position: absolute;
  content: "";
  background: #ff4d00;
  left: 50%;
}
.list-pl-el__ico::before {
  width: 100%;
  height: 2px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.list-pl-el__ico::after {
  width: 2px;
  top: 0;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.list-pl-el:last-of-type {
  margin-bottom: 0;
}
.cards {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 32px;
}
.card {
  background: #fff;
  padding: 22px;
  flex-shrink: 0;
  margin: 0 11px;
}
.card__title {
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;

  /* line-height: 28px; */ 
  line-height: 1.4;
  color: #1a1818;
}
.el {
  position: absolute;
  height: auto;
}
.box {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.box-content {
  position: relative;
  z-index: 2;
}
.box-img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.box-img img {
  width: 100%;
  height: auto;
}
.ol {
  list-style: decimal;
}
.ol__item {
  list-style-position: outside;
  margin-left: 29px;
}
.ol__title {
  font-weight: 700;
  color: #757575;
}
.h-100 {
  height: 100% !important;
}
.no-touch {
  pointer-events: none;
}
.link-btn {
  background: 0 0;
  text-decoration: underline;
  border: none;
  box-sizing: border-box;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  color: #707070;
  cursor: pointer;
  padding: 0;
}
.link-btn:hover {
  color: #1b75bb;
}
.modal-actions {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
}
.modal-container.swal2-html-container {
  margin: 0;
  font-weight: 400;
  font-size: 21px;
  line-height: 150%;
  color: #757575;
  margin: 0 auto 38px;
  text-align: center;
  max-width: 470px;
  padding-left: 20px;
  padding-right: 20px;
}
.modal-confirm-btn {
  margin-bottom: 38px;
}
.modal-deny-btn {
  color: #757575;
  font-weight: 400;
  font-size: 21px;
  line-height: 150%;
}
.swal2-container .swal2-popup {
  padding-bottom: 70px;
}
.swal2-container .swal2-title {
  padding-top: 70px;
}
a.btn {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.btn {
  height: 75px;
  padding: 17px 47px;
  text-decoration: none;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 35px;
  text-align: center;
  line-height: 0.9;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.btn_sm {
  height: 39px;
  font-size: 21px;
  padding: 5px 12px;
  max-width: 200px;
}
.btn_blue {
  background: #2a5747;
  color: #fff;
  border: none;
  border-radius: 8px;
}
.btn_orange {
  background: #ff4d00;
  color: #fff;
}
.btn_outline_blue {
  background: 0 0;
  border: 3px solid #1b75bb;
  color: #1b75bb;
}
.btn_outline_orange {
  background: 0 0;
  border: 3px solid #ff4d00;
  color: #ff4d00;
}
.btn_up {
  position: fixed;
  width: 56px;
  height: 56px;
  border: none;
  padding: 0;
  background: 0 0;
  z-index: 10;
  bottom: 40px;
  right: 40px;
  cursor: pointer;
  visibility: hidden;
}
.btn_up .fico {
  color: #fff;
  font-size: 56px;
  opacity: 0;
  -webkit-transition: 0.5s opacity;
  transition: 0.5s opacity;
}
.btn_up.active .fico {
  visibility: visible;
  opacity: 0.9;
  -webkit-transition: 0.5s opacity;
  transition: 0.5s opacity;
  color: #fff
}
.loader {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  -webkit-animation: LoaderRotate 1s linear infinite;
  animation: LoaderRotate 1s linear infinite;
}
.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 5px solid #fff;
  -webkit-animation: LoaderPrixClipFix 2s linear infinite;
  animation: LoaderPrixClipFix 2s linear infinite;
}
@-webkit-keyframes LoaderRotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes LoaderRotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes LoaderPrixClipFix {
  0% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    -webkit-clip-path: polygon(
      50% 50%,
      0 0,
      100% 0,
      100% 100%,
      100% 100%,
      100% 100%
    );
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
@keyframes LoaderPrixClipFix {
  0% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    -webkit-clip-path: polygon(
      50% 50%,
      0 0,
      100% 0,
      100% 100%,
      100% 100%,
      100% 100%
    );
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
.title {
  font-family: "Secular One", sans-serif;
  line-height: 1.1;
  color: #404040;
}
.t_xl {
  font-size: 150px;
  line-height: 1;
}
.t_lg {
  font-size: 60px;
}
.t_md {
  font-size: 78px;
}
.t_sm {
  font-size: 50px;
}
.t_xs {
  font-weight: 500;
  font-size: 30px;
  line-height: 1.5;
}
.slick-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}
.slick-dots li {
  display: inline-block;
}
.slick-dots button {
  width: 15px;
  height: 15px;
  font-size: 0;
  padding: 0;
  border-radius: 100%;
  border: 0;
  background: #a2d4bd;
  margin: 0 12px;
  cursor: pointer;
}
.slick-dots .slick-active button {
  background: #2a5747;
}
.slick-arrow {
  position: absolute;
  width: 31px;
  height: 46px;
  font-size: 0;
  padding: 0;
  background: url("arrow-right.svg") no-repeat;
  background-size: contain;
  z-index: 10;
  cursor: pointer;
  left: 50%;
  border: none;
}
.slick-prev {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.form {
  background: #fff;
  padding: 25px 25px 67px;
  text-align: center;
}
.form-group {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.input,
.textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px 15px;
  font-size: 21px;
  line-height: 1.5;
  border: 1px solid #d6d3d3;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(17, 24, 39, 0.05);
  background: #fff;
}


.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
  color: #787474;
}
.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
  color: #787474;
}
.input::-ms-input-placeholder,
.textarea::-ms-input-placeholder {
  color: #787474;
}
.input::placeholder,
.textarea::placeholder {
  color: #787474;
}
.input:focus,
.textarea:focus {
  outline: 0 !important;
  border: 2px solid #38755e;
}
.input.error,
.textarea.error {
  border-color: #ff3642;
  color: #ff3642;
  padding-top: 17px;
}
.input.success,
.textarea.success {
  border: 2px solid #38755e;
}
.textarea {
  font-family: Roboto;
  height: 138px;
}
.input {
  height: 50px;
}
.input-wrap {
  position: relative;
  margin-bottom: 20px;
}
.input-wrap--icon .input {
  padding-right: 48px;
}
.input-wrap--icon .fico {
  line-height: normal;
  font-size: 22px;
}
.input-wrap__addon {
  line-height: normal;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.input-file {
  margin: 30px auto 50px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: flex-start;
  flex-direction: column;
}
.input-file input {
  display: none;
}
.input-file input.success ~ .file__success {
  display: -webkit-box;
  display: flex;
}
.input-file input.success + label .file__text {
  display: none;
}
.input-file input.success + .file__text {
  display: none;
}
.input-file .fico {
  font-size: 22px;
}
.input-file .fico-clear {
  cursor: pointer;
}
.input-file label {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;

  /* line-height: 24px; */ 
  line-height: 1.5;
  color: #403d3d;
  display: -webkit-box;
  display: flex;
  cursor: pointer;
}
.file__success,
.file__text {
  font-size: 21px;
  color: #1b75bb;
  display: -webkit-box;
  display: flex;
  align-items: center;
}
.file__success span,
.file__text span {
  display: inline-block;
}
.file__text {
  text-align: left;
}
.file__text span {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #403d3d;
  }
.file__success {
  display: none;
  text-align: right;
}
.file__success span {
  padding-right: 7px;
}
.error-text {
  position: absolute;
  color: #ff3642;
  font-size: 12px;
  left: 5px;
  top: 0;
}
.nav {
  position: fixed;
  width: 100%;
  z-index: 100;
  background: #fafafa;
  left: 0;
  top: 0;
  right: 0;
}
.nav .container {
  position: relative;
  padding-left: 300px;
}
.nav-top {
  position: absolute;
  left: 0;
  top: 4px;
}
.nav-content {
  display: -webkit-box;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  padding-right: 0;
}
.nav__logo {
  display: inline-block;
  width: 220px;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.nav__logo img {
  width: 100%;
  height: auto;
}
.nav-burger {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
  height: 23px;
  cursor: pointer;
  border: none;
  display: none;
  background: #fafafa;
}
.nav-burger span {
  position: absolute;
  width: 25px;
  height: 3px;
  background: #2a5747 ;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.nav-burger span:first-child {
  margin-top: -10px;
  -webkit-transition: margin 0.3s 0.2s, -webkit-transform 0.2s;
  transition: margin 0.3s 0.2s, -webkit-transform 0.2s;
  transition: margin 0.3s 0.2s, transform 0.2s;
  transition: margin 0.3s 0.2s, transform 0.2s, -webkit-transform 0.2s;
}
.nav-burger span:last-child {
  margin-top: 10px;
  -webkit-transition: margin 0.3s 0.2s, -webkit-transform 0.2s;
  transition: margin 0.3s 0.2s, -webkit-transform 0.2s;
  transition: margin 0.3s 0.2s, transform 0.2s;
  transition: margin 0.3s 0.2s, transform 0.2s, -webkit-transform 0.2s;
}
.nav-burger.is-active span:first-child {
  margin-top: 0;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transition: margin 0.2s, -webkit-transform 0.3s 0.2s;
  transition: margin 0.2s, -webkit-transform 0.3s 0.2s;
  transition: margin 0.2s, transform 0.3s 0.2s;
  transition: margin 0.2s, transform 0.3s 0.2s, -webkit-transform 0.3s 0.2s;
}
.nav-burger.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-burger.is-active span:last-child {
  margin-top: 0;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transition: margin 0.2s, -webkit-transform 0.3s 0.2s;
  transition: margin 0.2s, -webkit-transform 0.3s 0.2s;
  transition: margin 0.2s, transform 0.3s 0.2s;
  transition: margin 0.2s, transform 0.3s 0.2s, -webkit-transform 0.3s 0.2s;
}
.nav.no_hide .nav__logo,
.nav.show .nav__logo {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.menu {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.menu__item.active .fico,
.menu__item.active .submenu-title,
.menu__item.active > a {
  color: #2a5747;
}
.menu__item > a {
  font-size: 21px;
  line-height: 1.15;
  color: #404040;
  text-decoration: none;
  display: inline-block;
  padding: 15px 23px;
}
.menu__item > a:hover {
  color: #2a5747;
}
.menu__item.active {
  color: #1b75bb;
}
.submenu {
  position: relative;
  cursor: pointer;
}
.submenu-list {
  background: #fff;
  box-shadow: 0 0 29px rgba(122, 137, 148, 0.24),
    0 94px 78px -64px rgba(122, 137, 148, 0.57);
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  padding: 25px 3px;
}
.submenu-list > div:only-child {
  min-width: 200px;
}
.submenu-title {
  padding: 15px 23px;
  display: inline-block;
}
.submenu-title .fico-open {
  font-size: 6px;
  position: absolute;
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%) scaleY(-1);
  transform: translateY(-50%) scaleY(-1);
  -webkit-transition: 0.3s transform;
  transition: 0.3s transform;
  color: #404040;
}
.submenu-title,
.submenu__item > a {
  font-size: 21px;
  line-height: 1.15;
  color: #404040;
  text-decoration: none;
  position: relative;
}
.submenu__item.category > a {
  color: #1b75bb;
  font-weight: 500;
}
.submenu__item > a {
  display: inline-block;
  padding: 4px 20px;
  position: relative;
  font-size: 19px;
}
.submenu__item > a::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  height: 1px;
  bottom: 5px;
  background: #1b75bb;
  display: none;
}
.submenu__item > a:hover {
  color: #1b75bb;
}
.submenu__item > a:hover::before {
  display: block;
}
.submenu.active {
  text-align: center;
}
.submenu.active .submenu-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  background: #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1200px;
}
.submenu:hover {
  background: #fff;
}
.submenu_langs {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.submenu_langs:hover {
  background: #fafafa;
}
.submenu_langs .submenu-list {
  background: #fafafa;
  box-shadow: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding: 0;
}
.submenu_langs .submenu__item > a {
  padding-top: 5px;
  padding-bottom: 5px;
}
.btn_header {
  font-size: 21px;
  line-height: 1.2;
  height: 39px;
  padding: 10px 18px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 23px;
}
.popup {
  width: 848px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fafafa;
  text-align: center;
}
.popup-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: -1;
  background: rgba(27, 117, 187, 0.3);
  -webkit-backdrop-filter: blur(35px);
  backdrop-filter: blur(35px);
}
.popup-wrap {
  padding: 192px 75px 190px;
  position: relative;
  z-index: 3;
}
.popup__title {
  margin-bottom: 20px;
}
.popup__btn {
  margin-top: 70px;
}
.popup .icon {
  position: absolute;
  z-index: 2;
}
.popup__img-1 {
  width: 292px;
  height: 358px;
  top: -110px;
  left: 28%;
}
.popup__img-2 {
  width: 132px;
  height: 176px;
  left: -30px;
  top: -10px;
}
.popup__img-3 {
  width: 173px;
  height: 199px;
  right: -20px;
  top: 60px;
}
.popup__img-4 {
  width: 360px;
  height: 374px;
  bottom: -10px;
  left: -40px;
}
.popup__img-5 {
  width: 290px;
  height: 370px;
  right: -20px;
  bottom: -10px;
}
.popup__img-6 {
  width: 169px;
  height: 176px;
  left: 45%;
  bottom: -45px;
}
.popup-el-1 {
  width: 120px;
  left: 50%;
  margin-left: -420px;
  bottom: 380px;
}
.popup-el-2,
.popup-el-3,
.popup-el-4 {
  width: 60px;
}
.popup-el-2 {
  left: 50%;
  margin-left: -300px;
  top: 150px;
}
.popup-el-3 {
  left: 50%;
  margin-left: 200px;
  top: 40px;
}
.popup-el-4 {
  top: 290px;
  right: -20px;
}
.popup-el-5 {
  width: 128px;
  right: 60px;
  bottom: 230px;
}
.popup-overlay.active {
  z-index: 108;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.tags {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
.tag {
  flex-shrink: 0;
  font-size: 21px;
  background: #fff;
  line-height: 1.17;
  padding: 8px 20px;
  margin-right: 12px;
  margin-bottom: 8px;
  position: relative;
  cursor: pointer;
}
.tag-ico_c {
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-55%);
  transform: translateY(-55%);
  display: inline-block;
  width: 18px;
  font-size: 14px;
  display: none;
}
.tag.check {
  background: #1b75bb;
  color: #fff;
  padding: 8px 10px 8px 30px;
}
.tag.check .tag-ico_c {
  display: inline-block;
}
.breadcrumbs__item {
  display: inline-block;
  position: relative;
  padding-right: 10px;
  white-space: nowrap;
}
.breadcrumbs__item a,
.breadcrumbs__item span {
  color: #000;
  opacity: 0.3;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
}
.breadcrumbs__item::after {
  content: " > ";
  font-size: 16px;
  position: absolute;
  top: 7px;
  right: 0;
  color: rgba(51, 51, 51, 0.3);
}
.breadcrumbs__item:hover a {
  text-decoration: underline;
}
.breadcrumbs__item:last-child a,
.breadcrumbs__item:last-child span {
  font-weight: 700;
}
.breadcrumbs__item:last-child::after {
  display: none;
}
.sample-wrap {
  max-width: 865px;
  margin: 0 auto;
}
.sample-top {
  padding: 75px 0 70px;
  position: relative;
}
.sample-bottom {
  padding: 70px 0 100px;
  position: relative;
}
.sample-main {
  margin-bottom: 30px;
}
.sample-img {
  position: absolute;
  height: auto;
  left: 50%;
  z-index: 2;
}
.sample-breadcrumbs {
  margin-bottom: 30px;
}
.sample__title {
  margin-bottom: 65px;
}
.sample__title--2 {
  margin-top: 70px;
  margin-bottom: 30px;
}
.sample-bl {
  margin-bottom: 50px;
}
.sample-bl:last-child {
  margin-bottom: 0;
}
.sample-bl h4 {
  margin-bottom: 10px;
  color: #404040;
}
.sample-bl b {
  font-weight: 700;
}
.sample-bl a {
  text-decoration: underline;
  color: #757575;
}
.sample-bl .text {
  margin-bottom: 10px;
}
.sample-form {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}
.sample-form .input-wrap {
  min-width: 32%;
}
.sample-form-wrap {
  padding-top: 50px;
}
.sample .el {
  left: 50%;
}
.footer {
  background: #fafafa;
  padding-bottom: 55px;
}
.footer-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-bottom: 68px;
}
.footer-contacts {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
}
.footer-left {
  text-align: center;
}
.footer-center {
  max-width: 545px;
  flex-shrink: 0;
}
.footer-right {
  width: 300px;
  padding-left: 100px;
  flex-shrink: 0;
  text-align: center;
}
.footer-social {
  padding-top: 30px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-bottom: 22px;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 22px;
}
.footer-logo img {
  width: 416px;
  height: auto;
}
.footer-developed {
  text-align: center;
}
.footer-developed p {
  font-size: 12px;
}
.footer-developed a {
  display: inline-block;
  position: relative;
  width: 132px;
  height: 36px;
}
.footer-developed a::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  background: url("deviart_logo-red.svg");
  background-size: contain;
  opacity: 0;
}
.footer-developed a:hover::before {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer-privacy {
  color: #757575;
  text-decoration: none;
}
.footer-privacy:hover {
  color: #1b75bb;
  text-decoration: underline;
}
.f-contact {
  width: 50%;
  flex-shrink: 0;
  position: relative;
  padding-left: 47px;
  padding-top: 8px;
  text-decoration: none;
  margin-bottom: 35px;
}
.f-contact:last-child {
  margin-bottom: 0;
}
.f-contact .fico {
  position: absolute;
  left: 0;
  top: 0;
  color: #1b75bb;
}
.f-contact .fico-phone {
  font-size: 35px;
}
.f-contact .fico-email {
  font-size: 29px;
}
.f-contact .fico-telegram {
  font-size: 35px;
}
.f-contact .fico-address {
  font-size: 35px;
}
.f-contact__text {
  color: #757575;
}
a.f-contact:hover {
  text-decoration: underline;
  color: #1b75bb;
}
a.f-contact:hover .f-contact__text {
  color: #1b75bb;
}
a.f-contact:hover .fico {
  color: #1c9cff;
}
.social__link .fico {
  font-size: 40px;
  color: #1b75bb;
}
.social__link .fico:hover {
  color: #1c9cff;
  -webkit-filter: drop-shadow(0 0 19px rgba(122, 137, 148, 0.24))
    drop-shadow(0 17px 14px rgba(122, 137, 148, 0.29));
  filter: drop-shadow(0 0 19px rgba(122, 137, 148, 0.24))
    drop-shadow(0 17px 14px rgba(122, 137, 148, 0.29));
}
.slider_block_packing .category_block {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}
.slider_block_packing .category_block h4 {
  font-weight: 700;
  padding: 30px 35px;
  cursor: pointer;
}
.slider_block_packing .category_block h4:hover {
  color: #1b75bb;
}
.slider_block_packing .slick-list {
  margin-left: 40px;
  position: relative;
}
.slider_block_packing .slick-list:before {
  content: "";
  width: 227px;
  position: absolute;
  right: -100px;
  top: 0;
  bottom: 8px;
  z-index: 1;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(211, 232, 248, 0)),
    color-stop(53%, #c8dff1)
  );
  background: linear-gradient(90deg, rgba(211, 232, 248, 0) 0, #c8dff1 53%);
}
.slider_block_packing .slick-slide {
  margin: 0 11px;
}
.slider_block_packing .slick-arrow {
  background: 0 0;
  font-size: 28px;
  color: #757575;
}
.slider_block_packing .slick-arrow:hover {
  color: #1b75bb;
  -webkit-filter: none;
  filter: none;
}
.slider_block_packing .slick-prev {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 0;
  top: 45%;
}
.slider_block_packing .slick-next {
  -webkit-transform: rotate(180deg) translate(0, -50%);
  transform: rotate(180deg) translate(0, -50%);
  -webkit-transform-origin: center top;
  transform-origin: center top;
  left: auto;
  right: 0;
  top: 45%;
}
.slider_block_packing .no-slider .main_block,
.slider_block_packing .slider .main_block {
  position: relative;
  max-width: 290px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}
.slider_block_packing .no-slider .main_block:hover .t_xs,
.slider_block_packing .slider .main_block:hover .t_xs {
  color: #1b75bb;
}
.slider_block_packing .no-slider .main_block:hover .characteristic_block,
.slider_block_packing .slider .main_block:hover .characteristic_block {
  top: 0;
}
.slider_block_packing .no-slider .main_block:hover .btn_info,
.slider_block_packing .slider .main_block:hover .btn_info {
  top: 54%;
}
.slider_block_packing .no-slider .main_block:hover .btn_info .text,
.slider_block_packing .slider .main_block:hover .btn_info .text {
  display: none;
}
.slider_block_packing .no-slider .main_block:hover .btn_info .fico-open,
.slider_block_packing .slider .main_block:hover .btn_info .fico-open {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.slider_block_packing .no-slider .main_block .t_xs,
.slider_block_packing .slider .main_block .t_xs {
  padding: 12px;
  background: #fff;
  position: relative;
  font-size: 28px;
  min-height: 150px;
}
.slider_block_packing .no-slider .main_block img,
.slider_block_packing .slider .main_block img {
  width: 100%;
}
.slider_block_packing .no-slider .characteristic_block,
.slider_block_packing .slider .characteristic_block {
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
  height: 100%;
  color: #404040;
}
.slider_block_packing .no-slider .characteristic_block div,
.slider_block_packing .slider .characteristic_block div {
  margin-bottom: 10px;
}
.slider_block_packing .no-slider .characteristic_block .text,
.slider_block_packing .slider .characteristic_block .text {
  margin: 0;
}
.slider_block_packing .no-slider .characteristic_block .bold,
.slider_block_packing .slider .characteristic_block .bold {
  font-weight: 700;
  line-height: 1;
}
.slider_block_packing .btn_info {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 51%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.slider_block_packing .btn_info .text {
  color: #1b75bb;
  line-height: 0.7;
}
.slider_block_packing .btn_info .fico-open {
  font-size: 12px;
  color: #1b75bb;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.stages_block {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start;
  counter-reset: stages;
  position: relative;
}
.stages_block::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 8px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #1b75bb;
  border-radius: 10px;
}
.stage {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  position: relative;
}
.stage:nth-of-type(odd) {
  padding-bottom: 36px;
}
.stage:nth-of-type(odd)::before {
  bottom: 0;
}
.stage:nth-of-type(odd)::after {
  bottom: 3px;
}
.stage:nth-of-type(even) {
  margin-top: 128px;
  margin-left: -80px;
  padding-top: 36px;
}
.stage:nth-of-type(even)::before {
  top: 0;
}
.stage:nth-of-type(even)::after {
  top: 4px;
}
.stage::before {
  content: "";
  display: block;
  position: absolute;
  left: 100px;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 4px;
  border: 5px solid #1b75bb;
  -webkit-transform: rotate(45deg) skew(-10deg, -10deg);
  transform: rotate(45deg) skew(-10deg, -10deg);
}
.stage::after {
  counter-increment: stages;
  content: counter(stages);
  display: block;
  position: absolute;
  color: #1b75bb;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  left: 110px;
}
.stage__photo {
  margin-right: 20px;
  pointer-events: none;
}
.stage__title {
  line-height: 1;
  font-weight: 500;
  color: #404040;
}
.contacts-footer {
  padding-top: 80px;
  padding-bottom: 80px;
}
.contacts-footer .flex_block {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
}
.contacts-footer svg:hover path {
  fill: #1c9cff;
  -webkit-filter: drop-shadow(0 0 19px rgba(122, 137, 148, 0.24))
    drop-shadow(0 17px 14px rgba(122, 137, 148, 0.29));
  filter: drop-shadow(0 0 19px rgba(122, 137, 148, 0.24))
    drop-shadow(0 17px 14px rgba(122, 137, 148, 0.29));
}
.contacts-footer .title {
  margin-bottom: 30px;
}
.contacts-footer .right_block {
  width: 65%;
  margin-left: 70px;
  height: 690px;
  box-shadow: 0 0 29px rgba(122, 137, 148, 0.24),
    0 45px 77px rgba(122, 137, 148, 0.3);
}
.contacts-footer .left_block {
  width: 35%;
}
.contacts-footer .logo_block img {
  margin-bottom: 30px;
}
.contacts-footer .contact {
  margin-top: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.contacts-footer .contact__title {
  font-weight: 700;
}
.contacts-footer .social {
  margin-top: 20px;
}
.contacts-footer .social .social__link {
  margin-right: 50px;
  text-decoration: none;
}
.contacts-footer .btn {
  margin-top: 50px;
}
.contacts-footer .footer-bottom {
  margin-top: 40px;
}
.primary {
  padding: 90px 0;
}
.primary-box {
  width: 100%;
  padding-right: 53%;
  min-height: 792px;
}
.primary-box #lottie {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-523px, -492px);
  transform: translate(-523px, -492px);
  width: 1045px;
  height: 975px;
}
.primary-box-img {
  right: 0;
  background: url("./img/hero.svg");
  background-repeat: no-repeat;
}
.primary-box-img img {
  opacity: 0;
}
.primary__logo {
  margin-bottom: 80px;
  width: 417px;
  height: auto;
}
.primary__title {
  margin-bottom: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
  color: #1a1818;
}

.primary__text{
  margin-bottom: 48px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #575353;
  max-width: 576px;
  text-align: start;  
}

.catalog {
  background: #fafafa;

}

.catalog-main{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
}

.catalog-main img{
  width: 100%;
  max-width: 560px;
}

.catalog-title{
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  color: #1a1818;
  margin-bottom: 24px;
}
.catalog-text{
  display: flex;
  flex-direction: column;
  justify-content: center
}
.catalog-text-text{
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;

  /* line-height: 28px; */ 
  line-height: 1.4;
  color: #575353;
}
.catalog-text-bottom{
  margin-top: 15px;
}


.catalog-bottom,
.catalog-top {
  position: relative;
}
.catalog-top {
  padding: 96px 0;
}
.catalog-bottom {
  padding-bottom: 100px;
}
.catalog-slider {
  position: relative;
  left: 50%;
  margin-left: -1600px;
  width: 3000px;
}
.catalog-slider-sm {
  display: none;
}
.catalog-sl {
  padding-bottom: 100px;
}
.catalog .slick-arrow {
  display: none !important;
}
.catalog .slick-dots {
  bottom: 55px;
}
.catalog__btn {
  text-align: center;
}
.catalog__btn .btn {
  font-size: 30px;
  height: 60px;
}
.catalog .el {
  left: 50%;
}
.catalog-el-1 {
  margin-left: -500px;
  top: 145px;
}
.catalog-el-2 {
  margin-left: 450px;
  top: -50px;
}
.catalog-el-3 {
  margin-left: 450px;
  bottom: 180px;
}
.catalog-el-4 {
  margin-left: 700px;
  top: -70px;
}
.catalog-el-5 {
  bottom: 200px;
  margin-left: -890px;
}
.laboratory {
  padding: 110px 0 110px;
  position: relative;
}
.laboratory-box {
  min-height: 488px;
  padding-right: 59%;
}
.laboratory-box-img {
  right: 0;
  background: url("/img/lab.svg") no-repeat;
  background-size: 100% auto;
  width: 100%;
  max-width: 560px;
  background-repeat: no-repeat;
}
.lab-box-img {
  right: 0;
  background: url("/img/labaratory illustration.png") no-repeat;
  background-size: 100% auto;
  width: 100%;
  max-width: 560px;
  background-repeat: no-repeat;
}
.laboratory-box-img img {
  opacity: 0;
}
.laboratory-box #lottie2 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-520px, -488px);
  transform: translate(-520px, -488px);
  width: 1045px;
  height: 974px;
}
.laboratory__title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 48px;

  /* line-height: 48px; */ 
  line-height: 1;
  color: #1a1818;
}
.laboratory-text {
  position: relative;
}
.laboratory-el-1 {
  width: 205px;
  left: 50%;
  margin-left: -103px;
  bottom: 0;
}
.laboratory-el-2,
.laboratory-el-3 {
  width: 80px;
}
.laboratory-el-2 {
  top: 0;
  left: 50%;
  margin-left: -200px;
}
.laboratory-el-3 {
  right: -20px;
  top: 570px;
}
.formulations {
  background: rgba(255, 255, 255, 0.5);
  padding: 85px 0 60px;
}
.formulations-wrap {
  position: relative;
}
.formulations__text,
.formulations__title {
  text-align: center;
  padding: 0 230px;
}
.formulations__title {
  margin-bottom: 30px;
}
.formulations__text {
  margin-bottom: 70px;
}
.formulations-list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  gap: 32px;
}
.formulations-el-1 {
  width: 208px;
  top: 0;
  right: 0;
  -webkit-transform: scale(-1);
  transform: scale(-1);
}
.formulations-el-2 {
  width: 245px;
  left: 0;
  bottom: 40px;
}
.formulations-el-3,
.formulations-el-4 {
  width: 82px;
}
.formulations-el-3 {
  left: 28%;
  top: 160px;
}
.formulations-el-4 {
  right: 30%;
  bottom: 180px;
}
.card-prod {
  width: 100%;
  max-width: 384px;
  flex-shrink: 0;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.card-prod:last-of-type,
.card-prod:nth-child(3n) {
  margin-right: 0;
}
.card-prod-title {
  color: #1b75bb;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.card-prod-ico {
  position: relative;
  margin-right: 10px;
  flex-shrink: 0;
  font-size: 1.6rem;
}
.card-prod-more {
  padding-right: 23px;
  position: relative;
  display: -webkit-inline-box;
  display: inline-flex;
  cursor: pointer;
}
.card-prod-more .fico-open {
  font-size: 6px;
  position: absolute;
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%) scaleY(-1);
  transform: translateY(-50%) scaleY(-1);
  -webkit-transition: 0.3s transform;
  transition: 0.3s transform;
  color: #404040;
}
.card-prod-composition {
  display: none;
}
.label-top {
  background: #ff4d00;
  padding: 85px 0 107px;
  position: relative;
}
.label-top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 207px;
  top: calc(100% - 2px);
  background: #ff4d00;
}
.label__title {
  text-align: center;
  color: #fff;
}
.label__text {
  text-align: center;
  max-width: 855px;
  margin: 0 auto;
  color: #fff;
}
.label-bottom {
  position: relative;
  padding-bottom: 100px;
  min-height: 870px;
  text-align: center;
}
.label-img {
  position: absolute;
  z-index: 3;
  top: -75px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 425px;
  height: 834px;
  display: -webkit-box;
  display: flex;
}
.label-img img {
  opacity: 0;
}
.label-img #lottie3 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-382px, -498px);
  transform: translate(-382px, -498px);
  width: 725px;
  height: 984px;
}
.label-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 0 105px;
  position: relative;
  z-index: 2;
}
.label-list-wrap {
  min-height: 760px;
  margin-bottom: 40px;
  position: relative;
}
.label-bl {
  padding: 50px 45px 85px;
  background: #fff;
  width: calc(50% - 190px);
  flex-shrink: 0;
  text-align: left;
}
.label-bl__subtitle,
.label-bl__title {
  color: #ff4d00;
}
.label-bl__title {
  line-height: 0.8;
}
.label-bl__subtitle {
  margin-bottom: 20px;
}
.label-bl-list {
  margin-top: 20px;
}
.label-el-1 {
  width: 164px;
  left: -35px;
  top: 350px;
}
.label-el-2 {
  width: 245px;
  right: 50%;
  margin-right: -530px;
  bottom: 100px;
}
.label-el-3 {
  width: 164px;
  right: 40px;
  top: 270px;
}
.label-el-4,
.label-el-5 {
  width: 82px;
  left: 50%;
}
.label-el-4 {
  bottom: 30px;
  left: 50%;
  margin-left: -450px;
}
.label-el-5 {
  bottom: 150px;
  margin-left: -350px;
}
.documents {
  background: #ccf3ff;
  padding-top: 113px;
}
.documents-top {
  margin-bottom: 40px;
}
.documents-list {
  display: -webkit-box;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  justify-content: center;
}
.documents__title {
  margin-bottom: 30px;
}
.documents-content {
  display: -webkit-box;
  display: flex;
}
.documents-bl {
  margin: 0 11px;
  flex-shrink: 0;
}
.documents-bl_1 {
  width: 31%;
}
.documents-bl_2 {
  width: 44%;
}
.documents-bottom {
  position: relative;
}
.documents-bottom::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 165px;
  bottom: 0;
  background: #fafafa;
}
.documents-wrap {
  position: relative;
}
.documents__btn {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 11px;
}
.documents-el-1 {
  width: 245px;
  top: 200px;
  left: 25%;
}
.documents-el-2 {
  width: 82px;
  bottom: -210px;
  left: -50px;
}
.documents-el-3 {
  width: 164px;
  right: 26%;
  top: -40px;
}
.standarts {
  width: 100%;
  flex-shrink: 0;
  margin: 0;
}
.standarts-wrap {
  width: calc(33.33% - 22px);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
  margin: 0 11px;
}
.standarts-wrap-1 {
  padding-top: 95px;
}
.packaging {
  padding: 109px 0 0;
  overflow: hidden;
  background: #e5f5ec;
}
.packaging-wrap {
  position: relative;
}
.packaging__title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  text-align: center;
  color: #1d372e;
  padding: 0 350px;
  margin-bottom: 30px;
}
.packaging__text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  color: #2a5747;
  display: flex;
  justify-content: center;
  margin-bottom: 64px
}
.packaging__text p{
  max-width: 768px;
}
.packaging-list {
  display: -webkit-box;
  display: flex;
  width: 100%;
  justify-content: center
}
.packaging-list-mob {
  display: none;
}
.packaging-bottom .packaging-wrap {
  padding-bottom: 45px;
}
.packaging-dots {
  display: none;
}
.packaging-el-1,
.packaging-el-2,
.packaging-el-3 {
  width: 82px;
}
.packaging-el-1 {
  top: 0;
  left: 50%;
  margin-left: 500px;
}
.packaging-el-2 {
  left: 0;
  top: 190px;
}
.packaging-el-3 {
  bottom: 0;
  right: 50%;
  margin-right: -200px;
}
.packaging .slick-arrow {
  top: 50%;
  margin-top: -23px;
}
.packaging .slick-prev {
  margin-left: -460px;
}
.packaging .slick-next {
  margin-left: 420px;
}
.packaging .slick-track {
  display: -webkit-box;
  display: flex;
}
.packaging .slick-slide {
  height: auto;
}
.packaging .slick-slide > div {
  height: 100%;
}
.pack {
  position: relative;
  min-height: 100%;
  display: -webkit-box;
  display: flex;
  font-size: 21px;
  flex-shrink: 0;
  -webkit-transition: 0.5s width;
  transition: 0.5s width;
  width: calc((100% - 860px) / 5);
}
.pack-wrap,
.pack.active {
  width: 344px !important;
}
.pack.active {
  -webkit-transition: 0.5s width;
  transition: 0.5s width;
}
.pack.active .pack__img img {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
}
.pack-wrap {
  padding: 24px;
  background: #fff;
  border-left: 8px solid #e5f5ec;
  border-right: none;
  position: relative;
  width: 344px !important;
  border-radius: 12px 16px 16px 12px;
}
.pack:first-child .pack-wrap {
  border-left: 8px solid #fff;
}
.pack__title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
  text-align: center;
  color: #38755e;
}
.pack-sizes {
  font-size: 30px;
  color: #1b75bb;
  font-family: "Secular One", sans-serif;
  margin-bottom: 25px;
}
.pack__s_big {
  font-size: 36px;
}
.pack__text {
  margin-bottom: 25px;
}
.pack__img {
  position: absolute;
  left: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 324px;
}
.pack__img img {
  max-width: 100%;
  height: auto;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.pack-container {
  margin-bottom: 25px;
}
.pack-container:last-of-type {
  margin-bottom: 0;
}
.pack-btn-wrap {
  display: none;
  text-align: center;
}
.pack-3 .pack__img img,
.pack-5 .pack__img img,
.pack-6 .pack__img img {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
}
.color-list {
  display: -webkit-box;
  display: flex;
}
.color-bl {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-right: 20px;
}
.color-bl:last-of-type {
  margin-right: 0;
}
.color-bl__view {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-right: 7px;
  border: 1px solid #c4c4c4;
}
.color-bl__view_blue {
  background: #2f70ee;
}
.color-bl__view_white {
  background: #fff;
}
.color-bl__view_black {
  background: #000;
}
.color-bl__view_green {
  background: #abf292;
}
.js-more.show-text .js-more-text {
  display: block;
}
.js-more.show-text .js-more-btn[data-hide="true"] {
  display: none;
}
.equipment {
  padding: 100px 0;
}
.equipment-box {
  min-height: 785px;
  padding: 0 30px 0 63%;
}
.equipment-box-img {
  left: 45px;
  background: url("equipment_img1.svg") no-repeat;
  background-size: 100% auto;
  width: 896px;
}
.equipment-box-img img {
  opacity: 0;
}
.equipment-box #lottie4 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-504px, -472px);
  transform: translate(-504px, -472px);
  width: 1008px;
  height: 937px;
  z-index: 2;
}
.equipment__title {
  margin-bottom: 30px;
}
.equipment-list {
  margin-bottom: 40px;
}
.equipment-links {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.equipment-link {
  flex-shrink: 0;
  margin-right: 47px;
  position: relative;
}
.equipment-link:last-child {
  margin-right: 0;
}
.equipment-link_inta .icon {
  width: 143px;
  height: 93px;
}
.equipment-link_masines .icon {
  width: 91px;
  height: 92px;
}
.equipment-link_promvit .icon {
  width: 177px;
  height: 74px;
}
.equipment-link:hover .icon-link_color {
  opacity: 1;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.equipment-link .icon-link_color {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.equipment-el-1,
.equipment-el-2 {
  width: 82px;
}
.equipment-el-1 {
  right: 0;
  top: 0;
}
.equipment-el-2 {
  top: 300px;
  left: 50%;
  margin-left: 80px;
}
.manufacturing {
  padding: 25px 0 75px;
}
.manufacturing-box {
  padding-left: 63%;
  min-height: 895px;
  padding-bottom: 40px;
}
.manufacturing-box-img {
  left: 0;
  background: url("manufacturing_img1.svg") no-repeat;
  background-size: 100% auto;
  width: 913px;
}
.manufacturing-box img {
  opacity: 0;
}
.manufacturing-box #lottie6 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-548px, -517px);
  transform: translate(-548px, -517px);
  width: 1096px;
  height: 1027px;
  z-index: 2;
}
.manufacturing__title {
  margin-bottom: 30px;
}
.manufacturing-wrap {
  position: relative;
}
.manufacturing-el-1 {
  width: 205px;
  bottom: 50px;
  left: 30px;
}
.manufacturing-el-2,
.manufacturing-el-3 {
  width: 82px;
}
.manufacturing-el-2 {
  right: 50px;
  bottom: 0;
}
.manufacturing-el-3 {
  left: 52%;
  bottom: 28%;
}
.manufacturing-el-4 {
  width: 88px;
  right: -40px;
  bottom: -50px;
  display: none;
}
.rddepartment {
  background: #e5f5ec;
}
.rddepartment-top {
  padding: 96px 0 64px;
  background: #e5f5ec;
}
.rddepartment-box {
  padding-right: 45%;
}
.rddepartment-box-img {
  right: 0;
  background: url("/img/rd.png") no-repeat;
  background-size: 100% auto;
  max-width: 426.97px;
}
.rddepartment-box img {
  opacity: 0;
}
.rddepartment-box #lottie5 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-542px, -408px);
  transform: translate(-542px, -408px);
  width: 1108px;
  height: 797px;
  z-index: 2;
}
.rddepartment__title {
  margin-bottom: 30px;
}
.rddepartment-text {
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #2a5747;
}
.rddepartment-list {
  position: relative;
  padding-bottom: 75px;
  z-index: 1;
}
.rddepartment-bottom {
  position: relative;
}
.rddepartment-wrap{
  background: #e5f5ec;
}
.rddepartment-bottom::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 145px;
  background: #fafafa;
}
.rddepartment-wrap {
  position: relative;
}
.rddepartment-el-1 {
  width: 245px;
  left: 35%;
  top: 100px;
}
.rddepartment-el-2,
.rddepartment-el-3 {
  width: 82px;
}
.rddepartment-el-2 {
  bottom: 50px;
  left: 50%;
  margin-left: 800px;
}
.rddepartment-el-3 {
  bottom: 0;
  left: 50%;
  margin-left: -100px;
}
.rddepartment-el-4 {
  width: 164px;
  right: 150px;
  bottom: 5px;
}
.department {
  max-width: 384px;
  width: 100%;
  padding: 32px;
  position: relative;
  z-index: 2;
  border-radius: 16px;
}
.cases-content {
  width: 100%;
  position: relative;
}
.cases-list {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 50px;
}
.cases__title {
  padding: 0 130px 0 105px;
  position: absolute;
  z-index: 10;
  top: 0;
  max-width: 720px;
  width: 100%;
  min-height: 200px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
}
.cases-box {
  position: relative;
  max-width: 100%;
}
.cases-box-img {
  right: 0;
}
.cases .slick-arrow {
  top: 320px;
}
.cases .slick-prev {
  margin-left: -860px;
}
.cases .slick-next {
  margin-left: 800px;
}
.cases-el-1 {
  width: 82px;
  top: 170px;
  left: 35%;
}
.case {
  position: relative;
  width: 100%;
  padding: 0 105px;
}
.case img {
  margin: 0 auto;
}
.case-content {
  min-height: 600px;
}
.case__title {
  color: #1b75bb;
  margin-bottom: 12px;
}
.case__text {
  text-align: left;
}
.case-left {
  padding-top: 230px;
  max-width: 41%;
  overflow: hidden;
}
.case-right {
  position: absolute;
  z-index: 2;
  right: 0;
  max-height: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}
.case-right .case-bl {
  max-width: 100%;
  max-height: 100%;
}
.case-right .case-bl img {
  width: auto;
  height: 100%;
}
.contacts {
  padding: 64px 0
}
.contacts__title {
  margin-bottom: 64px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 48px;

  /* line-height: 48px; */ 
  line-height: 1;
  color: #1a1818;
}
.contacts-bls {
  display: -webkit-box;
  display: flex;
}
.contacts-bl {
  margin-right: 160px;
  flex-shrink: 0;
}
.contacts-bl__title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px; 
  line-height: 1.4;
  color: #1a1818;
}

.contacts-text{
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;

  /* line-height: 24px; */ 
  line-height: 1.5;
  color: #575353;
}
.contacts-bl_1 {
  width: 477px;
}
.contacts-bl_2 {
  width: 300px;
}
.contacts-map {
  width: 100%;
  margin-top: 58px;
  height: 400px;
}
.contacts-form {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.contacts-form__row {
  display: -webkit-box;
  display: flex;
  margin-left: -20px;
  width: calc(100% + 20px);
  margin-bottom: 30px;
}
.contacts-form__col {
  -webkit-box-flex: 1;
  flex-grow: 1;
  flex-shrink: 0;
  padding-left: 20px;
  width: 50%;
}
.contacts-form__col .input-wrap {
  font-size: 0;
}
.contacts-form__col .input-wrap:last-of-type {
  margin-bottom: 0;
}
.contacts-form-wrap {
  text-align: center;
  max-width: 1135px;
  margin: auto;
  padding-top: 25px;
  padding-bottom: 70px;
  padding-left: 20px;
  padding-right: 20px;
}
.contact {
  display: -webkit-box;
  display: flex;
  align-items: center;
}
.contact__title {
  color: #1b75bb;
}
.contact__link {
  font-weight: 600;
  color: #403d3d;
  text-decoration: none;
  display: -webkit-box;
  display: flex;
  font-size: 16px;

  /* line-height: 24px; */ 
  line-height: 1.5;
}
.contact-bl {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
}
.contact-bl:hover .contact__link {
  color: #1b75bb;
  text-decoration: underline;
}
.contact-bl:hover .fico {
  opacity: 1;
}
.contact-bl__tooltip {
  position: absolute;
  right: 10px;
  bottom: calc(100% - 5px);
  opacity: 0;
}
.contact-bl__tooltip .copied {
  display: none;
}
.contact-bl__tooltip.active {
  opacity: 1;
}
.contact-bl__tooltip.active .copied {
  display: inline;
}
.contact-bl__tooltip.active .copy {
  display: none;
}
.contact-copy {
  padding: 0 10px;
}
.contact .fico {
  font-size: 15px;
  cursor: pointer;
  opacity: 0;
}
.contact .fico:hover {
  color: #1b75bb;
}
.repeating-inputs {
  margin-bottom: 30px;
}
.repeating-inputs__head {
  display: -webkit-box;
  display: flex;
}
.repeating-inputs__label {
  text-align: left;
  min-width: 0;
  -webkit-box-flex: 1;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 33.33333%;
  padding-left: 15px;
  padding-bottom: 6px;
  font-weight: 700;
  font-size: 21px;
  line-height: 150%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.repeating-inputs__row {
  display: -webkit-box;
  display: flex;
}
.repeating-inputs__row:first-of-type .repeating-inputs__remove {
  display: none;
}
.repeating-inputs__row .input-wrap {
  margin: 0;
  -webkit-box-flex: 1;
  flex: 1;
  flex-shrink: 0;
  flex-basis: 33.33333%;
}
.repeating-inputs__row .input-wrap .input::-webkit-input-placeholder {
  color: #fff;
}
.repeating-inputs__row .input-wrap .input:-ms-input-placeholder {
  color: #fff;
}
.repeating-inputs__row .input-wrap .input::-ms-input-placeholder {
  color: #fff;
}
.repeating-inputs__row .input-wrap .input::placeholder {
  color: #fff;
}
.repeating-inputs__remove {
  cursor: pointer;
}
.repeating-inputs__remove:hover {
  color: #ff3642;
}
.repeating-inputs__foot {
  text-align: right;
  padding-top: 10px;
}
.description-top {
  padding: 75px 0 70px;
  position: relative;
}
.description-top::before {
  position: absolute;
  content: "";
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: calc(100% - 5px);
  height: 190px;
}
.description-breadcrumbs {
  margin-bottom: 30px;
}
.description-center {
  position: relative;
  padding-bottom: 80px;
  z-index: 2;
}
.description-bottom {
  padding: 85px 0;
  background: rgba(255, 255, 255, 0.5);
}
.description-wrap {
  max-width: 865px;
  padding-left: 64px;
  margin: 0 auto;
}
.description-nav {
  margin-bottom: 20px;
}
.description-tags {
  margin-bottom: 65px;
}
.description-main {
  min-height: 355px;
}
.description-cards {
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.description-cards-bottom {
  -webkit-box-align: start;
  align-items: start;
}
.description-card {
  width: 552px;
  margin-bottom: 22px;
}
.description-card-1 .card,
.description-card-2 .card,
.description-card-3 .card {
  height: 100%;
}
.description-card:nth-child(3n) {
  margin-right: 0;
}
.description-card:nth-child(3n + 1) {
  margin-left: 0;
}
.description-card .card__title {
  color: #404040;
}
.description-img {
  position: absolute;
  left: 50%;
  z-index: 3;
  height: auto;
}
.description-img-1 {
  top: 100px;
}
.description-img-2 {
  top: 75px;
}
.description .el {
  left: 50%;
}
.description-el-1 {
  margin-left: 770px;
  top: -20px;
}
.description-el-2 {
  margin-left: -940px;
  top: -20px;
}
.description-el-3 {
  margin-left: -1000px;
  bottom: -15px;
}
.description-el-4 {
  margin-left: 900px;
  bottom: 82px;
}
.description-el-5 {
  margin-left: 300px;
  bottom: 250px;
}
.description + .footer {
  padding-top: 30px;
  background: rgba(255, 255, 255, 0.5);
}
.type-nav {
  display: inline-block;
}
.type-nav__text {
  font-size: 34px;
}
.type-menu {
  position: relative;
  cursor: pointer;
}
.type-menu.active .type-menu__title,
.type-menu:hover .type-menu__title {
  background: #fff;
}
.type-menu.active .type-menu__title::before,
.type-menu:hover .type-menu__title::before {
  opacity: 1;
}
.type-menu.active .type-menu__title .title,
.type-menu:hover .type-menu__title .title {
  color: #1b75bb;
}
.type-menu.active .fico-open,
.type-menu:hover .fico-open {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition: -webkit-transform 0.1s;
  transition: -webkit-transform 0.1s;
  transition: transform 0.1s;
  transition: transform 0.1s, -webkit-transform 0.1s;
  color: #1b75bb;
}
.type-menu.active .type-menu-list,
.type-menu:hover .type-menu-list {
  display: block;
}
.type-menu-list {
  position: absolute;
  z-index: 3;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 8px 35px 25px;
  display: none;
}
.type-menu__link {
  display: block;
  margin-bottom: 12px;
}
.type-menu__link:last-child {
  margin-bottom: 0;
}
.type-menu__link a {
  text-decoration: none;
  position: relative;
}
.type-menu__link a::before {
  position: absolute;
  content: "";
  height: 2px;
  background: #1b75bb;
  width: 100%;
  left: 0;
  top: calc(100% - 5px);
  opacity: 0;
}
.type-menu__title {
  position: relative;
  padding-right: 10px;
  padding-top: 10px;
}
.type-menu__title .title {
  line-height: 0.9;
  display: inline-block;
  max-height: 70px;
  overflow: hidden;
}
.type-menu__title::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 65px;
  right: 100%;
  opacity: 0;
  background: #fff;
}
.type-menu__title .fico-open {
  position: absolute;
  z-index: 2;
  right: calc(100% + 15px);
  top: 50%;
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  -webkit-transition: -webkit-transform 0.1s;
  transition: -webkit-transform 0.1s;
  transition: transform 0.1s;
  transition: transform 0.1s, -webkit-transform 0.1s;
  margin-top: -20px;
  color: #404040;
  font-size: 25px;
}
.product-bl {
  margin-bottom: 50px;
}
.product-bl:last-of-type {
  margin-bottom: 30px;
}
.product-bl .t_xs {
  color: #404040;
  margin-bottom: 12px;
}
.accordion {
  width: 825px;
  margin: 0 auto;
}
.accordion-bl {
  margin-bottom: 20px;
}
.accordion-bl-title {
  color: #404040;
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}
.accordion-bl-content {
  padding-top: 12px;
  padding-left: 30px;
  display: none;
}
.accordion-bl-content .list,
.accordion-bl-content .text,
.accordion-bl-content h4 {
  margin-bottom: 17px;
}
.accordion-bl.active .accordion-bl-title {
  color: #1b75bb;
}
.accordion-bl.active .accordion__icon::after,
.accordion-bl.active .accordion__icon::before {
  background: #1b75bb;
}
.accordion-bl.active .accordion__icon::after {
  opacity: 0;
}
.accordion__icon {
  position: absolute;
  left: 0;
  top: 13px;
  width: 16px;
  height: 16px;
}
.accordion__icon::after,
.accordion__icon::before {
  content: "";
  position: absolute;
  background: #404040;
}
.accordion__icon::before {
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 2px;
}
.accordion__icon::after {
  width: 2px;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.category-vitamins .description-top {
  background: #f4f3c4;
}
.category-vitamins .description-top::before {
  background: #f4f3c4;
}
.category-vitamins .description-img-1 {
  margin-left: -900px;
}
.category-vitamins .description-img-2 {
  margin-left: 500px;
}
.category-vitamins .description-el-6 {
  top: 183px;
  margin-left: 300px;
}
.category-vitamins .description-el-7 {
  width: 129px;
  margin-left: -650px;
  top: 780px;
}
.category-vitamins .description-el-8 {
  margin-left: -610px;
  top: 900px;
}
.category-vitamins .description-el-9 {
  top: 550px;
  margin-left: 1000px;
}
.category-vitamins .description-el-10 {
  top: 360px;
  margin-left: 860px;
}
.category-vitamins .description-el-11 {
  width: 436px;
  margin-left: 430px;
  top: 680px;
}
.category-vitamins .description-el-12 {
  width: 280px;
  margin-left: -1050px;
  top: 670px;
}
.category-vitamins .color {
  fill: #fff200;
}
.category-cosmetics .description-top {
  background: #e9deeb;
}
.category-cosmetics .description-top::before {
  background: #e9deeb;
}
.category-cosmetics .description-img-1 {
  margin-left: -900px;
}
.category-cosmetics .description-img-2 {
  top: 100px;
  margin-left: 480px;
}
.category-cosmetics .description-el-6 {
  top: 150px;
  margin-left: 360px;
}
.category-cosmetics .description-el-7 {
  width: 129px;
  margin-left: 410px;
  top: 250px;
}
.category-cosmetics .description-el-8 {
  margin-left: -550px;
  top: 580px;
}
.category-cosmetics .description-el-9 {
  top: 500px;
  margin-left: 900px;
}
.category-cosmetics .description-el-10 {
  top: 250px;
  margin-left: 780px;
}
.category-cosmetics .description-el-11 {
  width: 409px;
  margin-left: 495px;
  top: 587px;
}
.category-cosmetics .description-el-12 {
  width: 386px;
  margin-left: -1030px;
  top: 650px;
}
.category-cosmetics .color {
  fill: #ff6ccd;
  opacity: 0.5;
}
.category-sport .description-top {
  background: #c8dff1;
}
.category-sport .description-top::before {
  background: #c8dff1;
}
.category-sport .description-img-1 {
  margin-left: -980px;
}
.category-sport .description-img-2 {
  margin-left: 400px;
}
.category-sport .description-el-6 {
  top: 140px;
  margin-left: 780px;
}
.category-sport .description-el-7 {
  width: 129px;
  margin-left: 450px;
  top: 250px;
}
.category-sport .description-el-8 {
  margin-left: 630px;
  top: 90px;
}
.category-sport .description-el-9 {
  top: 480px;
  margin-left: 860px;
}
.category-sport .description-el-10 {
  width: 567px;
  margin-left: 570px;
  top: 580px;
}
.category-sport .description-el-11 {
  width: 362px;
  margin-left: -780px;
  top: 720px;
}
.category-sport .color {
  fill: #1c9cff;
  opacity: 0.5;
}
.category-for-pets .description-top {
  background: #bfefde;
}
.category-for-pets .description-top::before {
  background: #bfefde;
}
.category-for-pets .description-img-1 {
  margin-left: -900px;
}
.category-for-pets .description-img-2 {
  margin-left: 400px;
  top: 140px;
}
.category-for-pets .description-el-6 {
  top: 320px;
  width: 90px;
  margin-left: 760px;
}
.category-for-pets .description-el-7 {
  margin-left: -920px;
  top: 240px;
}
.category-for-pets .description-el-8 {
  margin-left: 740px;
  top: 100px;
}
.category-for-pets .description-el-9 {
  width: 362px;
  top: 700px;
  margin-left: -820px;
}
.category-for-pets .description-el-10 {
  width: 212px;
  margin-left: 590px;
  top: 750px;
}
.category-for-pets .color {
  fill: #00be7a;
  opacity: 0.5;
}
.production .sample-top {
  background: #dee1f0;
}
.production-img-1 {
  top: 160px;
  margin-left: -950px;
}
.production-img-2 {
  top: 100px;
  margin-left: 500px;
}
.production .sample-el-1 {
  margin-left: -950px;
  top: 130px;
}
.production .sample-el-2 {
  margin-left: -700px;
  top: 920px;
}
.production .sample-el-3 {
  margin-left: -650px;
  top: 140px;
}
.production .sample-el-4 {
  top: 100px;
  margin-left: 500px;
}
.production .sample-el-5 {
  bottom: -25px;
  margin-left: 800px;
}
.production .sample-el-6 {
  margin-left: 800px;
  bottom: 400px;
}
.production .sample-el-7 {
  margin-left: -1150px;
  top: 300px;
}
.production .sample-el-8 {
  margin-left: -800px;
  top: 120px;
}
.production .sample-el-9 {
  margin-left: -1000px;
  top: 2000px;
}
.production .sample-el-10 {
  margin-left: -750px;
  bottom: 700px;
}
.production .sample-el-11 {
  margin-left: 500px;
  bottom: 1600px;
}
.production .sample-el-12 {
  margin-left: -750px;
  top: 480px;
}
.production .sample-el-13 {
  margin-left: 550px;
  top: 1400px;
}
.lab .sample-top {
  background: #bfefde;
}
.lab-img-1 {
  top: 160px;
  margin-left: -950px;
}
.lab-img-2 {
  top: 100px;
  margin-left: 320px;
}
.lab .sample-el-1 {
  top: 750px;
  margin-left: -600px;
}
.lab .sample-el-2 {
  bottom: -40px;
  margin-left: -1140px;
}
.lab .sample-el-3 {
  top: 760px;
  margin-left: 630px;
}
.lab .sample-el-4 {
  bottom: -20px;
  top: auto;
  margin-left: 150px;
}
.lab .sample-el-5 {
  top: 360px;
  margin-left: 880px;
}
.lab .sample-el-6 {
  top: 150px;
  margin-left: 800px;
}
.lab .sample-el-7 {
  top: 650px;
  margin-left: 600px;
}
.lab .sample-el-8 {
  bottom: 400px;
  top: auto;
  margin-left: -850px;
}
.lab .sample-el-9 {
  top: 450px;
  margin-left: -850px;
}
.lab .sample-el-10 {
  bottom: 750px;
  margin-left: 550px;
}
.trademarks .sample-top {
  background: #c8dff1;
}
.trademarks .list__el span {
  color: #1b75bb;
}
.trademarks-img-1 {
  top: 170px;
  margin-left: -900px;
}
.trademarks-img-2 {
  top: 150px;
  margin-left: 470px;
}
.trademarks .sample-el-1 {
  bottom: -15px;
  margin-left: -1000px;
}
.trademarks .sample-el-2 {
  top: 100px;
  margin-left: -1150px;
}
.trademarks .sample-el-3 {
  margin-left: 350px;
  top: 220px;
}
.trademarks .sample-el-4 {
  margin-left: 600px;
  top: 0;
}
.trademarks .sample-el-5 {
  top: 1200px;
  margin-left: -950px;
}
.trademarks .sample-el-6 {
  top: 500px;
  margin-left: 550px;
}
.trademarks .sample-el-7 {
  bottom: 1100px;
  margin-left: 550px;
}
.trademarks .sample-el-8 {
  top: 600px;
  margin-left: -950px;
}
.error_page {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  min-height: 100%;
}
.error-404 {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  height: 100%;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 120px 0 150px;
}
.error-404-bl {
  position: relative;
  width: 837px;
  height: 582px;
  background: url("") no-repeat center top/contain;
  margin-bottom: 40px;
}
.error-404-bl::after {
  content: "";
  position: absolute;
  width: 125px;
  height: 148px;
  bottom: 0;
  left: 10%;
  background: url("");
}
.error-404__img {
  position: absolute;
  width: 57%;
  height: auto;
  top: 28%;
  left: 22%;
}
.error-404__btn {
  text-align: center;
}
.error-404-el-1 {
  left: -2%;
  bottom: 20%;
}
.error-404-el-2 {
  right: -5%;
  top: 45%;
}
.error-404-el-3 {
  top: 28%;
  left: 58%;
}
.privacy {
  padding-top: 100px;
  position: relative;
}
.privacy_page {
  background: #e9deeb;
}
.privacy_page .footer {
  background: #e9deeb;
}
.privacy-link {
  color: #1b75bb;
  text-decoration: none;
}
.privacy-link:hover {
  text-decoration: underline;
}
.privacy-el-1 {
  margin-left: 500px;
  top: 400px;
}
.privacy-el-2 {
  margin-left: -400px;
  top: 0;
}
.privacy-el-3 {
  margin-left: 400px;
  top: 0;
}
.privacy-el-4 {
  margin-left: -900px;
  top: 150px;
}
.privacy-el-5 {
  top: 850px;
  margin-left: 450px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.privacy-el-6 {
  top: 1050px;
  margin-left: -750px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.privacy-el-7 {
  bottom: 100px;
  margin-left: 450px;
}
.privacy-el-8 {
  bottom: 500px;
  margin-left: -700px;
}
.privacy-el-9 {
  bottom: 1200px;
  margin-left: 700px;
}
.privacy-el-10 {
  bottom: 1500px;
  margin-left: -700px;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.privacy-el-11 {
  top: 200px;
  margin-left: 100px;
}
.private-label [class*="sample-el"] {
  left: unset;
  z-index: 0;
}
.private-label .sample-el-1 {
  left: calc(50% + 880px);
  top: 420px;
}
.private-label .sample-el-2 {
  left: calc(50% - 730px);
  top: 275px;
}
.private-label .sample-el-3 {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  left: calc(50% + 810px);
  top: 719px;
}
.private-label .sample-el-4 {
  left: calc(50% + 880px);
  top: 1807px;
}
.private-label .sample-el-5 {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  left: calc(50% - 910px);
  bottom: 169px;
}
.private-label .sample-top {
  background: rgba(195, 197, 245, 0.25);
  padding-bottom: 40px;
}
.private-label .sample-top .container {
  position: relative;
}
.private-label .sample-bottom .container {
  position: relative;
  z-index: 1;
}
.private-label .sample-img--left {
  top: -26px;
  left: 100px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.private-label .sample-img--right {
  left: auto;
  top: -12px;
  right: 187px;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}
.private-label .sample-wrap {
  position: relative;
  z-index: 2;
}
.private-label__cards {
  max-width: 1700px;
  margin: auto;
  padding-top: 50px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.private-label__cards .cards-row {
  display: -webkit-box;
  display: flex;
  margin-left: -11px;
  margin-right: -11px;
}
.private-label__cards .card {
  max-width: calc(25% - 22px);
}
.private-label__cards .card__title {
  color: #404040;
}
.c-manufacturing__subtitle {
  text-align: center;
  margin-bottom: 50px;
}
.c-manufacturing__cards {
  padding-top: 40px;
}
.c-manufacturing .cards-row {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
}
.c-manufacturing .card {
  max-width: calc(25% - 22px);
  margin: 0 11px 22px;
}
.c-manufacturing .card__title {
  color: #757575;
  font-weight: 700;
  margin-bottom: 12px;
}
.c-manufacturing .sample-img--left {
  top: 20px;
  left: 153px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.c-manufacturing .sample-img--right {
  left: auto;
  top: -25px;
  right: 68px;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}
.c-manufacturing .sample-el-1 {
  left: calc(50% + 880px);
  top: 370px;
}
.c-manufacturing .sample-el-2 {
  left: calc(50% - 600px);
  top: 225px;
}
.c-manufacturing .sample-el-6 {
  left: calc(50% - 600px);
  top: 900px;
}
.c-manufacturing .sample-el-3 {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  left: calc(50% + 810px);
  top: 675px;
}
.c-manufacturing .sample-el-4 {
  left: calc(50% + 880px);
  top: 1265px;
}
.c-manufacturing .sample-el-5 {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  left: calc(50% - 910px);
  bottom: 282px;
}
.c-raw-materials {
  margin-bottom: 55px;
  overflow: hidden;
  position: relative;
}
.c-raw-materials .sample-el-1 {
  left: calc(50% + -570px);
  top: 50px;
}
.c-raw-materials .sample-el-2 {
  left: calc(50% - 1080px);
  top: 265px;
}
.c-raw-materials .sample-el-3 {
  left: calc(50% + -600px);
  top: 880px;
}
.c-raw-materials .sample-el-4 {
  left: calc(50% + 880px);
  top: 137px;
}
.c-raw-materials .sample-el-6 {
  left: calc(50% + 880px);
  top: 1030px;
}
.c-raw-materials .sample-el-7 {
  left: calc(50% + -600px);
  top: 1550px;
}
.c-raw-materials .sample-el-8 {
  left: calc(50% - -880px);
  top: 2415px;
}
.c-raw-materials .sample-el-9 {
  left: calc(50% - -810px);
  top: 1335px;
  -webkit-transform: scale(-1);
  transform: scale(-1);
}
.c-raw-materials .sample-el-10 {
  left: calc(50% - 930px);
  top: 2635px;
}
.c-raw-materials .sample-el-11 {
  left: calc(50% + -850px);
  top: 3300px;
}
.c-raw-materials .sample-el-12 {
  left: calc(50% - -132px);
  top: 4275px;
}
.c-raw-materials .sample-el-13 {
  left: calc(50% - 950px);
  top: 3765px;
  -webkit-transform: scale(-1);
  transform: scale(-1);
}
.c-raw-materials .sample-el-14 {
  left: calc(50% - -770px);
  top: 3435px;
}
.c-raw-materials__block {
  background: rgba(195, 197, 245, 0.25);
  padding: 70px 0;
}
.c-raw-materials__title {
  margin-bottom: 30px;
}
.c-raw-materials__text.text {
  margin-bottom: 50px;
}
.c-raw-materials__cards {
  max-width: 1700px;
  margin: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.c-raw-materials__cards .card:not(:last-of-type) {
  margin-bottom: 22px;
}
.c-raw-materials__cards .card__title {
  color: #404040;
}
.c-raw-materials__cards-column {
  max-width: calc(100% / 3);
  width: 100%;
}
.c-raw-materials .sample-img--left {
  top: 59px;
  left: 153px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.c-raw-materials .sample-img--right {
  left: auto;
  top: 55px;
  right: 218px;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}
.order_page .container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.order_page .form__btn {
  display: -webkit-box;
  display: flex;
  margin: 50px auto 0;
  -webkit-box-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: 100%;
}
.order_page .t_xs {
  color: #404040;
}
.order_page .textarea {
  height: 119px;
}
.order_page .wrap_block {
  padding: 130px 0;
}
.order_page .container {
  position: relative;
}
.order_page .order-img {
  position: absolute;
}
.order_page .order-img-left {
  left: 0;
}
.order_page .order-img-right {
  right: 0;
}
.order_page .wrap {
  max-width: 886px;
  margin: auto;
  position: relative;
}
.order_page .main_block {
  padding: 10px 20px 70px;
  background: #fff;
  margin-top: 40px;
}
.order_page .flex_block {
  margin: 16px -4px 26px;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
.order_page .block-1 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin: 10px -10px 30px;
}
.order_page .block-1 .input-wrap {
  width: 31%;
  margin: 10px;
}
.order_page .custom-radio {
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 50px;
  display: inline-block;
  background: #fafafa;
  border: 2px solid #fafafa;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin: 4px;
  padding-right: 25px;
}
.order_page .custom-radio.selected {
  border: 2px solid #1b75bb;
  background: #1b75bb0d;
}
.order_page .custom-radio.selected .text {
  color: #1b75bb;
}
.order_page .custom-radio.selected .fico-checktag {
  display: inline-block;
  color: #1b75bb;
}
.order_page .custom-radio.selected .fico-cross {
  display: none;
}
.order_page .custom-radio input {
  display: none;
}
.order_page .block-2 {
  position: relative;
}
.order_page .block-2 .custom-radio {
  width: 49%;
}
.order_page .block-3 {
  position: relative;
}
.order_page .block-3 .custom-radio {
  width: 24%;
}
.order_page .block-3 .input-wrap-dop {
  margin: 4px;
  width: 74%;
}
.order_page .block-3 .input-wrap-dop textarea {
  height: 50px;
  line-height: 1.2;
}
.order_page .plus_block {
  padding: 0;
}
.order_page .plus_block.selected .fico-checktag {
  color: #1b75bb;
  display: inline-block;
}
.order_page .plus_block.selected .fico-cross {
  display: none;
}
.order_page .block-4 {
  display: -webkit-box;
  display: flex;
  margin: 0 -10px 30px;
}
.order_page .block-4 .row {
  width: 50%;
  margin: 0 10px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.order_page .block-4 .row .input-wrap {
  margin-top: auto;
}
.order_page .block-4 .row .text {
  margin-bottom: 20px;
}
.order_page .block-5 {
  position: relative;
}
.order_page .block-5 .input-wrap {
  width: 49%;
}
.order_page .block-6 {
  position: relative;
}
.order_page .block-6 .input-wrap {
  width: 32%;
}
.order_page .block-6 .text {
  text-align: center;
  line-height: 1;
}
.order_page .block-6 .text span {
  font-size: 12px;
  display: block;
  white-space: nowrap;
}
.order_page .block-10 {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.order_page .block-10 .text {
  margin-bottom: 20px;
}
.order_page .block-10 .row {
  width: 60%;
}
.order_page .block-10 .row2 {
  width: 290px;
  margin-left: 50px;
}
.order_page .block-10 .input-file {
  margin: 0;
  border: 2px solid #1b75bb;
  padding: 11px 30px;
  cursor: pointer;
}
.order_page .block-10 .input-file span {
  font-size: 16px;
}
.order_page .block-10 .input-file .file__success {
  text-align: center;
}
.order_page .block-10 .input-wrap {
  margin: 30px 0 0;
}
.order_page .sample-el-1 {
  top: -1%;
  right: 32%;
}
.order_page .sample-el-2 {
  bottom: 20%;
  left: 10%;
}
.order_page .sample-el-3 {
  top: 40%;
}
.order_page .sample-el-4 {
  right: 5%;
  top: 50%;
}
.order_page .input-wrap {
  position: relative;
}
.order_page .errorblock {
  color: red;
  font-size: 12px;
  position: absolute;
  bottom: -18px;
  left: 0;
  opacity: 0;
}
.order_page .errorblock.show {
  opacity: 1;
}
.input-wrap .fico {
  font-size: 12px;
  margin-right: 8px;
}
.input-wrap .fico-cross {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.input-wrap .fico-checktag {
  display: none;
}
.btn__loader {
  margin-left: 10px;
  display: none;
}
.btn.submitting {
  opacity: 0.9;
  cursor: not-allowed;
}
.btn.submitting .btn__loader {
  display: block;
}
.c-p-formulations .btn {
  margin-top: 38px;
  padding: 17px 93px;
}
.c-p-formulations .t_xs {
  color: #404040;
  line-height: 120%;
}
.c-p-formulations .title {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.c-p-formulations .mobile_done {
  display: none;
}
.c-p-formulations .wrap {
  padding: 55px 0 0;
}
.c-p-formulations .container {
  position: relative;
  padding: 85px 15px;
}
.c-p-formulations .flex_block {
  display: -webkit-box;
  display: flex;
  position: relative;
}
.c-p-formulations .flex_block .block {
  width: 50%;
}
.c-p-formulations .block-1 {
  background: #c8dff1;
}
.c-p-formulations .block-1 .text {
  margin-bottom: 12px;
}
.c-p-formulations .block-1 .t_xs {
  margin-bottom: 12px;
}
.c-p-formulations .block-1 .left_block {
  margin-right: 22px;
}
.c-p-formulations .block-1 .img_block {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin: 60px 0 20px;
}
.c-p-formulations .block-1 .logo_block .text {
  text-align: end;
}
.c-p-formulations .block-1 .sample-el-1 {
  right: 5%;
  top: 22%;
}
.c-p-formulations .block-1 .sample-el-2 {
  right: 30%;
  top: 2%;
}
.c-p-formulations .block-1 .sample-el-3 {
  top: 8%;
  left: 4%;
}
.c-p-formulations .stages_block .stage {
  max-width: 300px;
}
.c-p-formulations .stages_block .stage__title {
  font-size: 30px;
}
.c-p-formulations .block-2 {
  background: rgba(255, 255, 255, 0.5);
}
.c-p-formulations .block-2 .btn {
  display: -webkit-box;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.c-p-formulations .block-2 .sample-el-1 {
  right: 1%;
  top: 12%;
}
.c-p-formulations .block-2 .sample-el-2 {
  right: 20%;
  bottom: 10%;
}
.c-p-formulations .block-2 .sample-el-3 {
  top: 8%;
  left: 0;
}
.c-p-formulations .block-3 {
  background: #c8dff1;
}
.c-p-formulations .block-3 .title {
  text-align: left;
}
.c-p-formulations .block-3 .btn {
  margin: 50px auto 0;
  display: -webkit-box;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-p-formulations .block-3 .flex_block div {
  width: 50%;
}
.c-p-formulations .block-3 .flex_block .img_block {
  margin-left: 80px;
}
.c-p-formulations .block-3 .flex_block .img_block .mob {
  display: none;
}
.c-p-formulations .block-3 .flex_block .img_block img {
  width: 100%;
}
.c-p-formulations .block-4 {
  padding: 0;
}
.c-p-formulations .block-4 .title {
  padding: 0 15px;
}
.c-p-formulations .block-4 .container {
  padding: 50px 0 0;
}
.c-p-formulations .block-4 .packaging-bottom {
  margin-top: 40px;
}
.c-p-formulations .block-4 .production-wrap .pack-wrap {
  padding: 0;
}
.c-p-formulations .block-4 .production-wrap .pack {
  width: calc((100% - 860px) / 6);
}
.c-p-formulations .block-4 .production-wrap .pack:first-child .pack-wrap {
  border-left: 8px solid #fafafa;
}
.c-p-formulations .slider_liquid-formulations {
  margin-top: 30px;
}
.list__el {
  color: #404040;
}
.list__el:before {
  background: #404040;
}
.list__title {
  font-weight: 700;
}
.list__text {
  color: #757575;
}
.filling-and-packaging-services .stages_block .stage {
  width: auto;
}
.filling-and-packaging-services .stages_block .stage__title {
  font-size: 24px;
}
.filling-and-packaging-services .block-1 .btn {
  margin-top: 0;
}
.filling-and-packaging-services .block-1 .left_block .t_xs {
  max-width: 505px;
}
.filling-and-packaging-services .block-1 .left_block .text {
  max-width: 770px;
}
.filling-and-packaging-services .block-1 h1 ~ h2 {
  text-align: center;
}
.filling-and-packaging-services .block-1 h1 ~ h2 ~ .text {
  text-align: center;
}
.filling-and-packaging-services .block-1 .text,
.filling-and-packaging-services .block-1 h2 {
  position: relative;
  z-index: 2;
}
.filling-and-packaging-services .block-1 .text {
  margin-bottom: 0;
}
.filling-and-packaging-services .block-1__subtitle-2.t_xs {
  margin-bottom: 30px;
  margin-top: 50px;
}
.filling-and-packaging-services .block-1__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  justify-content: space-between;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto 50px;
}
.filling-and-packaging-services .block-1__item {
  width: 100%;
  margin-bottom: 12px;
}
.filling-and-packaging-services .block-1__item:last-of-type {
  margin-bottom: 0;
}
.filling-and-packaging-services .block-1__bottom {
  width: 100%;
  margin: 50px auto 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.filling-and-packaging-services .block-1__bottom .img_block {
  margin: 0;
}
.filling-and-packaging-services
  .block-1__bottom
  .img_block
  div:not(:last-of-type) {
  margin-right: 127px;
}
.filling-and-packaging-services .block-2 .title {
  margin-bottom: 50px;
}
.filling-and-packaging-services .block-2__bottom {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-top: 50px;
}
.filling-and-packaging-services .block-2__col {
  max-width: calc(100% / 2 - 10px);
  width: 100%;
}
.filling-and-packaging-services .block-3 {
  background: #c8dff1;
}
.filling-and-packaging-services .block-3 .flex_block {
  margin-bottom: 30px;
}
.filling-and-packaging-services
  .block-3
  .slider_block_packing
  .slider
  .characteristic_block {
  height: 288px;
  bottom: 150px;
  overflow: auto;
}
.filling-and-packaging-services
  .block-3
  .slider_block_packing
  .slider
  .characteristic_block::-webkit-scrollbar {
  width: 10px;
}
.filling-and-packaging-services
  .block-3
  .slider_block_packing
  .slider
  .characteristic_block::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.filling-and-packaging-services
  .block-3
  .slider_block_packing
  .slider
  .characteristic_block::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
  border: 2px solid #fff;
}
.filling-and-packaging-services
  .block-3
  .slider_block_packing
  .slider
  .characteristic_block::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.filling-and-packaging-services
  .block-3
  .slider_block_packing
  .slick-list:before {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, rgba(211, 232, 248, 0)),
    color-stop(53%, #fafafa)
  );
  background: linear-gradient(90deg, rgba(211, 232, 248, 0) 0, #fafafa 53%);
}
.filling-and-packaging-services .block-4 {
  background: #fafafa;
}
.filling-and-packaging-services .block-4 .container {
  padding-top: 85px;
  padding-bottom: 40px;
}
.filling-and-packaging-services
  .block-4
  .production-wrap
  .pack:first-child
  .pack-wrap {
  border-left: none;
}
.filling-and-packaging-services .block-5 {
  background: #fff;
}
.filling-and-packaging-services .block-5 .title {
  margin-bottom: 30px;
}
.filling-and-packaging-services .block-5 .title ~ .text {
  text-align: center;
  margin-bottom: 50px;
}
.filling-and-packaging-services .block-5__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  align-items: flex-start;
}
.filling-and-packaging-services .block-5__item {
  max-width: 260px;
  width: 100%;
}
.filling-and-packaging-services .block-5__item:not(:last-of-type) {
  margin-right: 100px;
}
.capacity {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.capacity__photo {
  flex-shrink: 0;
  margin-right: 20px;
}
.capacity__number {
  line-height: 80%;
  font-family: "Secular One", sans-serif;
  color: #404040;
  font-size: 78px;
}
.capacity__text {
  line-height: 90%;
}
.c-c-formulations .list__title {
  margin-bottom: 4px;
}
.c-c-formulations .block-2 .title {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.ready-made {
  font-family: Roboto;
}
.ready-made .wrap {
  padding-top: 114px;
}
.ready-made .block-1 {
  padding-bottom: 69px;
  position: relative;
}
.ready-made .block-1 .el.sample-el-1 {
  bottom: auto;
  left: auto;
  right: 95px;
  top: 165px;
}
.ready-made .block-1 .el.sample-el-2 {
  left: 60%;
  top: -45px;
}
.ready-made .block-1 .el.sample-el-3 {
  bottom: 230px;
  left: 325px;
}
.ready-made .block-1 .breadcrumbs {
  margin-bottom: 30px;
}
.ready-made .block-1 .breadcrumbs__item a,
.ready-made .block-1 .breadcrumbs__item span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.ready-made .block-1 .breadcrumbs__item:last-child * {
  font-weight: 700;
}
.ready-made .block-1 .title-row {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 40px;
}
.ready-made .block-1 .title {
  font-family: Secular One;
  font-size: 78px;
  font-weight: 400;
  line-height: 84.63px;
}
.ready-made .block-1 .subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 14.5px 0;
}
.ready-made .block-2 {
  background: #c8dff1;
  padding: 93px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ready-made .block-2 .title {
  font-size: 78px;
  line-height: 78px;
  margin: 0 auto 30px;
  max-width: 1100px;
}
.ready-made .block-2 .text {
  max-width: 1030px;
  margin: 0 auto;
  color: #404040;
}
.ready-made .block-2 .el.sample-el-1 {
  bottom: -80px;
  left: 120px;
}
.ready-made .block-2 .el.sample-el-2 {
  display: none;
}
.ready-made .block-2 .el.sample-el-3 {
  bottom: 11px;
  left: 170px;
}
.ready-made .block-3 {
  background-color: #fff;
  padding: 85px 0;
}
.ready-made .block-3 .text {
  margin-bottom: 0;
}
.ready-made .block-3 .title {
  margin-bottom: 30px;
  text-align: center;
  font-family: Secular One;
  font-size: 78px;
  line-height: 84.63px;
}
.ready-made .block-3 .accordion-bl-title {
  padding-right: 30px;
  padding-left: 0;
}
.ready-made .block-3 .accordion__icon {
  left: auto;
  right: 0;
}
.ready-made .block-3 .accordion-bl-content {
  padding-right: 30px;
  padding-left: 0;
}
.ready-made .block-3 .accordion-bl {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #0000004d;
}
.ready-made .block-3 .accordion-bl:last-of-type {
  margin-bottom: 0;
}
.ready-made .block-3 .accordion {
  width: 100%;
  max-width: 1010px;
}
.goods {
  display: -webkit-box;
  display: flex;
  gap: 90px;
  position: relative;
  z-index: 1;
}
.goods__col--filter {
  width: 260px;
}
.goods__col--grid {
  width: 100%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
  -webkit-box-flex: 1;
  flex: 1;
}
.goods__item {
  width: calc((100% - 30px * 3) / 4);
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.goods__item--hidden {
  display: none;
}
.goods__picture {
  display: block;
  margin-bottom: 10px;
  width: 100%;
}
.goods__description {
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
  margin-bottom: 6px;
}
.goods__name {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 20px;
}
.goods__button {
  font-size: 21px;
  font-weight: 400;
  line-height: 24.61px;
  border: 3px solid #1b75bb;
  color: #1b75bb;
  padding: 4px 19px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 39px;
  margin-top: auto;
}
.filter__title {
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  color: #404040;
  margin-bottom: 20px;
}
.filter__wrap {
  padding-bottom: 16px;
  border-bottom: 1px solid #0000004d;
}
.filter__wrap--shown .filter__inner {
  display: block;
}
.filter__wrap--shown .filter__button::before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
}
.filter__wrap ~ .filter__wrap {
  margin-top: 16px;
}
.filter__row {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  cursor: pointer;
}
.filter__name {
  font-size: 21px;
  font-weight: 400;
  line-height: 31.5px;
  color: #757575;
}
.filter__inner {
  padding-top: 16px;
  display: none;
}
.filter__button {
  border: none;
  background: 0 0;
  outline: 0;
  height: 17px;
  width: 17px;
  position: relative;
}
.filter__button::after,
.filter__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #757575;
}
.filter__button::after {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.filter__button::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.filter__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 4px;
}
.filter__link {
  font-size: 21px;
  font-weight: 400;
  line-height: 31.5px;
  color: #757575;
  text-decoration: none;
}
.filter__link:hover {
  color: #1b75bb;
}
.custom-checkbox {
  display: block;
  position: relative;
  padding-left: 34px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-checkbox:hover {
  color: #1b75bb;
}
.custom-checkbox:hover .custom-checkbox__checkmark {
  border-color: #1b75bb;
}
.custom-checkbox input {
  position: relative;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkbox__checkmark {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateY(-1px);
  transform: translateY(-50%) translateY(-1px);
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #fff;
  border: 2px solid #757575;
}
.custom-checkbox__checkmark::after {
  display: none;
  content: "";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #1b75bb;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.custom-checkbox input:checked ~ .custom-checkbox__checkmark {
  border-color: #1b75bb;
}
.custom-checkbox input:checked ~ .custom-checkbox__checkmark::after {
  display: block;
}
.custom-checkbox input:checked ~ .custom-checkbox__text {
  color: #1b75bb;
}
.select2-search--dropdown .select2-search__field {
  padding: 10px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 2px solid #38755e
}
.select2-search--dropdown {
  padding: 4px 10px;
}
.ready-made-review {
  font-family: Roboto;
}
.ready-made-review .wrap {
  padding-top: 82px;
  background-color: #fff;
}
.ready-made-review .block-1 {
  background-color: #fff;
  padding-bottom: 69px;
  position: relative;
}
.ready-made-review .block-1 .back {
  display: -webkit-box;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  align-items: center;
  color: #404040;
  text-decoration: none;
  font-size: 21px;
  font-weight: 400;
  line-height: 31.5px;
  margin-bottom: 20px;
}
.ready-made-review .block-1 .el.sample-el-1 {
  display: none;
}
.ready-made-review .block-1 .el.sample-el-2 {
  left: 700px;
  top: -10px;
}
.ready-made-review .block-1 .el.sample-el-3 {
  display: none;
}
.ready-made-review .block-1 .breadcrumbs {
  margin-bottom: 30px;
}
.ready-made-review .block-1 .breadcrumbs__item a,
.ready-made-review .block-1 .breadcrumbs__item span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}
.ready-made-review .block-1 .breadcrumbs__item:last-child * {
  font-weight: 700;
}
.ready-made-review .block-1 .title {
  font-family: Secular One;
  font-size: 50px;
  font-weight: 400;
  line-height: 54.25px;
  margin-bottom: 30px;
}
.ready-made-review .block-1 .text {
  font-size: 21px;
  font-weight: 400;
  line-height: 27.3px;
  color: #404040;
  margin-bottom: 20px;
}
.ready-made-review .block-1 .text.compound {
  color: #757575;
  margin-bottom: 60px;
}
.ready-made-review .block-1 .subtitle {
  font-size: 21px;
  font-weight: 700;
  line-height: 27.3px;
  color: #404040;
  margin-bottom: 10px;
}
.ready-made-review .block-1 .columns {
  display: -webkit-box;
  display: flex;
  gap: 76px;
}
.ready-made-review .block-1 .columns .column--text {
  max-width: 617px;
}
.ready-made-review .block-2 {
  background-color: #c8dff1;
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ready-made-review .block-2 .el.sample-el-1 {
  bottom: auto;
  left: auto;
  right: 10px;
  top: 30px;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}
.ready-made-review .block-2 .el.sample-el-2 {
  display: none;
}
.ready-made-review .block-2 .el.sample-el-3 {
  bottom: 35%;
  left: 10px;
}
.ready-made-review .block-2 .title {
  font-size: 50px;
  line-height: 54.25px;
  margin: 0 0 40px;
}
.ready-made-review .block-2 .no-slider {
  display: -webkit-box;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1354px;
  margin: 0 auto;
  text-align: left;
  -webkit-box-pack: center;
  justify-content: center;
}
.ready-made-review .block-2 .no-slider .t_xs {
  font-size: 24px;
  font-weight: 500;
  line-height: 28.8px;
  min-height: 120px;
  color: #404040;
  padding-right: 33px;
  padding-left: 33px;
}
.ready-made-review .block-2 .no-slider .main_block {
  width: 316px;
  min-width: 316px;
  border: 2px solid #fff;
}
.ready-made-review .block-2 .no-slider .main_block img {
  display: block;
  max-width: 290px;
  height: auto;
  margin: 0 auto;
}
.ready-made-review .block-2 .no-slider .main_block .checkmark {
  display: none;
  position: absolute;
  top: 20px;
  left: 23px;
}
.ready-made-review .block-2 .no-slider .input {
  opacity: 0;
  position: relative;
  z-index: -1;
  height: 0;
  width: 0;
  display: block;
  margin: 0;
}
.ready-made-review .block-2 .no-slider .input:checked ~ .main_block {
  border: 2px solid #1b75bb;
}
.ready-made-review .block-2 .no-slider .input:checked ~ .main_block .checkmark {
  display: block;
}
.ready-made-review
  .block-2
  .no-slider
  .input:checked
  ~ .main_block
  .characteristic_block {
  display: none;
}
.ready-made-review .block-3 {
  background-color: #fff;
  padding: 100px 0 110px;
  position: relative;
}
.ready-made-review .block-3 .el.sample-el-1 {
  display: none;
}
.ready-made-review .block-3 .el.sample-el-2 {
  display: none;
}
.ready-made-review .block-3 .el.sample-el-3 {
  bottom: 245px;
  right: 7%;
}
.ready-made-review .block-3 .title {
  font-family: Secular One;
  font-size: 50px;
  font-weight: 400;
  line-height: 54.25px;
  color: #404040;
  text-align: center;
  margin-bottom: 40px;
}
.ready-made-review .block-3 .contacts-form-wrap {
  padding: 0;
  max-width: 1006px;
}
.ready-made-review .block-3 .contacts-form-wrap .contacts-form__col {
  width: calc(100% / 3);
}
.ready-made-review .block-3 .contacts-form-wrap .contacts-form__row {
  margin-bottom: 20px;
}
.ready-made-review .block-3 .contacts-form-wrap .form__btn {
  width: 270px;
  margin-top: 10px;
  width: 100%;
}
.ready-made-review .picture-gallery__list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ready-made-review .picture-gallery__item {
  -webkit-box-flex: 1;
  flex: 1;
}
.ready-made-review .picture-gallery__item--half {
  min-width: calc((100% - 10px * 1) / 2);
}
.ready-made-review .picture-gallery__item--third {
  min-width: calc((100% - 10px * 2) / 3);
}
.ready-made-review .picture-gallery__picture {
  display: block;
  width: 100%;
  height: auto;
}
.ready-made-review .order-info {
  padding: 16px 0;
  border-top: 1px solid #0000004d;
  border-bottom: 1px solid #0000004d;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  min-height: 71px;
}
.ready-made-review .order-info__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  color: #404040;
  max-width: 215px;
}
.ready-made-review .order-info__value {
  font-size: 36px;
  font-weight: 400;
  line-height: 39px;
  color: #404040;
}
@media screen and (max-width: 991px) and (min-width: 992px) {
  .equipment-box-img img {
    pointer-events: none;
  }
  .manufacturing-box img {
    pointer-events: none;
  }
  .rddepartment-box img {
    pointer-events: none;
  }
}
@media screen and (max-width: 1750px) {
  .container {
    width: 1170px;
  }
  .main__block{
    gap: 64px
  }
  .card__list {
    font-size: 18px;
  }
  .t_xl {
    font-size: 100px;
  }
  .t_lg {
    font-size: 70px;
  }
  .t_md {
    font-size: 55px;
  }
  .nav .container {
    padding-left: 230px;
  }
  .nav__logo {
    width: 200px;
  }
  .menu__item > a {
    font-size: 20px;
  }
  .submenu-title,
  .submenu__item > a {
    font-size: 20px;
  }
  .sample-wrap {
    max-width: 600px;
  }
  .footer-contacts {
    padding-top: 10px;
  }
  .footer-right {
    max-width: 150px;
    padding-left: 0;
    width: 100%;
  }
  .footer-social {
    padding-top: 10px;
    margin-bottom: 10px;
  }
  .footer-logo {
    width: 100%;
    flex-shrink: 0;
  }
  .footer-logo img {
    width: 250px;
  }
  .f-contact {
    margin-bottom: 24px;
  }
  .stage__photo {
    margin-right: 10px;
  }
  .contacts-footer .logo_block img {
    max-width: 500px;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .primary-box {
    min-height: 550px;
  }
  .primary-box #lottie {
    -webkit-transform: translate(-356.5px, -337px);
    transform: translate(-356.5px, -337px);
    width: 713px;
    height: 665px;
  }
  .primary-box-img {
    width: 590px;
  }
  .primary__logo {
    width: 300px;
    margin-bottom: 55px;
  }
  .primary__title {
    margin-bottom: 24px;
  }
  .catalog-slider {
    width: 2500px;
    margin-left: -1200px;
  }
  .catalog-sl img {
    width: 600px;
    height: auto;
  }
  .catalog-el-2 {
    margin-left: 350px;
  }
  .catalog-el-4 {
    margin-left: 500px;
  }
  .catalog-el-5 {
    margin-left: -620px;
  }
  .laboratory-box {
    min-height: 540px;
    padding-right: 50%;
  }
  .laboratory-box-img {
    width: 570px;
  }
  .lab-box-img {
    width: 570px;
  }
  .laboratory-box #lottie2 {
    -webkit-transform: translate(-344px, -323px);
    transform: translate(-344px, -323px);
    width: 691px;
    height: 644px;
  }
  .formulations__text,
  .formulations__title {
    padding: 0 150px;
  }
  .formulations-el-1 {
    width: 150px;
    right: -20px;
  }
  /* .card-prod {
    width: 335px;
    margin-right: 65px;
    margin-bottom: 30px;
  } */
  .label__title {
    margin-bottom: 20px;
  }
  .label-bottom {
    min-height: 600px;
  }
  .label-img {
    width: 300px;
    height: 589px;
  }
  .label-img #lottie3 {
    width: 512px;
    height: 695px;
    -webkit-transform: translate(-269px, -353px);
    transform: translate(-269px, -353px);
  }
  .label-list {
    padding: 0;
  }
  .label-list-wrap {
    min-height: auto;
  }
  .label-bl {
    width: calc(50% - 115px);
  }
  .label-el-1 {
    left: -120px;
  }
  .label-el-3 {
    width: 100px;
    top: auto;
    bottom: -50px;
  }
  .packaging__title {
    padding: 0 100px;
  }
  .packaging__text {
    padding: 0 100px;
  }
  .pack {
    width: calc((100% - 700px) / 5);
  }
  .pack-wrap {
    font-size: 18px;
  }
  .pack-sizes {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .pack__s_big {
    font-size: 30px;
  }
  .pack__text {
    margin-bottom: 15px;
  }
  .pack__img {
    width: 230px;
    left: 30px;
  }
  .pack__img img {
    max-height: 300px;
    width: auto;
  }
  .pack-container {
    margin-bottom: 15px;
  }
  .equipment-box {
    min-height: 495px;
    padding: 0 0 0 53%;
  }
  .equipment-box-img {
    width: 560px;
    left: 0;
  }
  .equipment-box #lottie4 {
    -webkit-transform: translate(-315px, -296px);
    transform: translate(-315px, -296px);
    width: 630px;
    height: 586px;
  }
  .equipment-el-2 {
    margin-left: -350px;
    top: 50px;
  }
  .manufacturing-box {
    padding-left: 55%;
    min-height: 600px;
  }
  .manufacturing-box-img {
    max-width: 600px;
  }
  .manufacturing-box #lottie6 {
    -webkit-transform: translate(-360px, -342px);
    transform: translate(-360px, -342px);
    width: 720px;
    height: 675px;
  }
  .manufacturing-el-1 {
    width: 170px;
    left: 0;
    bottom: 0;
  }
  .manufacturing-el-3 {
    bottom: 25%;
    left: 49%;
  }
  .rddepartment-top {
    padding: 85px 0 85px;
  }
  .rddepartment-box {
    min-height: 440px;
    padding-right: 55%;
  }
  .rddepartment-box-img {
    max-width: 600px;
  }
  .rddepartment-box #lottie5 {
    -webkit-transform: translate(-351px, -265px);
    transform: translate(-351px, -265px);
    width: 717px;
    height: 516px;
  }
  .rddepartment-text {
    padding-bottom: 60px;
  }
  .rddepartment-el-1 {
    width: 150px;
    left: 45%;
    top: 7%;
  }
  .rddepartment-el-2 {
    margin-left: 550px;
  }
  .rddepartment-el-4 {
    right: 80px;
  }
  .department {
    width: 270px;
  }
  .cases__title {
    min-height: 130px;
    padding: 0 130px 0 90px;
  }
  .cases-box-img {
    max-width: 580px;
  }
  .cases .slick-prev {
    margin-left: -570px;
  }
  .cases .slick-next {
    margin-left: 530px;
  }
  .cases-el-1 {
    top: 100px;
  }
  .case {
    padding: 0 90px;
  }
  .case-content {
    min-height: 500px;
  }
  .case-left {
    max-width: 49%;
    padding-top: 130px;
  }
  .case-right {
    max-height: 380px;
    width: 45%;
  }
  .contacts-bls {
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .contacts-bl {
    margin-right: 0;
  }
  .contacts-bl_1 {
    width: 350px;
  }
  .description-wrap {
    max-width: 600px;
  }
  .description-nav {
    margin-bottom: 15px;
  }
  .description-card-4 .card {
    height: 100%;
  }
  .description-el-1 {
    margin-left: 500px;
  }
  .description-el-2 {
    margin-left: -660px;
  }
  .description-el-3 {
    margin-left: -700px;
  }
  .description-el-4 {
    margin-left: 500px;
  }
  .type-nav__text {
    font-size: 28px;
  }
  .type-menu__title .fico-open {
    right: calc(100% + 5px);
    font-size: 20px;
    margin-top: -15px;
  }
  .category-vitamins .description-img-1 {
    width: 350px;
    margin-left: -650px;
  }
  .category-vitamins .description-img-2 {
    width: 280px;
    margin-left: 300px;
  }
  .category-vitamins .description-el-6 {
    margin-left: 200px;
  }
  .category-vitamins .description-el-7 {
    margin-left: -450px;
  }
  .category-vitamins .description-el-8 {
    margin-left: -510px;
  }
  .category-vitamins .description-el-9 {
    margin-left: 400px;
  }
  .category-vitamins .description-el-10 {
    margin-left: 360px;
  }
  .category-vitamins .description-el-11 {
    width: 380px;
    margin-left: 330px;
  }
  .category-vitamins .description-el-12 {
    margin-left: -650px;
    bottom: auto;
    top: 600px;
  }
  .category-cosmetics .description-img-1 {
    width: 320px;
    margin-left: -630px;
  }
  .category-cosmetics .description-img-2 {
    width: 290px;
    margin-left: 310px;
  }
  .category-cosmetics .description-el-6 {
    margin-left: 200px;
  }
  .category-cosmetics .description-el-7 {
    width: 89px;
    margin-left: 300px;
  }
  .category-cosmetics .description-el-8 {
    margin-left: -450px;
  }
  .category-cosmetics .description-el-9 {
    top: 450px;
    margin-left: 700px;
  }
  .category-cosmetics .description-el-10 {
    top: 200px;
    margin-left: 560px;
  }
  .category-cosmetics .description-el-11 {
    top: 515px;
    width: 345px;
    margin-left: 323px;
  }
  .category-cosmetics .description-el-12 {
    margin-left: -700px;
  }
  .category-sport .description-img-1 {
    width: 430px;
    margin-left: -710px;
  }
  .category-sport .description-img-2 {
    width: 360px;
    margin-left: 280px;
  }
  .category-sport .description-el-6 {
    margin-left: 580px;
  }
  .category-sport .description-el-7 {
    width: 60px;
    margin-left: 330px;
    top: 200px;
  }
  .category-sport .description-el-8 {
    margin-left: 460px;
  }
  .category-sport .description-el-9 {
    margin-left: 550px;
  }
  .category-sport .description-el-10 {
    width: 400px;
    margin-left: 340px;
  }
  .category-sport .description-el-11 {
    width: 320px;
    margin-left: -590px;
  }
  .category-for-pets .description-img-1 {
    margin-left: -640px;
    width: 370px;
  }
  .category-for-pets .description-img-2 {
    width: 400px;
    top: 130px;
    margin-left: 250px;
  }
  .category-for-pets .description-el-6 {
    top: 250px;
    margin-left: 500px;
  }
  .category-for-pets .description-el-7 {
    margin-left: -700px;
  }
  .category-for-pets .description-el-8 {
    top: 80px;
    margin-left: 500px;
  }
  .category-for-pets .description-el-9 {
    margin-left: -640px;
  }
  .category-for-pets .description-el-10 {
    margin-left: 350px;
  }
  .production-img-1 {
    width: 350px;
    margin-left: -650px;
  }
  .production-img-2 {
    width: 450px;
    margin-left: 300px;
  }
  .production .sample-el-1 {
    margin-left: -680px;
  }
  .production .sample-el-2 {
    margin-left: -500px;
  }
  .production .sample-el-3 {
    margin-left: -440px;
  }
  .production .sample-el-4 {
    margin-left: 300px;
  }
  .production .sample-el-5 {
    margin-left: 500px;
  }
  .production .sample-el-6 {
    margin-left: 600px;
  }
  .production .sample-el-7 {
    margin-left: -750px;
  }
  .production .sample-el-8 {
    margin-left: -550px;
  }
  .production .sample-el-9 {
    margin-left: -500px;
  }
  .production .sample-el-10 {
    margin-left: -550px;
  }
  .production .sample-el-11 {
    margin-left: 400px;
  }
  .production .sample-el-12 {
    top: 580px;
    margin-left: -550px;
  }
  .production .sample-el-13 {
    margin-left: 350px;
  }
  .lab-img-1 {
    width: 350px;
    margin-left: -670px;
  }
  .lab-img-2 {
    width: 450px;
    margin-left: 200px;
  }
  .lab .sample-el-1 {
    margin-left: -450px;
  }
  .lab .sample-el-2 {
    margin-left: -940px;
  }
  .lab .sample-el-2 {
    width: 150px;
    margin-left: -600px;
  }
  .lab .sample-el-5 {
    top: 250px;
    margin-left: 650px;
  }
  .lab .sample-el-8 {
    margin-left: -720px;
  }
  .lab .sample-el-9 {
    margin-left: -650px;
  }
  .trademarks-img-1 {
    top: 120px;
    width: 270px;
    margin-left: -620px;
  }
  .trademarks-img-2 {
    top: 100px;
    width: 450px;
    margin-left: 300px;
  }
  .trademarks .sample-el-1 {
    margin-left: -600px;
  }
  .trademarks .sample-el-2 {
    width: 170px;
    margin-left: -800px;
  }
  .trademarks .sample-el-3 {
    margin-left: 250px;
  }
  .trademarks .sample-el-4 {
    margin-left: 350px;
    top: 20px;
    width: 150px;
  }
  .trademarks .sample-el-5 {
    margin-left: -550px;
  }
  .trademarks .sample-el-6 {
    margin-left: 450px;
  }
  .trademarks .sample-el-7 {
    margin-left: 430px;
  }
  .trademarks .sample-el-8 {
    margin-left: -650px;
  }
  .privacy-el-1 {
    top: 500px;
    margin-left: 400px;
  }
  .privacy-el-2 {
    margin-left: -200px;
  }
  .privacy-el-3 {
    top: 120px;
    width: 300px;
    margin-left: 250px;
  }
  .privacy-el-4 {
    top: 0;
    width: 250px;
    margin-left: -600px;
  }
  .privacy-el-6 {
    margin-left: -600px;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  .privacy-el-7 {
    margin-left: 350px;
  }
  .privacy-el-8 {
    margin-left: -500px;
  }
  .privacy-el-9 {
    margin-left: 450px;
  }
  .privacy-el-10 {
    margin-left: -550px;
  }
  .privacy-el-11 {
    margin-left: 200px;
    top: 30px;
    width: 60px;
  }
  .private-label .sample-el-1 {
    left: calc(50% + 650px);
  }
  .private-label .sample-el-2 {
    left: calc(50% - 550px);
  }
  .private-label .sample-el-3 {
    left: calc(50% + 570px);
    top: 979px;
  }
  .private-label .sample-el-4 {
    left: calc(50% + 660px);
    top: 2107px;
  }
  .private-label .sample-el-5 {
    left: calc(50% - 720px);
  }
  .private-label .sample-img--left {
    max-width: 430px;
    top: 45px;
  }
  .private-label .sample-img--right {
    right: 170px;
    max-width: 350px;
    top: 45px;
  }
  .private-label__cards .cards-row {
    padding-left: 10px;
    padding-right: 10px;
  }
  .c-manufacturing .sample-img--left {
    max-width: 430px;
    top: 45px;
    left: 55px;
  }
  .c-manufacturing .sample-img--right {
    right: 0;
    max-width: 570px;
    top: 35px;
  }
  .c-manufacturing .sample-el-1 {
    left: calc(50% + 650px);
  }
  .c-manufacturing .sample-el-2 {
    left: calc(50% - 550px);
  }
  .c-manufacturing .sample-el-6 {
    left: calc(50% - 550px);
  }
  .c-manufacturing .sample-el-3 {
    left: calc(50% + 570px);
  }
  .c-manufacturing .sample-el-4 {
    left: calc(50% + 660px);
    top: 2000px;
  }
  .c-manufacturing .sample-el-5 {
    left: calc(50% - 880px);
  }
  .c-raw-materials .sample-img--left {
    max-width: 430px;
    top: 45px;
    left: 55px;
  }
  .c-raw-materials .sample-img--right {
    right: 0;
    max-width: 570px;
    top: 35px;
  }
  .order_page .order-img-left {
    left: -280px;
  }
  .order_page .order-img-right {
    right: -280px;
  }
  .c-p-formulations .block-1 .img_block img {
    width: 80%;
  }
  .c-p-formulations .block-1 .sample-el-1 {
    right: -5%;
  }
  .c-p-formulations .block-1 .sample-el-3 {
    left: -2%;
  }
  .c-p-formulations .stages_block .stage {
    max-width: calc(100% / 6);
  }
  .c-p-formulations .stages_block .stage__title {
    font-size: 28px;
  }
  .c-p-formulations .block-2 .sample-el-1 {
    right: -5%;
  }
  .c-p-formulations .block-2 .sample-el-2 {
    right: 10%;
  }
  .c-p-formulations .block-2 .sample-el-3 {
    left: -5%;
  }
  .c-p-formulations .block-3 .flex_block .img_block {
    width: 40%;
  }
  .c-p-formulations .block-4 .production-wrap .pack {
    width: calc((100% - 700px) / 6);
  }
  .filling-and-packaging-services .stages_block .stage {
    max-width: none;
  }
  .filling-and-packaging-services .stages_block .stage:nth-of-type(even) {
    margin-top: 88px;
  }
  .filling-and-packaging-services .stages_block .stage::before {
    left: 60px;
  }
  .filling-and-packaging-services .stages_block .stage::after {
    left: 72px;
  }
  .filling-and-packaging-services .stages_block .stage__title {
    font-size: 18px;
  }
  .filling-and-packaging-services .stages_block .stage__photo {
    height: 90px;
    margin-right: 10px;
  }
  .filling-and-packaging-services .block-1 .text br {
    display: none;
  }
  .filling-and-packaging-services
    .block-1__bottom
    .img_block
    div:not(:last-of-type) {
    margin-right: 60px;
  }
  .filling-and-packaging-services .block-5__list {
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .filling-and-packaging-services .block-5__item {
    max-width: calc(100% / 4 - 30px);
  }
  .filling-and-packaging-services .block-5__item:not(:last-of-type) {
    margin-right: 0;
  }
  .goods__item {
    width: calc((100% - 30px * 2) / 3);
  }
  .ready-made-review .block-1 .columns .column--text {
    max-width: 480px;
  }
}
@media screen and (max-width: 1440px) {
  .private-label .sample-el-1 {
    left: calc(50% + 450px);
  }
  .private-label .sample-el-3 {
    left: calc(50% + 450px);
  }
  .private-label .sample-el-4 {
    left: calc(50% + 380px);
    top: 2300px;
  }
  .private-label .sample-el-5 {
    left: calc(50% - 600px);
  }
  .private-label__cards .cards-row {
    flex-wrap: wrap;
  }
  .private-label__cards .card {
    max-width: calc(50% - 22px);
    margin-bottom: 22px;
  }
  .c-manufacturing .card {
    max-width: calc(33.333% - 22px);
  }
}
@media screen and (min-width: 1201px) {
  .submenu__item + .category {
    margin-top: 32px;
  }
  .submenu:hover .submenu-list {
    display: -webkit-box;
    display: flex;
  }
  .submenu:hover .submenu-title {
    color: #1b75bb;
  }
  .submenu:hover .submenu-title .fico-open {
    -webkit-transform: translateY(-50%) scaleY(1);
    transform: translateY(-50%) scaleY(1);
    -webkit-transition: 0.3s transform;
    transition: 0.3s transform;
    color: #1b75bb;
  }
  .cases .slick-slide {
    -webkit-transition-delay: 0.5s !important;
    transition-delay: 0.5s !important;
  }
  .cases .slick-active .case-content {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: 0.6s 0.5s opacity, 0.5s -webkit-transform;
    transition: 0.6s 0.5s opacity, 0.5s -webkit-transform;
    transition: 0.5s transform, 0.6s 0.5s opacity;
    transition: 0.5s transform, 0.6s 0.5s opacity, 0.5s -webkit-transform;
  }
  .case-content {
    opacity: 0;
    -webkit-transition: 0.3s opacity, 1s -webkit-transform;
    transition: 0.3s opacity, 1s -webkit-transform;
    transition: 1s transform, 0.3s opacity;
    transition: 1s transform, 0.3s opacity, 1s -webkit-transform;
  }
}
@media screen and (max-width: 1200px) {
  body {
    font-size: 18px;
  }
  .container {
    width: 950px;
  }
  .list-pl-el {
    font-size: 18px;
  }
  .list-pl-el__ico {
    top: 5px;
  }
  .t_xl {
    font-size: 80px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    line-height: 1;
    color: #1a1818;
  }
  .t_lg {
    font-size: 60px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    line-height: 1;
    color: #1a1818;
  }
  .t_md {
    font-size: 46px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    line-height: 1;
    color: #1a1818;
  }
  .form-group {
    display: block;
  }
  .nav {
    padding: 0;
    box-shadow: none;
  }
  .nav .container {
    padding: 0;
    width: 100%;
  }
  .nav-top {
    width: 100%;
    padding: 6px 15px;
    position: absolute;
    background: #fafafa;
    top: 0;
  }
  .nav-content {
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    align-items: flex-start;
    padding: 85px 0 45px;
    overflow: auto;
    display: none;
  }
  .nav__logo {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .nav-burger {
    display: block;
  }
  .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: inline-flex;
  }
  .menu__item {
    width: 100%;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #403d3d;
  }
  .submenu-list {
    position: static;
    box-shadow: none;
    padding: 0 0 15px;
  }
  .submenu-title {
    padding: 23px 23px 23px 40px;
  }
  .submenu__item > a {
    padding: 7px 20px;
  }
  .submenu.active .submenu-list {
    display: -webkit-box;
    display: flex;
    text-align: left;
    -webkit-box-pack: center;
    justify-content: center;
  }
  .submenu.active .submenu-title {
    margin: 0 auto;
    color: #1b75bb;
  }
  .submenu.active .submenu-title .fico-open {
    color: #1b75bb;
    -webkit-transform: translateY(-50%) scaleY(1);
    transform: translateY(-50%) scaleY(1);
    -webkit-transition: 0.3s transform;
    transition: 0.3s transform;
  }
  .submenu:hover {
    background: 0 0;
  }
  .submenu_langs {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    position: static;
    margin-bottom: 70px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .submenu_langs .submenu-list {
    display: -webkit-box;
    display: flex;
    position: static;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
  }
  .submenu_langs .submenu-title {
    padding-top: 5px;
    padding-bottom: 5px;
    color: #1b75bb;
    text-decoration: underline;
  }
  .submenu_langs .fico {
    display: none;
  }
  .btn_header {
    margin: 15px 0;
    width: 100%;
  }
  .tag {
    font-size: 18px;
    margin-right: 8px;
  }
  .breadcrumbs__item::after {
    top: 3px;
  }
  .sample-wrap {
    max-width: 500px;
  }
  .sample-form {
    max-width: 500px;
  }
  .sample-form .input-wrap {
    min-width: 100%;
  }
  .footer-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 0;
  }
  .footer-bl {
    margin-bottom: 25px;
  }
  .footer-logo {
    margin-bottom: 0;
  }
  .footer-logo img {
    width: 330px;
  }
  .f-contact {
    margin-bottom: 15px;
  }
  .slider_block_packing .slick-list {
    margin-left: 0;
  }
  .slider_block_packing .slick-list:before {
    background: 0 0;
  }
  .stage:nth-of-type(even) {
    margin-top: 98px;
  }
  .stage__photo {
    height: 100px;
  }
  .contacts-footer .flex_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .contacts-footer .right_block {
    margin: 40px 0 0;
    width: 100%;
    height: 500px;
  }
  .contacts-footer .left_block {
    width: 100%;
  }
  .contacts-footer .btn {
    display: -webkit-box;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 50px auto 0;
  }
  .primary-box {
    min-height: 440px;
  }
  .primary-box #lottie {
    -webkit-transform: translate(-284px, -269px);
    transform: translate(-284px, -269px);
    width: 568px;
    height: 529px;
  }
  .primary-box-img {
    width: 470px;
  }
  .primary__logo {
    display: none;
  }
  .catalog-slider {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .catalog-slider {
    display: none;
  }
  .catalog-slider-sm {
    display: block;
  }
  .catalog-sl img {
    margin: 0 auto;
  }
  .catalog-el-1 {
    top: 50px;
    margin-left: -300px;
  }
  .catalog-el-2 {
    width: 150px;
    margin-left: 250px;
  }
  .catalog-el-3 {
    bottom: 70px;
    margin-left: 250px;
  }
  .catalog-el-4 {
    margin-left: 300px;
    width: 120px;
  }
  .catalog-el-5 {
    margin-left: -400px;
  }
  .laboratory-box {
    min-height: 430px;
  }
  .laboratory-box-img {
    width: 450px;
  }
  .lab-box-img {
    width: 450px;
  }
  .laboratory-box #lottie2 {
    -webkit-transform: translate(-272px, -256px);
    transform: translate(-272px, -256px);
    width: 546px;
    height: 509px;
  }
  .laboratory-el-1 {
    max-width: 95px;
  }
  .laboratory-el-2,
  .laboratory-el-3 {
    width: 60px;
  }
  .laboratory-el-2 {
    margin-left: -90px;
  }
  .laboratory-el-3 {
    top: auto;
    bottom: 20px;
  }
  .formulations-el-3 {
    top: 230px;
  }
  .formulations-el-4 {
    right: 50px;
  }
  .card-prod:last-of-type,
  .card-prod:nth-child(3n) {
    margin: 0 50px 30px;
  }
  .card-prod {
    margin: 0 50px 30px;
    width: 35%;
  }
  .label-bottom {
    padding-bottom: 70px;
  }
  .label-img {
    -webkit-transform: translateX(-55%);
    transform: translateX(-55%);
  }

  .label-bl {
    padding: 40px 35px 70px;
  }
  .label-bl__title {
    font-size: 46px;
  }
  .label-bl__subtitle {
    font-size: 23px;
  }
  .documents {
    padding-top: 70px;
  }
  .documents-bl_1 {
    width: 40%;
  }
  .documents-bl_2 {
    width: 55%;
  }
  .packaging-list {
    margin-bottom: 45px;
  }
  .packaging-list-desk {
    display: none;
  }
  .packaging-list-mob {
    display: block;
  }
  .packaging-bottom .container {
    width: 100%;
    padding: 0;
  }
  .packaging-dots {
    display: block;
    width: 100%;
    height: 27px;
    position: relative;
  }
  .pack {
    height: 100%;
    width: 100%;
  }
  .pack-wrap {
    margin: 0 auto;
    height: 100%;
    width: 800px !important;
  }
  .pack__title {
    text-align: center;
    font-size: 30px;
  }
  .pack-sizes {
    text-align: center;
  }
  .pack-3 .pack__img img,
  .pack-5 .pack__img img,
  .pack-6 .pack__img img {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .equipment {
    padding-top: 50px;
  }
  .equipment-box {
    min-height: 355px;
    padding: 0 0 0 47%;
  }
  .equipment-box-img {
    max-width: 400px;
  }
  .equipment-box #lottie4 {
    -webkit-transform: translate(-225px, -214px);
    transform: translate(-225px, -214px);
    width: 450px;
    height: 419px;
  }
  .equipment-link {
    margin-right: 25px;
  }
  .manufacturing-box {
    min-height: 470px;
  }
  .manufacturing-box-img {
    max-width: 470px;
  }
  .manufacturing-box #lottie6 {
    -webkit-transform: translate(-282px, -268px);
    transform: translate(-282px, -268px);
    width: 564px;
    height: 528px;
  }
  .manufacturing-el-1 {
    width: 120px;
  }
  .manufacturing-el-2 {
    bottom: -20px;
  }
  .manufacturing-el-3 {
    bottom: 10%;
    left: 43%;
  }
  .rddepartment-box {
    min-height: 370px;
  }
  .rddepartment-box-img {
    max-width: 500px;
  }
  .rddepartment-box #lottie5 {
    -webkit-transform: translate(-293px, -221px);
    transform: translate(-293px, -221px);
    width: 598px;
    height: 429px;
  }
  .rddepartment-list {
    flex-wrap: wrap;
  }
  .rddepartment-bottom::before {
    top: auto;
    height: 250px;
  }
  .rddepartment-el-2 {
    margin-left: 450px;
  }
  .department {
    width: 400px;
    margin-bottom: 20px;
  }
  .cases__title {
    display: block;
    text-align: center;
    padding: 0;
    position: static;
    min-height: auto;
    max-width: none;
    margin-bottom: 30px;
  }
  .cases-box-img {
    top: 80px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .cases .container {
    width: 100%;
  }
  .cases .slick-arrow {
    top: 120px;
  }
  .cases .slick-prev {
    margin-left: -420px;
  }
  .cases .slick-next {
    margin-left: 400px;
  }
  .case {
    padding: 0;
  }
  .case-left {
    max-width: 60%;
    margin: 0 auto;
    text-align: center;
    padding-top: 320px;
  }
  .case-right {
    max-height: 290px;
    width: 100%;
    top: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .description-wrap {
    max-width: 500px;
  }
  .description-btn {
    font-size: 24px;
    padding-left: 35px;
    padding-right: 35px;
  }
  .description-card {
    width: 458px;
  }
  .description-el-1 {
    margin-left: 400px;
  }
  .description-el-2 {
    margin-left: -570px;
  }
  .description-el-3 {
    margin-left: -600px;
  }
  .description-el-4 {
    margin-left: 400px;
  }
  .type-nav__text {
    font-size: 24px;
    line-height: 0.9;
  }
  .type-menu__title .title {
    font-size: 50px;
  }
  .accordion {
    width: 600px;
  }
  .category-vitamins .description-img-1 {
    width: 300px;
    margin-left: -550px;
  }
  .category-vitamins .description-img-2 {
    width: 250px;
    margin-left: 260px;
  }
  .category-vitamins .description-el-6 {
    margin-left: 150px;
    top: 100px;
  }
  .category-vitamins .description-el-7 {
    margin-left: -370px;
  }
  .category-vitamins .description-el-8 {
    margin-left: -310px;
  }
  .category-vitamins .description-el-9 {
    margin-left: 350px;
  }
  .category-vitamins .description-el-10 {
    top: 400px;
    margin-left: 250px;
  }
  .category-vitamins .description-el-11 {
    width: 250px;
    margin-left: 270px;
  }
  .category-vitamins .description-el-12 {
    margin-left: -500px;
  }
  .category-cosmetics .description-img-1 {
    width: 270px;
    margin-left: -510px;
  }
  .category-cosmetics .description-img-2 {
    width: 240px;
    margin-left: 250px;
  }
  .category-cosmetics .description-el-9 {
    margin-left: 550px;
  }
  .category-cosmetics .description-el-10 {
    width: 40px;
    margin-left: 520px;
  }
  .category-cosmetics .description-el-11 {
    width: 280px;
    margin-left: 280px;
  }
  .category-cosmetics .description-el-12 {
    width: 290px;
    margin-left: -500px;
  }
  .category-sport .description-img-1 {
    width: 330px;
    margin-left: -560px;
  }
  .category-sport .description-img-2 {
    width: 300px;
    margin-left: 220px;
  }
  .category-sport .description-el-6 {
    margin-left: 480px;
    width: 60px;
  }
  .category-sport .description-el-7 {
    top: 170px;
    margin-left: 230px;
  }
  .category-sport .description-el-8 {
    margin-left: 360px;
  }
  .category-sport .description-el-9 {
    margin-left: 380px;
  }
  .category-sport .description-el-10 {
    width: 300px;
    margin-left: 280px;
  }
  .category-sport .description-el-11 {
    width: 220px;
    margin-left: -460px;
  }
  .category-for-pets .description-img-1 {
    width: 270px;
    margin-left: -490px;
  }
  .category-for-pets .description-img-2 {
    width: 300px;
    margin-left: 200px;
  }
  .category-for-pets .description-el-6 {
    width: 50px;
    margin-left: 400px;
  }
  .category-for-pets .description-el-7 {
    margin-left: -400px;
    top: 440px;
  }
  .category-for-pets .description-el-8 {
    margin-left: 370px;
  }
  .category-for-pets .description-el-9 {
    width: 250px;
    margin-left: -470px;
  }
  .category-for-pets .description-el-10 {
    margin-left: 300px;
    top: 650px;
  }
  .production-img-1 {
    width: 290px;
    margin-left: -540px;
  }
  .production-img-2 {
    width: 370px;
    margin-left: 250px;
  }
  .production .sample-el-1 {
    margin-left: -530px;
    width: 50px;
  }
  .production .sample-el-2 {
    margin-left: -430px;
  }
  .production .sample-el-3 {
    margin-left: -360px;
    width: 60px;
  }
  .production .sample-el-4 {
    margin-left: 250px;
    width: 90px;
  }
  .production .sample-el-5 {
    margin-left: 300px;
  }
  .production .sample-el-6 {
    margin-left: 300px;
  }
  .production .sample-el-7 {
    margin-left: -550px;
    width: 170px;
  }
  .production .sample-el-8 {
    margin-left: -370px;
  }
  .production .sample-el-9 {
    margin-left: -400px;
  }
  .production .sample-el-10 {
    margin-left: -450px;
  }
  .production .sample-el-12 {
    margin-left: -450px;
    width: 170px;
  }
  .production .sample-el-13 {
    margin-left: 250px;
    width: 190px;
  }
  .lab-img-1 {
    top: 140px;
    width: 290px;
    margin-left: -560px;
  }
  .lab-img-2 {
    width: 370px;
    margin-left: 160px;
  }
  .lab .sample-el-1 {
    margin-left: -400px;
    top: 550px;
  }
  .lab .sample-el-3 {
    top: 650px;
    margin-left: 400px;
  }
  .lab .sample-el-5 {
    margin-left: 530px;
    top: 220px;
    width: 90px;
  }
  .lab .sample-el-7 {
    margin-left: 400px;
  }
  .lab .sample-el-8 {
    margin-left: -500px;
  }
  .lab .sample-el-9 {
    margin-left: -550px;
  }
  .lab .sample-el-10 {
    width: 200px;
    margin-left: 300px;
  }
  .trademarks-img-1 {
    width: 230px;
    margin-left: -510px;
  }
  .trademarks-img-2 {
    width: 370px;
    margin-left: 250px;
  }
  .trademarks .sample-el-1 {
    margin-left: -400px;
  }
  .trademarks .sample-el-2 {
    margin-left: -600px;
    width: 90px;
  }
  .trademarks .sample-el-3 {
    top: 170px;
    margin-left: 200px;
  }
  .trademarks .sample-el-4 {
    top: 10px;
    margin-left: 300px;
  }
  .trademarks .sample-el-5 {
    margin-left: -370px;
  }
  .trademarks .sample-el-6 {
    margin-left: 260px;
  }
  .trademarks .sample-el-7 {
    margin-left: 270px;
  }
  .trademarks .sample-el-8 {
    margin-left: -550px;
  }
  .private-label .sample-img--left {
    max-width: 380px;
    left: 70px;
  }
  .private-label .sample-img--right {
    max-width: 330px;
    right: 140px;
  }
  .c-manufacturing .card {
    max-width: calc(50% - 22px);
  }
  .c-manufacturing .sample-img--left {
    max-width: 330px;
    left: 70px;
  }
  .c-manufacturing .sample-img--right {
    max-width: 460px;
    right: 0;
  }
  .c-manufacturing .sample-el-4 {
    left: calc(50% + 380px);
    top: 2000px;
  }
  .c-manufacturing .sample-el-5 {
    bottom: 100px;
  }
  .c-raw-materials .sample-img--left {
    max-width: 330px;
    left: 30px;
  }
  .c-raw-materials .sample-img--right {
    max-width: 460px;
    right: 0;
  }
  .c-p-formulations .block-1 .sample-el-3 {
    left: -6%;
  }
  .c-p-formulations .stages_block .stage__title {
    font-size: 22px;
  }
  .c-p-formulations .block-2 .sample-el-2 {
    right: 0;
  }
  .c-p-formulations .block-2 .sample-el-3 {
    left: -10%;
  }
  .c-p-formulations .block-4 .packaging-list {
    margin-bottom: 0;
  }
  .c-p-formulations .block-4 .production-wrap .pack-wrap {
    min-height: 100%;
  }
  .c-p-formulations .block-4 .production-wrap .pack {
    width: 100%;
  }
  .filling-and-packaging-services .stages_block .stage:nth-of-type(even) {
    margin-top: 68px;
  }
  .filling-and-packaging-services .stages_block .stage::before {
    left: 40px;
  }
  .filling-and-packaging-services .stages_block .stage::after {
    left: 52px;
  }
  .filling-and-packaging-services .stages_block .stage__title {
    font-size: 18px;
  }
  .filling-and-packaging-services .stages_block .stage__photo {
    height: 70px;
  }
  .filling-and-packaging-services
    .block-1__bottom
    .img_block
    div:not(:last-of-type) {
    margin-right: 0;
  }
  .filling-and-packaging-services .block-5 .title {
    margin-bottom: 10px;
  }
  .filling-and-packaging-services .block-5__list {
    flex-wrap: wrap;
  }
  .filling-and-packaging-services .block-5__item {
    max-width: calc(100% / 2 - 30px);
  }
  .filling-and-packaging-services .block-5__item:nth-of-type(-n + 2) {
    margin-bottom: 30px;
  }
  .goods__item {
    width: calc((100% - 30px * 1) / 2);
  }
}
@media screen and (max-width: 1199px) {
  .ready-made-review .block-1 .columns .column--text {
    max-width: 50%;
  }
  .ready-made-review .picture-gallery__item--third {
    min-width: calc((100% - 10px * 1) / 2);
  }
}
@media screen and (max-width: 1120px) {
  .menu__item > a {
    padding: 23px 13px;
  }
}
@media screen and (min-width: 992px) {
  .btn:hover {
    box-shadow: 0 0 29px rgba(122, 137, 148, 0.24),
      0 38px 36px -23px rgba(122, 137, 148, 0.57);
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
  }
  .btn:active {
    box-shadow: none;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
  }

  .btn_orange:hover {
    background: #ff6f31;
  }
  .btn_orange:active {
    background: #ff8e5e;
  }
  .btn_outline_blue:hover {
    background: #1b75bb;
    color: #fff;
  }
  .btn_outline_blue:active {
    border-color: #00c2ff;
    background: #00c2ff;
    color: #fff;
  }
  .btn_up:hover .fico {
    opacity: 1;
  }
  .slick-arrow:hover {
    -webkit-filter: drop-shadow(0 7px 4px rgba(122, 137, 148, 0.39));
    filter: drop-shadow(0 7px 4px rgba(122, 137, 148, 0.39));
  }
  .primary-box-img img {
    pointer-events: none;
  }
  .laboratory-box-img img {
    pointer-events: none;
  }
  .label-img img {
    pointer-events: none;
    height: 100%;
  }
  .contact .fico:hover + .contact-bl__tooltip {
    opacity: 1;
  }
  .type-menu__link:hover a {
    color: #1b75bb;
  }
  .type-menu__link:hover a::before {
    opacity: 1;
  }
  .accordion-bl-title:hover span {
    color: #1b75bb;
    border-bottom: 2px solid #1b75bb;
  }
  .accordion-bl-title:hover span + .accordion__icon::after,
  .accordion-bl-title:hover span + .accordion__icon::before {
    background: #1b75bb;
  }
  .accordion-bl.active .accordion-bl-title:hover span {
    border-bottom: none;
  }
}
@media screen and (max-width: 991px) {
  .container {
    width: 400px;
  }
  .catalog-main{
    display: flex;
    flex-direction: column-reverse;
    gap: 48px;
  }
  .box {
    display: block;
    min-height: auto;
    padding: 0;
  }
  .box-img {
    position: static;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .btn_outline_blue {
    font-size: 30px;
  }
  .btn{
    width: 100%;
  }
  .btn_up {
    bottom: 15px;
    right: 15px;
  }
  .t_xl {
    font-size: 46px;
  }
  .t_lg {
    font-size: 46px;
  }
  .slick-arrow {
    display: none !important;
  }
  .input,
  .textarea {
    font-size: 17px;
  }
  .file__text span {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #403d3d;
  }
  .nav-top {
    padding: 0 15px;
  }
  .nav__logo {
    margin-top: 2px;
    width: 143px;
  }
  .menu {
    -webkit-box-align: start;
    align-items: flex-start;
    width: 250px;
  }
  .menu__item {
    text-align: left;
  }
  .menu__item > a {
    padding: 23px 40px;
  }
  .submenu__item.category:not:first-child {
    margin-top: 20px;
  }
  .submenu.active {
    text-align: left;
  }
  .submenu.active .submenu-list {
    display: block;
    padding-left: 23px;
  }
  .submenu_langs {
    width: 330px;
    -webkit-box-pack: start;
    justify-content: flex-start;
  }
  .popup {
    width: 320px;
  }
  .popup-wrap {
    padding: 146px 10px 64px;
  }
  .popup__btn {
    margin-top: 50px;
  }
  .popup__img-1 {
    width: 181px;
    height: 221px;
    left: 50%;
    margin-left: -100px;
  }
  .popup__img-2,
  .popup__img-3,
  .popup__img-4,
  .popup__img-5,
  .popup__img-6 {
    display: none;
  }
  .popup-el-1 {
    width: 67px;
    margin-left: 0;
    left: -20px;
    bottom: 90px;
  }
  .popup-el-2 {
    top: 120px;
    width: 33px;
    right: -10px;
    left: auto;
    margin-left: 0;
  }
  .popup-el-3 {
    display: none;
  }
  .popup-el-4 {
    display: none;
  }
  .popup-el-5 {
    width: 72px;
    right: -5px;
    bottom: -5px;
  }
  .sample-wrap {
    max-width: auto;
    padding-left: 0;
  }
  .sample-breadcrumbs {
    margin-bottom: 400px;
  }
  .sample__title {
    margin-bottom: 20px;
  }
  .sample-bl {
    margin-bottom: 30px;
  }
  .footer-contacts {
    padding-top: 0;
    -webkit-box-pack: center;
    justify-content: center;
  }
  .footer-right {
    max-width: 200px;
  }
  .footer-bl {
    margin-bottom: 40px;
  }
  .f-contact {
    width: 100%;
    max-width: 245px;
  }
  .slider_block_packing .no-slider,
  .slider_block_packing .slider {
    margin-right: -15px;
    margin-left: -15px;
  }
  .slider_block_packing .category_block {
    -webkit-box-pack: normal;
    justify-content: normal;
    overflow: auto;
  }
  .slider_block_packing .category_block::-webkit-scrollbar {
    display: none;
  }
  .slider_block_packing .category_block h4 {
    white-space: nowrap;
    padding: 30px 70px 50px 0;
  }
  .slider_block_packing .category_block h4:last-child {
    padding-right: 0;
  }
  .slider_block_packing .slick-list {
    padding-left: 15px;
  }
  .stages_block {
    display: block;
  }
  .stages_block::before {
    display: none;
  }
  .stage::before {
    border: 4px solid #1b75bb;
  }
  .stage:nth-of-type(odd) {
    padding-bottom: 0;
    padding-top: 36px;
  }
  .stage:nth-of-type(odd)::before {
    bottom: auto;
    top: 0;
  }
  .stage:nth-of-type(odd)::after {
    bottom: auto;
    top: 4px;
  }
  .stage:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
    margin: 0;
    margin-left: auto;
  }
  .stage:nth-of-type(even) .stage__photo {
    margin-right: 0;
    margin-left: 20px;
  }
  .stage__photo {
    height: auto;
    margin-right: 20px;
  }
  .stage__title {
    font-size: 30px;
  }
  .contacts-footer .right_block {
    height: 300px;
  }
  .primary {
    padding: 60px 0 40px;
  }
  .primary-box {
    text-align: center;
  }
  .primary-box #lottie {
    display: none;
    width: 399px;
    height: 372px;
  }
  .primary-box-img {
    background: 0 0;
    width: 330px;
    height: 303px;
    margin-bottom: 30px;
  }
  .primary-box-img img {
    opacity: 1;
  }
  .primary__title {
    margin-bottom: 16px;
    margin-top: 64px;
    text-align: start;
    font-size: 32px
  }
  .primary__text{
    font-size: 18px
  }
  .catalog-top {
    padding: 64px 0;
  }
  .catalog-bottom {
    padding-bottom: 40px;
  }
  .catalog-sl img {
    width: 330px;
  }
  .catalog .slick-dots {
    bottom: 65px;
  }
  .contacts-map{
    display: none;
  }
  .catalog-el-1 {
    width: 37px;
    top: 20px;
    margin-left: -140px;
  }
  .catalog-el-2 {
    width: 105px;
    margin-left: 80px;
    pointer-events: none;
  }
  .catalog-el-3 {
    display: none;
  }
  .catalog-el-4 {
    width: 73px;
    margin-left: 140px;
    top: -20px;
  }
  .catalog-el-5 {
    bottom: 195px;
    width: 73px;
    margin-left: -210px;
  }
  .laboratory {
    padding: 64px 0;
  }
  .laboratory-box-img {
    width: 330px;
    height: 308px;
    margin-bottom: 30px;
  }
  .lab-box-img {
    width: 330px;
    height: 308px;
    margin-bottom: 30px;
  }
  .laboratory-box-img img {
    opacity: 1;
  }
  .laboratory-box #lottie2 {
    display: none;
  }
  .laboratory__title {
    padding-right: 0;
    text-align: start;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.2;
    color: #1a1818;
    margin-bottom: 48px;
    max-width: 280px;
  }
  .laboratory-el-1 {
    margin-left: 105px;
  }
  .laboratory-el-2,
  .laboratory-el-3 {
    width: 37px;
  }
  .laboratory-el-2 {
    top: -40px;
    margin-left: 110px;
  }
  .laboratory-el-3 {
    display: none;
  }
  .formulations {
    padding: 70px 0;
  }
  .formulations__text,
  .formulations__title {
    padding: 0;
  }
  .formulations__title {
    margin-bottom: 20px;
  }
  .formulations__text {
    text-align: left;
    margin-bottom: 30px;
  }
  .formulations-bottom .container {
    width: 100%;
    padding: 0;
  }
  .formulations-el-1 {
    display: none;
  }
  .formulations-el-2 {
    width: 109px;
    bottom: auto;
    top: -30px;
    left: 50%;
    margin-left: 110px;
  }
  .formulations-el-3,
  .formulations-el-4 {
    width: 37px;
  }
  .formulations-el-3 {
    display: none;
  }
  .formulations-el-4 {
    right: auto;
    left: 50%;
    margin-left: -180px;
    bottom: -20px;
  }
  .card-prod:last-of-type,
  .card-prod:nth-child(3n) {
    margin: 0 0 30px;
  }
  .card-prod {
    width: 100%;
    margin: 0 0 30px;
  }
  .card-prod-wrap {
    width: 360px;
    padding: 0 15px;
    margin: 0 auto;
  }
  .label-top {
    padding: 70px 0 40px;
  }
  .label-bottom {
    min-height: auto;
  }
  .label-img {
    display: block;
    position: relative;
    width: 100%;
    height: 187px;
    background: 0 0;
  }
  .label-img img {
    opacity: 1;
  }
  .label-img #lottie3 {
    display: none;
  }
  .label-list {
    display: block;
  }
  .label-list-wrap {
    margin-bottom: 0;
  }
  .rddepartment-bottom{
    background:  #e5f5ec;
    margin-top: 48px;
    margin-bottom: 64px;
  }
  .label-bl {
    width: 100%;
    padding: 30px 15px 70px;
  }
  .label-el-1,
  .label-el-2,
  .label-el-3,
  .label-el-4,
  .label-el-5 {
    display: none;
  }
  .documents {
    text-align: center;
    padding-top: 50px;
  }
  .documents-top {
    margin-bottom: 0;
  }
  .documents-list {
    display: none;
  }
  .documents__title {
    margin-bottom: 20px;
  }
  .documents-content {
    display: block;
  }
  .documents-bl {
    width: 100%;
    margin: 0;
    text-align: left;
  }
  .documents-bottom {
    padding-bottom: 70px;
  }
  .documents-bottom::before {
    display: none;
  }
  .documents__btn {
    position: static;
  }
  .documents-el-1 {
    display: none;
  }
  .documents-el-2 {
    width: 37px;
    top: -30px;
    left: -30px;
  }
  .documents-el-3 {
    width: 37px;
    top: auto;
    bottom: -40px;
    left: 50%;
    margin-left: 150px;
  }
  .packaging {
    padding-top: 70px;
  }
  .packaging__title {
    padding: 0;
    margin-bottom: 16px;  
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
  }
  .packaging__text {
    padding: 0;
    font-size: 18px;
    line-height: 1.55556;
    text-align: center;
    margin-bottom: 48px
  }
  .packaging-list {
    width: 991px;
    position: relative;
    overflow: hidden;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .packaging-bottom .packaging-wrap {
    padding-bottom: 25px;
  }
  .packaging-el-1,
  .packaging-el-2,
  .packaging-el-3 {
    display: none;
  }
  .packaging .slick-slide {
    opacity: 0.6;
  }
  .packaging .slick-active {
    opacity: 1;
  }
  .pack-wrap {
    width: 360px !important;
  }
  .pack-sizes {
    font-size: 20px;
    max-width: 200px;
    line-height: 1.2;
    margin: 0 auto 28px;
  }
  .pack__s_big {
    font-size: 20px;
  }
  .pack__img {
    height: 250px;
    top: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .pack__img img {
    max-height: 100%;
    max-width: 190px;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .pack-btn-wrap {
    display: block;
  }
  .pack-btn-wrap + .pack-content {
    display: none;
  }
  .pack-3 .pack__img img,
  .pack-5 .pack__img img,
  .pack-6 .pack__img img {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .color-list {
    flex-wrap: wrap;
  }
  .color-bl {
    margin-bottom: 10px;
  }
  .color-bl:last-of-type {
    margin-bottom: 0;
  }
  .equipment {
    padding: 45px 0 70px;
  }
  .equipment-box-img {
    max-width: 330px;
    height: 286px;
    margin-bottom: 30px;
  }
  .equipment-box-img img {
    opacity: 1;
  }
  .equipment-box #lottie4 {
    display: none;
  }
  .equipment__title {
    text-align: center;
  }
  .equipment-list {
    margin-bottom: 0;
  }
  .equipment-links {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .equipment-link {
    margin: 0 10px 50px;
  }
  .equipment-link:last-child {
    margin-bottom: 0;
  }
  .equipment-el-1,
  .equipment-el-2 {
    display: none;
  }
  .manufacturing {
    padding: 60px 0 75px;
  }
  .manufacturing-box-img {
    margin-bottom: 30px;
    width: 330px;
    height: 324px;
  }
  .manufacturing-box img {
    opacity: 1;
  }
  .manufacturing-box #lottie6 {
    display: none;
  }
  .manufacturing-el-1 {
    width: 109px;
    top: 380px;
    left: -40px;
    bottom: auto;
  }
  .manufacturing-el-2,
  .manufacturing-el-3 {
    width: 44px;
  }
  .manufacturing-el-2 {
    top: 220px;
    right: auto;
    left: 50%;
    margin-left: -190px;
  }
  .manufacturing-el-3 {
    top: 310px;
    right: auto;
    left: 50%;
    margin-left: 150px;
  }
  .manufacturing-el-4 {
    display: block;
  }
  .rddepartment-top {
    padding: 70px 0 30px;
  }
  .rddepartment-box-img {
    margin-bottom: 30px;
    width: 330px;
    height: 236px;
    margin-top: 50px
  }
  .rddepartment-box img {
    opacity: 1;
  }
  .rddepartment-box #lottie5 {
    display: none;
  }
  .rddepartment__title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.2;
    color: #1d372e;
  }
  .rddepartment-text {
    display: none;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.55556;
    color: #2a5747;
    padding-bottom: 0;
  }
  .rddepartment-list {
    display: block;
    padding-bottom: 0;
  }
  .rddepartment-bottom::before {
    height: 155px;
  }
  .rddepartment-el-1 {
    width: 120px;
    top: 350px;
    left: 50%;
    margin-left: 110px;
  }
  .rddepartment-el-2,
  .rddepartment-el-3 {
    width: 37px;
  }
  .rddepartment-el-2 {
    right: auto;
    margin-left: -180px;
    bottom: -390px;
  }
  .rddepartment-el-3 {
    top: -270px;
    margin-left: -140px;
    bottom: auto;
  }
  .rddepartment-el-4 {
    display: none;
  }
  .department {
    width: 100%;
    margin: 0 0 22px;
  }
  .department:last-of-type {
    margin-bottom: 0;
  }
  .cases-list {
    padding-bottom: 0;
  }
  .cases__title {
    width: 360px;
    padding: 0 15px;
    margin: 0 auto 30px;
  }
  .cases-box-img {
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 330px;
    top: 120px;
  }
  .cases .slick-dots {
    top: 250px;
    bottom: auto;
  }
  .case-content {
    max-width: 360px;
    padding: 0 15px;
    margin: 0 auto;
  }
  .case-left {
    max-width: 100%;
    padding-top: 300px;
  }
  .case-right {
    max-height: 221px;
  }
  .contacts {
    padding: 64px 0;
  }
  .contacts__title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 30px;

    /* line-height: 36px; */ 
    line-height: 1.2;
    color: #1a1818;
  }
  .contacts-bls {
    display: block;
    margin-bottom: 58px;
  }
  .contacts-bl {
    width: 100%;
    margin-bottom: 20px;
  }
  .contacts-bottom .container {
    width: 100%;
    padding: 0;
    overflow: hidden;
  }
  .contact__link {
    text-decoration: underline;
  }
  .contact-bl__tooltip {
    bottom: 100%;
  }
  .contact .fico {
    opacity: 1;
    color: #1b75bb;
  }
  .description-top {
    padding-top: 50px;
  }
  .description-center {
    padding-bottom: 100px;
  }
  .description-wrap {
    max-width: auto;
    padding-left: 0;
  }
  .description-tags {
    margin-bottom: 22px;
  }
  .description-card .card {
    margin: 0;
  }
  .description-card .card__title {
    font-size: 24px;
    line-height: 1.2;
  }
  .description-img-2 {
    display: none;
  }
  .description-el-1 {
    width: 40px;
    margin-left: 140px;
    top: -10px;
  }
  .description-el-2 {
    width: 102px;
    top: -12px;
    margin-left: -205px;
  }
  .description-el-3 {
    width: 120px;
    bottom: -5px;
    margin-left: -220px;
  }
  .description-el-4 {
    width: 40px;
    margin-left: 140px;
    bottom: 70px;
  }
  .description-el-5 {
    display: none;
  }
  .type-nav__text {
    padding-left: 30px;
  }
  .type-menu__title {
    padding-left: 30px;
  }
  .type-menu__title .fico-open {
    font-size: 15px;
    right: auto;
    left: 0;
  }
  .product-bl .t_xs {
    font-size: 24px;
  }
  .accordion {
    width: 100%;
  }
  .accordion-bl-title span {
    font-size: 24px;
    line-height: 1.2;
  }
  .accordion-bl-content .list,
  .accordion-bl-content .text,
  .accordion-bl-content h4 {
    margin-bottom: 12px;
  }
  .accordion-bl-content h4 {
    font-size: 24px;
    line-height: 1.2;
  }
  .accordion__icon {
    top: 5px;
  }
  .category-vitamins .description-breadcrumbs {
    margin-bottom: 342px;
  }
  .category-vitamins .description-img-1 {
    width: 266px;
    margin: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .category-vitamins .description-el-6 {
    margin-left: 160px;
    width: 39px;
  }
  .category-vitamins .description-el-6 .color {
    fill: #c3c5f5;
  }
  .category-vitamins .description-el-7 {
    width: 39px;
    top: 100px;
    margin-left: -135px;
  }
  .category-vitamins .description-el-8 {
    bottom: auto;
    top: 350px;
    width: 50px;
    margin-left: -180px;
  }
  .category-vitamins .description-el-9 {
    width: 50px;
    top: 450px;
    margin-left: 140px;
  }
  .category-vitamins .description-el-10 {
    top: 270px;
    width: 39px;
    margin-left: 120px;
  }
  .category-vitamins .description-el-11 {
    display: none;
  }
  .category-vitamins .description-el-12 {
    width: 145px;
    top: 100px;
    margin-left: -250px;
  }
  .category-cosmetics .description-breadcrumbs {
    margin-bottom: 342px;
  }
  .category-cosmetics .description-img-1 {
    width: 210px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-left: 0;
  }
  .category-cosmetics .description-el-6 {
    width: 40px;
    margin-left: 65px;
  }
  .category-cosmetics .description-el-7 {
    top: 180px;
    margin-left: 110px;
  }
  .category-cosmetics .description-el-8 {
    top: 120px;
    width: 40px;
    margin-left: -190px;
  }
  .category-cosmetics .description-el-9 {
    top: 355px;
    width: 40px;
    margin-left: 110px;
  }
  .category-cosmetics .description-el-10 {
    display: none;
  }
  .main__block{
    gap: 0px
  }
  .category-cosmetics .description-el-11 {
    display: none;
  }
  .category-cosmetics .description-el-12 {
    width: 161px;
    top: 275px;
    margin-left: -240px;
  }
  .category-sport .description-breadcrumbs {
    margin-bottom: 406px;
  }
  .category-sport .description-img-1 {
    top: 90px;
    width: 310px;
    margin-left: 0;
    -webkit-transform: translateX(-60%);
    transform: translateX(-60%);
  }
  .category-sport .description-el-6 {
    width: 50px;
    margin-left: -200px;
  }
  .category-sport .description-el-7 {
    width: 40px;
    top: 210px;
    margin-left: -120px;
  }
  .category-sport .description-el-8 {
    top: 150px;
    margin-left: 120px;
  }
  .category-sport .description-el-9 {
    display: none;
  }
  .category-sport .description-el-10 {
    display: none;
  }
  .category-sport .description-el-11 {
    top: 410px;
    width: 205px;
    margin-left: 40px;
  }
  .category-for-pets .description-breadcrumbs {
    margin-bottom: 412px;
  }
  .category-for-pets .description-img-1 {
    width: 327px;
    margin-left: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .category-for-pets .description-img-2 {
    display: none;
  }
  .category-for-pets .description-el-6 {
    top: 140px;
    margin-left: -200px;
  }
  .category-for-pets .description-el-7 {
    display: none;
  }
  .category-for-pets .description-el-8 {
    top: 140px;
    margin-left: 120px;
  }
  .category-for-pets .description-el-9 {
    width: 205px;
    margin-left: 80px;
    top: 420px;
  }
  .category-for-pets .description-el-10 {
    display: none;
  }
  .production-img-1 {
    width: 240px;
    margin: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 110px;
  }
  .production-img-2 {
    display: none;
  }
  .production .sample-el-1 {
    margin-left: -190px;
    width: 110px;
  }
  .production .sample-el-2 {
    margin-left: 100px;
    top: 430px;
    width: 90px;
  }
  .production .sample-el-3 {
    top: 95px;
    width: 40px;
    margin-left: 30px;
  }
  .production .sample-el-4 {
    margin-left: 100px;
    top: 200px;
  }
  .production .sample-el-5 {
    margin-left: 60px;
    width: 40px;
    bottom: auto;
    top: 445px;
  }
  .production .sample-el-6 {
    display: none;
  }
  .production .sample-el-7 {
    margin-left: -280px;
    width: 90px;
  }
  .production .sample-el-8 {
    margin-left: 100px;
    top: -50px;
    width: 120px;
  }
  .production .sample-el-9 {
    margin-left: -270px;
  }
  .production .sample-el-10 {
    bottom: 680px;
    margin-left: -220px;
    width: 120px;
  }
  .production .sample-el-11 {
    margin-left: 150px;
  }
  .production .sample-el-12 {
    top: -10px;
    width: 90px;
    margin-left: -190px;
  }
  .production .sample-el-13 {
    margin-left: 160px;
    width: 120px;
  }
  .lab-img-1 {
    width: 290px;
    margin: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 110px;
  }
  .lab-img-2 {
    display: none;
  }
  .lab .sample-el-1 {
    top: 200px;
    margin-left: -200px;
  }
  .lab .sample-el-2 {
    width: 50px;
    margin-left: 120px;
    top: 400px;
  }
  .lab .sample-el-3 {
    margin-left: 100px;
    top: 150px;
  }
  .lab .sample-el-4 {
    margin-left: 100px;
  }
  .lab .sample-el-5 {
    display: none;
  }
  .lab .sample-el-6 {
    width: 40px;
    margin-left: 150px;
  }
  .lab .sample-el-7 {
    margin-left: 200px;
  }
  .lab .sample-el-8 {
    margin-left: -270px;
  }
  .lab .sample-el-9 {
    margin-left: -150px;
    width: 120px;
    top: -20px;
  }
  .lab .sample-el-10 {
    width: 120px;
    margin-left: 180px;
  }
  .trademarks-img-1 {
    width: 200px;
    margin: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 110px;
  }
  .trademarks-img-2 {
    display: none;
  }
  .trademarks .sample-el-1 {
    margin-left: -200px;
    width: 50px;
  }
  .trademarks .sample-el-2 {
    margin-left: 100px;
    top: 300px;
  }
  .trademarks .sample-el-3 {
    width: 70px;
    top: 320px;
    margin-left: -200px;
  }
  .trademarks .sample-el-4 {
    width: 100px;
    top: 120px;
    margin-left: -200px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
  }
  .trademarks .sample-el-5 {
    width: 50px;
    margin-left: -250px;
  }
  .trademarks .sample-el-6 {
    margin-left: 200px;
  }
  .trademarks .sample-el-7 {
    width: 120px;
    margin-left: 180px;
  }
  .trademarks .sample-el-8 {
    top: -20px;
    width: 140px;
    margin-left: 50px;
  }
  .error-404-bl {
    background: 0 0;
    width: 316px;
    height: 219px;
    left: 50%;
    -webkit-transform: translateX(-60%);
    transform: translateX(-60%);
  }
  .error-404-bl::after {
    width: 84px;
    height: 99px;
    background-size: cover;
    left: 53%;
  }
  .error-404__img {
    width: 100%;
    left: 0;
    top: 0;
  }
  .error-404-el-1 {
    width: 46px;
    top: -8%;
    left: 50%;
  }
  .error-404-el-2 {
    width: 70px;
    right: -15%;
    top: 70%;
  }
  .error-404-el-3 {
    display: none;
  }
  .privacy {
    padding-top: 30px;
  }
  .privacy-el-1 {
    width: 60px;
    margin-left: 200px;
  }
  .privacy-el-2 {
    width: 60px;
    margin-left: -200px;
  }
  .privacy-el-3 {
    margin-left: 140px;
    width: 150px;
    top: 120px;
  }
  .privacy-el-4 {
    width: 150px;
    top: 250px;
    margin-left: -330px;
  }
  .privacy-el-5 {
    display: none;
  }
  .privacy-el-6 {
    margin-left: -300px;
    width: 120px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
  }
  .privacy-el-7 {
    bottom: 120px;
    margin-left: 150px;
    width: 150px;
  }
  .privacy-el-8 {
    margin-left: -300px;
  }
  .privacy-el-9 {
    margin-left: 200px;
  }
  .privacy-el-10 {
    margin-left: -320px;
    width: 100px;
  }
  .privacy-el-11 {
    width: 70px;
    margin-left: 50px;
    top: 20px;
  }
  .private-label .sample-el-1 {
    max-width: 40px;
    top: 570px;
    left: calc(50% + 170px);
  }
  .private-label .sample-el-2 {
    max-width: 40px;
    left: calc(50% - 250px);
  }
  .private-label .sample-el-3 {
    max-width: 120px;
    top: 1250px;
    left: calc(50% - 220px);
  }
  .private-label .sample-el-4 {
    max-width: 40px;
    left: calc(50% + 180px);
  }
  .private-label .sample-el-5 {
    max-width: 100px;
    left: calc(50% - 240px);
    bottom: 50px;
  }
  .private-label .sample-bottom {
    padding-top: 50px;
  }
  .private-label .sample-img--left {
    left: 43%;
  }
  .private-label .sample-img--right {
    display: none;
  }
  .private-label__cards {
    max-width: 330px;
  }
  .private-label__cards .cards-row {
    padding-left: 0;
    padding-right: 0;
  }
  .private-label__cards .card {
    max-width: calc(100% - 22px);
    margin-bottom: 15px;
  }
  .c-manufacturing__subtitle {
    font-size: 40px;
    text-align: left;
    margin-bottom: 20px;
  }
  .c-manufacturing__cards {
    padding-top: 10px;
  }
  .c-manufacturing .sample-bl .t_xs {
    font-size: 24px;
  }
  .c-manufacturing .card {
    max-width: 330px;
    margin-bottom: 15px;
  }
  .c-manufacturing .sample-img--left {
    left: 50%;
  }
  .c-manufacturing .sample-img--right {
    display: none;
  }
  .c-manufacturing .sample-el-6 {
    max-width: 40px;
    left: calc(50% - 250px);
  }
  .c-manufacturing .sample-el-3 {
    left: calc(50% - 310px);
  }
  .c-manufacturing .sample-el-4 {
    display: none;
  }
  .c-raw-materials .sample__title--2 {
    font-size: 45px;
  }
  .c-raw-materials .sample-el-1 {
    max-width: 40px;
    top: 160px;
    left: calc(50% + -160px);
  }
  .c-raw-materials .sample-el-2 {
    max-width: 90px;
    left: calc(50% - -110px);
    top: 405px;
  }
  .c-raw-materials .sample-el-9 {
    left: calc(50% - -71px);
    top: 1635px;
    width: 170px;
  }
  .c-raw-materials__text.text {
    margin-bottom: 30px;
  }
  .c-raw-materials__cards {
    max-width: 330px;
  }
  .c-raw-materials__cards .card {
    margin: 0;
  }
  .c-raw-materials__cards .card:not(:last-of-type) {
    margin-bottom: 15px;
  }
  .c-raw-materials__cards-column {
    max-width: 100%;
  }
  .c-raw-materials__cards-column:not(:last-of-type) {
    margin-bottom: 15px;
  }
  .c-raw-materials .sample-img--left {
    left: 50%;
    max-width: 250px;
  }
  .c-raw-materials .sample-img--right {
    display: none;
  }
  .order_page .textarea {
    height: 128px;
  }
  .order_page .wrap_block {
    padding: 60px 0;
  }
  .order_page .order-img-left {
    position: static;
    width: 100%;
    z-index: 1;
  }
  .order_page .order-img-right {
    display: none;
  }
  .order_page .main_block {
    margin-top: 20px;
    padding: 10px 15px 70px;
  }
  .order_page .flex_block {
    margin: 12px 0 30px;
  }
  .order_page .block-1 {
    margin: 0 0 30px;
  }
  .order_page .block-1 .input-wrap {
    width: 100%;
    margin: 20px 0 0;
  }
  .order_page .custom-radio {
    margin: 8px 0 0;
  }
  .order_page .block-2 .custom-radio {
    width: 100%;
  }
  .order_page .block-3 .flex_block {
    margin: 16px -4px 26px;
  }
  .order_page .block-3 .custom-radio {
    width: 47%;
    margin: 4px;
  }
  .order_page .block-3 .input-wrap-dop {
    margin: 8px 0 0;
    width: 100%;
  }
  .order_page .block-3 .input-wrap-dop textarea {
    height: 75px;
  }
  .order_page .block-4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin: 0 0 30px;
  }
  .order_page .block-4 .row {
    width: 100%;
    margin: 20px 0 0;
  }
  .order_page .block-5 .input-wrap {
    width: 100%;
  }
  .order_page .block-6 .input-wrap {
    width: 100%;
  }
  .order_page .block-9 {
    width: 100% !important;
    margin: 8px 0 0important;
  }
  .order_page .block-10 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .order_page .block-10 .row {
    width: 100%;
  }
  .order_page .block-10 .row2 {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
  .order_page .block-10 .input-wrap {
    margin: 0;
  }
  .order_page .sample-el-1 {
    top: 3%;
    right: -10%;
  }
  .order_page .sample-el-2 {
    top: 1%;
    left: -25%;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .order_page .sample-el-3 {
    display: none;
  }
  .order_page .sample-el-4 {
    top: 8.5%;
    right: 73%;
  }
  .c-p-formulations .t_xs {
    font-size: 24px;
  }
  .c-p-formulations .title {
    margin-bottom: 20px;
    text-align: start;
  }
  .c-p-formulations .mobile_none {
    display: none;
  }
  .c-p-formulations .mobile_done {
    display: -webkit-box;
    display: flex;
  }
  .c-p-formulations .wrap {
    padding: 40px 0 0;
  }
  .c-p-formulations .container {
    padding: 30px 15px 70px;
  }
  .c-p-formulations .flex_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .c-p-formulations .flex_block .block {
    width: 100%;
  }
  .c-p-formulations .block-1 .title {
    max-width: 80%;
  }
  .c-p-formulations .block-1 .left_block {
    margin: 0 0 8px;
  }
  .c-p-formulations .block-1 .img_block {
    margin: 20px 0;
    flex-wrap: wrap;
  }
  .c-p-formulations .block-1 .logo_block .text {
    text-align: start;
  }
  .c-p-formulations .block-1 .lastlogo {
    margin: 20px auto 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
  }
  .c-p-formulations .block-1 .sample-el-1 {
    width: 87px;
    height: 50px;
    top: 4%;
  }
  .c-p-formulations .block-1 .sample-el-2 {
    width: 53px;
    height: 21px;
    right: 20%;
  }
  .c-p-formulations .block-1 .sample-el-3 {
    display: none;
  }
  .c-p-formulations .stages_block {
    background: url("") no-repeat center top;
  }
  .c-p-formulations .stages_block .stage {
    max-width: 270px;
  }
  .c-p-formulations .stages_block .stage:nth-of-type(1)::before {
    top: -5px;
  }
  .c-p-formulations .stages_block .stage:nth-of-type(1)::after {
    top: 0;
  }
  .c-p-formulations .stages_block .stage:nth-of-type(2)::before {
    left: 140px;
  }
  .c-p-formulations .stages_block .stage:nth-of-type(2)::after {
    left: 150px;
  }
  .c-p-formulations .stages_block .stage:nth-of-type(3)::before {
    left: 90px;
  }
  .c-p-formulations .stages_block .stage:nth-of-type(3)::after {
    left: 100px;
  }
  .c-p-formulations .stages_block .stage:nth-of-type(4)::before {
    left: 150px;
  }
  .c-p-formulations .stages_block .stage:nth-of-type(4)::after {
    left: 160px;
  }
  .c-p-formulations .stages_block .stage:nth-of-type(5)::before {
    left: 80px;
    top: 10px;
  }
  .c-p-formulations .stages_block .stage:nth-of-type(5)::after {
    top: 14px;
    left: 90px;
  }
  .c-p-formulations .stages_block .stage:nth-of-type(6)::before {
    left: 160px;
    top: 10px;
  }
  .c-p-formulations .stages_block .stage:nth-of-type(6)::after {
    top: 14px;
    left: 170px;
  }
  .c-p-formulations .block-2 .sample-el-1 {
    display: none;
  }
  .c-p-formulations .block-2 .sample-el-2 {
    width: 70px;
    height: 28px;
    bottom: 20%;
    left: 40%;
  }
  .c-p-formulations .block-2 .sample-el-3 {
    width: 123px;
    height: 85px;
    left: 67%;
    top: 12%;
  }
  .c-p-formulations .block-3 .flex_block div {
    width: 100%;
  }
  .c-p-formulations .block-3 .flex_block .img_block .desk {
    display: none;
  }
  .c-p-formulations .block-3 .flex_block .img_block .mob {
    display: block;
  }
  .c-p-formulations .block-3 .flex_block .img_block {
    width: 100%;
    margin: 20px 0;
  }
  .filling-and-packaging-services .stages_block {
    background: url("") no-repeat 10px 17px;
  }
  .filling-and-packaging-services .stages_block .stage:nth-of-type(odd) {
    padding-top: 44px;
  }
  .filling-and-packaging-services .stages_block .stage:nth-of-type(even) {
    margin-top: 0;
    padding-top: 44px;
  }
  .filling-and-packaging-services
    .stages_block
    .stage:nth-of-type(even)
    .stage__photo {
    margin-right: 0;
  }
  .filling-and-packaging-services .stages_block .stage__title {
    font-size: 30px;
  }
  .filling-and-packaging-services .stages_block .stage__photo {
    height: auto;
    margin-right: 20px;
  }
  .filling-and-packaging-services .stages_block .stage:nth-of-type(1)::before {
    top: -5px;
    left: 100px;
  }
  .filling-and-packaging-services .stages_block .stage:nth-of-type(1)::after {
    top: 0;
    left: 110px;
  }
  .filling-and-packaging-services .stages_block .stage:nth-of-type(2)::before {
    left: 140px;
  }
  .filling-and-packaging-services .stages_block .stage:nth-of-type(2)::after {
    left: 150px;
  }
  .filling-and-packaging-services .stages_block .stage:nth-of-type(3)::before {
    left: 90px;
  }
  .filling-and-packaging-services .stages_block .stage:nth-of-type(3)::after {
    left: 100px;
  }
  .filling-and-packaging-services .stages_block .stage:nth-of-type(4)::before {
    left: 150px;
  }
  .filling-and-packaging-services .stages_block .stage:nth-of-type(4)::after {
    left: 160px;
  }
  .filling-and-packaging-services .stages_block .stage:nth-of-type(5)::before {
    left: 100px;
    top: 10px;
  }
  .filling-and-packaging-services .stages_block .stage:nth-of-type(5)::after {
    top: 14px;
    left: 110px;
  }
  .filling-and-packaging-services .stages_block .stage:nth-of-type(6)::before {
    left: 150px;
    top: 0;
  }
  .filling-and-packaging-services .stages_block .stage:nth-of-type(6)::after {
    top: 4px;
    left: 160px;
  }
  .filling-and-packaging-services .stages_block .stage:nth-of-type(7)::before {
    left: 90px;
    top: 0;
  }
  .filling-and-packaging-services .stages_block .stage:nth-of-type(7)::after {
    top: 6px;
    left: 101px;
  }
  .filling-and-packaging-services .stages_block .stage:nth-of-type(8)::before {
    left: 150px;
    top: 0;
  }
  .filling-and-packaging-services .stages_block .stage:nth-of-type(8)::after {
    top: 4px;
    left: 160px;
  }
  .filling-and-packaging-services .block-1 .left_block {
    margin-bottom: 30px;
  }
  .filling-and-packaging-services .block-1 .left_block .t_xs {
    max-width: 100%;
  }
  .filling-and-packaging-services .block-1 .left_block .text {
    max-width: 100%;
  }
  .filling-and-packaging-services .block-1 .right_block .t_xs {
    margin-bottom: 30px;
  }
  .filling-and-packaging-services .block-1 h1 ~ h2 {
    text-align: left;
  }
  .filling-and-packaging-services .block-1 h1 ~ h2 ~ .text {
    text-align: left;
  }
  .filling-and-packaging-services .block-1__subtitle-2.t_xs {
    margin-top: 30px;
  }
  .filling-and-packaging-services .block-1__list {
    display: block;
    margin-bottom: 30px;
  }
  .filling-and-packaging-services .block-1__item {
    max-width: 100%;
  }
  .filling-and-packaging-services .block-1__item:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .filling-and-packaging-services .block-1__bottom .left_block {
    text-align: center;
    margin-bottom: 0;
  }
  .filling-and-packaging-services .block-1__bottom .right_block {
    margin-bottom: 50px;
  }
  .filling-and-packaging-services .block-1__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
  }
  .filling-and-packaging-services .block-1__bottom .img_block {
    margin-top: 0;
  }
  .filling-and-packaging-services .block-2 .title {
    font-size: 40px;
  }
  .filling-and-packaging-services .block-2__bottom {
    display: block;
    position: relative;
    z-index: 2;
  }
  .filling-and-packaging-services .block-2__col {
    max-width: 100%;
  }
  .filling-and-packaging-services .block-2__col:not(:last-of-type) {
    margin-bottom: 12px;
  }
  .filling-and-packaging-services .block-4 .container {
    padding-top: 70px;
  }
  .filling-and-packaging-services .block-5 .title ~ .text {
    text-align: left;
  }
  .filling-and-packaging-services .block-5__item {
    max-width: 100%;
  }
  .filling-and-packaging-services .block-5__item:nth-of-type(-n + 3) {
    margin-bottom: 50px;
  }
  .ready-made .wrap {
    padding-top: 74px;
  }
  .ready-made .block-1 {
    padding-bottom: 40px;
  }
  .ready-made .block-1 .el {
    display: none;
  }
  .ready-made .block-1 .title-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .ready-made .block-1 .title {
    font-size: 46px;
    line-height: 49.91px;
  }
  .ready-made .block-1 .subtitle {
    font-size: 14px;
    line-height: 21px;
    padding: 0;
  }
  .ready-made .block-2 {
    text-align: left;
    padding: 40px 0;
  }
  .ready-made .block-2 .title {
    font-size: 46px;
    line-height: 46px;
    text-align-last: left;
  }
  .ready-made .block-2 .text {
    font-size: 21px;
    line-height: 31.5px;
    text-align-last: left;
  }
  .ready-made .block-2 .el {
    display: none;
  }
  .ready-made .block-3 {
    padding: 40px 0;
  }
  .ready-made .block-3 .title {
    font-size: 46px;
    line-height: 49.91px;
    text-align: left;
    margin-bottom: 20px;
  }
  .ready-made .block-3 .accordion-bl-title .t_xs {
    font-size: 24px;
    line-height: 28.8px;
    max-width: 280px;
  }
  .ready-made .block-3 .accordion-bl {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .goods {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 30px;
  }
  .goods__col--filter {
    width: 100%;
  }
  .goods__col--grid {
    gap: 30px;
  }
  .goods__item {
    width: 316px;
    margin: 0 auto;
  }
  .filter__title {
    font-size: 24px;
    line-height: 28.8px;
  }
  .ready-made-review .wrap {
    padding-top: 45px;
  }
  .ready-made-review .block-1 {
    padding-bottom: 40px;
  }
  .ready-made-review .block-1 .back {
    margin-bottom: 30px;
  }
  .ready-made-review .block-1 .el.sample-el-2 {
    right: -10px;
    left: auto;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    top: 0;
  }
  .ready-made-review .block-1 .title {
    font-size: 46px;
    line-height: 49.91px;
    margin-bottom: 10px;
  }
  .ready-made-review .block-1 .text.compound {
    margin-bottom: 40px;
  }
  .ready-made-review .block-1 .columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
  }
  .ready-made-review .block-1 .columns .column--text {
    max-width: 100%;
  }
  .ready-made-review .block-2 {
    text-align: left;
  }
  .ready-made-review .block-2 .el {
    display: none;
  }
  .ready-made-review .block-2 .title {
    font-size: 46px;
    line-height: 46px;
    text-align-last: left;
  }
  .ready-made-review .block-2 .no-slider {
    gap: 20px;
  }
  .ready-made-review .block-2 .no-slider .main_block {
    width: 100%;
    min-width: 330px;
  }
  .ready-made-review .block-3 {
    padding: 40px 0;
  }
  .ready-made-review .block-3 .el {
    display: none;
  }
  .ready-made-review .block-3 .contacts-form-wrap {
    width: 306px;
  }
  .ready-made-review .block-3 .contacts-form-wrap .contacts-form__col {
    width: 100%;
    margin-bottom: 10px;
  }
  .ready-made-review .block-3 .contacts-form-wrap .contacts-form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin-bottom: 10px;
    gap: 10px;
  }
  .ready-made-review .block-3 .contacts-form-wrap .form__btn {
    width: 306px;
    margin-top: 30px;
  }
  .ready-made-review .picture-gallery__item {
    padding: 0 5px;
  }
  .ready-made-review .picture-gallery__item--half {
    min-width: auto;
  }
  .ready-made-review .picture-gallery__item--third {
    min-width: auto;
  }
  .ready-made-review .picture-gallery__picture {
    width: 300px;
  }
  .ready-made-review .order-info__text {
    -webkit-box-flex: 0;
    flex: 0;
  }
}
@media screen and (max-width: 769px) {
  .c-p-formulations .block-4 .container {
    padding-top: 30px;
  }
  .c-p-formulations .block-4 .packaging-bottom {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .repeating-inputs__row:not(:last-of-type) .input-wrap .input {
    border-bottom: none;
  }
  .repeating-inputs__row .input-wrap:not(:first-of-type) .input {
    border-left: none;
  }
}
@media screen and (max-width: 767px) {
  .packaging-list {
    width: 768px;
  }
  .contacts-form__row {
    display: block;
  }
  .contacts-form__col {
    width: 100%;
    margin-bottom: 20px;
  }
  .repeating-inputs__label:not(:first-of-type) {
    display: none;
  }
  .repeating-inputs__row {
    display: block;
  }
  .repeating-inputs__row:not(:last-of-type) {
    margin-bottom: 7px;
  }
  .repeating-inputs__row .input-wrap .input::-webkit-input-placeholder {
    color: #757575;
  }
  .repeating-inputs__row .input-wrap .input:-ms-input-placeholder {
    color: #757575;
  }
  .repeating-inputs__row .input-wrap .input::-ms-input-placeholder {
    color: #757575;
  }
  .repeating-inputs__row .input-wrap .input::placeholder {
    color: #757575;
  }
  .repeating-inputs__row .input-wrap:not(:last-of-type) .input {
    border-bottom: none;
  }
}
@media screen and (max-width: 540px) {
  .pack-wrap {
    width: 280px !important;
    padding: 24px;
    margin: 0 0 0 10px;
  }
}
@media screen and (max-width: 360px) {
  .packaging-list {
    width: 480px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-left: -180px;
  }
  .packaging .slick-list {
    padding: 0 190px 0 0 !important;
  }
  .pack {
    max-width: 290px;
  }
  .c-p-formulations .block-4 .production-wrap .pack {
    max-width: 290px;
  }
}
