::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  /* ширина scrollbar */
  }
  
  ::-webkit-scrollbar-track {
  background: var(--Background-secondary);
  /* цвет дорожки */
  }
  
  ::-webkit-scrollbar-thumb {
  background-color: var(--Primary);
  /* цвет плашки */
  border-radius: 100px;
  /* закругления плашки */
  /* padding вокруг плашки */
  }

/*============= ALIGNES ===============*/

.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
    /*margin-left: calc(-1 * (1920px - 1170px) / 2) !important;*/
    /*margin-right: calc(-1 * (1920px - 1170px) / 2) !important;*/
  }
}
/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

a[href^="tel:"],
a[href^="mailto:"] {
  white-space: nowrap;
}

* {
  margin: 0;
  padding: 0;
  font-family: "InterTight";
	font-weight: 400;
  box-sizing: border-box;
  color: var(--Head-primary);
  text-decoration: none;
}

ul {
  list-style: none;
}

body {
  background-color: var(--Background);
  /*max-width: 1920px;*/
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
  /*-webkit-box-shadow: 0 0 20px 5px #747474;*/
  /*box-shadow: 0 0 20px 5px #747474;*/
}

main.foned {
  position: relative;
  overflow: hidden;
  z-index: 999;
}
main.foned:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

section {
  margin-bottom: var(--Margin-80);
}

.breadcrumbs {
  padding: var(--Padding-20) 0;
  color: var(--Head-primary);
}
.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.breadcrumbs span.current-item {
  color: #121212;
}

.container {
  max-width: var(--Mobile-container);
  width: var(--Container);
  margin: 0 auto;
}

#main,
#primary {
  min-height: 83vh;
}

.logo {
  position: relative;
  display: block;
  width: 0px;
  min-width: clamp(100px, 66.3889px + 7.6389vw, 210px);
  height: auto;
  aspect-ratio: 210 / 80;

  & .logo__img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}

.socials {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.social {
  position: relative;
  width: 0px;
  min-width: var(--Size-60);
  height: auto;
  aspect-ratio: 1;
  border-radius: 5px;
  background-color: var(--Background);
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px var(--Main-text-secondary);
  transition: var(--Transition);

  & img {
    position: relative;
    display: block;
    width: 43.35%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
  }

  &:hover {
    background-color: var(--Hover-secondary);
    border-color: var(--Hover-secondary);
  }
  &:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7201%) hue-rotate(47deg) brightness(129%) contrast(93%);
  }
}

.btn {
  position: relative;
  display: block;
  width: fit-content;
  height: fit-content;
  padding: calc(var(--Padding-20) - 1.5px) var(--Padding-30);
  border-radius: 5px;
  border: solid 1px var(--Primary);
  cursor: pointer;
  transition: var(--Transition);
  color: var(--Primary);
  text-align: center;

  &.full {
    width: 100%;
  }

  &.primary {
    background-color: var(--Primary);
    border-color: var(--Primary);
    color: var(--Head-secondary);
  }
  &.white {
    background-color: var(--Background);
    color: var(--Primary);
  }

  &:hover {
    background-color: var(--Primary-hover);
    border-color: var(--Primary-hover);
    color: var(--Head-secondary);
  }
}

.title {
  position: relative;
  color: var(--Head-primary);
  margin-bottom: var(--Margin-40);
  text-align: center;
  text-transform: uppercase;
  
  &.left {
    text-align: left;
  }
}

[data-modal],
[data-fancybox] {
  cursor: pointer;
}


.text-style {
  position: relative;

  & * {
    color: var(--Main-text-primary);
  }

  & ul {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--Margin-10);
  }
  & ul li {
    position: relative;
    display: flex;
    align-items: start;
    gap: var(--Margin-10);
  }
  & ul li::before {
    content: '';
    width: 0px;
    min-width: clamp(8px, 7.3889px + 0.1389vw, 10px);
    height: auto;
    aspect-ratio: 1;
    background-color: var(--Primary);
    border-radius: 200px;
    margin-top: calc(var(--Margin-10) / 1.5);
  }
  &.line-ul ul li::before {
    height: 3px;
    margin-top: calc(var(--Margin-10) / 1.2)
  }

  & a {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
  }

  & p {
    margin-bottom: var(--Margin-15);
    margin-top: var(--Margin-15);
  }
  & h1,
  & h2,
  & h3 {
    margin-top: var(--Margin-40);
    margin-bottom: var(--Margin-30);
  }
  & h4,
  & h5,
  & h6 {
    margin-top: var(--Margin-30);
    margin-bottom: var(--Margin-20);
  }

  & h1,
  & h2,
  & h3,
  & h4,
  & h5,
  & h6 {
    color: var(--Head-primary);
  }

  & > *:first-child {
    margin-top: 0px !important;
  }
  & > *:last-child {
    margin-bottom: 0px !important;
  }
}


