:root {
  --colorYellow: #f0ff49;
  --colorBlack: #1f1f1f;
  --colorGrayBlue: #2e3b4a;
  --colorGrayDark: #717178;
  --colorGray: #9b9b9c;
  --colorBorder: #ebebea;
  --colorWhite: #ffffff;
}

:root {
  --colorBgGrey: #f5f5f8;
  --colorBgDarkBlue: #2e3b4a;
  --colorBgBlue: #334152;
}

* {
  -webkit-box-sizing: border-box;
  outline: 0 !important;
  margin: 0;
  padding: 0;
}

body,
html {
  width: 100%;
  min-width: 375px;
}

body {
  font-family: "RedHatText";
  /* font-weight: normal; */
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  color: var(--colorBlack);
  position: relative;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-display: swap;
  margin: 0;
  scroll-behavior: smooth;
}


footer,
header,
main {
  width: 100%;
  max-width: 100%;
}

img,
picture,
video {
  max-width: 100%;
  max-height: 100%;
}

ol,
ul {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  outline: 0 !important;
  color: inherit;
  transition: 0.3s;
}

a:active {
  text-decoration: none;
  color: inherit;
}

button {
  outline: 0 !important;
  border: none;
  background-color: unset;
  padding: 0;
  margin: 0;
}

/*  */

.color-black {
  color: var(--colorBlack);
}

.color-yellow {
  color: var(--colorYellow);
}

.color-white {
  color: var(--colorWhite);
}

.color-gray {
  color: var(--colorGray);
}

.color-gray-dark {
  color: var(--colorGrayDark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.title-big,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  font-family: "Steppe";
}

h5,
.h5,
.title-1,
.title-2,
.title-3,
.text-1,
.text-2,
.text-3,
p,
.caption,
button > span,
.button > span {
  font-family: "RedHatText";
}

.title-big {
  font-size: 110px;
  line-height: 106%;
  text-transform: uppercase;
}

h1,
.h1,
h2.h1 {
  font-size: 90px;
  line-height: 106%;
  text-transform: uppercase;
  font-weight: 500;
}

h2,
.h2 {
  font-size: 64px;
  line-height: 120%;
  font-weight: 400;
  text-transform: uppercase;
}

h3,
.h3 {
  font-size: 50px;
  line-height: 120%;
  font-weight: 400;
  text-transform: uppercase;
}

h4,
.h4 {
  font-size: 38px;
  font-weight: 400;
  line-height: 120%;
}

h5,
.h5 {
  font-size: 26px;
  font-weight: 400;
  line-height: 130%;
  text-transform: uppercase;
}

.title-1 {
  font-size: 26px;
  line-height: 130%;
}

.title-2 {
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
  text-transform: uppercase;
}

.title-3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.text-1 {
  font-size: 22px;
  line-height: 140%;
}

.text-2 {
  font-size: 18px;
  line-height: 140%;
}

.text-3,
p.text-3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.caption {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

button > span,
.button > span {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
}

/*  */

.noscroll {
  overflow: hidden !important;
}

.pp {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 100;
  overflow-y: auto;
  overflow-x: hidden;
}

.pp.show {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}

/* borger */

.header-burger {
}

.header-burger span {
  /* position: absolute; */
  /* left: 50%; */
  display: block;
  width: 48px;
  height: 3px;
  margin-bottom: 12px;
  background-color: var(--color-text);
  transition: opacity 0.3s cubic-bezier(0.38, 0.005, 0.215, 1), transform 0.3s cubic-bezier(0.38, 0.005, 0.215, 1);
  background: #fff;
}

.header-burger span:nth-child(1) {
  /* top: calc(50% - 8px) */
}

.header-burger span:nth-child(2) {
  /* top: 50%; */
  opacity: 1;
}

.header-burger span:nth-child(3) {
  /* top: calc(50% + 8px) */
  margin-bottom: 0;
}

html.has-menu-opened .header-burger span {
  background-color: #fff;
}

html.has-menu-opened .header-burger span:nth-child(1) {
  transform: translate3d(-50%, 8px, 0) rotate(45deg);
}

html.has-menu-opened .header-burger span:nth-child(2) {
  opacity: 0;
  transition: opacity 0.15s cubic-bezier(0.38, 0.005, 0.215, 1);
}

html.has-menu-opened .header-burger span:nth-child(3) {
  transform: translate3d(-50%, -8px, 0) rotate(-45deg);
}

/*  */

.header-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: normal;
  align-items: flex-start;
  align-content: normal;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 96%;
  padding: 38px 0;
  z-index: 6;
}

.header-burger {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  position: relative;
  margin-right: 12px;
  cursor: pointer;
  background: none;
  border: initial;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 2px transparent;
  position: relative;
}

.header-burger::before,
.header-burger::after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  border: 2px solid transparent;
  width: 100%;
  height: 100%;
}

.header-burger::before {
  top: 0;
  right: 0;
}
.header-burger::after {
  bottom: 0;
  left: 0;
}

.aos-animate .header-burger::before {
  border-top-color: #fff;
  border-left-color: #fff;
  animation: burgerBefore 0.5s ease-out 0s 1;
}
.aos-animate .header-burger::after {
  border-bottom-color: #fff;
  border-right-color: #fff;
  animation: burgerAfter 1s ease-out 0s 1;
}

@keyframes burgerBefore {
  0% {
    width: 0;
    height: 0;
  }
  50% {
    height: 0;
    width: 100%;
  }
  100% {
    height: 100%;
  }
}

@keyframes burgerAfter {
  0% {
    width: 0;
    height: 0;
    border-bottom-color: transparent;
    border-right-color: transparent;
  }
  50% {
    width: 0;
    height: 0;
    border-bottom-color: transparent;
    border-right-color: transparent;
  }
  75% {
    width: 100%;
    height: 0;
    border-right-color: #fff;
    border-bottom-color: #fff;
  }
  100% {
    height: 100%;
  }
}

.header-logo {
  position: relative;
  background-color: var(--colorYellow);
}

.header-burger,
.header-logo {
  width: 118px;
  height: 104px;
}

.header-logo-bg {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-image: url(../img/logo.svg);
  background-repeat: no-repeat;
  background-position:center;
  background-size: 64.4067797%;
  transition:0s;
}

.header-container-squares {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  position: fixed;
  top: 38px;
  left: 2%;
  margin-right: 150px;
  z-index: 5;
}

.header-container-info {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  position: fixed;
  top: 38px;
  left: 23%;
  color: #fff;
  z-index: 2;
}

.header-tel {
  margin-right: 42px;
  z-index: 2;
}

.header-contacts {
  z-index: 2;
}

.header-container-adress {
  margin-left: auto;
  position: fixed;
  top: 38px;
  right: 2.5%;
  z-index: 4;
}

.header-adr-ico {
  display: block;
  position: relative;
  width: 14px;
  height: 18px;
  background: url("../img/map-ico.svg") no-repeat center;
  cursor: pointer;
  margin-right: 14px;
}

.header-container-adress > span,
.header-container-adress > a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  position: relative;
  cursor: pointer;
  color: #fff;
}

.header-adr-ico {
}

.header-container-squares.invert .header-burger {
  /* border: 2px solid var(--colorBlack); */
}

.header-container-squares.invert .header-burger::before {
  border-top-color: var(--colorBlack);
  border-left-color: var(--colorBlack);
}
.header-container-squares.invert .header-burger::after {
  border-bottom-color: var(--colorBlack);
  border-right-color: var(--colorBlack);
}

.header-container-squares.invert .header-burger span {
  background: var(--colorBlack);
}
.header-container-squares.invert .header-logo {
  background-color: var(--colorBlack);
}
.header-container-squares.invert .header-logo .header-logo-bg {
  background-image: url(../img/logo-b.svg);
}
.header-container-info.invert {
  color: var(--colorBlack);
}

.header-container-adress.invert > span,
.header-container-adress.invert > a {
  color: var(--colorBlack);
}

.header-container-adress.invert .header-adr-ico {
  background: url(../img/map-ico__black.svg);
}
.menu-container__contacts {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  position: absolute;
  left: 0;
  bottom: 92px;
}

.menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  width: 830px;
  background: var(--colorYellow);
  padding: 28px 12px 0 42px;
  pointer-events: none;
  visibility: hidden;
  transform: translateX(-100%);
  transition: 0.4s;
  z-index: 4;
}

.menu-wrapper {
  position: relative;
  height: 100%;
}

.menu-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  /* overflow-y: auto; */
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding-top: 208px;
}

.menu-container.show {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}

.menu-container__links {
}

.menu-link {
  margin-bottom: 28px;
  overflow: hidden;
}

.menu-link > * {
  display: block;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.6s;
}

/* при закрытии меню прячем ссылки */
.menu-container.menu-container_linkscont .menu-link > * {
  transform: translateY(-50%);
  opacity: 0;
  transition-delay: 0;
}
.menu-container.menu-container_linkscont .menu-contact-link > * {
  transform: translateY(-100%);
  opacity: 0;
  transition-delay: 0;
}





.menu-link a {
  display: inline-block;
}

.menu-link span {
  color: #000;
  cursor: pointer;
}

.menu-contact-link {
  transition: 0.4s;
  margin-right: 128px;
  overflow: hidden;
}

.menu-contact-link > * {
  transition: 0.4s;
  display: block;
  opacity: 0;
  transform: translateY(-100%);
}

.menu-contact-link:nth-last-child(1) {
  margin-right: 0;
}

.menu-contact-link a,
.menu-contact-link .menu__contact-us {
  color: #000;
  white-space: pre-wrap;
  font-weight: 400;
  font-size: 26px;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-container__back {
  margin-bottom: 42px;
}

.menu-container__back > span {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.6s;
}

.menu-container__back .menu-link-button:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 14px;
  background: url("../img/ar-back.svg");
}

.menu-link-button:hover {
  opacity: 1;
}

.menu-container__title {
  margin-bottom: 24px;
}

.menu-container__title span {
  color: #000;
}

.menu-container__text {
  margin-bottom: 42px;
}

.menu-container__text p {
}

.menu-container__imglinks {
  margin-bottom: 82px;
  padding-right: 28px;
}

.menu-imglink {
  display: block;
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin-bottom: 35px;
}

.menu-imglink__img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.menu-imglink__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s;
  transform: scale(1);
}

.menu-imglink:hover .menu-imglink__img img {
  transform: scale(1.2);
}

.menu-imglink:hover .menu-imglink-title h5 {
  color: var(--colorYellow);
}

.menu-imglink__info {
  position: absolute;
  left: 30px;
  bottom: 0;
}

.menu-imglink-title {
  /* transform: translateY(-50px); */
  position: relative;
  transition: 0.3s;
  color: #fff;
}

.menu-imglink-title h5 {
  /* margin-bottom: 12px; */
  /* margin-bottom: 24px; */
}

.menu-imglink-title p {
  display: none;
  position: relative;
  width: 55%;
  /* opacity: 0; */
  /* transition: 0.3s; */
  padding-bottom: 30px;
  /* padding-top: 30px; */
}

.menu-imglink__arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 20px;
  height: 20px;
  transform: rotate(0deg);
  background: url("../img/ar.svg") no-repeat center;
  background-size: contain;
  transition: 0.3s;
}

.menu-imglink:hover .menu-imglink__arrow {
  transform: rotate(45deg);
  background: url(../img/ar-h.svg) no-repeat center;
  background-size: contain;
}

.menu-imglink.menu-imglink_short {
  height: 168px;
}

.menu.show {
  pointer-events: all;
  visibility: visible;
  transform: translateX(0);
}

.menu-container.menu-container_linkscont {
}

.menu-imglink:hover .menu-imglink-title h3 {
  color: var(--colorYellow);
}

.container.container_mainpage {
  position: relative;
  height: 100vh;
}

.container {
  position: relative;
}

.grid {
  width: 82%;
  margin: 0 auto;
}

.mainpage {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  align-content: flex-start;
  height: 100%;
}

.mainpage__pagination {
  position: relative;
  height: 100%;
  padding-left: 18%;
  z-index: 3;
}

.mainpage__photos {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 0;
  overflow: hidden;
}

.mainpage__text {
  position: relative;
  z-index: 1;
  /* padding-bottom: 7%; */
  padding-bottom: 10%;
}

.swiper-container.swiper-container_mainpage-pagination {
  width: 380px;
  height: 100%;
}

.swiper-container.swiper-container_mainpage-pagination .swiper-wrapper {
  display: block;
  height: 100%;
  position: fixed;
  width: initial;
  transform: none !important;
}

.swiper-container.swiper-container_mainpage-pagination .swiper-slide {
  height: calc(100% / 3);
  transform: none !important;
}

.mainpage-pagination-container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-left: 1px solid rgb(255 255 255 / 20%);
  border-right: 1px solid rgb(255 255 255 / 20%);
  border-bottom: 1px solid rgb(255 255 255 / 20%);
  transition: 0.4s;
}

.swiper-slide {
}

.swiper-container.swiper-container_mainpage-pagination .swiper-slide:nth-last-child(1) .mainpage-pagination-container {
  border-bottom: 0;
}

.mainpage-title {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  align-content: normal;
  /* overflow: hidden; */
  /* min-height: 190px; *96* */
}

.mainpage-pagination-title {
  margin-bottom: 22px;
}

.container_mainpage .mainpage-title {
  margin-bottom: 22px;
}

.mainpage-title__row {
  position: relative;
  overflow: hidden;
}

.mainpage-title__row span {
  display: inline-block;
  /* transform: translateY(0px); */
  color: #fff;
}

.mainpage-article {
}

.mainpage-article p {
  color: #fff;
}

.container_mainpage.mainpage-title__row:nth-child(1) span {
  color: var(--colorYellow);
}

.header-contacts span {
  cursor: pointer;
}

.swiper-container.swiper-container_mainpage-photos {
  height: 100%;
}

.mainpage-img {
  height: 100%;
}

.mainpage-pagination-title span {
  color: #fff;
}

.mainpage-pagination-button {
}

.mainpage-pagination-button .button {
  color: #fff;
}

.mainpage-pagination-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 96%;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.8s;
}

.mainpage-pagination-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-is-changing,
.page-changed {
  /* overflow: hidden; */
}

.lock-screen {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 99990000;
  pointer-events: none;
  transition: 0.3s;
  transform: translateY(100%);
}

.lock-screen-yellow {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto; /* height: 70%; */ /* transition: 1s; */ /* transition-delay: 1s; */
  background-color: var(--colorYellow);
  transform: translateY(100%);
  z-index: 2;
  /* background-image: url(/template/img/lock-screen__bg.svg); */
  background-repeat: no-repeat;
  background-position: left calc(100% - 12px);
  background-size: 56.5%;
  transition: 0.3s;
}

.lock-screen img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58%;
  z-index: 5;
}

.lock-screen-dark {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  margin: auto;
  height: 100%;
  transition: 0.3s; /* transition-delay: 0.3s; */
  background: var(--colorBlack); /* transform: translateY(100%); */
}

.swiper-slide.swiper-slide-thumb-active .mainpage-pagination-container {
  background: var(--colorYellow);
  align-content: flex-start;
}

.swiper-slide.swiper-slide-thumb-active .mainpage-pagination-img {
  transform: translateY(0);
  opacity: 1;
}

.swiper-slide.swiper-slide-thumb-active .mainpage-pagination-title span {
  color: var(--colorBlack);
}

.swiper-slide.swiper-slide-thumb-active .mainpage-pagination-button .button {
  color: var(--colorBlack);
}

.menu-imglink.menu-imglink_small {
  height: 168px;
}

.lock-screen.show {
  transform: translateY(0%);
}

.lock-screen.show .lock-screen-yellow {
  transform: translateY(0%);
}

.ribbon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
  width: 570px;
  height: 100%;
}

.ribbon img {
  position: absolute;
  left: auto;
  margin: auto;
  width: auto;
  height: auto;
}

.ribbon.ribbon_yellow img {
  top: 0;
  right: 0;
}

.ribbon.ribbon_gray img {
  bottom: 0;
  right: 0;
}

.ribbon.ribbon_yellow {
  animation: ribbon_yellow 3.3s ease-out 0s 1;
}

.ribbon.ribbon_gray {
  animation: ribbon_yellow 3.6s ease-out 0s 1;
}

@keyframes ribbon_yellow {
  0% {
	  clip-path: inset(0 100% 0 0);
  }
  95% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}

.container_topcommon {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: normal;
  align-items: normal;
  align-content: flex-end;
  position: relative;
  overflow: hidden;
}