.video__play {
  position: relative;
  width: 0px;
  min-width: clamp(75px, 69.1944px + 1.3194vw, 94px);
  height: auto;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;

  &::before {
      content: '';
      position: absolute;
      display: block;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100%;
      background-color: var(--Background);
      opacity: 0.5;
      border-radius: 200px;
  }
  &::after {
      content: '';
      position: absolute;
      display: block;
      top: 50%;
      left: 50%;
      transform: translateX(-50%) translateY(-50%);
      width: clamp(50px, 45.7222px + 0.9722vw, 64px);
      height: auto;
      aspect-ratio: 1;
      background-color: var(--Background);
      border-radius: 200px;
  }

  & svg {
      position: relative;
      z-index: 5;
      width: 18px;
      height: auto;
      aspect-ratio: 1;
  }
  & svg use {
    fill: var(--Primary);
  }
}


.swiper__navigation  {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--Gap-30);
  margin-top: var(--Margin-40);
  width: 100%;
}
.arrows {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--Gap-10);
  width: min-content;
}
.arrow {
  position: relative;
  width: 0%;
  min-width: var(--Size-60);
  height: auto;
  aspect-ratio: 1;
  border-radius: 5px;
  border: solid 1px var(--Primary);
  cursor: pointer;
  transition: var(--Transition);

  display: flex;
  align-items: center;
  justify-content: center;

  & svg {
    position: relative;
    width: 34.5%;
    height: auto;
    aspect-ratio: 1;
  }

  & svg path {
    fill: var(--Primary);
    transition: var(--Transition);
  }

  &.prev svg {
    transform: rotate(180deg);
  }

  &:hover {
    background-color: var(--Primary-hover);
    border-color: var(--Primary-hover);
  }
  &:hover svg path {
    fill: var(--Head-secondary);
  }

  &.swiper-button-disabled {
    background-color: var(--Stroke);
    border-color: var(--Stroke);
    cursor: not-allowed;
  }
  &.swiper-button-disabled svg path {
    fill: var(--Main-text-primary);
  }
}
.swiper__navigation-pagination {
  position: relative;
  width: fit-content !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px !important;
  top: 0px !important;
  bottom: 0px !important;

  & .swiper-pagination-bullet {
    width: 0px;
    min-width: 10px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 2px;
    border: solid 1px var(--Stroke);
    background-color: var(--Background) !important;
    opacity: 1;
    transition: var(--Transition);
    margin: 0px !important;
  }
  & .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: var(--Primary);
    background-color: var(--Primary) !important;
  }
}




input {
  position: relative;
  padding: calc(var(--Padding-20) + 1px) var(--Padding-25);
  border-radius: 5px;
  background-color: var(--Element);
  border: solid 1px var(--Element);
  color: var(--Head-secondary);
  transition: var(--Transition);

  &::placeholder {
    color: var(--Head-secondary);
    transition: var(--Transition);
  }

  &:hover,
  &:active,
  &:focus {
    background-color: var(--Primary);
    border-color: var(--Background);
    outline: none;
  }

  &.error {
    border-color: var(--Error);
    color: var(--Error);
  }
  &.error::placeholder {
    color: var(--Error);
  }
}

.form__wrapper {
  & > .form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--Gap-10);
  }
  & > .form > button[type="submit"] {
    margin-top: var(--Gap-20);
  }
}

.form-privacy {
  position: relative;
  color: var(--Head-secondary);
  margin-top: var(--Margin-10);

  & a {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    text-decoration: underline;
  }
}



/*============ HEADER =================*/
.site-header {
  position: sticky;
  top: 0px;
  padding-top: var(--Padding-10);
  padding-bottom: var(--Padding-10);
  background-color: var(--Background-secondary);
  justify-content: space-between;
  z-index: 800;
}
.header__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--Gap-30);
}
.header__nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--Gap-25);

  & a {
    color: var(--Head-primary);
  }
}
.header__contacts {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--Gap-30);
}
.header__phones {
  position: relative;

  & a {
    color: var(--Head-primary);
  }
}