.text-line-bg {
  /* position: absolute; */
  width: 14264px;
  height: 116px;
  /* bottom: 0; */
  /* left: 0; */
  opacity: 1;
  z-index: 1;
  transform: translateX(0);
  animation-timing-function: linear;
  animation-duration: 28s;
  animation-iteration-count: infinite;
  animation-name: text-line-bg;
}

@keyframes text-line-bg {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-3500px);
  }
}

.topcommon-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--bg-colorBlack);
}

.topcommon-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: topImgShow 3s ease-out 0s 1;
}

@keyframes topImgShow {
  0% {
	  clip-path: inset(0 100% 0 0);
  }
  60% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}
@keyframes topTextShow {
  0% {
  }
  100% {
    opacity: 1;
    top: 0;
  }
}

.product-text {
  /* position: relative;
  margin-bottom: 56px; */
  z-index: 3;
  /* 96 */
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 50%;
  bottom: 56px;
  bottom: 56px;
}

.product-text-animation {
  position: relative;
  top: -25%;
  opacity: 0;
  animation: topTextShow 0.9s forwards 3.3s;
}

.breads {
  /* margin-bottom: 36px; *96* */
}

.breads > a,
.breads > span {
  display: inline-block;
  position: relative;
  color: #fff;
  margin-right: 20px;
}

.breads > a:after,
.breads > span:after {
  content: "/";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -17px;
  margin: auto;
}

.breads > *:nth-last-child(1):after {
  display: none;
}

.breads > a:hover:before {
  width: 100%;
}

.breads > a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: auto;
  margin: auto;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: 0.3s;
}

.container.container_productinfo {
  padding-top: 182px;
  padding-bottom: 198px;
}

.prodinfo-textblock {
  width: 47%;
}

.prodinfo-textblock__title {
  margin-bottom: 48px;
}

.prodinfo-textblock__text {
}

.prodinfo-textblock__text p {
  color: var(--colorGrayDark);
}

.color-greydark {
  color: var(--colorGrayDark);
}

.prodinfo {
  position: relative;
}

.prodinfo-light-pinsblock {
  position: absolute;
  right: 15%;
  bottom: -10px;
  top: 0;
  margin: auto;
}

.light-pins {
}

.light-pin {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  margin-bottom: 12px;
}

.light-pin:nth-last-child(1) {
  margin-bottom: 0;
}

.light-pin__ico {
  position: relative;
  width: 86px;
  height: 86px;
  background: #fff;
  border-radius: 50%;
  margin-left: 16px;
}

.light-pin__ico img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.light-pin__text {
  text-align: right;
}

.productinfo-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
}

.productinfo-bg img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  object-fit: cover;
}

.container.container_ourproducts {
  padding-top: 94px;
  padding-bottom: 104px;
  background: #2e3b4a;
}

.ourproducts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  align-content: flex-end;
}

.ourproducts__title {
  width: 50%;
}

.ourproducts__links {
  width: 50%;
}

.menu-imglink.menu-imglink_ourproducts {
  height: 380px;
}

.menu-imglink-title > * {
}

.menu-imglink-title > *:nth-child(1) {
  transition: 0.3s;
  /* padding-bottom: 50px; */
  padding-bottom: 20px;
}

.menu-imglink:hover .menu-imglink-title p {
  /* opacity: 1; */
}

.menu-imglink:hover .menu-imglink-title > *:nth-child(1) {
  /* padding-bottom: 22px; */
}

.ourproducts-bg {
  position: absolute;
  top: -11%;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 690px;
  height: 332px;
}

.ourproducts-bg img {
  width: 100%;
}

.container.container_articleblock {
  position: relative;
  min-height: 730px;
  padding: 126px 0 126px;
  overflow: hidden;
}

.article-block {
  width: 50%;
  padding-right: 8%;
}

.article-block h3 {
  margin-bottom: 38px;
}

.article-block p {
  color: #757575;
  margin-bottom: 58px;
}

.button {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: normal;
  align-content: center;
  position: relative;
  padding: 16px 26px;
  cursor: pointer;
}

.button.button_border {
  border-left: 2px solid var(--colorBlack);
  border-right: 2px solid var(--colorBlack);
}

.container.container_articleblock .grid {
  position: relative;
  z-index: 2;
}

.video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
  z-index: 0;
  display: flex;
  /* display: flex; 
  https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ - плохо "46MM IGU, LOW-E GLASS"
  */
}
.video-container picture {
  width: 100%;
}

.video-container .plyr {
  width: 100%;
  height: 100%;
  background: transparent;
}

.plyr__controls {
  display: none;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid{
  display: none;
}

.plyr__captions {
  display: none;
}

.plyr__control {
  display: none;
}

.plyr__video-wrapper {
  height: 100%;
  background: none;
}

.video-container-player {
  object-fit: cover;
}

.article-block.article-block_right {
  width: 50%;
  padding-left: 50%;
  padding-right: 0;
  box-sizing: content-box;
}

.article-long-title {
  font-size: 38px;
  margin-top: 26px;
  margin-bottom: 45px;
  line-height: 1.2;
}

.logos-block {
  position: absolute;
  right: 8.5%;
  bottom: 74px;
  z-index: 2;
}

.logos-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: normal;
  align-content: flex-end;
  column-gap: 18px;
}

.logos-list__item {
  display: block;
  position: relative;
  width: 124px;
  height: 124px;
}

.logos-list__item img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 116px;
  height: 116px;
  z-index: 2;
}

.logos-list__item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  background: #fff;
  z-index: 0;
  transform: scale(1);
  transition: 0.3s;
}

.logos-list__item:hover:before {
  transform: scale(1.12);
}

.projgallery-line {
  position: relative;
  margin-bottom: 206px;
}

.projgallery {
}

.projgallery__title {
  margin-bottom: 60px;
}

.projgallery__slider {
  position: relative;
}

.swiper-navigation.swiper-navigation_top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: normal;
  align-content: center;
  position: absolute;
  top: 0;
  right: 0;
  column-gap: 8px;
  z-index: 2;
}

.swiper-navigation-button {
  position: relative;
  width: 80px;
  height: 76px;
  background: var(--colorYellow);
  z-index: 4;
  cursor: pointer;
}

.swiper-navigation-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 34px;
  height: 12px;
}

.swiper-navigation-button.swiper-navigation-button_prev {
  background: url(../img/nav-slider-prev.svg) no-repeat center;
  background-color: var(--colorYellow);
  background-size: 45%;
}

.swiper-navigation-button.swiper-navigation-button_next {
  background: url(../img/nav-slider-next.svg) no-repeat center;
  background-color: var(--colorYellow);
  background-size: 45%;
}

.swiper-container.swiper-container_projgallery {
  /* width: 100%; */
  overflow-x: hidden;
  padding-top: 134px;
  margin-top: -134px;
}

.swiper-container.swiper-container_projgallery .swiper-wrapper {
  justify-content: flex-start;
}

.slider-project {
  display: block;
  cursor: pointer;
}

.slider-project__visual {
  position: relative;
  height: 354px;
  overflow: hidden;
  margin-bottom: 28px;
}

.slider-project__title {
}

.slider-project-pic {
  position: relative;
  height: 100%;
  z-index: 1;
}

.slider-project-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-project-tag {
  position: absolute;
  top: 30px;
  left: 30px;
  background: var(--colorBlack);
  text-align: center;
  border-radius: 40px;
  padding: 8px 20px;
  z-index: 2;
}

.slider-project-tag span {
  display: inline-block;
  line-height: 1;
  font-weight: 400;
  font-size: 18px;
  color: var(--colorWhite);
  text-transform: uppercase;
}

.slider-project-overlay {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: normal;
  align-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  opacity: 0;
  transition: 0.3s;
}

.slider-project-overlay:before {
  content: "";
  display: block;
  position: absolute;
  width: 126%;
  height: 126%;
  bottom: -200%;
  left: -13%;
  background: rgb(240 255 73 / 63%);
  transition: all .4s;

  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
}

.slider-project-overlay .button {
}

.slider-project:hover .slider-project-overlay {
  opacity: 1;
}
.slider-project:hover .slider-project-overlay::before {
  opacity: 1;
  bottom: 0%;
}

.video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container.container_projgallery {
  padding-top: 146px;
  padding-bottom: 158px;
  overflow: hidden;
  border-top: 1px solid #d8d8d8;
}

.swiper-slide-duplicate-prev {
  /* margin-top: -138px; */
}

.container.container_map {
  height: 990px;
  overflow: hidden;
}

.map {
  /* position: relative; */
  height: 100%;
}

.map__showroom {
  position: relative;
  width: 50%;
  z-index: 2;
}

.showroom {
  position: relative;
  padding: 164px 0;
}

.showroom:before {
}

.showroom__title {
  margin-bottom: 28px;
}

.showroom__text {
  width: 77%;
  margin-bottom: 166px;
}

.showroom__adress {
  margin-bottom: 20px;
}

.showroom__view {
  display: flex;
}

.showroom__view a {
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 16px;
  opacity: 0.4;
}
.showroom__view a:before {
  content: "";
  display: block;
  position: relative;
  bottom: -25px;
  width: 0%;
  height: 1px;
  background: var(--colorYellow);
  transition: 0.6s;
}
.showroom__view a:hover:before {
  width: 100%;
}

.showroom__view a:hover {
  opacity: 1;
}

.showroom:before {
  content: "";
  display: block;
  position: absolute;
  left: -50%;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--colorBlack);
  z-index: -1;
}

.map__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
  z-index: 1;
}

.container.container_map .grid {
}

.map-bg {
  width: 100%;
  height: 100%;
}

.container.container_contacts {
  padding-top: 174px;
  padding-bottom: 158px;
  background: var(--colorYellow);
  overflow: hidden;
}

.contacts {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  position: relative;
}

.contacts__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 818px;
  height: 392px;
}

.contacts__bg img {
  width: 100%;
}

.contacts__info {
  width: 50%;
  padding-right: 6%;
}

.contacts__info h2 {
  margin-bottom: 22px;
}

.contacts__info p {
}

.contacts__form {
  position: relative;
  min-height: 540px;
  margin-bottom: 74px;
  width: 50%;
}

.contacts-form {
}

form {
  margin: 0;
  padding: 0;
  border: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.contacts-form__fields {
  margin-bottom: 86px;
  margin-top: -10px;
}

.input-wrap {
  position: relative;
  margin-bottom: 60px;
}

.input-field {
  display: block;
  height: 42px;
  line-height: 1.4;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--colorBlack);
  width: 100%;
  font-family: "RedHatText";
  font-weight: normal;
  font-style: normal;
  color: var(--colorBlack);
  resize: none;
  font-size: 18px;
  opacity: 0.4;
}

.input-placeholder {
  display: block;
  position: absolute;
  bottom: 11px;
  margin: auto;
  font-size: 18px;
  font-weight: 400;
  color: var(--colorBlack);
  pointer-events: none;
  transition: 0.3s;
  opacity: 0.4;
}

.contacts-form__button {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  margin-bottom: 64px;
}

.contacts-form__button > .button {
  margin-right: 38px;
  flex-shrink: 0;
}

.contacts-download {
  position: absolute;
  bottom: -68px;
  left: 0;
  overflow: hidden;
}

.contacts-download > a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.contacts-download__ico {
  position: relative;
  width: 68px;
  height: 68px;
  margin-right: 28px;
  background: var(--colorBlack);
}

.contacts-download__ico img {
  /* position: absolute; */
  /* top: 0; */
  /* bottom: 0; */
  /* left: 0; */
  /* right: 0; */
  /* margin: auto; */
  /* height: 51%;
  z-index: 2;
  align-self: center; */
}
.download-ico_animation {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 68px 68px;
  justify-items: center;
  gap: 30px;
  justify-content: space-between;
  position: relative;
  top: calc(-100% - 30px);
  transition: 0.5s ease-out;
}
.download-ico_animation::before,
.download-ico_animation::after {
  content: "";
  background: url(../img/download-ico.svg) no-repeat center/51%;
  width: 51%;
  z-index: 0;
}
.contacts-download__ico:hover .download-ico_animation {
  top: 0%;
}

.contacts-download__text {
}

.contacts-download-title {
  font-size: 26px;
  margin-bottom: 2px;
}

.contacts-download-format {
  font-weight: 400;
  font-size: 16px;
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 0;
}

.footer__copy {
  margin-right: 4%;
}

.footer__copy span {
  text-transform: uppercase;
  opacity: 0.2;
}

.footer__links {
  margin-right: 13%;
}

.footer__links a {
  display: inline-block;
  margin-right: 18px;
  opacity: 0.2;
  border-bottom: 1px solid;
}

.footer__links a:nth-last-child(1) {
  margin-right: 0;
}

.footer__links a:hover {
  opacity: 1;
  border-bottom: 1px solid transparent;
}

.footer__by {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  align-content: flex-start;
}

.footer__by span {
  display: block;
  position: relative;
  bottom: -3px;
  margin-right: 7px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1f1f1f;
}

.footer__by img {
  width: 102px;
}

.swiper-container.swiper-container_projgallery .swiper-wrapper {
  /* column-gap: 64px; */
}

.prodinfo-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  object-fit: cover;
  overflow: hidden;
}

.prodinfo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-container.swiper-container_projgallery .swiper-slide {
  width: calc(100% / 3);
}

.swiper-container.swiper-container_projgallery .swiper-wrapper {
  /* width: 100%; */
}

.input-line {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #1f1f1f;
  transition: 0.3s;
}

.input-field:hover ~ .input-line {
  width: 100%;
}

.input-line-error {
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background: #1f1f1f;
  opacity: 0.6;
  transition: 0.3s;
}

.error ~ .input-line-error {
  width: 100%;
}

.input-field:focus,
.input-field.val {
  opacity: 1;
}

.input-field:focus ~ .input-placeholder,
.input-field.val ~ .input-placeholder {
  bottom: 38px;
  font-size: 14px;
}

textarea.input-field {
  height: 35px;
}

.contacts-form-privacy {
  width: 300px;
  opacity: 0.5;
}

.contacts-form-privacy a {
  border-bottom: 1px solid;
}

.contacts-form-privacy a:hover {
  border-bottom: 1px solid transparent;
}

.footer .grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  align-content: flex-end;
  position: relative;
}

.container_obscured-glass {
  background-color: var(--colorBgGrey);
  background-image: url(../img/logo-bg.svg);
  background-repeat: no-repeat;
  background-position: top 118px left 0px;
  background-size: 690px 332px;
}
.obscured-glass {
  display: flex;
  padding-top: 118px;
  padding-bottom: 142px;
}

.obscured-glass__left {
  width: 34%;
  padding-top: 230px;
}
.obscured-glass__right {
  margin-left: 135px;
  width: 910px;
}
.obscured-glass__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.obscured-glass__figure {
  background-color: #fff;
}

.obscured-glass__figure:nth-child(even) {
  position: relative;
  top: 118px;
}
.obscured-glass__figure > img {
  height: 436px;
  object-fit: cover;
}

.obscured-glass__figure > figcaption {
  margin: 38px 47px 76px 47px;
}

.obscured-glass h1 {
  margin-bottom: 42px;
}

.container_annealed-float {
  background-color: var(--colorBgDarkBlue);
}

.annealed-float {
  display: flex;
  padding-top: 151px;
  padding-bottom: 166px;
}
.annealed-float__left {
  width: 36%;
  padding-top: 22px;
}

.annealed-float__right {
  margin-left: 6%;
  width: 58%;
}
.annealed-float__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 77px;
}

.annealed-float__figure {
  background-color: var(--colorBgBlue);
}

.annealed-float__figure:nth-child(even) {
  position: relative;
  top: 156px;
}

.annealed-float__figure > img {
  height: 436px;
  object-fit: cover;
}
.yellow {
  color: #f0ff49;
}

.white {
  color: #fff;
}
.annealed-float__figure > figcaption {
  margin: -34px 55px 42px 55px;
}
.annealed-float h1 {
  margin-bottom: 56px;
}
.annealed-float p {
  margin-bottom: 40px;
}
.annealed-float__figure > figcaption > h6 {
  margin-bottom: 22px;
}

.container_tinted {
  background-color: var(--colorBgGrey);
  background-image: url(../img/logo-bg.svg);
  background-repeat: no-repeat;
  background-position: top 118px left 0px;
  background-size: 690px 332px;
}
.tinted {
  display: flex;
  padding-top: 118px;
  padding-bottom: 142px;
}

.tinted__left {
  width: 34%;
  padding-top: 230px;
}
.tinted__right {
  margin-left: 8%;
  width: 58%;
}

.tinted__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.tinted__figure {
  background-color: #fff;
  text-align: center;
}

.tinted__figure:nth-child(even) {
  position: relative;
  top: 118px;
}