.StatusWork__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}
.StatusWork {
  position: relative;
  width: 0px;
  min-width: 10px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 200px;
  background-color: var(--Green);

  &.off {
    background-color: var(--Error);
  }
}
.StatusWork__text {
  position: relative;
  color: var(--Head-primary);
}
.header__phone-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.burger {
  position: relative;
  display: none;
  flex-direction: column;
  gap: 10px;
  width: 30px;

  & span {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--Primary);
    border-radius: 5px;
  }
}

@media(max-width: 1330px) {
  .header__socials {
    display: none;
  }
}

@media(max-width: 1000px) {
  .header__nav {
    display: none;
  }
  .burger {
    display: flex;
  }
}

@media(max-width: 560px) {
  .header__contacts > .btn {
    display: none;
  }
}
/*================ MOBILE MNU =============*/

/*============ FOOTER ===============*/
/* ============== MODAL ============= */
.theme-modal {
	display: none;
}
.theme-modal.fancybox__content {
  width: 550px;
  max-width: var(--Mobile-container);
  border-radius: 5px;
  padding: var(--Padding-30) !important;
  background-color: var(--Primary);
  overflow-y: auto;
}
.theme-modal.fancybox__content .f-button.is-close-btn svg path {
  transition: stroke .3s ease-in;
}
.theme-modal.fancybox__content .f-button.is-close-btn:hover svg path {
  stroke: var(--primary);
}
.fancybox__backdrop {
  /* background-color: #ffffff7f !important; */
}
.is-close-btn {
  display: none !important;
}
.close-modal {
  position: absolute;
  top: var(--Padding-10);
  right: var(--Padding-10);
  width: 15px;
  height: auto;
  aspect-ratio: 1;
  cursor: pointer;

  & svg {
    width: 100%;
    height: 100%;
  }
}
.modal__title {
  position: relative;
  color: var(--Head-secondary);
  margin-bottom: var(--Margin-30);
}



/* ============= SERVICE ITEM =========== */
.service-item {
  position: relative;
  padding: var(--Padding-20);
  background-color: var(--Background-secondary);
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
	
	& .service-item__file {
		margin-bottom: 10px;
		display: block;
		color: var(--Primary);
	}
}
.service-item__img-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 450 / 180;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: var(--Margin-20);
}
.service-item__img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.service-item__title {
  position: relative;
  text-transform: uppercase;
  margin-bottom: var(--Margin-20);
  text-align: center;
  color: var(--Head-primary);
}
.service-item__services-title {
  position: relative;
  color: var(--Head-primary);
  margin-bottom: var(--Margin-15);
}
.service-item__services {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;

  & li .service-item__services-head {
    position: relative;
    display: flex;
    /* align-items: start; */
    align-items: center;
    gap: var(--Gap-10);
    width: fit-content;
    cursor: pointer;
  }
  & li .service-item__services-head svg {
    position: relative;
    width: 0px;
    min-width: clamp(20px, 18.4722px + 0.3472vw, 25px);
    max-width: clamp(20px, 18.4722px + 0.3472vw, 25px);
    height: auto;
    aspect-ratio: 1;
  }
  & li .service-item__services-head .service-item__services-head__minus {
    position: relative;
    width: 0px;
    min-width: clamp(16px, 15.3889px + 0.1389vw, 18px);
    height: 4px;
    border-radius: 20px;
    background-color: var(--Error);
    display: none;
  }
  & li.active {
    & .service-item__services-head svg {
      display: none;
    }
    & .service-item__services-head .service-item__services-head__minus {
      display: block;
    }
  }
  & li .service-item__services-head svg use {
    fill: var(--Green);
  }
  & li .service-item__services-head p {
    color: var(--Main-text);
  }

  & li .service-item__services-body {
    overflow: hidden;
    transition: var(--Transition);
  }
  & li .service-item__services-body__wrapper {
    padding-top: var(--Padding-10);
  }
}

.service-item__price {
  position: relative;
  text-align: center;
  color: var(--Head-primary);
  margin-bottom: var(--Margin-20);
  color: var(--Price);
}

.service-item__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--Gap-70);
  height: 0%;
  flex-grow: 1;
  justify-content: space-between;
}