.tinted__figure > img {
  height: 310px;
  margin-top: 44px;
  object-fit: cover;
  text-align: center;
}
.tinted__figure > figcaption {
  text-align: left;
  margin: 47px 52px 50px 33px;
}
.tinted__figure > figcaption > h6 {
  margin-bottom: 22px;
}

.gray {
  color: var(--colorGray);
}

.tinted h1 {
  margin-bottom: 63px;
}

.filters-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  position: relative;
  margin-bottom: 42px;
  z-index: 2;
}

.filters-selects {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: normal;
  align-items: center;
  align-content: center;
  margin-right: 22px;
}

.filter {
  position: relative;
  margin-right: 15px;
}

.filter-select {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  position: relative;
  width: 195px;
  padding: 12px 30px;
  border: 1px solid #000;
  cursor: pointer;
}

.filter-select__placeholder {
  width: calc(100% - 12px);
  line-height: 1;
  margin-right: 22px;
}

.filter-select__placeholder span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000000;
}

.filter-select__arrow {
  margin-right: -12px;
  width: 14px;
  height: 8px;
  background: url("../img/ar-select.svg");
  background-size: contain;
}

.filter-panel {
  position: absolute;
  top: 81px;
  left: 0;
  width: 245px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  background: #ffffff;
  box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.13);
  padding: 32px 30px;
}

.show .filter-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.filter-panel__items {
  margin-bottom: 32px;
}

.filter-input {
  margin-bottom: 13px;
}

.filter-input input {
  position: absolute;
  left: -9999px;
}

.filter-input label {
  display: block;
  position: relative;
  color: rgba(31, 31, 31, 0.5);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding-left: 40px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-input label:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border: 1px solid #1f1f1f;
  opacity: 0.25;
  width: 15px;
  height: 15px;
  transition: 0.3s;
}

.button.button_black {
  background: var(--colorBlack);
}

.container.container_filters {
  padding: 62px 0;
  min-height: 500px;
}

.button.button_black span {
  color: #fff;
}

.filter-input label:after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  bottom: 0;
  left: 6px;
  margin: auto;
  width: 4px;
  height: 8px;
  border: solid #1f1f1f;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: 0.3s;
  opacity: 0;
}

.filter-input input:checked ~ label:after {
  opacity: 1;
}

.filter-input input:checked label:before {
  border-color: #000;
}

.filter-input input:checked ~ label:before {
  opacity: 1;
}

.filter-input input:checked ~ label {
  color: #1f1f1f;
}

.filters-clear {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  cursor: pointer;
}

.filters-clear__ico {
  width: 24px;
  height: 24px;
  background: url(../img/clear.svg);
  background-size: contain;
  margin-right: 9px;
}

.filters-clear__text {
}

.filters-quantity span {
  color: #000;
}

.filters-quantity {
  margin-left: auto;
}

.projects-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* grid-gap: 42px; */
  grid-gap: 64px;
  position: relative;
  z-index: 1;
  margin-bottom: 78px;
}

.container.container_product {
  min-height: 734px;
}

.container.container_projects {
  min-height: 550px;
}

.container.container_projects .mainpage-title__row span {
  color: var(--colorBlack);
}

.grid.grid_projects .product-text {
  /* width: 50%; */
}

.container_projects .breads > a,
.container_projects .breads > span {
  color: var(--colorBlack);
  opacity: 0.25;
}

.container_projects .breads > a:before {
  background: var(--colorBlack);
}

.absolute-pins-block {
  position: absolute;
}

.absolute-pins-block.absolute-pins-block_1 {
  right: 6.3%;
  top: -13px;
  width: 520px;
  height: 366px;
}

.absolute-pins-block__text {
  text-transform: uppercase;
  position: absolute;
  top: 43%;
  right: 85%;
  text-align: right;
  font-size: 20px;
  font-weight: 600;
}

.absolute-pins-pic {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  position: relative;
  column-gap: 28px;
  z-index: 3;
}

.absolute-pins-pic__text {
  text-align: right;
}

.absolute-pins-pic__img {
  width: 218px;
  height: 218px;
  border: 8px solid #fff;
  overflow: hidden;
  border-radius: 50%;
}

.absolute-pins-pic__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.absolute-pins-dot {
  position: absolute;
  width: 36px;
  height: 36px;
  background: rgb(240 255 73 / 80%);
  border-radius: 50%;
  box-shadow: 0px 0px 40px 0px rgb(240 255 73 / 80%);
  z-index: 1;
}

.absolute-pins-dot span {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #1f1f1f;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.absolute-pins-block_1 .absolute-pins-dot {
  bottom: -40px;
  right: -120px;
}
.absolute-pins-block_1-pos2 .absolute-pins-dot {
  bottom: 115px;
  right: -180px;
}

.absolute-pins-line {
  position: absolute;
  /* background: #1f1f1f; */
  height: 1px;
  z-index: 2;
}

.absolute-pins-block_1 .absolute-pins-line {
  width: 180px;
  height: 1px;
  right: -113px;
  bottom: 24px;
  transform: rotate(31deg);
}
.absolute-pins-block_1-pos2 .absolute-pins-line {
  bottom: 190px;
  right: -180px;
  width: 230px;
}

.absolute-pins-block.absolute-pins-block_1.absolute-pins-block_1-pos2 {
  right: 25%;
  top: 25%;
}

/*  */

@import "stylecss";

:root {
  --bg-colorBlack: #202020;
}
.color_white {
  color: var(--colorWhite);
}

.color_gray-dark {
  color: var(--colorGrayDark);
}

.SCCUL {
  padding-top: 112px;
  padding-bottom: 122px;
}

.container_SCCUL {
  background-color: var(--bg-colorBlack);
}
.SCCUL__flex {
  display: flex;
  justify-content: space-between;
}
.SCCUL__flex_block {
  width: calc(100% / 5 - 50px);
}

.SCCUL__flex_block h5 {
  min-height: 82px;
}

.SCCUL__flex_img {
  width: 142px;
  height: 142px;
  display: flex;
  padding: 31px;
  border-radius: 50%;
  box-shadow: 0px 0px 64px #f0ff49;
  margin-bottom: 46px;
}
.container_FAQ {
  background-color: var(--colorWhite);
  background-image: url(../img/logo-bg-light.svg);
  background-repeat: no-repeat;
  background-position: top 480px left 0px;
  background-size: 690px 332px;
  padding: 122px 0 120px;
}

.FAQ__flex {
  display: flex;
  justify-content: space-between;
}
.FAQ__flex_left {
}

.FAQ__flex_left > h1 {
}

.FAQ__flex_right {
  width: 57.5%;
  margin-top: -20px;
}

.FAQ__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 32px 0;
}

.FAQ__plus {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  background: #ebebea;
  /*thickness = 2px, length = 50% (25px)*/
  border-radius: 50%;
  transition: 0.6s;
}

.active .FAQ__plus {
  background-color: var(--colorBlack);
}

.active .FAQ__plus span {
  background-color: var(--colorWhite);
}

.FAQ__minus {
  display: inline-block;
  width: 50px;
  height: 50px;

  background: linear-gradient(#fff, #fff), var(--colorBlack);
  background-position: center;
  background-size: 50% 3px; /*thickness = 2px, length = 50% (25px)*/
  background-repeat: no-repeat;
  border-radius: 50%;
}

.FAQ__questions:not(:first-child) {
  border-top: 1px solid var(--colorBorder);
}

.FAQ__question {
  width: calc(100% - 51px - 31px);
}

.FAQ__answer {
  display: none;
  margin-bottom: 55px;
  padding-left: 82px;
  padding-top: 38px;
  border-top: 1px solid #000;
}

.FAQ__answer_p {

}

.container_our-process {
  background-color: var(--colorWhite);
  background-image: url(../img/logo-bg-light.svg);
  background-repeat: no-repeat;
  background-position: top 137px left 0px;
  background-size: 690px 332px;
  /* background-attachment: fixed; */
}
.our-process {
  padding-top: 11px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 175px;
}
.our-process__left {
  margin-top: 274px;
  width: 664px;
  flex-shrink: 0;
}

.our-process__right {
  display: flex;
  flex-direction: column;
  /* width: 58%; */
}

.our-process__block {
  display: flex;
  justify-content: space-between;
  padding: 72px 56px;
  background: #cad4df;
  margin-bottom: 26px;
}

.our-process__block_left {
  width: 73%;
}
.our-process__left > .h1 {
  position: sticky;
  top: 200px;
}

.our-process__block_left > h4 {
  margin-bottom: 14px;
}

.our-process__block_left > .textx-3 {
  color: var(--colorGrayDark);
  width: 80%;
}

.our-process__block_number {
  /* font-family: "Red Hat Display"; */
  font-style: normal;
  font-weight: 500;
  font-size: 40px;

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

  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.2);
  width: 106px;
  height: 106px;
}

/*  */

.mainpage-title__row span.color-yellow {
  color: var(--colorYellow);
}

.absolute-graph-wrap {
  position: absolute;
  right: 8%;
  top: -35px;
  width: 510px;
  height: 522px;
}