/* ============= REVIEW ITEM =========== */
.review-item {
  position: relative;
  padding: var(--Padding-20);
  background-color: var(--Background-secondary);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: var(--Margin-50);
}
.review-item__header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: var(--Gap-20);
}
.review-item__img-wrapper {
  position: relative;
  width: 0px;
  min-width: clamp(65px, 60.4167px + 1.0417vw, 80px);
  height: auto;
  aspect-ratio: 1;
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--Background);

  display: flex;
  align-items: center;
  justify-content: center;

  & svg {
    width: 30%;
    height: auto;
    aspect-ratio: 1;
  }
  & svg path {
    fill: var(--Primary);
  }
}
.review-item__img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.review-item__info {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.review-item__name {
  position: relative;
  color: var(--Head-primary);
  text-align: right;
}
.review-item__date {
  position: relative;
  color: var(--Main-text-primary);
  text-align: right;
}
.review-item__text {
  & > * {
    display: inline;
  }
  &.hidden {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    line-clamp: 5;
    box-orient: vertical;
  }
}

.review-item__more {
  position: relative;
  margin-top: 10px;
  color: var(--Head-primary);
  cursor: pointer;
  width: fit-content;
}



/* ============= WORK ITEM =========== */
.work-item {
  position: relative;
  width: 100%;
  height: auto;
  padding: var(--Padding-30);
  padding-left: var(--Padding-40);
  background-color: var(--Background-secondary);
  border-radius: 5px;

  display: flex;
  align-items: start;
  gap: var(--Gap-40);
}

.work-item__content {
  position: relative;
  width: 0%;
  flex-grow: 1;
}
.work-item__tags {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: start;
  gap: var(--Gap-10);
  margin-bottom: var(--Margin-20);
}
.work-item__tags-item {
  position: relative;
  padding: calc(var(--Padding-10) - 2px) var(--Padding-15);
  background-color: var(--Background);
  border-radius: 5px;
}
.work-item__title {
  position: relative;
  color: var(--Head-primary-two);
  text-transform: uppercase;
  margin-bottom: var(--Margin-30);
}
.work-item__steps-title {
  position: relative;
  display: block;
  color: var(--Head-primary);
  margin-bottom: var(--Margin-15);
}
.work-item__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;

  &.hidden .work-item__steps-item {
    display: none;
  }
  &.hidden .work-item__steps-item:nth-child(1),
  &.hidden .work-item__steps-item:nth-child(2) {
    display: flex;
  }
}
.work-item__steps-item {
  position: relative;
  display: flex;
  align-items: start;
  gap: var(--Gap-10);

  & svg {
    position: relative;
    width: 0px;
    min-width: clamp(20px, 18.4722px + 0.3472vw, 25px);
    max-width: clamp(20px, 18.4722px + 0.3472vw, 25px);
    height: auto;
    aspect-ratio: 1;
  }

  & p {
    color: var(--Main-text-primary-two);
  }
}
.work-item__steps__bottom {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--Gap-10);
  justify-content: space-between;
  margin-top: var(--Margin-10);

  flex-wrap: wrap;
}
.work-item__steps-more {
  position: relative;
  color: var(--Primary);
  padding-bottom: 2px;
  border-bottom: dashed 1px var(--Primary);
  width: fit-content;
  cursor: pointer;
}
.work-item-pdf {
  position: relative;
  color: var(--Primary);
  cursor: pointer;
  transition: var(--Transition);

  &:hover {
    color: var(--Hover);
  }
}
.work-item__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--Margin-70);
}
.work-item__characteristics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--Gap-10);

  & .work-item__characteristics-item:first-child {
    background-color: var(--Primary);
  }
  & .work-item__characteristics-item:first-child .work-item__characteristics-item__title {
    color: var(--Head-secondary);
  }
  & .work-item__characteristics-item:first-child .work-item__characteristics-item__value {
    color: var(--Head-secondary);
    text-transform: uppercase;
  }
}
.work-item__characteristics-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--Margin-10);
  padding: var(--Padding-15);
  border-radius: 5px;
  background-color: var(--Background);
  justify-content: space-between;
}
.work-item__characteristics-item__title {
  position: relative;
  color: var(--Main-text-primary-two);
}
.work-item__characteristics-item__value {
  position: relative;
  color: var(--Head-primary-two);
}