.absolute-graph-pic {
  position: absolute;
  top: 0%;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

/* .absolute-graph-pic.absolute-graph-pic_1 {
  z-index: 1;
} */

.absolute-graph-pic__img {
  width: 100%;
  height: 100%;
  position: relative; /* что бы круги были снизу на странице /products/windows/ */
  z-index: 1;
}

.absolute-graph-pic__circs {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.graph-pic-circ {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0px;
  height: 0px;
}

.absolute-pins-block.absolute-pins-block_3-1 {
  top: 33px;
  right: 430px;
}

.absolute-graph-wrap .absolute-pins-pic__img {
  width: 102px;
  height: 102px;
  border: 6px solid #fff;
  flex-shrink: 0;
}

.absolute-pins-block_3-1 .absolute-pins-dot {
  right: -168px;
  top: 107px;
}

.absolute-pins-block_3-2 .absolute-pins-dot {
  right: -107px;
  top: -16px;
}

.absolute-pins-block_3-3 .absolute-pins-dot {
  left: -92px;
  top: 90px;
}

.absolute-pins-block_3-4 .absolute-pins-dot {
  left: -192px;
  top: 6px;
}

.absolute-pins-block.absolute-pins-block_3-2 {
  top: 315px;
  right: 405px;
}

.absolute-pins-block.absolute-pins-block_3-3 {
  top: 80px;
  left: 390px;
}

.absolute-pins-block.absolute-pins-block_3-4 {
  bottom: 60px;
  left: 380px;
}

.absolute-pins-block_3-3 .absolute-pins-pic,
.absolute-pins-block_3-4 .absolute-pins-pic {
  flex-direction: row-reverse;
}

.absolute-pins-block_3-3 .absolute-pins-pic__text,
.absolute-pins-block_3-4 .absolute-pins-pic__text {
  text-align: left;
}

.absolute-graph-wrap .absolute-pins-block {
  column-gap: 16px;
}

.absolute-graph-pic__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prodinfo-text {
  position: absolute;
  right: 8%;
  bottom: 38px;
  font-weight: 400;
  font-size: 22px;
  color: rgba(0, 0, 0, 0.38);
}

.absolute-pins-block_3-1 .absolute-pins-line {
  top: 100px;
  right: -156px;
  width: 170px;
  transform: rotate(17deg);
}

.absolute-pins-block_3-2 .absolute-pins-line {
  top: 20px;
  right: -96px;
  width: 110px;
  transform: rotate(-21deg);
}

.absolute-pins-block_3-3 .absolute-pins-line {
  top: 84px;
  left: -78px;
  width: 110px;
  transform: rotate(-205deg);
}

.absolute-pins-block_3-4 .absolute-pins-line {
  top: 38px;
  left: -170px;
  width: 190px;
  transform: rotate(188deg);
}

.absolute-pins-block.absolute-pins-block_4-1 {
  top: 70px;
  left: -138px;
}

.absolute-pins-block.absolute-pins-block_4-2 {
  bottom: 110px;
  right: -96px;
}

.absolute-pins-block_4-2 .absolute-pins-pic {
  flex-direction: row-reverse;
}

.absolute-pins-block_4-2 .absolute-pins-pic__text {
  text-align: left;
}

.absolute-graph-wrap .absolute-pins-pic {
  grid-gap: 16px;
}

.absolute-pins-block_4-1 .absolute-pins-dot {
  right: -168px;
  bottom: -36px;
}

.absolute-pins-block_4-1 .absolute-pins-line {
  width: 170px;
  right: -149px;
  bottom: 7px;
  transform: rotate(17deg);
}

.absolute-pins-block_4-2 .absolute-pins-dot {
  left: -92px;
  top: -14px;
}

.absolute-pins-block_4-2 .absolute-pins-line {
  width: 110px;
  top: 25px;
  left: -78px;
  transform: rotate(203deg);
}

.article-title-left {
  position: absolute;
  top: 225px;
  left: 0;
  width: 50%;
}

.article-title-left__bg {
  position: absolute;
  left: 0;
  top: -100px;
}

.article-title-bg {
  position: absolute;
  left: 0;
  top: 100px;
  opacity: 0.7;
}

.article-ul {
  /* display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
}

.article-ul ul {
  width: 50%;
  padding-right: 40px;
}

.article-ul li {
  position: relative;
  font-weight: 500;
  font-size: 14px;
  color: #9b9b9c;
  line-height: 1;
  padding-left: 30px;
  list-style: none;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.article-ul li > a {
  left: 30px;
  position: relative;
}
.article-ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background: url("../img/article-ul.svg") no-repeat center;
  background-size: contain;
}

.article-pic {
  position: absolute;
  z-index: 2;
}

.article-pic.article-pic_1 {
  /* top: 21%;  используется тут = https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
  top: 0;
  left: 10%;
  width: 518px;
  height: 425px;
}

.article-pic img {
  width: auto;
  min-width: 100%;
  height: auto;
  object-fit: contain;
}

.article-pic.article-pic_2 {
  top: 0;
  right: 12%;
  width: 731px;
  height: 813px;
}

.grayer-icos {
  position: absolute;
  top: 100px;
  left: 5%;
  z-index: 2;
}

.grayer-icos__item {
  width: 92px;
  height: 92px;
  margin-bottom: 12px;
}

.grayer-icos__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.grayer-icos__item:nth-last-child(1) {
  margin-bottom: 0;
}

p.color-white {
  color: var(--colorWhite);
}

span.color-grayer {
  color: #86929f;
}

.article-pic.article-pic_3 {
  top: 160px;
  right: 11%;
  width: 820px;
  height: 530px;
}

.article-shemes {
  position: absolute;
  width: 35%;
  top: 100px;
  left: 6%;
}

.article-shemes__item {
  width: 100%;
  margin-bottom: 20px;
}

.article-shemes__item:nth-last-child(1) {
  margin-bottom: 0;
}

p.color-black {
  color: var(--colorBlack);
}

.article-shemes__item img {
  width: 100%;
}

.article-pic.article-pic_4 {
  bottom: 0;
  right: 5%;
  width: 806px;
  height: 650px;
}

.article-text-words {
  position: absolute;
  bottom: 58px;
  left: 19%;
  z-index: 3;
}

.article-text-words span {
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
  margin: 0 52px;
}

.article-colpics {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: stretch;
  align-content: stretch;
  gap: 20px;
  position: absolute;
  top: 100px;
  right: 10%;
}

.article-colpics__item {
  width: 357px;
  height: 545px;
  overflow: hidden;
  border-radius: 6px;
}

.article-colpics__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-pic.article-pic_6 {
  top: 100px;
  left: 8%;
  width: 33%;
  height: fit-content;
}

.cards-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: normal;
  align-content: normal;
  gap: 12px;
  width: 858px;
  position: absolute;
  right: -28px;
  top: 0;
}

.cards-row__item {
  padding: 8px 8px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.cards-row-img {
  margin-bottom: 8px;
}

.cards-row-img img {
}

.cards-row-txt {
  text-align: center;
}

.article-block.article-block-rowpics {
}

.article-pic.article-pic_9 {
  bottom: 16%;
  left: 10%;
  width: 448px;
  z-index: 1;
}

.container.container_articleblock.container_lightdark {
  background: #f5f5f8;
}

.article-pic.article-pic_10 {
  top: 0;
  left: 0;
  width: 45%;
}

.article-pic.article-pic_11 {
  width: 870px;
  right: 10%;
  top: 42px;
}

.mainpage-text {
  width: 48%;
}

.article-title-floating {
  position: absolute;
  width: 30%;
  left: 9%;
  top: 128px;
}

.line-with-border {
  margin-top: 122px;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 82px;
}

.calc-label {
	background-color: #F0FF49;
	text-align: center;
	vertical-align: middle;
	font-weight: 400;
	font-size: 57px;
	line-height: 1;
	text-transform: uppercase;
	padding: 10px 0;
	height: 130px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	overflow: hidden;
}


@media only screen and (max-width: 1700px) {
    .calc-label {
	  height: 82px;
	  font-size: 42px;
    }
}
@media only screen and (max-width: 1430px) {
    .calc-label {
	  height: 73px;
    }
}
@media only screen and (max-width: 1270px) {
    .calc-label {
	  height: 60px;
	  font-size: 32px;
    }
}
@media only screen and (max-width: 767px) {
    .calc-label {
	  height: auto;
	  font-size: 28px;
    }
}


.container.container_calc {
  padding: 60px 0;
  height: 990px;
  background: url(../img/calculator/calc-bg.jpg) no-repeat center;
  background-size: cover;
}

.grid.calc {
  position: relative;
  height: 100%;
}

.calc-block {
  width: 40%;
}

.swiper-container.swiper-container_calc-info {
  height: 100%;
  overflow: visible;
}

.swiper-container.swiper-container_calc-info .swiper-wrapper {
}

.swiper-container.swiper-container_calc-info .swiper-slide {
}

.calc-block-info {
  position: relative;
  z-index: 2;
  padding-top: 140px;
}

.calc-block-info__sub {
  margin-bottom: 30px;
}

.calc-block-info__sub span {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(51, 50, 50, 0.34);
}

.calc-block-info__title {
  margin-bottom: 24px;
}

.calc-block-info__text {
  margin-bottom: 34px;
}

.calc-block-info__text p {
  color: #7d7d7d;
}

.calc-block-info__pins {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: normal;
  margin-bottom: 44px;
}

.calc-block-pin {
  position: relative;
  width: 68px;
  height: 68px;
  cursor: pointer;
  margin-right: 14px;
}

.calc-block-pin:nth-last-child(1) {
}

.calc-block-pin__ico {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1.2px solid rgba(31, 31, 31, 0.09);
  border-radius: 50%;
  background: transparent;
}

.calc-block-pin__ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.calc-block-pin__txt {
  position: absolute;
  bottom: 72px;
  width: 192px;
  height: auto;
  left: -54px;
  right: 0;
  margin: auto;
  background: #fff;
  padding: 12px 18px;
  box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  z-index: 2;
}

.calc-block-pin__txt span {
  font-weight: 400;
  font-size: 13px;
  color: #8f8f8f;
}

.calc-block-pin .calc-block-pin__ico:hover {
  background: #fff;
}

.calc-block-pin:hover .calc-block-pin__txt {
  visibility: visible;
  transform: translateY(0px);
  opacity: 1;
text-align: center;}

.calc-block-info__buttons .button {
  margin-right: 12px;
}

.calc-block-info__logos {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.calc-block-info__logos span {
  display: block;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(51, 50, 50, 0.34);
  margin-right: 12px;
  flex-shrink: 0;
}

.calc-block-info__logos img {
  display: inline-block;
  margin-right: 12px;
}

.calc-block-info__buttons {
  margin-bottom: 62px;
}

.calc-block-img {
  position: absolute;
  width: 727px;
  left: 36%;
  top: 80px;
  z-index: 1;
}

.calc-block-img img {
  width: 100%;
}

.calc-block-switcher {
  position: absolute;
  left: 56%;
  bottom: 18%;
  width: 144px;
  height: 55px;
  background: rgb(155 155 156 / 36%);
  border-radius: 40px;
  transition: 0.1s;
  z-index: 2;
}

.calc-block-switcher:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 38px;
  background: #9b9b9c;
}

.calc-block-switcher__item {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 72px;
  height: 56px;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0.4;
}

.calc-block-switcher__item.calc-block-switcher__item_horizontal {
  left: 0;
  background: url(../img/calculator/switcher-horiz.svg) no-repeat center;
  background-size: 44%;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}

.calc-block-switcher__item.calc-block-switcher__item_vertical {
  right: 0;
  background: url(../img/calculator/switcher-vertical.svg) no-repeat center;
  background-size: 12%;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}

.swiper-slide-active {
}

.calc-preview__normal {
  opacity: 1;
}

.calc-preview__active {
  opacity: 0;
}

.swiper-slide-active .swiper-slide-active {
}

.calc-block-pic {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s;
}

.calc-pagi {
  position: absolute;
  top: 0;
  bottom: initial;
  margin: auto;
  right: 5%;
  width: 194px;
  height: 85%;
  z-index: 1;
}

.swiper-container.swiper-container_calc-pagi {
  height: 100%;
  overflow: hidden;
  padding: 12px 0;
}

/* .calc-block-switcher__item:hover {
  opacity: 0.5;
} */

.calc-block-switcher:hover {
  background: rgb(155 155 156 / 48%);
}

.calc-preview {
  position: relative;
  width: 158px;
  height: 198px;
  height: 100%;
  /* padding: 12px 0; */
  cursor: pointer;
  transform: scale(1);
  transition: 0.3s;
}

.swiper-slide-thumb-active .calc-preview__normal {
  opacity: 0;
}

.swiper-container.swiper-container_calc-pagi .swiper-slide {
  width: 158px;
  margin: 0 auto;
  /* height: 198px !important; */
}

.calc-preview img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.3s;
}

.swiper-container.swiper-container_calc-pagi .swiper-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
}

.swiper-slide-thumb-active .calc-preview__active {
  opacity: 1;
}

.menu-scroll-block {
  overflow-y: auto;
  height: 100%;
}

.calc-block-pic {
  opacity: 0;
}
.calc-block-pic.calc-block-pic_onlyone {
  opacity: 1;
}

.calc-block-pic:not(.calc-block-pic_onlyone).calc-block-img__open.active {
  opacity: 1;
  animation-timing-function: linear;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-name: calc-block-pic-1;
}
@keyframes calc-block-pic-1 {
  0% {
    opacity: 1;
  }
  2% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.calc-block-pic:not(.calc-block-pic_onlyone).calc-block-img__close.active {
  opacity: 0;
  animation-timing-function: linear;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-name: calc-block-pic-2;
}
@keyframes calc-block-pic-2 {
  0% {
    opacity: 0;
  }
  2% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.calc-block-switcher__item.active {
  opacity: 1;
}

.menu-imglink.menu-imglink_ourproducts .menu-imglink__arrow {
  position: absolute;
  top: 54px;
  left: 38px;
  width: 34px;
  height: 34px;
}

.menu-imglink.menu-imglink_ourproducts:nth-last-child(1) {
  margin-bottom: 0;
}

.swiper-container.swiper-container_projgallery .swiper-slide.swiper-slide-next {
  transform: translateY(-134px);
}

.showroom__text p {
  font-weight: 400;
  font-size: 22px;
}

.mainpage-title__row {
}

.grid.mainpage {
  overflow: hidden;
}

.mainpage__pagination[data-aos="fade-down"] {
  transform: translate3d(0, -10px, 0);
}

/* 
.mainpage-title__row {
	opacity: 0;
	animation-timing-function: linear;
	animation-duration: 1s;
	animation-name: calc-block-pic-2;
}
@keyframes calc-block-pic-2 {
	0% {
		opacity: 0;
	}
  2% {
		opacity: 0;
	}
	30% {
		opacity: 0;
	}
  40% {
		opacity: 1;
	}
  90% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
} */

[data-aos] {
  /* transition: transform .8s cubic-bezier(.165,.84,.44,1) !important; */
  transition-duration: 1.6s;
}

.menu-link span {
  display: inline-block;
  position: relative;
  overflow-x: hidden;
  line-height: 1;
}

.menu-link span:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  height: 2px;
  transition: 0.6s;
  background: #000;
}

.menu-link span:hover:before {
  width: 100%;
  /*      left: 100%; */
}

.header-burger.active::before {
  border-top-color: var(--colorBlack);
  border-left-color: var(--colorBlack);
}
.header-burger.active::after {
  border-bottom-color: var(--colorBlack);
  border-right-color: var(--colorBlack);
}

.header-burger.active span {
  background: rgba(31, 31, 31, 1);
}

.mainpage-pagination-button {
  opacity: 0;
  transform: translateY(40px);
  margin-top: 0;
  height: 0;
  transition: 0.8s;
}

.swiper-slide.swiper-slide-thumb-active .mainpage-pagination-container .mainpage-pagination-button {
  opacity: 1;
  transform: translateY(0);
  /* margin-top: 22px; */
  height: 0;
}

.mainpage-pagination-title {
  transition: 0.8s;
  transform: translateY(0);
}

.swiper-slide.swiper-slide-thumb-active .mainpage-pagination-container .mainpage-pagination-title {
  transform: translateY(-26px);
}

.mainpage-article p[data-aos="fade-down"] {
  transform: translate3d(0, -10px, 0);
}

.mainpage-title__row span[data-aos="fade-down"] {
  transform: translate3d(0, -120px, 0);
}

.mainpage-title[data-aos="fade-down"] {
  transform: translate3d(0, -40px, 0);
}

.header-logo.active {
  background-color: var(--colorBlack);
}

.header-logo.active .header-logo-bg {
  background-image: url(../img/logo-b.svg);
}

/* c */

.noscroll {
  overflow: hidden !important;
}

.popup-gallery {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.6s;
}

.popup-gallery__visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.popup-gallery__background {
  background-color: var(--colorBlack);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
.popup-gallery__close-button-bg {
  width: 118px;
  height: 118px;
  background-color: var(--colorYellow);
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.popup-gallery__main .swiper-slide.swiper-slide-next,
.popup-gallery__main .swiper-slide.swiper-slide-prev{
filter: brightness(50%);
transition:  0.4s;
}

/* .popup-gallery__main .swiper-slide.swiper-slide-next::before,
.popup-gallery__main .swiper-slide.swiper-slide-prev::before{
  content: '';
  background-color: var(--colorBlack);
      opacity: 0.7;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  right: 0;
}
     */


.popup-gallery__close-button-front {
  display: inline-block;
  width: 42px;
  height: 42px;

  background: linear-gradient(var(--colorBlack), var(--colorBlack)),
    linear-gradient(var(--colorBlack), var(--colorBlack));
  background-position: center;
  background-size: 100% 3px, 3px 100%; /*thickness = Npx, length = N% */
  background-repeat: no-repeat;
  border-radius: 50%;
  transform: rotate(45deg);
}

.popup-gallery__main {
  position: relative;
  z-index: 15;
  width: 962px;
  height: 703px;
  /* background-color: #fff; */
  /* overflow: hidden; */
}
.swiper-container.popup-gallery__swiper-container {
  height: 100%;
}

.popup-gallery__swiper-container > .swiper-wrapper .swiper-slide {
  /* width: 962px;
	height: 703px; */

  height: 100%;
}
.popup-gallery__swiper-container > .swiper-wrapper .swiper-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.block-cookies-privacy {
  position: absolute;
  z-index: 100;
  right: 60px;
  bottom: 38px;
  width: 436px;
  height: 236px;
  background-color: var(--colorWhite);
  color: var(--colorBlack);
  padding: 32px 68px 28px 35px;
}
.block-cookies-privacy > h5 {
  margin-bottom: 16px;
}
.block-cookies-privacy > p {
  margin-bottom: 29px;
}
.block-cookies-privacy > button {
  margin-right: 9px;
}
.block-cookies-privacy > a {
  text-transform: uppercase;
}

.container_page404 {
  width: 100vw;
  height: 100vh;
  background: url(../img/mainpage-img-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.button.button_yellow {
  background: var(--colorYellow);
}
.button_yellow:hover {
  background-color: var(--colorBlack);
  color: var(--colorWhite);
}

.button_yellow:hover.white-hover {
  background: var(--colorWhite);
  color: var(--bg-colorBlack);
}

.page404 {
  height: calc(100% - 107px);
  display: flex;
  align-items: flex-end;
}
.page404__block > .title-big {
  margin-bottom: 27px;
}

.page404__block > p {
  /* width: 38.8%; *96* */
  margin-bottom: 46px;
}

.thanks-for-feedback {
  width: 50%;
  padding-right: 6%;
}

.message-sent {
  position: absolute;
  top: -40px;
  right: 14%;
  width: 570px;
  height: 490px;
}

.message-sent > img {
  height: 490px;
}

.contact-us-popup,
.specs-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  width: 830px;
  background-color: var(--colorYellow);
  padding: 90px 113px 0 68px;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transform: translateX(+100%);
  transition: 0.3s;
  z-index: 9;
  background-image: url("../img/contacts-bg.svg");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 60%;
}

.contact-us-popup {
  z-index: 5556;
  box-shadow: -20px 4px 124px rgba(0, 0, 0, 0.25);
}

.contact-us-popup.show,
.specs-popup.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(0%);
}

.contact-us-popup__contacts-info h2 {
  margin-bottom: 22px;
}

.contact-us-popup__contacts-info > p {
  margin-bottom: 34px;
}

.contact-us-popup__message-sent {
  text-align: center;
}

/* scrollbar  */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: var(--colorGray);
}

::-webkit-scrollbar-thumb {
  background-color: var(--colorBlack);
}

.menu-scroll-block::-webkit-scrollbar {
  width: 4px;
}

/* ÐŸÐ¾Ð´Ñ‡ÐµÑ€ÐºÐ¸Ð²Ð°Ð½Ð¸Ðµ */

.header-tel > a:before,
.header-contacts > a:before,
.header-contacts > span:before {
  content: "";
  display: block;
  position: relative;
  bottom: -25px;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: 0.6s;
}

.header-tel > a:hover:before,
.header-contacts > a:hover:before,
.header-contacts > span:hover:before
 {
  width: 100%;
}

/* Ð°Ð½Ð¸Ð¼Ð°Ñ†Ð¸Ñ ÐºÐ½Ð¾Ð¿ÐºÐ¸ */
.button {
  align-items: center;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.button.button_border {
  border: none;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.button_border::before,
.button_border::after {
  position: absolute;
  content: "";
  border-top: 2px solid var(--colorBlack);
  border-bottom: 2px solid var(--colorBlack);
  width: 12px;
  height: calc(100% - 4px);
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
}

.button_border::before {
  left: 0;
  border-left: 2px solid var(--colorBlack);
}

.button_border::after {
  right: 0;
  border-right: 2px solid var(--colorBlack);
}

.button_border:hover:before,
.button_border:hover::after {
  width: 50%;
}
.button_border > span:before {
  content: attr(title);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: var(--colorBlack);
  color: var(--colorWhite);

  transform: translateY(100%);
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.button_border:hover > span:before {
  transform: translateY(0);
}
.button_border > span {
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.button_border:hover > span {
  color: transparent;
}

.ribbon.ribbon_gray.ribbon_gray-transp {
}

.ribbon.ribbon_gray.ribbon_gray-transp:before {
  z-index: 2;
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  transform: matrix(1, 0, 0, -1, 0, 0);
}

.ribbon.ribbon_yellow {
  z-index: 3;
}

.container.container_projects .mainpage-title {
  /* min-height: auto; *96*/
  /* margin-bottom: 28px; *96*/
}

.filter-panel:after {
  content: "";
  display: block;
  position: absolute;
  top: -26px;
  left: -52px;
  right: 0;
  margin: auto;
  width: 0;
  border: 12px solid transparent;
  border-bottom: 14px solid #fff;
}

.projects-more {
  text-align: center;
  margin-bottom: 172px;
}

.button_gray {
  background: #e6e6e6;
}
.button_gray:hover {
  background: var(--colorGray);
}

.button_wide {
  text-align: center;
  width: 100%;
}

.message-sent,
.thanks-for-feedback {
  display: none;
}

.contacts.contacts_pp {
  display: block;
}

.contacts.contacts_pp .contacts__info {
  width: 100%;
  padding: 0;
  margin-bottom: 54px;
}

.contacts.contacts_pp .contacts__form {
  width: 100%;
}

.contacts.contacts_pp .thanks-for-feedback {
  width: 100%;
  margin: 0;
  padding: 0;
}

.thanks-for-feedback .h2 {
  margin-bottom: 18px;
}

.contacts.contacts_pp .message-sent {
  position: initial;
  width: 65%;
  margin-left: 50px;
  height: auto;
  margin-top: 28px;
}

.header-burger.active > span:first-child {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 0;
}

.header-burger.active > span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header-burger.active > span:last-child {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: initial;
}

.header-burger.active > span {
  margin-bottom: 0;
  position: absolute;
  margin: 0;
  bottom: initial;
}

.container.container_productinfo {
  min-height: 722px;
}

.absolute-pins-block > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* .map-bg div[title]:after,
.map-bg div[title]:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -121px;
  right: 0;
  margin: auto;
  width: 300px;
  height: 300px;
  transition: 1s;
  transform: scale(1.5);
  border: 2px solid var(--colorYellow);
  border-radius: 50%;
  z-index: 3;
} */

.map-bg div[title] {
  position: relative;
}

.FAQ__plus span {
  display: block;
  background: var(--colorBlack);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.6s;
  border-radius: 3px;
}

.FAQ__plus span:nth-child(1) {
  width: 22px;
  height: 3px;
}

.FAQ__plus span:nth-child(2) {
  width: 3px;
  height: 22px;
}

.active .FAQ__plus span:nth-child(2) {
  height: 2px;
}

.FAQ__flex_left > .title-big {
  margin-bottom: 16px;
}

.calc-block-img > * {
  position: absolute;
  top: 0;
  width: 100%;
}

.article-pic.article-pic_5 {
  width: 606px;
  height: 430px;
  left: 11%;
  top: 151px;
}

.swiper-container_calc-info .swiper-slide.swiper-slide-active {
  opacity: 1;
  visibility: visible;
}

.swiper-container_calc-info .swiper-slide {
  opacity: 0;
  visibility: hidden;
}

.swiper-slide-thumb-active .calc-preview {
  transform: scale(1.08);
}

.swiper-navigation-btn {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 28px;
  height: 14px;
}

.swiper-navigation-btn.swiper-navigation-calc_prev {
  top: -40px;
  background: url(../img/calculator/nav-calc-top.svg) no-repeat center;
  background-size: contain;
width: 40px;height: 40px;background-size: 23px;}

.swiper-navigation-btn.swiper-navigation-calc_next {
  bottom: -40px;
  background: url(../img/calculator/nav-calc-bot.svg) no-repeat center;
  background-size: contain;
width: 40px;height: 40px;background-size: 20px;}

/*  */

/* .lock-screen {
    display: none;
}

.page-is-changing .lock-screen {
    display: block;
}


.lock-screen {
    animation-timing-function: ease-in-out;
    animation-duration: 2s;
    animation-name: lock-screen;
}

@keyframes lock-screen {
    0% {
        transform: translateY(100%);
    }
    20% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(0);
    }
    60% {
        transform: translateY(0);
    }
    80% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);

    }
}

.lock-screen-yellow {
    animation-timing-function: ease-in-out;
    animation-duration: 2s;
    animation-name: lock-screen-yellow;
}

@keyframes lock-screen-yellow {
    0% {
        transform: translateY(100%);
    }
    20% {
        transform: translateY(100%);
    }
    40% {
        transform: translateY(0);
    }
    60% {
        transform: translateY(0);
    }
    80% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(-100%);
    }
} */

/*  */

.lock-screen.lock-screen_start {
  display: none;
}

.page-is-changing .lock-screen.lock-screen_start {
  display: block;
}

.lock-screen.lock-screen_start {
  animation-timing-function: ease-in-out;
  animation-duration: 2s;
  animation-name: lock-screen-start;
  transform: translateY(0);
}

@keyframes lock-screen-start {
  0% {
    transform: translateY(100%);
  }
  25% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

.lock-screen_start .lock-screen-yellow {
  animation-timing-function: ease-in-out;
  animation-duration: 2s;
  animation-name: lock-screen-start-yellow;
  transform: translateY(0);
}

@keyframes lock-screen-start-yellow {
  0% {
    transform: translateY(100%);
  }
  25% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

/*  */

.lock-screen.lock-screen_end {
  display: none;
}

.page-changed .lock-screen.lock-screen_end {
  display: block;
}

.lock-screen.lock-screen_end {
  animation-timing-function: ease-in-out;
  animation-duration: 2s;

  animation-name: lock-screen-end;
}

@keyframes lock-screen-end {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

.lock-screen_end .lock-screen-yellow {
  animation-timing-function: ease-in-out;
  animation-duration: 2s;
  animation-name: lock-screen-end-yellow;
}

@keyframes lock-screen-end-yellow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

.text-line-bg img {
  height: 100%;
  width: auto;
}

.specs-popup {
  background: url("../img/contacts-bg.svg"), #fff;
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 557px 267px;
      box-shadow: -20px 4px 124px rgb(0 0 0 / 25%);
  /* height: 100vh; */
}

.specs-title {
  margin-bottom: 38px;
}

.specs-ul li {
  position: relative;
  margin-bottom: 28px;
  padding-left: 28px;
}

.specs-ul li:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50%;
}

.specs-ul ul {
  list-style: none;
}

.swiper-container_mainpage-photos .mainpage-img {
  transition: 6s;
  transform: scale(1.2);
}

.swiper-container_mainpage-photos .swiper-slide-active .mainpage-img {
  transform: scale(1);
}

.swiper-container_mainpage-photos .swiper-slide-active {
  z-index: 7878787856;
}

.menu-container.menu-container_prodcont {
  padding-top: 160px;
}

/* .menu.show .menu-link:nth-child(1) > * {
  transition-delay: 0.4s;
}

.menu.show .menu-link:nth-child(2) > * {
  transition-delay: 0.6s;
}

.menu.show .menu-link:nth-child(3) > * {
  transition-delay: 0.8s;
}

.menu.show .menu-link:nth-child(4) > * {
  transition-delay: 1s;
}

.menu.show .menu-link:nth-child(5) > * {
  transition-delay: 1.2s;
}

.menu.show .menu-link:nth-child(6) > * {
  transition-delay: 1.4s;
} */




.menu-container.menu-container_linkscont.show .menu-link:nth-child(1) > * {
  transition-delay: 0.4s;
}

.menu-container.menu-container_linkscont.show .menu-link:nth-child(2) > * {
  transition-delay: 0.6s;
}

.menu-container.menu-container_linkscont.show .menu-link:nth-child(3) > * {
  transition-delay: 0.8s;
}

.menu-container.menu-container_linkscont.show .menu-link:nth-child(4) > * {
  transition-delay: 1s;
}

.menu-container.menu-container_linkscont.show .menu-link:nth-child(5) > * {
  transition-delay: 1.2s;
}

.menu-container.menu-container_linkscont.show .menu-link:nth-child(6) > * {
  transition-delay: 1.4s;
}

/* .menu.show .menu-link > * {
  transform: translateY(0);
  opacity: 1;
} */

.menu-container.menu-container_linkscont.show .menu-link > * {
  transform: translateY(0);
  opacity: 1;
} 




.menu-container.menu-container_linkscont.show .menu-contact-link:nth-child(1) > * {
  transition-delay: 1.4s;
}

.menu-container.menu-container_linkscont.show .menu-contact-link:nth-child(2) > * {
  transition-delay: 1.6s;
}


/* .menu.show .menu-contact-link:nth-child(1) > * {
  transition-delay: 1.4s;
}

.menu.show .menu-contact-link:nth-child(2) > * {
  transition-delay: 1.6s;
} */

/* .menu.show .menu-contact-link > * {
  transform: translateY(0);
  opacity: 1;
} */
.menu-container.menu-container_linkscont.show  .menu-contact-link > * {
  transform: translateY(0);
  opacity: 1;
}

.transreset {
  -webkit-transition: none !important;
  transition: none !important;
}

.container.container_ourproducts > .grid {
  z-index: 2;
  position: relative;
}

/*  */

/* .container_topcommon:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    margin: auto;
    width: 100%;
    background: #FFF;
    z-index: 3;
    transition: 0.6s;
     width: 0;
  transform: translateX(0);
  animation-timing-function: linear;
  animation-delay: 4s;
  animation-duration: 1s;
  animation-name: container-topcommon;
}

@keyframes container-topcommon {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
} */
/*  перекрывает шапку сайта https://app.asana.com/0/1202052861805433/1202070873909075/f
.container_topcommon:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  margin: auto;
  width: 100%;
  background: #fff;
  z-index: 3;
  transition: 1s;
  width: 100%;
} */

.aos-animate.container_topcommon:after {
  width: 0;
}

.container_topcommon[data-aos] {
  opacity: 1;
}

.container_topcommon .mainpage-title__row span {
  /* transition-delay: 1s; */
}

.prodinfo-visualblock.aos-init {
  transform: initial !important;
}
.container.container_productinfo.bg__white {
  background: var(--colorWhite);
}
.absolute-pins-pic__img {
  box-shadow: 2px 2px 3px 0px #d6d6d6, -2px 2px 3px 0px #d6d6d6, 2px -2px 3px 0px #d6d6d6, -2px -2px 3px 0px #d6d6d6;
}

.graph-pic-circ {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 1s;
  width: 510px;
  height: 510px;
  border: 5px solid #d6d6d6;
  /* border: 3px solid red; */
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
  transform: scale(0.01);
}
.graph-pic-circ:nth-child(1) {
  animation: pulse-circle-bg 4s infinite;
  animation-delay: 4s;
}
.graph-pic-circ:nth-child(2) {
  animation: pulse-circle-bg 4s infinite;
  animation-delay: 5s;
}
.graph-pic-circ:nth-child(3) {
  animation: pulse-circle-bg 4s infinite;
  animation-delay: 6s;
}
.graph-pic-circ:nth-child(4) {
  animation: pulse-circle-bg 4s infinite;
  animation-delay: 7s;
}

.absolute-graph-wrap {
  transform: scale(0);
  transition: 1s;
}

.aos-init.aos-animate .absolute-graph-wrap {
  transform: scale(1);
}
.absolute-pins-line:after {
  content: "";
  display: block;
  height: 100%;
  background: #1f1f1f;
  width: 0;
  transition: 1s;
}

.aos-animate .absolute-pins-line:after {
  width: 100%;
}
.absolute-pins-pic {
  opacity: 0;
  transition: 0.4s;
}
.aos-animate .absolute-pins-pic {
  opacity: 1;
}

.absolute-pins-dot {
  transform: scale(0);
  transition: 1s;
}

.aos-animate .absolute-pins-dot {
  transform: scale(1);
}

.absolute-pins-block_3-1 .absolute-pins-pic,
.absolute-pins-block_3-1 .absolute-pins-dot,
.absolute-pins-block_3-1 .absolute-pins-line:after,
.absolute-pins-block_4-1 .absolute-pins-pic,
.absolute-pins-block_4-1 .absolute-pins-dot,
.absolute-pins-block_4-1 .absolute-pins-line:after {
  transition-delay: 1s;
}
.absolute-pins-block_3-2 .absolute-pins-pic,
.absolute-pins-block_3-2 .absolute-pins-dot,
.absolute-pins-block_3-2 .absolute-pins-line:after,
.absolute-pins-block_4-2 .absolute-pins-pic,
.absolute-pins-block_4-2 .absolute-pins-dot,
.absolute-pins-block_4-2 .absolute-pins-line:after {
  transition-delay: 1.5s;
}
.absolute-pins-block_3-4 .absolute-pins-pic,
.absolute-pins-block_3-4 .absolute-pins-dot,
.absolute-pins-block_3-4 .absolute-pins-line:after {
  transition-delay: 2s;
}
.absolute-pins-block_3-3 .absolute-pins-pic,
.absolute-pins-block_3-3 .absolute-pins-dot,
.absolute-pins-block_3-3 .absolute-pins-line:after {
  transition-delay: 2.5s;
}

@keyframes pulse-circle-bg {
  0% {
    opacity: 1;
    transform: scale(0.01);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.absolute-pins-pic {
  height: 102px;
}

.calc-block-info__img {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.calc-block-info__img a:hover {
    opacity: .7;
}

.swiper-navigation-btn.swiper-navigation-calc_prev, .swiper-navigation-btn.swiper-navigation-calc_next{
	cursor:pointer;
	    transition: 0.1s;
}
.swiper-navigation-btn.swiper-navigation-calc_next.swiper-button-disabled {opacity: .3;}

.swiper-navigation-btn.swiper-navigation-calc_prev.swiper-button-disabled {opacity: .2;}

.swiper-navigation-btn.swiper-navigation-calc_prev:hover, .swiper-navigation-btn.swiper-navigation-calc_next:hover {transform: scale(1.1);}

.swiper-calc-info-button-next,
.swiper-calc-info-button-prev {
  display: none;
}

.invert .header-tel > a:before,
.invert .header-contacts > a:before,
.invert .header-contacts > span:before,
.invert.header-container-adress:before {
  background: var(--bg-colorBlack);
}

.contacts-download__ico:hover > img {
}

.lock-screen.lock-screen_start img {
  position: absolute;
}

.pic-container {
  display: none;
}
.container_tbt {
  /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/
  THERMAL BREAK TECHNOLOGY */
  background: url(../img/thermal-bg.jpg) no-repeat bottom left/cover;
}
.container_wes {
  /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/
    WARM EDGE SPACERS*/
  background: url(../img/warm-bg.jpg) no-repeat bottom right/cover;
}
.calc-preview:hover {
    transform: scale(1.05);
}

.swiper-slide-thumb-active .calc-preview:hover{
	 transform: scale(1.08);
}

.swiper-slide-active .calc-block {opacity: 1;}

.calc-block {opacity: 0;}


.video-container video {
    width: 100%;
}

.mainpage-pagination-container .menu-imglink__arrow {
    top: 0;
    bottom: 0;
    margin: auto;
	display:none;
}





@media only screen and (max-width: 1700px) {
  .header-burger,
  .header-logo {
    width: 78px;
    height: 70px;
  }

  .header-container-squares {
    top: 32px;
    left: 3%;
  }

  .title-big {
    font-size: 68px;
    line-height: 106%;
  }

  .grid {
    width: 80%;
  }

  .mainpage__text {
    padding-bottom: 8%;
  }

  .container.container_mainpage .mainpage-title__row {
    /* margin-bottom: -22px; */
  }

  .text-1 {
    font-size: 18px;
    line-height: 140%;
  }

  .container_mainpage .mainpage-title {
    margin-bottom: 34px;
  }

  .swiper-container.swiper-container_mainpage-pagination {
    width: 272px;
  }

  .mainpage__pagination {
    padding-left: 24%;
  }

  .title-2 {
    font-size: 16px;
    line-height: 130%;
  }

  button > span,
  .button > span {
    font-size: 14px;
  }

  .header-burger span {
    width: 34px;
    margin-bottom: 8px;
    height: 2px;
  }

  .title-3 {
    font-size: 14px;
  }

  .header-container-info {
    top: 28px;
  }

  .header-tel {
    margin-right: 20px;
  }

  .header-container-adress {
    top: 28px;
    right: 4.5%;
  }

  .header-adr-ico {
    width: 12px;
    height: 16px;
  }

  .mainpage-pagination-img {
    width: 88%;
  }

  .mainpage-pagination-title {
    margin-bottom: 10px;
  }

  h3,
  .h3 {
    font-size: 34px;
  }

  .menu-container {
    padding-top: 168px;
  }

  .menu-contact-link a,
  .menu-contact-link .menu__contact-us {
    font-size: 20px;
  }

  .menu {
    width: 550px;
  }

  .menu-contact-link {
    margin-right: 78px;
  }

  .mainpage-pagination-container {
  }

  .menu-imglink {
    height: 156px;
    margin-bottom: 10px;
  }

  .menu-container__text {
    padding-right: 22px;
    margin-bottom: 22px;
  }

  .menu-container.menu-container_prodcont {
    padding-top: 118px;
  }

  .menu-container__back {
    margin-bottom: 28px;
  }

  .menu-container__title {
    margin-bottom: 12px;
  }

  .text-3,
  p.text-3 {
    font-size: 14px;
    line-height: 130%;
  }

  .menu-container__imglinks {
    margin-bottom: 12px;
  }

  .menu-imglink.menu-imglink_short {
    height: 108px;
  }

  .menu-imglink-title {
    padding-right: 42px;
  }

  h5,
  .h5 {
    font-size: 20px;
  }

  .container.container_product {
    min-height: 552px;
  }

  h1,
  .h1,
  h2.h1 {
    font-size: 64px;
  }

  .mainpage-title {
    /* min-height: 136px; *96* */
  }

  h4,
  .h4 {
    font-size: 28px;
  }

  .container.container_productinfo {
    min-height: 546px;
    padding-top: 118px;
  }

  .caption {
    font-size: 12px;
  }

  .menu-imglink.menu-imglink_ourproducts {
    height: 275px;
  }

  .container.container_articleblock {
    min-height: 548px;
    padding: 96px 0;
  }

  .logos-list__item {
    width: 104px;
    height: 104px;
  }

  .logos-list__item img {
    width: 94px;
    height: 94px;
  }

  h2,
  .h2 {
    font-size: 46px;
  }

  .slider-project__visual {
    height: 256px;
  }

  .article-long-title {
    font-size: 28px;
  }

  .container.container_projgallery {
    padding: 115px 0;
  }

  .showroom {
    padding: 122px 0;
  }

  .showroom__text p {
    font-size: 18px;
  }

  .container.container_map {
    height: 742px;
  }

  .showroom__text {
    margin-bottom: 92px;
  }

  .container.container_contacts {
    padding: 92px 0;
  }

  .contacts-download__ico {
    width: 50px;
    height: 50px;
  }

  .contacts-download-title {
    font-size: 20px;
  }

  .contacts-download-format {
    font-size: 14px;
  }

  .input-wrap {
    margin-bottom: 48px;
  }

  .contacts-form__fields {
    margin-bottom: 78px;
  }

  .contacts-form__button {
    margin-bottom: 58px;
  }

  .contacts__form {
    min-height: 490px;
    margin-bottom: 84px;
  }

  .contacts__bg {
    width: 618px;
    height: 292px;
  }

  .button_border::before,
  .button_border::after {
    height: calc(100% - 2px);
  }

  .container.container_ourproducts {
    padding: 72px 0;
  }

  /*  */

  h1,
  .h1,
  h2.h1 {
    font-size: 48px;
  }

  h4,
  .h4 {
    font-size: 20px;
  }

  .header-burger,
  .header-logo {
    margin-right: 8px;
  }

  .breads {
    /* margin-bottom: 12px; *96* */
  }

  .container.container_product {
    min-height: 392px;
  }

  .product-text {
    /* margin-bottom: 34px; *96* */
  }

  .grid {
    width: 91%;
  }

  .container.container_productinfo {
    min-height: 382px;
    padding-top: 78px;
    padding-bottom: 108px;
  }

  .light-pin__ico {
    width: 68px;
    height: 68px;
  }

  .light-pin__text {
    line-height: 1;
    /* font-size: 9px; */
  }

  .ourproducts-bg {
    width: 352px;
    height: 176px;
    top: -4%;
  }

  .prodinfo-textblock__title {
    margin-bottom: 28px;
  }

  .light-pin__ico img {
    width: 44px;
    height: 44px;
  }

  .absolute-pins-block.absolute-pins-block_1 {
    right: -5px;
    top: 30px;
    width: 422px;
    height: 214px;
  }
  .absolute-pins-block__text {
    top: 37%;
    right: 75%;
    font-size: 12px;
    font-weight: 600;
  }

  .contact-us-popup {
    width: 667px;
  }
  .absolute-graph-wrap {
    position: absolute;
    right: 9%;
    top: 26px;
    width: 404px;
    height: 336px;
  }
  .absolute-pins-block.absolute-pins-block_3-1 {
    top: -10px;
    right: 314px;
  }
  .absolute-pins-pic {
    height: 86px;
  }
  .absolute-graph-wrap .absolute-pins-pic__img {
    width: 86px;
    height: 86px;
    border: 5px solid #fff;
  }
  .absolute-pins-dot span {
    width: 10px;
    height: 10px;
  }
  .absolute-pins-dot {
    width: 27px;
    height: 27px;
  }
  .absolute-pins-block_3-1 .absolute-pins-dot {
    right: -103px;
    top: 72px;
  }
  .absolute-pins-block_3-1 .absolute-pins-line {
    top: 70px;
    right: -86px;
    width: 95px;
  }
  .absolute-pins-block.absolute-pins-block_3-2 {
    top: 195px;
    right: 305px;
  }
  .absolute-pins-block_3-2 .absolute-pins-dot {
    right: -77px;
    top: -6px;
  }
  .absolute-pins-block_3-2 .absolute-pins-line {
    top: 24px;
    right: -66px;
    width: 90px;
  }
  .absolute-pins-block.absolute-pins-block_3-3 {
    top: 26px;
    left: 290px;
  }
  .absolute-pins-block_3-3 .absolute-pins-dot {
    left: -58px;
    top: 72px;
  }
  .absolute-pins-block_3-3 .absolute-pins-line {
    top: 62px;
    left: -48px;
    width: 95px;
  }
  .absolute-pins-block.absolute-pins-block_3-4 {
    bottom: 31px;
    left: 270px;
  }
  .absolute-pins-block_3-4 .absolute-pins-dot {
    left: -109px;
    top: 5px;
  }
  .absolute-pins-block_3-4 .absolute-pins-line {
    top: 26px;
    left: -96px;
    width: 100px;
  }
  .container.container_productinfo {
    padding-bottom: 160px;
  }

  .absolute-graph-wrap.doors {
    position: absolute;
    right: 7%;
    top: -40px;
    width: 404px;
    height: 311px;
  }
  .absolute-pins-block.absolute-pins-block_4-1 {
    top: 34px;
    left: -103px;
  }
  .absolute-pins-block_4-1 .absolute-pins-dot {
    right: -104px;
    bottom: -14px;
  }
  .absolute-pins-block_4-1 .absolute-pins-line {
    width: 110px;
    right: -90px;
    bottom: 16px;
    transform: rotate(17deg);
  }
  .absolute-pins-block.absolute-pins-block_4-2 {
    bottom: 3px;
    right: -96px;
  }
  .SCCUL {
    padding-top: 83px;
    padding-bottom: 56px;
  }
  .SCCUL__flex_block {
    width: calc(100% / 5 - 34px);
  }
  .SCCUL__flex_img {
    width: 108px;
    height: 108px;
    padding: 23px;
    box-shadow: 0px 0px 40px #f0ff49;
    margin-bottom: 34px;
  }
  .SCCUL__flex_block h5 {
    min-height: 66px;
  }

  .container_FAQ {
    background-position: top 360px left 0px;
    background-size: 427px 205px;
    padding: 102px 0 92px;
  }
  .FAQ__flex_right {
    width: 66.5%;
    margin-top: -20px;
  }
  .FAQ__block {
    padding: 28px 0;
  }
  .FAQ__plus {
    width: 42px;
    height: 42px;
  }
  .FAQ__question {
    width: calc(100% - 42px - 41px);
  }
  .FAQ__answer {
    padding-left: calc(42px + 41px);
  }
  .container_our-process {
    background-position: top 231px left 0px;
    background-size: 506px 310px;
  }
  .our-process {
    padding-top: 62px;
    padding-bottom: 142px;
  }
  .our-process__left {
    margin-top: 281px;
    width: 400px;
  }
  .our-process__block {
    padding: 59px 48px;
  }
  .our-process__block_number {
    font-size: 32px;
    width: 82px;
    height: 82px;
  }
  .specs-popup {
    width: 550px;
    background-size: 411px 197px;
    padding: 90px 90px 0 55px;
  }
  .graph-pic-circ {
    width: 336px;
    height: 336px;
  }
  .article-ul li > a {
    left: 20px;
  }
  .article-ul {
    gap: 5px;
  }
  .article-pic.article-pic_1 {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    top: 0;
    left: 0%;
  }
  .article-pic.article-pic_2 {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    top: 0;
    right: 3%;
    width: 723px;
    height: 760px;
  }
  .article-block p {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    margin-bottom: 25px;
  }
  .article-pic.article-pic_4 {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    width: auto;
    height: 440px;
  }
  .article-pic.article-pic_5 {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    width: auto;
    height: 300px;
    top: 150px;
  }
  .article-colpics__item {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    width: 275px;
    height: auto;
    overflow: hidden;
    border-radius: 6px;
  }
  .slider-project-tag {
    top: 20px;
    left: 20px;
    border-radius: 33px;
    padding: 7px 15px;
  }
  .slider-project-tag span {
    font-size: 14px;
  }
  .container.container_projgallery {
    padding: 83px 0;
  }
  .prodinfo-text {
    /* 96 */
    font-size: 18px;
  }

  .article-pic.article-pic_3 {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    top: 160px;
    right: 13%;
    width: 610px;
    height: 394px;
  }

  .download-ico_animation {
    grid-template-rows: 50px 50px;
  }
  .absolute-pins-pic__img {
    width: 140px;
    height: 140px;
    border: 5px solid #fff;
  }
  .absolute-pins-block.absolute-pins-block_1.absolute-pins-block_1-pos2 {
    right: 20%;
    top: 35%;
  }
  .absolute-pins-block_1-pos2 .absolute-pins-dot {
    bottom: 60px;
    right: -160px;
  }
  .absolute-pins-block_1-pos2 .absolute-pins-line {
    bottom: 120px;
    right: -160px;
    transform: rotate(25deg);
  }
  
  .light-pin__ico {
    width: 48px;
    height: 48px;
}

.light-pin__ico img {
    width: 30px;
    height: 30px;
}


}

@media only screen and (max-width: 1430px) {
  .header-container-squares {
    top: 24px;
    left: 3.5%;
  }

  .header-burger {
    margin-right: 8px;
  }

  .title-3 {
    font-size: 12px;
  }

  .header-container-info {
    top: 18px;
    left: 23.5%;
  }

  .header-tel {
    margin-right: 38px;
  }

  .header-container-adress {
    top: 22px;
    right: 3.5%;
  }

  .mainpage__text {
    padding-bottom: 8%;
  }

  .swiper-container.swiper-container_mainpage-pagination {
  }

  .mainpage__pagination {
    padding-left: 20%;
  }

  .menu-container {
    padding-top: 134px;
  }

  .menu-link {
    margin-bottom: 18px;
  }

  .menu-container.menu-container_prodcont {
    padding-top: 94px;
  }

  .menu-container__back {
    margin-bottom: 14px;
  }

  .menu-container__title {
    margin-bottom: 6px;
  }

  .menu-imglink {
    height: 90px;
    margin-bottom: 6px;
  }

  .menu-container.menu-container_prodcont {
    padding-top: 88px;
  }

  .menu-container__text {
    margin-bottom: 16px;
  }
  .contact-us-popup {
    width: 545px;
    padding: 31px 41px 0 50px;
  }
  .absolute-graph-wrap {
    right: 7%;
    top: 89px;
    width: 376px;
    height: 255px;
  }
  .absolute-pins-pic {
    height: 60px;
  }
  .absolute-graph-wrap .absolute-pins-pic__img {
    width: 60px;
    height: 60px;
    border: 3px solid #fff;
  }
  .absolute-pins-block.absolute-pins-block_3-1 {
    top: -6px;
    right: 255px;
  }
  .absolute-pins-dot span {
    width: 6px;
    height: 6px;
  }
  .absolute-pins-dot {
    width: 25px;
    height: 25px;
  }
  .absolute-pins-block_3-1 .absolute-pins-dot {
    right: -66px;
    top: 40px;
  }
  .absolute-pins-block_3-1 .absolute-pins-line {
    top: 42px;
    right: -52px;
    width: 60px;
  }
  .absolute-pins-block.absolute-pins-block_3-2 {
    top: 140px;
    right: 255px;
  }
  .absolute-pins-block_3-2 .absolute-pins-dot {
    right: -48px;
    top: 0px;
  }
  .absolute-pins-block_3-2 .absolute-pins-line {
    top: 24px;
    right: -39px;
    width: 70px;
  }
  .absolute-pins-block.absolute-pins-block_3-3 {
    top: 24px;
    left: 250px;
  }
  .absolute-pins-block_3-3 .absolute-pins-dot {
    left: -42px;
    top: 50px;
  }
  .absolute-pins-block_3-3 .absolute-pins-line {
    top: 46px;
    left: -32px;
    width: 70px;
  }
  .absolute-pins-block.absolute-pins-block_3-4 {
    bottom: 24px;
    left: 240px;
  }
  .absolute-pins-block_3-4 .absolute-pins-dot {
    left: -79px;
    top: 6px;
  }
  .absolute-pins-block_3-4 .absolute-pins-line {
    top: 25px;
    left: -65px;
    width: 80px;
  }
  .absolute-graph-wrap.doors {
    position: absolute;
    right: 4%;
    top: 23px;
    width: 390px;
    height: 253px;
  }
  .absolute-pins-block.absolute-pins-block_4-1 {
    top: 30px;
    right: 295px;
  }
  .absolute-pins-block_4-1 .absolute-pins-dot {
    right: -95px;
    bottom: -14px;
  }
  .absolute-pins-block_4-1 .absolute-pins-line {
    width: 125px;
    right: -90px;
    bottom: 16px;
    transform: rotate(19deg);
  }
  .absolute-pins-block_4-1 .absolute-pins-line {
    width: 90px;
    right: -86px;
    bottom: 11px;
    transform: rotate(19deg);
  }

  .absolute-pins-block.absolute-pins-block_4-2 {
    bottom: -10px;
    right: -52px;
  }
  .absolute-pins-block_4-2 .absolute-pins-dot {
    left: -71px;
    top: -23px;
  }

  .absolute-pins-block_4-2 .absolute-pins-line {
    width: 92px;
    top: 11px;
    left: -65px;
    transform: rotate(208deg);
  }
  .absolute-pins-block.absolute-pins-block_1 {
    right: -20px;
    top: 15px;
    width: 422px;
    height: 214px;
  }
  .container_FAQ {
    background-position: top 275px left 0px;
    background-size: 434px 209px;
    padding: 94px 0 120px;
  }
  .FAQ__plus span:nth-child(1) {
    width: 15px;
    height: 2px;
  }
  .FAQ__plus span:nth-child(2) {
    width: 2px;
    height: 15px;
  }
  .container_our-process {
    background-position: top 160px left 0px;
  }
  .our-process {
    padding-top: 49px;
    padding-bottom: 150px;
  }
  .our-process__left {
    margin-top: 285px;
    width: 420px;
  }
  .our-process__block_number {
    font-size: 27px;
    width: 70px;
    height: 70px;
  }
  .our-process__block {
    padding: 61px 44px;
  }
  .specs-popup {
    width: 535px;
    padding: 90px 90px 0 60px;
  }
  .article-ul {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .article-title-bg {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    width: 457px;
  }

  .article-title-left {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    top: 135px;
  }
  .container.container_articleblock {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    min-height: 200px;
    padding: 64px 0;
  }
  .article-pic.article-pic_2 {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    right: 0%;
    width: 723px;
    height: 685px;
  }
  .grayer-icos__item {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    width: 67px;
    height: 67px;
    margin-bottom: 10px;
  }
  .grayer-icos {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    top: 56px;
  }
  .article-pic.article-pic_3 {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    top: 130px;
    right: 15%;
    width: 640px;
    height: 460px;
  }
  .article-pic.article-pic_5 {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    height: 292px;
    left: 110px;
  }
  .article-text-words {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    left: 10%;
  }
  .article-pic.article-pic_6 {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    top: 40px;
  }
  .slider-project-tag {
    top: 16px;
    left: 10px;
    border-radius: 33px;
    padding: 5px 15px;
  }
  .light-pin__ico img {
    width: 24px;
    height: 24px;
}
}

@media only screen and (max-width: 1270px) {
  .header-container-squares {
    flex-direction: row-reverse;
    top: 24px;
    left: 2.5%;
  }

  .header-container-info {
    top: 18px;
    left: 24.5%;
  }

  .title-big {
    font-size: 58px;
  }

  .grid {
    width: 79%;
  }

  .container.container_mainpage .mainpage-title__row {
    /* margin-bottom: -34px; */
  }

  .mainpage__pagination {
    padding-left: 11%;
  }

  .text-1 {
    font-size: 16px;
  }

  button > span,
  .button > span {
    font-size: 12px;
  }

  .button {
    padding: 12px 18px;
  }

  .mainpage-pagination-title {
    margin-bottom: 0;
  }

  .header-container-adress {
    right: 6.5%;
  }

  .menu-imglink {
    height: 132px;
  }

  .menu-container.menu-container_prodcont {
    padding-top: 114px;
  }

  /*  */

  .grid {
    width: 91%;
  }

  .logos-list__item {
    width: 72px;
    height: 72px;
  }

  .logos-list__item img {
    width: 68px;
    height: 68px;
  }

  .container.container_productinfo {
    padding: 78px 0;
  }

  .menu-imglink.menu-imglink_ourproducts {
    height: 222px;
  }

  .container.container_articleblock {
    min-height: 390px;
    padding: 66px 0;
  }

  .article-long-title {
    font-size: 20px;
  }

  .text-line-bg {
    height: 56px;
  }

  .container.container_projgallery {
    padding: 66px 0;
  }

  .projgallery-line {
    margin-bottom: 66px;
  }

  .swiper-navigation-button {
    width: 40px;
    height: 40px;
  }

  .slider-project__visual {
    height: 208px;
    margin-bottom: 18px;
  }

  h5,
  .h5 {
    font-size: 18px;
  }

  .swiper-container.swiper-container_projgallery .swiper-slide.swiper-slide-next {
    transform: translateY(-104px);
  }

  h2,
  .h2 {
    font-size: 35px;
  }

  .caption {
    font-size: 10px;
    line-height: 9px;
  }

  .light-pin__ico {
    margin-left: 12px;
    width: 35px;
    height: 35px;
  }

  .prodinfo-light-pinsblock {
    right: 20%;
    bottom: 0;
  }

  .menu-imglink.menu-imglink_ourproducts .menu-imglink__arrow {
    width: 19px;
    height: 19px;
  }

  .showroom {
    padding: 86px 0;
  }

  .showroom__text p {
    font-size: 16px;
  }

  .showroom__title {
    margin-bottom: 22px;
  }

  /*  */

  .input-field {
    font-size: 17px;
  }

  .input-placeholder {
    font-size: 17px;
  }

  .input-wrap {
    margin-bottom: 32px;
  }

  .contacts-form__fields {
    margin-bottom: 66px;
  }

  .contacts__form {
    min-height: 418px;
    margin-bottom: 84px;
  }

  .contacts-download {
    bottom: -48px;
  }

  .contacts-download__ico {
    width: 36px;
    height: 36px;
    margin-right: 22px;
  }

  .contacts-download-title {
    font-size: 16px;
  }

  .contacts-download-format {
    font-size: 10px;
  }

  .contacts-download__ico img {
    width: 31%;
  }

  .text-3.contacts-form-privacy {
    font-size: 10px;
    width: 178px;
  }

  .contacts-form__button > .button {
    margin-right: 26px;
  }

  .contacts__bg {
    width: 436px;
    height: 206px;
    left: -6px;
  }

  .title-1 {
    font-size: 18px;
  }

  .showroom__view a {
    font-size: 12px;
  }

  .showroom__adress {
    margin-bottom: 6px;
  }

  .showroom__text {
    margin-bottom: 82px;
  }

  .container.container_map {
    height: 528px;
  }

  .showroom {
    padding: 72px 0;
  }

  .swiper-container.swiper-container_projgallery {
    padding-top: 104px;
    margin-top: -104px;
  }

  textarea.input-field {
    height: 32px;
  }

  .input-wrap:nth-last-child(1) {
    margin-top: 44px;
  }

  .absolute-pins-block.absolute-pins-block_1 {
    right: 6.3%;
    top: -8px;
    width: 326px;
    height: 202px;
  }
  .absolute-pins-block__text {
    top: 37%;
    right: 81%;
  }
  .absolute-graph-wrap {
    right: 5%;
    top: 31px;
    width: 365px;
    height: 252px;
  }
  .absolute-graph-wrap .absolute-pins-pic {
    grid-gap: 11px;
  }
  .absolute-pins-block_3-1 .absolute-pins-dot {
    right: -64px;
    top: 44px;
  }
  .absolute-pins-block_3-1 .absolute-pins-line {
    top: 47px;
    right: -51px;
  }
  .absolute-pins-block.absolute-pins-block_3-2 {
    top: 140px;
    right: 255px;
  }
  .absolute-pins-block_3-2 .absolute-pins-dot {
    right: -51px;
    top: 2px;
  }
  .absolute-pins-block_3-2 .absolute-pins-line {
    top: 25px;
    right: -39px;
    transform: rotate(-17deg);
  }
  .absolute-pins-block_3-3 .absolute-pins-dot {
    left: -42px;
    top: 47px;
  }
  .absolute-pins-block_3-3 .absolute-pins-line {
    top: 44px;
    left: -32px;
    transform: rotate(-205deg);
  }
  .absolute-pins-block.absolute-pins-block_3-4 {
    bottom: 30px;
    left: 240px;
  }
  .absolute-pins-block_3-4 .absolute-pins-dot {
    left: -81px;
    top: 9px;
  }
  .absolute-pins-block_3-4 .absolute-pins-line {
    top: 27px;
    left: -65px;
  }
  .absolute-graph-wrap.doors {
    position: absolute;
    right: 7%;
    top: -32px;
    width: 379px;
    height: 253px;
  }
  .absolute-pins-block_4-1 .absolute-pins-dot {
    right: -70px;
    bottom: -20px;
  }
  .absolute-pins-block_4-1 .absolute-pins-line {
    width: 80px;
    right: -60px;
    bottom: 5px;
  }
  .absolute-pins-block.absolute-pins-block_4-1 {
    top: 30px;
    right: 260px;
  }
  .SCCUL {
    padding-top: 52px;
    padding-bottom: 44px;
  }
  .SCCUL__flex_block {
    width: calc(100% / 5 - 56px);
  }
  .SCCUL__flex_img {
    width: 80px;
    height: 80px;
    padding: 18px;
    margin-bottom: 24px;
  }
  .SCCUL__flex_block h5 {
    min-height: 60px;
  }
  .container_FAQ {
    background-position: top 208px left 0px;
    background-size: 368px 177px;
    padding: 62px 0 66px;
  }
  .FAQ__block {
    padding: 18px 0;
  }
  .FAQ__flex_right {
    width: 57.5%;
  }
  .FAQ__plus {
    width: 32px;
    height: 32px;
  }
  .FAQ__plus span:nth-child(1) {
    width: 12px;
    height: 2px;
  }
  .FAQ__plus span:nth-child(2) {
    width: 2px;
    height: 12px;
  }
  .FAQ__question {
    width: calc(100% - 32px - 18px);
  }
  .FAQ__answer {
    padding-left: calc(32px + 18px);
    padding-top: 28px;
    margin-bottom: 49px;
  }
  .container_our-process {
    background-position: top 178px left 0px;
    background-size: 343px 271px;
  }
  .our-process__left {
    width: 315px;
  }
  .our-process__block {
    margin-bottom: 20px;
  }
  .specs-popup {
    width: 442px;
    background-size: 280px 134px;
    padding: 90px 90px 0 55px;
  }
  .article-title-bg {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    width: 361px;
  }
  .article-ul li:before {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    width: 20px;
    height: 20px;
  }
  .article-ul li > a {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    left: 10px;
  }
  .article-title-left {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    top: 155px;
  }

  .article-pic.article-pic_1 {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    height: 280px;
  }
  .article-pic.article-pic_2 {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    width: 480px;
    height: 540px;
  }

  .grayer-icos__item {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    width: 56px;
    height: 56px;
    margin-right: 12px;
  }
  .grayer-icos {
    top: 36px;
    display: flex;
  }
  .article-pic.article-pic_4 {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    height: 360px;
  }
  .article-pic.article-pic_5 {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    left: 15px;
  }
  .article-text-words {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    left: 5%;
  }
  .article-text-words span {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    font-size: 16px;
  }
  .article-colpics__item {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    width: 218px;
  }
  .slider-project-tag {
    top: 15px;
    left: 22px;
    border-radius: 33px;
    padding: 7px 15px;
  }
  .slider-project-tag span {
    font-size: 12px;
  }
  .our-process {
    padding-top: 36px;
    padding-bottom: 102px;
  }
  .prodinfo-text {
    /* 96 */
    font-size: 16px;
  }
  .article-pic.article-pic_3 {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    top: 100px;
    right: 5%;
    width: 600px;
    height: 460px;
  }
  .download-ico_animation {
    grid-template-rows: 36px 36px;
  }
  .absolute-pins-pic__img {
    /* https://09.f12dev.ru/sector/home-owners-and-renovators/ */
    width: 88px;
    height: 88px;
    border: 3px solid #fff;
  }
  .absolute-pins-block_1-pos2 .absolute-pins-dot {
    /* https://09.f12dev.ru/sector/home-owners-and-renovators/ */
    bottom: 120px;
    right: -90px;
  }
  .absolute-pins-block_1-pos2 .absolute-pins-line {
    /* https://09.f12dev.ru/sector/home-owners-and-renovators/ */
    bottom: 150px;
    right: -80px;
    width: 100px;
    transform: rotate(20deg);
  }
}

@media only screen and (max-width: 1023px) {
  .header-burger,
  .header-logo {
    width: 62px;
    height: 54px;
  }

  .header-container-squares {
    left: 6.5%;
  }

  .header-container-info {
    left: 27%;
    top: 26px;
  }

  .header-container-adress {
    right: 5.5%;
    top: 26px;
  }

  .mainpage__pagination {
    padding-left: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    height: auto;
    border-top: 1px solid rgb(255 255 255 / 20%);
  }

  .swiper-container.swiper-container_mainpage-pagination {
    width: 100%;
    height: 230px;
  }

  .swiper-container.swiper-container_mainpage-pagination .swiper-wrapper {
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: row;
  }

  .swiper-container.swiper-container_mainpage-pagination .swiper-slide {
    height: 100% !important;
    width: calc(100% / 3);
  }

  .title-2 {
  }

  .grid {
    width: 87%;
  }

  .mainpage__text {
    /* padding-bottom: 48%; */
    padding-bottom: 45%;
  }

  .swiper-container.swiper-container_mainpage-pagination .swiper-slide:nth-child(3) .mainpage-pagination-container {
    border-right: 0;
  }

  .mainpage-pagination-container {
    border-left: 0;
  }

  .header-burger span {
    width: 26px;
    margin-bottom: 6px;
  }

  .prodinfo-textblock {
    /* width: 54%;  убрал что бы на https://09.f12dev.ru/products/windows/ было нормально */
    width: 100%;
  }
  .container_bob .prodinfo-textblock {
    /* что бы тут было нормально https://09.f12dev.ru/sector/builders-and-owner-builders/ */
    width: 42%;
  }

  .prodinfo-light-pinsblock {
    right: 20%;
    bottom: 0;
  }

  .menu-imglink.menu-imglink_ourproducts {
    height: 144px;
  }

  h3,
  .h3 {
    font-size: 28px;
  }

  .menu-imglink__info {
    left: 24px;
  }

  .menu-imglink.menu-imglink_ourproducts .menu-imglink__arrow {
    width: 14px;
    height: 14px;
    top: 24px;
    left: 24px;
  }

  .ourproducts-bg {
    width: 316px;
    height: 155px;
    top: 0;
  }

  .container.container_articleblock {
    min-height: 322px;
    padding: 36px 0;
  }

  .article-block {
    width: 60%;
  }

  .logos-list__item {
    width: 56px;
    height: 56px;
  }

  .logos-list__item img {
    width: 48px;
    height: 48px;
  }

  .logos-list {
    column-gap: 8px;
  }

  .article-long-title {
    margin-top: 18px;
    margin-bottom: 28px;
  }

  .logos-block {
    bottom: 38px;
    right: 6.5%;
  }

  .container.container_projgallery {
    padding: 42px 0;
  }

  .projgallery-line {
    margin-bottom: 50px;
  }

  .text-line-bg {
    height: 40px;
  }

  .slider-project__visual {
    height: 148px;
  }

  .swiper-container.swiper-container_projgallery {
    padding-top: 167px;
    margin-top: -182px;
  }

  .swiper-container.swiper-container_projgallery .swiper-slide.swiper-slide-next {
    transform: translateY(-58px);
  }

  .projgallery__title {
    margin-bottom: 28px;
  }

  .swiper-navigation.swiper-navigation_top {
    top: 108px;
  }

  .map__showroom {
    width: 61%;
  }

  .showroom {
    padding: 52px 0 38px;
  }

  .showroom__title {
    margin-bottom: 14px;
  }

  .showroom__text {
    margin-bottom: 48px;
  }

  .showroom__adress {
    margin-bottom: 12px;
  }

  .container.container_map {
    height: 398px;
  }

  .container.container_contacts {
    padding: 42px 0;
  }

  .contacts__info h2 {
    margin-bottom: 18px;
  }

  .contacts-download {
    bottom: -12px;
  }

  .contacts-form__fields {
    margin-bottom: 52px;
  }

  .footer {
    padding: 24px 0;
  }

  .footer__by img {
    width: 52px;
  }

  .footer__by span {
    font-size: 9px;
    bottom: -2px;
    margin-right: 4px;
  }

  .title-3 {
    font-size: 10px;
  }

  .footer .grid {
    align-items: center;
  }

  .footer__links {
    margin-right: 3%;
  }

  .footer__copy {
    margin-right: 2%;
  }

  .footer__copy span {
    font-size: 10px;
  }

  .footer__links a {
    margin-right: 6px;
  }

  .contacts__bg {
    width: 292px;
    height: 138px;
  }

  .light-pin__text .caption {
    font-size: 10px;
  }
  .contact-us-popup {
    width: 466px;
    padding: 59px 84px 0 52px;
  }
  /* .prodinfo-textblock {
    width: 100%;
  } */
  .container.container_productinfo {
    padding-bottom: 135px;
  }
  .absolute-graph-wrap {
    right: 23%;
    top: 235px;
    width: 356px;
    height: 252px;
  }
  .absolute-graph-wrap.doors {
    position: relative;
    left: 21%;
    top: 14px;
    width: 382px;
    height: 253px;
  }
  /* .bg__architects > img {
    https://09.f12dev.ru/sector/home-owners-and-renovators/ - плохо
    right: -45px;
    position: absolute;
    object-fit: unset;
  } */
  .bg__architects {
    background-color: #f8f8fa;
  }
  .absolute-pins-block.absolute-pins-block_1 {
    right: -3.7%;
    top: 0px;
    width: 326px;
    height: 202px;
  }
  .products-windows .absolute-graph-wrap {
    position: relative;
    right: -20%;
    top: 50px;
    width: 404px;
    height: 336px;
  }
  .products-windows .absolute-pins-block.absolute-pins-block_3-1 {
    top: 0px;
    right: 285px;
  }
  .products-windows .absolute-pins-block.absolute-pins-block_3-2 {
    top: 185px;
    right: 280px;
  }
  .products-windows .absolute-pins-block.absolute-pins-block_3-3 {
    top: 40px;
    left: 270px;
  }
  .products-windows .absolute-pins-block.absolute-pins-block_3-4 {
    bottom: 57px;
    left: 245px;
  }
  .SCCUL {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .SCCUL__flex {
    justify-content: flex-start;
    flex-direction: column;
  }
  .SCCUL__flex_block {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 24px;
  }
  .SCCUL__flex_block:last-child {
    margin-bottom: 0px;
  }
  .SCCUL__flex_block h5 {
    min-height: auto;
    margin-bottom: 10px;
  }
  .SCCUL__flex_img {
    width: 76px;
    height: 76px;
    padding: 16px;
    margin-bottom: 0px;
    flex-shrink: 0;
    margin-right: 20px;
    padding: 23px;
    box-shadow: 0px 0px 20px #f0ff49;
  }
  .SCCUL__flex_text {
    width: calc(100% - 76px);
  }
  .container_FAQ {
    background-position: top 200px left 0px;
    background-size: 245px 118px;
    padding: 52px 0 47px;
  }
  .FAQ__flex_right {
    width: 65.5%;
  }
  .container_our-process {
    background-position: top 122px left 0px;
    background-size: 343px 165px;
  }
  .our-process {
    padding-top: 41px;
    padding-bottom: 80px;
  }
  .our-process__left {
    margin-top: 212px;
    width: 320px;
  }
  .our-process__block {
    padding: 16px 20px;
    flex-direction: column-reverse;
    min-height: 208px;
  }
  .our-process__block_left {
    width: 100%;
  }
  .our-process__block_number {
    font-size: 22px;
    width: 58px;
    height: 58px;
    align-self: flex-end;
  }
  .specs-popup {
    width: 455px;
    background-size: 433px 207px;
    padding: 80px 80px 0 70px;
  }
  .ribbon.ribbon_yellow > img {
    transform: rotate(90deg);
    bottom: -180px;
  }
  .ribbon.ribbon_gray > img {
    /* transform: rotate(90deg); */
    transform: scale(-1, 1);
    bottom: 250px;
    right: -60px;
  }
  .article-pic.article-pic_1 {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    width: 340px;
  }
  .article-pic.article-pic_2 {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    width: 360px;
    height: 405px;
  }
  .container_grayer {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    background-color: #2e3b4a;
  }
  .container_grayer .video-container {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    top: auto;
    height: 435px;
  }
  .article-pic.article-pic_3 {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    top: 160px;
    right: 1%;
    width: 400px;
    height: 262px;
  }
  .article-pic.article-pic_4 {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    height: 271px;
    position: relative;
    bottom: -36px;
  }
  .ncaa {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    width: 100%;
  }
  .bhas > img {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    position: relative;
    left: -210px;
    max-width: none;
    width: auto;
  }
  .article-pic.article-pic_5 {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    left: 15px;
    width: 328px;
  }
  .article-text-words {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    left: 7%;
  }
  .article-pic.article-pic_5 {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    left: 55px;
  }
  .article-colpics {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    gap: 8px;
    top: 46px;
    right: 6%;
  }
  .article-colpics__item {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    width: 148px;
  }
  .slider-project-tag {
    top: 15px;
    left: 15px;
    border-radius: 33px;
    padding: 4px 15px;
  }
  .prodinfo-text {
    /* 96 */
    right: calc(50% - 55px);
  }
  .container_tbt {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/
  THERMAL BREAK TECHNOLOGY */
    background: url(../img/thermal-bg768.jpg) no-repeat bottom left/cover;
  }
  .container_wes {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/
    WARM EDGE SPACERS*/
    background: url(../img/warm-bg768.jpg) no-repeat bottom right/cover;
  }
  .absolute-pins-pic__img {
    /* https://09.f12dev.ru/sector/home-owners-and-renovators/ */
    width: 72px;
    height: 72px;
    border: 2px solid #fff;
  }
  .container_bob .prodinfo-bg {
    /* https://09.f12dev.ru/sector/home-owners-and-renovators/ */
    left: -380px;
  }
  .container_bob .prodinfo-bg.bg__architects2 {
    /* https://09.f12dev.ru/sector/architects/ */
    left: -135px;
  }
  .absolute-pins-block.absolute-pins-block_1.absolute-pins-block_1-pos2 {
    /* https://09.f12dev.ru/sector/home-owners-and-renovators/ */
    right: 24%;
    top: 58%;
  }
}

@media only screen and (max-width: 767px) {
    
    body,
html {
  min-height: 100%;
  height: 100%;
}


.home{
    height: 100%;
    	min-height: 100%;
}
.home .cd-main-content{
    	height: 100%;
}

.home .container.container_mainpage{
    height: 100%;
}

    
  .swiper-container.swiper-container_mainpage-pagination .swiper-wrapper {
    display: block;
  }

  .swiper-container.swiper-container_mainpage-pagination .swiper-slide {
    height: 72px !important;
    width: 100%;
  }

  .mainpage-pagination-img {
    display: none;
  }

  .mainpage-pagination-button {
    display: none;
  }

  .mainpage-pagination-title {
    text-align: left;
  }

  .mainpage-pagination-container {
    position: relative;
    text-align: left;
    align-items: flex-start;
    padding: 0 14px;
  }

  .swiper-slide.swiper-slide-thumb-active .mainpage-pagination-container .mainpage-pagination-title {
    transform: translateY(0);
  }

  .title-big {
    font-size: 54px;
  }

  .mainpage {
    display: block;
    padding-top: 79px;
    width: 92%;
  }

  .header-container-squares {
    left: 3.5%;
    top: 14px;
    z-index: 8;
  }

  .header-burger,
  .header-logo {
    width: 70px;
    height: 62px;
    margin-right: 8px;
  }

  .header-container-info {
    display: none;
  }

  .header-container-adress {
    right: 9%;
    top: 14px;
  }

  .menu {
    /* z-index: 7777; */
    width: 100%;
    padding: 0 14px;
  }

  h3,
  .h3 {
    font-size: 28px;
  }

  .menu-link {
    margin-bottom: 26px;
  }

  .menu-contact-link {
    margin: 0;
    margin-bottom: 18px;
  }

  .menu-container__contacts {
    display: block;
  }

  .menu-contact-link:nth-last-child(1) {
    margin-bottom: 0;
  }

  .menu-imglink {
    height: 176px;
  }

  .menu-imglink.menu-imglink_short {
    height: 114px;
  }

  /*  */

  .breads > a,
  .breads > span {
  }

  h1,
  .h1,
  h2.h1 {
    font-size: 32px;
  }

  .container.container_product {
    min-height: 336px;
  }

  .mainpage-title {
    /* 96 */
    /* min-height: 106px;
    padding-right: 32px; */
  }

  .grid {
    width: 93%;
  }

  .product-text {
    /* 96 */
    /* margin-bottom: 18px; */
  }

  h4,
  .h4 {
    font-size: 18px;
  }

  .container.container_productinfo {
    padding: 36px 0;
    background: #f2f2f2;
  }

  .prodinfo-bg {
    display: none;
  }

  .prodinfo-textblock {
    width: 100%;
  }

  .prodinfo-light-pinsblock {
    position: initial;
    margin-top: 34px;
  }

  .light-pins {
    display: flex;
    flex-direction: row;
    justify-content: normal;
    align-items: normal;
    align-content: normal;
    width: 100%;
    flex-wrap: wrap;
  }

  .light-pin {
    margin-bottom: 0;
    padding-right: 22px;
    flex-direction: row-reverse;
  }

  [data-aos="fade-down"] {
    transform: translate3d(0, -20px, 0);
  }

  .light-pin__ico {
    margin-left: 0;
    margin-right: 8px;
  }

  .light-pin__text {
    text-align: left;
    width: calc(100% - 58px);
  }

  .ourproducts {
    display: block;
  }

  .ourproducts__title {
    width: 100%;
    margin-bottom: 20px;
  }

  .ourproducts__title > * br {
    display: none;
  }

  .container.container_ourproducts {
    padding: 48px 0;
  }

  .ourproducts__links {
    width: 100%;
  }

  .menu-imglink.menu-imglink_ourproducts {
    height: 170px;
    margin-bottom: 10px;
  }

  h3,
  .h3 {
    font-size: 32px;
  }

  .ourproducts-bg {
    width: 362px;
    height: 174px;
    margin-top: 22px;
  }

  .article-block h3 {
    margin-bottom: 16px;
  }

  .menu-imglink-title h3 {
    font-size: 24px;
  }

  .article-block {
    width: 100%;
    padding-right: 0;
  }

  .video-container {
    position: initial;
    height: 220px;
    margin-bottom: -36px;
  }

  .article-block p {
    margin-bottom: 26px;
  }

  .container.container_articleblock .grid {
    margin-bottom: 28px;
  }

  .article-block.article-block_right {
    width: 100%;
    padding-left: 0;
  }

  .logos-block ~ .video-container {
    display: none;
  }

  .logos-block {
    position: initial;
    width: 93%;
    margin: 0 auto;
  }

  .logos-list {
    column-gap: 12px;
  }

  .logos-list__item {
    width: 78px;
    height: 78px;
  }

  .logos-list__item img {
    width: 62px;
    height: 62px;
  }

  .container.container_endless {
    background: #f2f2f2;
  }

  .article-long-title {
    margin: 0;
    margin-bottom: 22px;
  }

  .swiper-navigation.swiper-navigation_top {
    display: none;
  }

  .map__showroom {
    /* width: 118%; */
    /* margin-left: -6%; */
    /* margin-right: -12%; */
    /* padding: 0 6%; */
    width: 100%;
  }

  .showroom:before {
    right: -5%;
  }

  .showroom {
    background-size: 263px 303px;
    background-position: top right;
  }

  .map__bg {
    position: initial;
    height: 324px;
    width: 110%;
    margin-left: -5%;
  }

  .container.container_map {
    height: auto;
  }

  .contacts {
    display: block;
  }

  .contacts__info {
    width: 100%;
    padding-right: 0;
    margin-bottom: 42px;
  }

  .contacts__info h2 {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .input-field {
    font-size: 18px;
  }

  .input-placeholder {
    font-size: 18px;
  }

  .contacts-form__button {
    margin-bottom: 100px;
    display: block;
  }

  .contacts-form__fields {
    margin-bottom: 48px;
  }

  .contacts__form {
    width: 100%;
    margin-bottom: 0;
  }

  button > span,
  .button > span {
    font-size: 14px;
  }

  .contacts-form__button > .button {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .text-3.contacts-form-privacy {
    font-size: 14px;
    width: 100%;
  }

  .contacts__bg {
    display: none;
  }

  .contacts-download {
    bottom: 0;
  }

  .footer {
    position: initial;
    background: var(--colorYellow);
  }

  .container.container_contacts {
    padding: 36px 0;
    padding-bottom: 0;
  }

  .footer .grid {
    align-content: flex-start;
    justify-content: space-between;
  }

  .footer__links {
    margin: 0;
  }

  .footer__copy {
    margin: 0;
  }

  h2,
  .h2 {
    font-size: 32px;
  }

  .swiper-container.swiper-container_projgallery .swiper-slide.swiper-slide-next {
    transform: translateY(0);
  }

  .contacts-download__ico {
    width: 50px;
    height: 50px;
    margin-right: 18px;
  }

  .contacts-download-title {
    font-size: 20px;
  }

  .contacts-download-format {
    font-size: 12px;
  }
  .contact-us-popup {
    width: 375px;
    padding: 38px 15px 27px 14px;
  }
  .products-windows .absolute-graph-wrap {
    position: relative;
    margin-bottom: 100px;

    right: 0px;
    top: 75px;
    width: 320px;
    height: 190px;
  }
  .products-windows .absolute-pins-pic {
    height: 44px;
  }
  .products-windows .absolute-graph-wrap .absolute-pins-pic__img {
    width: 44px;
    height: 44px;
    border: 2px solid #fff;
  }
  .products-windows .absolute-pins-block.absolute-pins-block_3-1 {
    top: 0px;
    right: 205px;
  }
  .products-windows .absolute-pins-block_3-1 .absolute-pins-dot {
    right: -32px;
    top: 38px;
  }
  .products-windows .absolute-pins-block_3-1 .absolute-pins-line {
    top: 32px;
    right: -24px;
    width: 65px;
    transform: rotate(33deg);
  }
  .products-windows .absolute-pins-block.absolute-pins-block_3-2 {
    top: 108px;
    right: 220px;
  }
  .products-windows .absolute-pins-block_3-2 .absolute-pins-dot {
    right: -33px;
    top: -8px;
  }
  .products-windows .absolute-pins-block_3-2 .absolute-pins-line {
    top: 14px;
    right: -21px;
    width: 50px;
    transform: rotate(-21deg);
  }
  .products-windows .absolute-pins-block.absolute-pins-block_3-3 {
    top: 0px;
    left: 210px;
  }
  .products-windows .absolute-pins-block_3-3 .absolute-pins-dot {
    left: -43px;
    top: 53px;
  }
  .products-windows .absolute-pins-block_3-3 .absolute-pins-line {
    top: 45px;
    left: -36px;
    transform: rotate(-215deg);
  }
  .products-windows .absolute-pins-block_3-4 .absolute-pins-dot {
    left: -59px;
    top: -5px;
  }
  .products-windows .absolute-pins-block_3-4 .absolute-pins-line {
    top: 13px;
    left: -48px;
  }
  .absolute-graph-wrap.doors {
    position: relative;
    left: 0%;
    top: 39px;
    width: 345px;
    height: 200px;
    margin-bottom: 90px;
  }
  .absolute-pins-block.absolute-pins-block_4-1 {
    top: 32px;
    right: 220px;
  }
  .absolute-pins-block_4-1 .absolute-pins-dot {
    right: -46px;
    bottom: -10px;
  }
  .absolute-pins-block_4-1 .absolute-pins-line {
    width: 50px;
    right: -34px;
    bottom: 11px;
    transform: rotate(19deg);
  }
  .absolute-pins-block.absolute-pins-block_4-2 {
    bottom: 5px;
    right: -18px;
  }
  .absolute-pins-block_4-2 .absolute-pins-line {
    width: 50px;
    top: 14px;
    left: -34px;
    transform: rotate(200deg);
  }
  .absolute-pins-block_4-2 .absolute-pins-dot {
    left: -48px;
    top: -7px;
  }
  .absolute-pins-block.absolute-pins-block_1 {
    display: none;
  }
  .container.container_productinfo {
    min-height: 100px;
  }
  .products-windows .absolute-graph-wrap .caption.absolute-pins-pic__text {
    font-size: 10px;
    line-height: 13px;
    letter-spacing: 0.06em;
  }
  .products-windows .absolute-pins-block.absolute-pins-block_3-4 {
    bottom: 20px;
    left: 195px;
  }
  .absolute-graph-wrap.doors .caption.absolute-pins-pic__text {
    font-size: 10px;
    line-height: 13px;
    letter-spacing: 0.06em;
  }
  .SCCUL__flex_block {
    margin-bottom: 36px;
  }
  .SCCUL__flex_img {
    margin-right: 28px;
  }
  .container_FAQ {
    background: none;
    padding: 50px 0 40px;
  }
  .FAQ__flex {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
  }
  .FAQ__flex_left > .title-big {
    margin-bottom: 30px;
  }
  .FAQ__flex_right {
    width: 100%;
  }
  .FAQ__answer {
    margin-bottom: 28px;
  }

  .container_our-process {
    background-position: top 41px left 0px;
  }
  .our-process {
    padding-top: 54px;
    padding-bottom: 58px;
    flex-direction: column;
  }
  .our-process__left {
    margin-top: 0px;
    width: 100%;
    margin-bottom: 36px;
  }
  .specs-popup {
    width: 375px;
    background-size: 353px 169px;
    left: 0;
    padding: 95px 42px 0 30px;
  }

  .ribbon.ribbon_yellow > img {
    bottom: -280px;
  }
  .ribbon.ribbon_gray > img {
    bottom: 220px;
    right: -100px;
  }

  .article-title-floating {
    position: static;
    width: 92%;
    margin-left: 4%;
    margin-bottom: 24px;
  }
  .line-with-border {
    margin-top: 16px;
    padding-bottom: 51px;
  }
  .article-title-left {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    position: static;
    width: 100%;
    margin-bottom: 14px;
  }
  .article-pic.article-pic_1 {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    position: static;
    width: 345px;
    height: 283px;
    margin: auto;
  }
  .video-container {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    display: none;
  }
  .article-pic.article-pic_2 {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    width: 347px;
    height: 386px;
    position: static;
    margin: auto;
  }
  .grayer-icos {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    position: relative;
    justify-content: center;
    top: 0;
    left: 0;
  }
  .container_grayer .video-container {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    display: block;
    width: 375px;
    height: auto;
    position: static;
    /* left: -50px; */
    /* height: 340px; */
    /* bottom: 35px; */
    margin: auto;
    display: flex;
  }
  .container_grayer .video-container > img {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    width: 100%;
    height: 100%;
    object-fit: fill;
  }
  .container.container_grayer {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    padding-bottom: 250px;
  }
  .article-pic.article-pic_3 {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    position: static;
    width: 350px;
    height: 230px;
    margin: auto;
  }
  .article-shemes {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/ */
    width: 100%;
    position: static;
  }
  .article-pic.article-pic_4 {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    height: 297px;
    right: 0%;
  }
  .article-pic.article-pic_5 {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    position: relative;
    left: 6%;
    top: 0;
    left: calc(50% - 164px);
  }
  .container_fbhas {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    background: no-repeat bottom/100% url("../img/breaks-bg375.jpg"), #efefef;
  }
  .article-text-words {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    position: static;
    display: flex;
    justify-content: center;
    /* top: 0;
    bottom: 0; */
  }
  .article-colpics {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    position: static;
    justify-content: center;
  }
  .article-colpics__item {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    width: 170px;
  }
  .article-pic.article-pic_6 {
    /* https://09.f12dev.ru/ramarex-edge/noise-control-and-acoustics/ */
    position: static;
    margin: auto;
    width: 100%;
  }
  .mainpage__text {
    /* https://09.f12dev.ru/ */
    padding-top: 60px;
  }
  .slider-project-tag {
    top: 15px;
    left: 22px;
    border-radius: 33px;
    padding: 7px 15px;
  }
  .swiper-container.swiper-container_projgallery {
    width: 165%;
  }
  .prodinfo-text {
    /* 96 */
    bottom: 19px;
  }
  .pic-container {
    display: flex;
    justify-content: center;
  }
  .container_bob .prodinfo-textblock {
    /* что бы тут было нормально https://09.f12dev.ru/sector/builders-and-owner-builders/ */
    width: 100%;
  }
  .container.container_articleblock {
    /* https://09.f12dev.ru/sector/builders-and-owner-builders/ */
    padding: 48px 0 0 0;
  }
  .container.container_endless {
    /* https://09.f12dev.ru/sector/builders-and-owner-builders/ */
    background-color: #f2f2f2;
    padding-bottom: 33px;
  }
  .container_tbt {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/
  THERMAL BREAK TECHNOLOGY */
    background: url(../img/thermal-bg375.jpg) no-repeat bottom center/cover;
  }
  .container_wes {
    /* https://09.f12dev.ru/ramarex-edge/thermal-efficiency/
    WARM EDGE SPACERS*/
    background: url(../img/warm-bg375.jpg) no-repeat bottom center/cover;
  }
  .download-ico_animation {
    grid-template-rows: 50px 50px;
  }
  
  .mainpage-pagination-container .menu-imglink__arrow {
	  display:block;
  }
  .calc-block-pin__txt{
	  width: 157px;
  }
.swiper-container.swiper-container_projgallery {
    width: 100%;
}
.light-pin {
    width: 50%;
}

.light-pin {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 15px;
}
}



@media only screen and (min-width: 2200px) {
div#pe {
    padding: 270px 0;
}
.article-pic.article-pic_10 {
    max-width: 30%;
}


}