.work-item__swiper {
  position: relative;
  width: 35.107%;
  border-radius: 5px;
  overflow: hidden;
}
.work-item__img-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 330 / 474;
}
.work-item__img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.work-item__swiper {
  position: relative;
  & .work-item__swiper-pagination {
    position: absolute;
    bottom: 0px !important;
    left: 0px !important;
    top: auto !important;
    width: 100%;
    height: auto;
    max-height: 100%;
    padding: var(--Padding-20);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--Gap-10);
    z-index: 2;
  }
  & .work-item__swiper-pagination .swiper-pagination-bullet {
    position: relative;
    margin: 0px !important;
    opacity: 1 !important;
    width: 17.242%;
    height: 5px;
    background-color: var(--Background);
    border-radius: 1px;
    transition: var(--Transition);
  }
  & .work-item__swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--Primary);
  }
}

@media(max-width: 760px) {
  .work-item {
    flex-direction: column-reverse;
  }
  .work-item__content,
  .work-item__swiper {
    width: 100%;
  }
  .work-item__swiper {
    max-height: 320px;
  }
}
@media(max-width: 440px) {
  .work-item__characteristics {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 350px) {
  .work-item__characteristics {
    grid-template-columns: repeat(1, 1fr);
  }
}



/* ============= STOCK ITEM =========== */
.stock-item {
  position: relative;
  padding: var(--Padding-15);
  padding-top: 0px;
  border-radius: 5px;
  background-color: var(--Background-secondary);
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(var(--Margin-30) + 5px);
}
.stock-item__icon-wrapper {
  position: relative;
  width: 160px;
  max-width: 80%;
  height: fit-content;
  padding: var(--Padding-10);
  padding-bottom: var(--Padding-15);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--Primary);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.stock-item__icon {
  position: relative;
  width: clamp(22px, 19.5556px + 0.5556vw, 30px);
  height: auto;
  aspect-ratio: 1;

  & path,
  & rect {
    fill: var(--Background);
  }
}
.stock-item__content {
  position: relative;
  padding: 0px var(--Padding-35);
  display: flex;
  flex-direction: column;
  gap: var(--Margin-25);
}
.stock-item__title {
  position: relative;
  color: var(--Head-primary);
  text-transform: uppercase;
}
.stock-item__text {
  position: relative;

  & a {
    color: var(--Head-primary);
    font-weight: 700;
    display: inline;
  }
  & a[href^="tel:"] {
    white-space: nowrap;
  }
}
.stock-item__btn {
  margin-top: var(--Margin-15);
}
.stock-item__date {
  width: 100%;
  height: fit-content;
  padding: var(--Padding-15);
  background-color: var(--Stroke);
  color: var(--Main-text-primary);
  border-radius: 5px;
  text-align: center;

  margin-top: calc(var(--Margin-60) + 5px);
}
.stock-item.primary {
  background-color: var(--Primary);

  & .stock-item__icon-wrapper {
    background-color: var(--Background);
  }

  & .stock-item__icon path,
  & .stock-item__icon rect {
    fill: var(--Primary);
  }

  & .stock-item__title {
    color: var(--Head-secondary);
  }

  & .stock-item__text * {
    color: var(--Main-text-secondary);
  }

  & .stock-item__date {
    background-color: var(--Element);
    color: var(--Head-secondary);
  }
}
@media(max-width: 1200px) {
  .stock-item__content {
    padding: 0px var(--Padding-10);
  }
}



/* ============= FOOTER =========== */
.site-footer {
  position: relative;
  padding-top: var(--Padding-60);
  padding-bottom: var(--Padding-30);
  background-color: var(--Background-secondary);
}
.footer__top {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--Gap-25);
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: var(--Padding-30);
}
.footer__nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--Gap-25);

  & a {
    color: var(--Head-primary);
  }
}
.footer__contacts {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--Gap-30);
  /* flex-wrap: wrap; */
  row-gap: 10px;
  width: fit-content;

  & .socials {
    flex-wrap: nowrap;
  }
}
.footer__phone {
  color: var(--Head-primary);
}
@media(max-width: 1300px) {
  .footer__top {
    justify-content: start;
  }
  .footer__contacts {
    width: 100%;
    flex-wrap: wrap;
  }
}
@media(max-width: 440px) {
  .footer__nav,
  .footer__top {
    flex-direction: column;
    align-items: start;
  }
}

.footer__bottom {
  position: relative;
  padding-top: var(--Padding-30);
  display: flex;
  align-items: center;
  gap: var(--Gap-20);
  justify-content: space-between;
  border-top: solid 1px var(--Stroke);
}
.footer__privacy {
  position: relative;
  display: block;
  color: var(--Main-text-primary);
  text-decoration: underline;
}
.grampus {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.grampus p {
  color: var(--Main-text-primary);
  transition: var(--Transition);
}
.grampus .grampus__img {
  width: 111px;
  height: 17px;
  mask-image: url(../images/gmask.png);
  mask-origin: border-box;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--Main-text-primary);
  position: relative;
  cursor: pointer;
  display: inline-flex;
  vertical-align: sub;
  transition: var(--Transition);
  overflow: hidden;
}
.grampus__img:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: red;
  transform: translateX(100%);
  transition: transform .7s ease-in;
  background: linear-gradient(90deg, #fe6604 10%, #ee0a76 30%, #ee0a76 60%, #fe6604 101%) repeat-x 0 0;
  background-size: 100px;
  animation-duration: 5s;
  animation-name: slideUp;
  animation-iteration-count: infinite;
  animation-delay: 3s;
}
@keyframes slideUp {
  0% {
    transform: translateX(-100%);
  }

  50% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(100%);
  }
}
.grampus:hover p {
  color: var(--Primary);
}
.grampus:hover .grampus__img {
  background-color: var(--Primary);
}
.copyrite {
  position: relative;
  display: block;
  color: var(--Main-text-primary);
}
@media(max-width: 730px) {
  .footer__bottom {
    flex-direction: column;
  }
}



/* ============= MOBILE MENU =========== */
.mobile-menu-blackout {
  position: absolute;
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: calc(100vh - 100%);
  transform: translateY(100%) translateX(100%);
  width: 100%;
  background-color: #ffffff7f;
  transition: var(--Transition);

  &.open {
    transform: translateY(100%) translateX(0%);
  }
}
.mobile-menu {
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: calc(100vh - 100%);
  transform: translateY(100%) translateX(-100%);
  width: 320px;
  max-width: 100%;
  background-color: var(--Background);
  padding: var(--Padding-10);
  transition: var(--Transition);

  &.open {
    transform: translateY(100%) translateX(0%);
  }
}
.mobile-header__nav {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(var(--Gap-10) / 2);
}
.mobile-header__phones {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(var(--Gap-10) / 2);
  margin-top: var(--Margin-15);
}
.mobile-btn-menu,
.mobile-header__socials {
  margin-top: var(--Margin-15);
}
.__lock {
  width: auto;
  overflow: hidden !important;
  overscroll-behavior-y: none;
  touch-action: none;
  -ms-touch-action: none;
}


/* ============= 404 PAGE =========== */
.error-404 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--Margin-80);
}
.status-404 {
  position: relative;
  font-size: clamp(100px, 69.4444px + 6.9444vw, 200px) !important;
  display: block;
  padding: 0px var(--Padding-20);
  color: var(--Head-secondary);
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--Primary);
  width: fit-content;
}
.content-404 {
  position: relative;
  width: 610px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title-404 {
  position: relative;
  color: var(--Head-primary);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--Margin-20);
}
.text-404 {
  position: relative;
  color: var(--Main-text-primary);
  text-align: center;
  margin-bottom: var(--Margin-30);
}
@media (max-width: 700px) {
  body.error404 {
    & > main {
      min-height: 0px !important;
    }
  }
}

.modal-content__wrapper {
  position: relative;
}
.modal-content__img-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 490 / 320;
  border-radius: 10px;
  overflow: hidden;

  margin-bottom: var(--Margin-30);
}
.modal-content__img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.modal-content__title {
  color: var(--Head-secondary);
  line-height: 100%;
  margin-bottom: var(--Margin-20);
}
.modal-content__text * {
  color: var(--Head-secondary);
}

#modal-content .modal-content__wrapper::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--Primary);
  opacity: 0;
  visibility: collapse;
  transition: var(--Transition);

  z-index: 3;
}
#modal-content.loading .modal-content__wrapper::before {
  opacity: 1;
  visibility: visible;
}

#modal-content .modal-content__wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: var(--Size-50);
  height: auto;
  aspect-ratio: 1;
  background-image: url(../images/loding-sp.gif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  visibility: collapse;
  transition: var(--Transition);
  z-index: 4;
}
#modal-content.loading .modal-content__wrapper::after {
  opacity: 1;
  visibility: visible;
}

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