*::-webkit-scrollbar {
  width: 8px;
}
textarea::-webkit-scrollbar {
  width: 6px;
}
*::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 6px;
}
*::-webkit-scrollbar-thumb {
  background: #343745;
  border-radius: 6px;
}
*::-webkit-scrollbar-thumb:hover {
  background: #5B709C;
}
*::-webkit-scrollbar-corner {
  background: transparent;
}
html, body {
  margin: 0px;
  padding: 0px;
  font-family: 'Roboto';
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: normal;
  color: #2F2F2F;
  background-color: #F5F5F5;


  --side-padding: 25px;
  --max-width: calc(1600px + calc(var(--side-padding) * 2));

  --header-height: 138px;
  --header-height-scrolled: 70px;
  --secondpage-header-height: 550px;
  --noscroll-padding: 8px;
}
body {

}
body.noscroll {
  overflow: hidden;
  padding-right: var(--noscroll-padding);
}
h1 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 39px;
  line-height: normal;
  text-transform: uppercase;
  color: #252525;
  margin: 0px;
}
h2 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: normal;
  text-transform: uppercase;
  color: #252525;
  margin: 0px;
}
h3 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  text-transform: uppercase;
  color: #252525;
  margin: 0px;
}
h4 {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  text-transform: uppercase;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #252525;
  margin: 0px;
}
h2.center {
  text-align: center;
}
h3.center {
  text-align: center;
}
p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #1D1D1D;
  margin: 0px;
  margin-bottom: 25px;
}
p:last-child {
  margin-bottom: 0px;
}
.liquid_glass {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 0px;
  height: 0px;
}

/* ========================================================================== */

.header_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  top: 0px;
  left: 0px;
  position: fixed;
  z-index: 100;
  transition: 0.5s;
  will-change: auto;
}
.header_wrapper.scrolled {
  /* background-color: rgba(0, 0, 0, 80%); */
  /* backdrop-filter: blur(6px); */
}

.header_wrapper.scrolled > .header .header_top {
  height: 0px;
}
.header_wrapper.scrolled > .header {
  grid-gap: 0px;
  padding: 16px var(--side-padding) 7px var(--side-padding);
  grid-template-rows: 0px 1fr;
  padding: 10px var(--side-padding) 10px var(--side-padding);
}
.header_wrapper .header_bg {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.header_wrapper .header_bg::before {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: var(--secondpage-header-height);
  background-image: var(--header-bg-img);
  background-position: -0px center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 0.25s;
  pointer-events: none;
  will-change: auto;
}
.header_wrapper.scrolled .header_bg::before {
  opacity: 0.8;
}
.header_wrapper .header_bg::after {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0%);
  transition: 0.25s;
  pointer-events: none;
  will-change: auto;
}
.header_wrapper.scrolled .header_bg::after {
  background-color: rgba(0, 0, 0, 70%);
  backdrop-filter: url(#displacementFilter) blur(10px);
}

/* .header_wrapper.index .header_bg::before {
  display: none;
}
.header_wrapper.index .header_bg::after {
  background-color: rgba(0, 0, 0, 80%);
} */
.header_wrapper > .header {
  width: 100%;
  max-width: var(--max-width);
  padding: 35px var(--side-padding) 7px var(--side-padding);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 40px 1fr;
  grid-template-areas:
    'logo header_top'
    'logo header_bottom';
  grid-gap: 16px;
  transition: 0.25s;
}
.header_wrapper > .header .header_top {
  grid-area: header_top;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  height: 40px;
  overflow: hidden;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
  justify-content: space-between;
}
.header_wrapper > .header .header_bottom {
  grid-area: header_bottom;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  grid-template-columns: 1fr auto;
}

.mob_burger_placeholder {
  align-self: center;
  display: none;
  grid-area: burger;
  width: 30px;
  height: 30px;
}
.mob_burger {
  right: 15px;
  top: 11px;
  position: fixed;
  display: none;
  width: 30px;
  height: 30px;
  overflow: hidden;
  cursor: pointer;
  z-index: 150;
}
.mob_burger .burger {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  stroke: #ffffff;
  fill: none;
  transition: 0.25s;
}
.mob_burger .cross {
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -100%);
  height: 100%;
  width: auto;
  stroke: #9D0300;
  fill: none;
  transition: 0.25s;
}
.mob_burger.active .burger {
  top: 100%;
  transform: translate(-50%, 0%);
}
.mob_burger.active .cross {
  top: 50%;
  transform: translate(-50%, -50%);
}

.mobmenu_wrapper {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 101;
  transition: 0.5s;
  /* backdrop-filter: blur(6px); */
  transform: translate(-100%, 0%);
  overflow: hidden;
  box-sizing: border-box;
  padding: 50px 0px 50px 0px;
  will-change: display, transform;
}
.mobmenu_wrapper::before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-image: var(--header-bg-img);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
.mobmenu_wrapper::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 70%);
  backdrop-filter: blur(7px);
  z-index: -1;
}
.mobmenu_wrapper.active {
  transform: translate(-100%, 0%);
}
.mobmenu {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto auto;
  justify-items: center;
  grid-row-gap: 25px;
}
.mobmenu .header_logo {
  grid-area: unset;
  width: auto;
  height: 60px;
  margin-bottom: 25px;
}
.header_menu_mobile {
  align-self: start;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  grid-row-gap: 16px;
}
.header_menu_mobile .item  {
  font-family: 'Montserrat';
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
}
.header_contacts {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
  justify-items: start;
}



.social_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 64px;
  align-items: center;
}
.social_list .item {
  width: auto;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.social_list .item svg {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  stroke: none;
  fill: #ffffff;
  transition: 0.25s;
}
.social_list .item.vk:hover svg {
  fill: #447BBA;
}
.social_list .item.tg:hover svg {
  fill: #27A7E7;
}
.social_list .item.max:hover svg {
  fill: #A15CD8;
}
.social_list .item.whatsapp:hover svg {
  fill: #25D366;
}
.header_search_block {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header_wrapper .header_search_block {
  width: 300px;
}
.header_search_block .search_input {
  width: 100%;
  height: 40px;
  border: 0px;
  border-radius: 10px;
  background-color: rgba(217,217,217, 10%);
  padding: 0px 28px 0px 15px;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #ffffff;
  outline: none;
}
.header_search_block .search_input::placeholder {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #DDDDDD;
}
.header_search_block svg {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0px, -50%);
  width: 18px;
  height: auto;
  stroke: none;
  fill: #ffffff;
  cursor: pointer;
}
.header_mail svg {
  width: 18px;
  height: auto;
  stroke: none;
  fill: #ffffff;
}
.header_mail {
  font-family: 'Montserrat';
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
}
.header_mail svg {
  width: 20px;
  height: auto;
  stroke: none;
  fill: #ffffff;
  margin-right: 8px;
}
.header_phone {
  font-family: 'Montserrat';
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
  font-feature-settings: 'tnum' on, 'lnum' on;
}
.header_phone svg {
  width: 20px;
  height: auto;
  stroke: none;
  fill: #ffffff;
  margin-right: 8px;
}
.header_logo {
  width: 192px;
  height: 80px;
  align-self: end;
  margin-bottom: 6px;
  grid-area: logo;
  text-decoration: none;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
  overflow: hidden;
  position: relative;
}
.header_logo svg {
  display: block;
  width: auto;
  height: 100%;
  stroke: none;
  fill: #ffffff;
  transition: 0.5s;
  transition-timing-function: ease-in-out;
}
.header_wrapper.scrolled .header_logo svg.logo_with_text {
  opacity: 0;
}
.header_wrapper:not(.scrolled) .header_logo svg.logo_simple {
  opacity: 0;
}
.header_wrapper .header_logo svg.logo_simple {
  position: absolute;
  top: 0px;
  left: 0px;
  width: auto;
  height: 100%;
}
.header_wrapper.scrolled .header_logo {
  width: 50px;
  height: 50px;
  margin-bottom: 0px;
}
.header_wrapper.scrolled .header_logo svg {
  height: 50px;
}
.header_wrapper.scrolled .header_logo svg path {
  transition: 0.5s;
  transition-timing-function: ease-in-out;
}
.header_menu {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  justify-content: space-evenly;
}
.header_menu .item {
  font-family: 'Montserrat';
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
}
.header_menu .item.enter svg {
  width: 22px;
  height: auto;
  stroke: none;
  fill: #ffffff;
  margin-right: 8px;
}
.default_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0px 32px;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  text-align: center;
  color: #FFFFFF;
  border-radius: 10px;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
}
.default_btn.red {
  background-color: #9D0300;
}
.default_btn.gray {
  background-color: #DADCDF;
  font-weight: 500;
  color: #000000;
}

/* ========================================================================== */

/* ========================================================================== */

.page_block_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: clip;
}
.page_block_bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: -2;
}
.page_block_bg::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.page_block {
  width: 100%;
  max-width: var(--max-width);
  padding: 100px var(--side-padding);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
}
.page_block.secondpage {
  grid-template-columns: 1fr;
  grid-column-gap: 50px;
}
.page_block.secondpage:not(.catalog_list){
  grid-template-columns: 400px 1fr;
}
.main_slider_wrapper {
  width: 100%;
  height: 100vh;
  max-height: 1400px;
  position: relative;
  z-index: 1;
}
.main_slider_wrapper .main_slider_bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  /* filter: blur(5px); */
}
.main_slider_wrapper .main_slider_bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_slider_wrapper .main_slider_bg::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 70%);
  /* backdrop-filter: blur(3px); */
}

.main_slider_container {
  width: 100%;
  height: 100%;
}
.main_slider_wrapper .owl-stage-outer {
  height: 100%;
}
.main_slider_wrapper .owl-stage-outer .owl-stage {
  height: 100%;
}
.main_slider_wrapper .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.main_slider_wrapper .item {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.main_slider_wrapper .item_content_container {
  width: 100%;
  max-width: var(--max-width);
  padding: var(--header-height) var(--side-padding) 62px var(--side-padding);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
}
.main_slider_wrapper .item_content {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: 'Montserrat';
  font-style: normal;
  line-height: normal;
  color: #FFFFFF;
}
.main_slider_wrapper .item_content .logo {
  width: 250px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.main_slider_wrapper .item_content .logo svg {
  width: 100%;
  height: auto;
  stroke: none;
  fill: #ffffff;
}

.main_slider_wrapper .item_content .logo svg path:nth-child(2){
  animation: 1s logo_gear_anim linear forwards;
  animation-delay: 2s;
  clip-path: polygon(50% 50%, 121% 50%, 121% 50%, 121% 50%, 121% 50%, 121% 50%);
}
.main_slider_wrapper .item_content .logo svg path:nth-child(3){
  animation: 1s logo_gear_anim linear forwards;
  animation-delay: 2s;
  clip-path: polygon(50% 50%, 121% 50%, 121% 50%, 121% 50%, 121% 50%, 121% 50%);
}
@keyframes logo_gear_anim {
  0% { clip-path: polygon(50% 50%, 121% 50%, 121% 50%, 121% 50%, 121% 50%, 121% 50%); }
  25% { clip-path: polygon(50% 50%, 121% 50%, 50% 121%, 50% 121%, 50% 121%, 50% 121%); }
  50% { clip-path: polygon(50% 50%, 121% 50%, 50% 121%, -21% 50%, -21% 50%, -21% 50%); }
  75% { clip-path: polygon(50% 50%, 121% 50%, 50% 121%, -21% 50%, 50% -21%, 50% -21%); }
  100% { clip-path: polygon(50% 50%, 121% 50%, 50% 121%, -21% 50%, 50% -21%, 121% 50%); }
}
.main_slider_wrapper .item_content .logo svg path:nth-child(4){
  fill: rgba(255, 255, 255, 0%);
  animation: 2s logo_T_anim linear forwards;
}
@keyframes logo_T_anim {
  0% {
    fill: rgba(255, 255, 255, 0%);
    stroke-width: 5;
    stroke: #ffffff;
    stroke-dasharray: 0, 740;
  }
  80% {
    fill: rgba(255, 255, 255, 0%);
    stroke-width: 2;
    stroke: #ffffff;
    stroke-dasharray: 740, 740;
  }
  100% {
    fill: rgba(255, 255, 255, 100%);
    stroke: none;
  }
}
.main_slider_wrapper .item_content .logo svg path:nth-child(1){
  opacity: 0;
  animation: 0.25s logo_word_anim linear forwards;
  animation-delay: 1s;
}
.main_slider_wrapper .item_content .logo svg path:nth-child(5){
  opacity: 0;
  animation: 0.25s logo_word_anim linear forwards;
  animation-delay: 1.15s;
}
.main_slider_wrapper .item_content .logo svg path:nth-child(6){
  opacity: 0;
  animation: 0.25s logo_word_anim linear forwards;
  animation-delay: 1.65s;
}
.main_slider_wrapper .item_content .logo svg path:nth-child(7){
  opacity: 0;
  animation: 0.25s logo_word_anim linear forwards;
  animation-delay: 1.4s;
}
.main_slider_wrapper .item_content .logo svg path:nth-child(8){
  opacity: 0;
  animation: 0.25s logo_word_anim linear forwards;
  animation-delay: 1.9s;
}
@keyframes logo_word_anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.main_slider_wrapper .item_content .title {
  font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.main_slider_wrapper .item_content .subtitle {
  font-weight: 700;
  font-size: 29px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.main_slider_wrapper .item_content .text {
  max-width: 570px;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}
.main_slider_container .owl-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 0px);
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 15px;
  transition: 0.25s;
}
.main_slider_container .owl-dots .owl-dot {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: #ffffff;
  cursor: pointer;
  transition: 0.25s;
  border: 0px;
}
.main_slider_container .owl-dots .owl-dot.active {
  width: 72px;
  cursor: default;
  background-color: #9D0300;
}

/* ========================================================================== */

.page_gear_bg_wrapper {
  position: absolute;
  width: auto;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  --gear-size: 50vw;
}
.page_gear_bg_wrapper.top {
  top: 0px;
  --icon-transform-vertical: -50%;
}
.page_gear_bg_wrapper.left {
  left: 0px;
  --icon-transform-horizontal: -50%;
}
.page_gear_bg_wrapper.bottom {
  bottom: 0px;
  --icon-transform-vertical: 0%;
}
.page_gear_bg_wrapper.right {
  right: 0px;
  --icon-transform-horizontal: 0%;
}
.page_gear_bg {
  position: sticky;
  top: var(--header-height-scrolled);
  overflow: hidden;
  width: calc(var(--gear-size) / 1.9);
  height: calc(var(--gear-size) / 1.9);
}
.page_gear_bg svg {
  width: var(--gear-size);
  height: auto;
  stroke: none;
  fill: rgba(135,144,155, 25%);
  transform: translate(var(--icon-transform-horizontal), var(--icon-transform-vertical));
  will-change: auto;
}
.footer_wrapper .page_gear_bg_wrapper {
  height: auto;
}
.page_title_block {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 50px;
}
.page_title_group {
  justify-self: center;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr;
  --logo-width: 60px;
  --logo-color: #252525;
  --title-color: #252525;
  --text-color: #262626;
  position: relative;
}
.page_title_group.white {
  --logo-color: #ffffff;
  --title-color: #ffffff;
  --text-color: #ffffff;
}
.page_title_group.contact_form {
  align-self: center;
  justify-self: start;
  margin-bottom: 100px;
}
.page_title_group .title {
  justify-self: center;
  position: relative;
  padding: 17px calc(var(--logo-width) + 15px) 25px calc(var(--logo-width) + 15px);
  box-sizing: border-box;
}
.page_title_group.contact_form .title {
  width: 100%;
  justify-self: start;
  padding: 17px calc(var(--logo-width) + 15px) 25px 0px;
}
.page_title_group .logo {
  position: absolute;
  top: 0px;
  left: 0px;
  align-self: start;
  display: flex;
  align-items: center;
  justify-self: end;
}
.page_title_group.contact_form .logo {
  left: auto;
  right: 0px;
}
.page_title_group .logo svg {
  width: var(--logo-width);
  height: auto;
  stroke: none;
  fill: var(--logo-color);
}
.page_title_group h2 {
  justify-self: start;
  color: var(--title-color);
}
.page_title_group .text {
  max-width: 850px;
  justify-self: center;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  text-align: center;
  color: var(--logo-color);
}
.page_title_group.contact_form .text {
  max-width: 480px;
  text-align: left;
  justify-self: start;
}
.catalog_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  grid-auto-rows: 1fr;
}
.catalog_grid .card {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  grid-template-rows: auto 1fr;
  background-color: rgb(255 255 255 / 20%);
  backdrop-filter: blur(3px);
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  box-sizing: border-box;
  font-family: 'Montserrat';
  font-style: normal;
  font-feature-settings: 'pnum' on, 'lnum' on;
  grid-template-areas:
  'title img'
  'text img';
  text-decoration: none;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
  overflow: clip;
  perspective-origin: center;
  transform-style: preserve-3d;
  /* transform: rotateX(25deg); */
}
.catalog_grid .card:hover {
  transform: translate(-5px, -5px) scale(1.01) !important;
  box-shadow: 10px 10px 25px #e1e1e1;
}
.catalog_grid .card.noimg {
  grid-template-areas:
  'title title'
  'text text';
}
.catalog_grid .card .title {
  grid-area: title;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #000000;
  padding: 20px;
  box-sizing: border-box;
}
.catalog_grid .card .text {
  grid-area: text;
  align-self: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #2F2F2F;
  padding: 20px;
  box-sizing: border-box;
}
.catalog_grid .card .card_img_wrapper {
  grid-area: img;
  width: 100%;
  height: 100%;
  position: relative;
}
.catalog_grid .card .card_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  /* max-width: calc(100% - 20px); */
  max-height: calc(100% - 20px);
  object-fit: contain;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
  overflow: hidden;
}
.index_catalog_description {
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
  margin-top: 100px;
  grid-column-gap: 50px;
}
.index_catalog_description .column {
  max-width: 400px;
  display: flex;
  flex-direction: column;
}
.index_catalog_description .column:last-child {
  max-width: 245px;
}
.index_catalog_description .column .title {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #000000;
  margin-bottom: 25px;
}
.index_catalog_description .column .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #262626;
  margin-bottom: 15px;
}
.index_catalog_description .column .text:last-child {
  margin-bottom: 0px;
}






/* ========================================================================== */

.page_block_wrapper.factory_numbers {

}
.page_block_wrapper.factory_numbers .page_block_bg::after {
  background-color: rgba(0, 0, 0, 70%);
}
.factory_numbers_grid {
  display: grid;
  grid-template-columns: 8.5fr 1.5fr 3fr 6fr 6fr;
  grid-template-rows: 1fr 0.5fr 0.5fr 1fr;
  grid-gap: 20px;
}
.factory_numbers_grid .card {
  background-color: rgba(255, 255, 255, 15%);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  padding: 20px 15px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
  justify-items: center;
  grid-template-rows: auto auto;
  align-items: stretch;
}
.factory_numbers_grid .card:nth-child(1){
  grid-column: 1/3;
}
.factory_numbers_grid .card:nth-child(3){
  grid-row: span 2;
}
.factory_numbers_grid .card:nth-child(5){
  grid-row: span 2;
}
.factory_numbers_grid .card:nth-child(6){
  grid-column: span 2;
  grid-row: span 2;
}
.factory_numbers_grid .card:nth-child(7){
  grid-column: 4;
  grid-row: span 2;
}
.factory_numbers_grid .card:nth-child(8){
  grid-column: 5 / 6;
  grid-row: 2 / 4;
}
.factory_numbers_grid .card:nth-child(9){
  grid-column: 1;
}
.factory_numbers_grid .card:nth-child(10){
  grid-column: span 2;
}
.factory_numbers_grid .card .number_group.small {
  --number-size: 32px;
  --span-size: 20px;
}
.factory_numbers_grid .card .number_group {
  --number-size: 48px;
  --span-size: 32px;
  display: flex;
  align-items: flex-end;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  text-align: center;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #FFFFFF;
  line-height: normal;
}
.factory_numbers_grid .card .number_group .number {
  font-size: var(--number-size);
}
.factory_numbers_grid .card .number_group .designation {
  font-size: var(--span-size);
  transform: translate(0px, -3px);
  margin-left: 7px;
}
.factory_numbers_grid .card .label {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  color: #DDDDDD;
}

/* ========================================================================== */

.guarantees_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 50px;
  margin-bottom: 100px;
}
.guarantees_grid .column {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
}
.guarantees_grid .column .column_head {
  justify-self: start;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
  grid-column-gap: 50px;
  grid-row-gap: 15px;
  grid-template-areas:
  'counter icon'
  'counter title';
  margin-bottom: 30px;
}
.guarantees_grid .column .column_head .counter {
  grid-area: counter;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantees_grid .column .column_head .counter svg {
  width: auto;
  height: 120px;
  stroke: none;
  fill: #87909B;
}
.guarantees_grid .column .column_head .icon {
  width: auto;
  height: 60px;
  grid-area: icon;
  display: flex;
  align-self: end;
  justify-self: center;
}
.guarantees_grid .column .column_head .icon svg {
  stroke: none;
  fill: ##252525;
  width: auto;
  height: 100%;
}
.guarantees_grid .column .column_head .title {
  grid-area: title;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #252525;
}
.guarantees_grid .column .column_list {
  padding-left: 45px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.guarantees_grid .column .column_list.first {
  padding-bottom: 25px;
}
.guarantees_grid .column .column_list .custom_list {
  height: 100%;
}
.guarantees_grid .column .column_list.benefits {
  min-height: 153px;
}
.custom_list {
  padding-left: 50px;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 5px;
}
.custom_list .li {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #262626;
  position: relative;
}
.custom_list .li::before {
  position: absolute;
  content: '';
  top: 4px;
  left: -24px;
  width: 2px;
  height: calc(100% + 5px);
  background-color: #DADCDF;
  backdrop-filter: sepia(1);
}
.custom_list .li:last-child::before {
  display: none;
}
.custom_list .li .dot {
  position: absolute;
  left: -30px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #323841;
  box-sizing: border-box;
}
.custom_list .li .dot::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #323841;
  transform: translate(-50%, -50%);
}
.benefits_list_title {
  margin-bottom: 25px;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #000000;
  text-transform: uppercase;
  margin-left: 50px;
}

/* ========================================================================== */

.suppliers_get_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 25px;
  grid-column-gap: 50px;
}
.suppliers_get_grid .item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 20px;
  align-items: center;
}
.suppliers_get_grid .item .icon_circle {
  width: 100px;
  height: 100px;
  background-color: #87909B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.suppliers_get_grid .item .icon_circle svg {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  stroke: none;
  fill: #ffffff;
}
.suppliers_get_grid .item .label {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #262626;
}

/* ========================================================================== */

.designoffice_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 50px;
  grid-column-gap: 50px;
}
.designoffice_grid .item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 15px;
  align-items: start;
  grid-template-areas:
  'icon label'
  'icon text';
}
.designoffice_grid .item .icon {
  grid-area: icon;
  width: 80px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.designoffice_grid .item .icon svg {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  stroke: none;
  fill: #ffffff;
}
.designoffice_grid .item .label {
  grid-area: label;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  color: #FFFFFF;
}
.designoffice_grid .item .text {
  grid-area: text;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #DDDDDD;
}
.page_block_wrapper.factory {
  padding: 300px 0px;
}
.designoffice_block_background {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  padding-top: 25px;
  overflow: hidden;
  box-sizing: border-box;
  pointer-events: none;
}
.designoffice_block_background .background_layer {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0px;
  display: flex;
  align-items: flex-end;
  will-change: auto;
}
.designoffice_block_background .background_layer.first {
  top: 0px;
  z-index: -1;
  --svg-fill: #DADCDF;
  transform: scale(-1, 1);
}
.designoffice_block_background .background_layer.first::after {
  position: absolute;
  content: '';
  left: 0px;
  top: calc(100% - 2px);
  width: 100%;
  height: 100px;
  background-color: #DADCDF;
}
.designoffice_block_background .background_layer.second {
  bottom: 25px;
  z-index: 2;
  --svg-fill: #515151;
  transform: scale(-1, 1);
}
.designoffice_block_background .background_layer.second::after {
  position: absolute;
  content: '';
  left: 0px;
  top: calc(100% - 2px);
  width: 100%;
  height: 100px;
  background-color: #515151;
}
.designoffice_block_background .background_layer.third {
  bottom: -1px;
  z-index: 3;
  --svg-fill: #F5F5F5;
}
.designoffice_block_background .background_layer svg {
  width: 100%;
  height: auto;
  stroke: none;
  fill: var(--svg-fill);
}
.designoffice_block_background .background_masked_container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.designoffice_block_background .background_masked {
  position: absolute;
  left: -2px;
  top: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  mask-image: linear-gradient(white, white), url(/images/factory_mask.svg);
  mask-composite: exclude;
  mask-size: 100% auto, 100%;
  mask-repeat: no-repeat;
}
.designoffice_block_background .background_masked::after {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(21,21,21, 80%);
  backdrop-filter: blur(5px);
}
.designoffice_block_background .background_masked .move_container {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.designoffice_block_background .background_masked .move_container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.designoffice_block_background .background_masked .move_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================================================== */

.advantages_table {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 15px;
  margin-bottom: 100px;
}
.advantages_table.nomargin {
  margin-bottom: 0px;
}
.advantages_table .table_head {
  display: grid;
  grid-template-columns: 0.6fr 1fr 1fr;
  grid-column-gap: 10px;
  align-items: center;
}
.advantages_table .table_head .head_cell {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #252525;
}
.advantages_table .table_head .head_cell svg {
  width: auto;
  height: 36px;
  stroke: none;
  fill: #252525;
}
.advantages_table .table_body {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
}
.advantages_table .table_body .row {
  display: grid;
  grid-template-columns: 0.6fr 1fr 1fr;
  grid-column-gap: 10px;
}
.advantages_table .table_body .row .cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 35px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  color: #000000;
  border-radius: 25px;
}
.advantages_table .table_body .row .cell.gray {
  color: #262626;
  text-transform: uppercase;
  background-color: #E0E0E0;
  justify-content: flex-start;
  text-align: left;
}
.advantages_table .table_body .row .cell.green {
  background-color: #D0DFD4;
}
.advantages_table .table_body .row .cell.red {
  background-color: #EBD9D9;
}

/* ========================================================================== */

.trust_block {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-gap: 30px;
  max-width: 100%;
  overflow: auto;
}
.trust_block::-webkit-scrollbar {
  display: none;
}
.trust_block .item {
  min-width: 150px;
  width: 100%;
  height: 100%;
  max-height: 90px;
  background-color: #E9E9E9;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  box-sizing: border-box;
}
.trust_block .item img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

/* ========================================================================== */

.contact_form_bg {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 200%;
  background-color: #000000;
  z-index: -1;
  display: flex;
  align-items: flex-end;
}
.contact_form_bg .bg_img {
  position: sticky;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 50%;
  background-image: url(/images/contact_form_bg.jpg);
  background-position: right center;
  background-size: auto 100%;
}
.contact_form_bg::before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 100%), rgba(0, 0, 0, 0%));
  z-index: 1;
}
.contact_form_bg::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 50%;
  height: 100%;
  background-color: rgba(0, 0, 0, 60%);
  backdrop-filter: url(#displacementFilter) blur(10px);
  z-index: 2;
  box-shadow: 5px 0px 20px #1a1a1a;
}
.page_block_wrapper.contact_form .page_block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 200px var(--side-padding);
}
.contact_form_container {
  padding-right: 25px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
}
.contact_us_form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 20px;
}
.form_input_block {
  position: relative;
}
.form_input_block .form_input {
  width: 100%;
  height: 32px;
  background-color: rgba(0, 0, 0, 0);
  border: 0px;
  border-bottom: 1px solid #656565;
  border-radius: 0px;
  padding: 0px;
  padding-bottom: 6px;
  box-sizing: border-box;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: #ffffff;
}
.form_input_block .form_input:focus {
  outline: none;
}
.form_input_block textarea.form_input {
  height: 130px;
  resize: none;
}
.form_input_block .form_input.error {
  border-bottom: 1px solid #ff0000;
}
.form_input_block > .label {
  position: absolute;
  left: 0px;
  top: 0px;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: #ffffff;
  pointer-events: none;
  transition: 0.25s;
  white-space: nowrap;
}
.form_input_block .form_input:focus ~ .label {
  transform: translate(0px, -100%);
}
.form_input_block .form_input:not(:placeholder-shown) ~ .label {
  transform: translate(0px, -100%);
}
.form_input_block > .label .red_star {
  color: #FF1616;
}
.form_input_block.three_cl {
  grid-column: 1 / 4;
}

.contact_us_form_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  column-gap: 50px;
}
.politics_block {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 14px;
  align-items: center;
}
.custom_checkbox {
  justify-self: start;
  display: flex;
  align-items: center;
  column-gap: 8px;
  cursor: pointer;
}
.custom_checkbox .label {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #2F2F2F;
  letter-spacing: -0.025em;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.custom_checkbox input {
  display: none;
}
.custom_checkbox .checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid #9E9E9E;
  border-radius: 4px;
  position: relative;
  box-sizing: border-box;
}
.custom_checkbox .checkbox svg {
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 20px;
  height: auto;
  stroke: none;
  fill: #9D0300;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.custom_checkbox input:checked + .checkbox svg {
  opacity: 1;
}
.politics_block.error .label {
  color: #9D0300;
}
.politics_block.error .custom_checkbox .checkbox {
  border: 1px solid #9D0300;
}
.politics_block .label {
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
  color: #ffffff;
  margin: 0px;
}
.politics_block .label a {
  color: #ffffff;
  text-decoration: underline;
}
.politics_block .label a:hover {
  text-decoration: none;
}
.contact_us_form_footer .default_btn {
  width: 300px;
}

/* ========================================================================== */


.index_news_block_btn_wrapper {
  display: flex;
  justify-content: center;
}
.news_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.news_grid.secondpage {

}
.news_grid.index {
  margin-bottom: 50px;
}
.news_grid.index .news_item.with_img {
  grid-row: 1/3;
  grid-column: 3/4;
}
.news_item {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  box-sizing: border-box;
  background-color: #E9E9E9;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid #E0E0E0;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.news_item:hover {
  transform: translate(-5px, -5px) scale(1.01);
  box-shadow: 10px 10px 25px #e1e1e1;
}
.news_item.noimg {
  grid-template-rows: 1fr auto;
  padding: 25px;
}
.news_item .news_img {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px 16px 0px 0px;
  aspect-ratio: 2/1;
}
.news_item .title {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #000000;
  padding: 15px 25px 25px 25px;
  box-sizing: border-box;
}
.news_item.noimg .title {
  margin-bottom: 62px;
  padding: 0px;
}
.news_item .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding: 0px 25px 0px 25px;
  box-sizing: border-box;
}
.news_item.noimg .footer {
  padding: 0px;
  margin: 0px;
}
.news_item .date {
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #1D1D1D;
}
.news_item .link {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #000000;
}
.news_item:hover .link {
  text-decoration: underline;
}

/* ========================================================================== */

.footer_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.footer_wrapper .footer_bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  background-image: url(/images/main_slider/main_slider_bg1.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer_wrapper .footer_bg::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 70%);
}
.footer_wrapper .footer {
  width: 100%;
  max-width: var(--max-width);
  padding: 65px var(--side-padding) 100px var(--side-padding);
  box-sizing: border-box;
}
.footer .footer_column {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
}
.footer .footer_column:not(.info){
  padding-top: 30px;
}
.footer_wrapper .footer .logo {
  margin-bottom: 10px;
}
.footer_wrapper .footer .logo svg {
  width: auto;
  height: 80px;
  fill: #ffffff;
  stroke: none;
}
.footer .footer_column.info {
  grid-row-gap: 15px;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #FFFFFF;
}
.footer_wrapper .footer .footer_company {

}
.footer_wrapper .footer .footer_slogan {

}
.footer_wrapper .footer .coopyright {
  margin-bottom: 38px;
}
.footer_wrapper .footer .site_developer {
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #FFFFFF;
}
.footer_wrapper .footer .site_developer a {
  text-decoration: none;
  color: #FFFFFF;
}
.footer_wrapper .footer .site_developer a:hover {
  text-decoration: underline;
}
.footer_wrapper .footer_grid {
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
  align-items: start;
  grid-column-gap: 12px;
}
.footer_wrapper .footer .footer_title {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 50px;
}
.footer_wrapper .footer .footer_menu {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 15px;
  justify-items: start;
}
.footer_wrapper .footer .footer_menu .item {
  max-width: 350px;
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #FFFFFF;
  text-decoration: none;
  transition: 0.2s;
  transition-timing-function: ease-in-out;
}
.footer_wrapper .footer .footer_menu .item:hover {
  transform: translate(5px, 0px);
}
.footer_wrapper .footer .footer_contacts_list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 15px;
  margin-bottom: 40px;
}
.footer_wrapper .footer .footer_contacts_list .item {
  max-width: 350px;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  text-decoration: none;
}
.footer_wrapper .footer .footer_contacts_list .item svg {
  width: 20px;
  min-width: 20px;
  height: auto;
  fill: #ffffff;
  margin-right: 10px;
}
.footer_wrapper .footer .social_list {
  grid-gap: 25px;
}

/* ========================================================================== */

.secondpage_header {
  width: 100%;
  height: var(--secondpage-header-height);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
  box-sizing: border-box;
}
.secondpage_header_bg {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
.secondpage_header_bg::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 70%);
  backdrop-filter: blur(5px);
  z-index: -1;
}
.secondpage_header_cont {
  width: 100%;
  max-width: var(--max-width);
  padding: 0px var(--side-padding);
  box-sizing: border-box;
  align-self: center;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 20px;
  justify-items: center;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 29px;
  line-height: normal;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
}
.secondpage_header_cont .title {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
}
.secondpage_header_cont .short_description {
  max-width: 900px;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}
.secondpage_cont_head {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
  margin-bottom: 50px;
}
.secondpage_cont_head .secondpage_bread_list {
  justify-self: start;
  display: flex;
  flex-wrap: wrap;
  column-gap: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  color: #000000;
  white-space: nowrap;
}
.secondpage_cont_head .secondpage_bread_list a {
  color: #000000;
  text-decoration: none;
}
.secondpage_cont_head .secondpage_bread_list a:hover {
  text-decoration: underline;
}
.secondpage_cont_head .secondpage_bread_list > div {
  color: #707070;
  cursor: default;
}
.secondpage_cont_head .secondpage_bread_list > span {

}
.secondpage_cont_head h1 {

}

/* ========================================================================== */

.page_sidebar_wrapper {
  width: 100%;
  height: 100%;
}
.page_block_sidebar {
  align-self: start;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 50px;
  overflow: hidden;
}
.page_block_sidebar.sticky {
  position: sticky;
  top: calc(var(--header-height-scrolled) + 25px);
  max-height: calc(100vh - var(--header-height-scrolled) - 50px);
}
.sidebar_block {
  max-width: 100%;
  overflow: hidden;
  --sidebar-padding: 25px;
  background-color: rgb(255 255 255 / 20%);
  backdrop-filter: blur(3px);
  border: 1px solid #E0E0E0;
  border-radius: 25px;
  padding: var(--sidebar-padding);
  box-sizing: border-box;
}
.sidebar_title {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  text-transform: uppercase;
  color: #000000;
}
.sidebar_title.right {
  text-align: right;
}

.sidebar_consultation {

}
.sidebar_consultation .content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
  z-index: 1;
}
.sidebar_consultation .sidebar_title {
  margin-bottom: 50px;
}
.sidebar_consultation .consultation_text {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #2F2F2F;
}
.sidebar_consultation .consultation_text.first {
  margin-bottom: 15px;
}
.sidebar_consultation .consultation_text.bold {
  font-weight: 600;
}
.sidebar_consultation .consultation_img {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: auto;
  height: 100%;
  z-index: -1;
}

.sidebar_vacancy {

}
.sidebar_vacancy .content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 250px;
  margin-bottom: 10px;
}
.sidebar_vacancy .sidebar_title {
  margin-bottom: 25px;
}
.sidebar_vacancy .vacancy_text {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #2F2F2F;
  text-align: right;
}
.sidebar_vacancy .vacancy_text.first {
  margin-bottom: 15px;
}
.sidebar_vacancy .vacancy_text.bold {
  font-weight: 600;
}
.sidebar_vacancy .vacancy_img {
  position: absolute;
  left: calc(0px - var(--sidebar-padding));
  bottom: 0px;
  width: auto;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: left bottom;
}
.sidebar_reviews_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.reviews_slider_wrapper  {
  margin-bottom: 25px;
}
.sidebar_reviews_dots {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 10px;
}
.sidebar_reviews_dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #CFCFCF;
  cursor: pointer;
  transition: 0.25s;
  border: 0px;
}
.sidebar_reviews_dots .owl-dot.active {
  width: 30px;
  cursor: default;
  background-color: #9D0300;
}
.reviews_slider_wrapper .reviews_slide_item {
  padding: 0px;
  background-color: rgba(0, 0, 0, 0);
  border: 0px;
  border-radius: 0px;
}
.reviews_slider_wrapper .reviews_slide_item .date {
  font-size: 14px;
}
.reviews_slider_wrapper .reviews_slide_item .user_name {
  font-size: 18px;
  color: #2F2F2F;
}
.reviews_slider_wrapper .reviews_slide_item .reviews_slide_item .date {
  color: #828282;
  font-size: 14px;
}
.reviews_slider_wrapper .reviews_slide_item .review_text {
  font-size: 16px;
  line-height: 150%;
  color: #000000;
  margin-top: 15px;
}
.noreviews_text {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #2F2F2F;
  margin-bottom: 25px;
}




/* ========================================================================== */

.sidebar_block .sidebar_search {
  margin-bottom: 50px;
}
.sidebar_block .search_block_wrapper {
  padding-top: 25px;
  box-sizing: border-box;
}
.search_block {
  position: relative;
}
.search_block .search_btn {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(0px, -50%);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.search_block svg {
  width: 22px;
  height: auto;
  stroke: none;
  fill: #9D0300;
}
.search_block .search_input {
  width: 100%;
  height: 30px;
  background-color: rgba(0, 0, 0, 0);
  border: 0px;
  border-bottom: 1px solid #656565;
  border-radius: 0px;
  padding: 0px;
  padding-bottom: 6px;
  box-sizing: border-box;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: normal;
  color: var(--text-accent);
}
.search_block .search_input:focus {
  outline: none;
}
.search_block .label {
  position: absolute;
  left: 0px;
  top: 0px;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: normal;
  color: var(--text-color);
  pointer-events: none;
  transition: 0.25s;
}
.search_block .search_input:focus ~ .label {
  transform: translate(0px, -100%);
}
.search_block .search_input:not(:placeholder-shown) ~ .label {
  transform: translate(0px, -100%);
}

/* ========================================================================== */

.secondpage_content {

}
.catalog_page_content {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 50px;
  grid-template-areas: 'catalog_img catalog_cont';
  align-items: start;
  margin-bottom: 25px;
}
.catalog_page_content.noimg {
  grid-template-columns: 1fr;
  grid-template-areas: 'catalog_cont';
}
.catalog_page_content .catalog_cont {
  grid-area: catalog_cont;
}
.catalog_page_content .catalog_page_img_wrapper {
  grid-area: catalog_img;
}
.catalog_page_content .catalog_page_img_wrapper .catalog_page_img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  /* border-radius: 15px; */
  /* background-color: #ffffff; */
  /* border: 1px solid #E0E0E0; */
  /* overflow: hidden; */
}
.page_catalog_container {

}
.catalog_container:not(.table) .inner_catalog_table {
  display: none;
}
.catalog_container:not(.grid) .inner_catalog_grid {
  display: none;
}

.page_catalog_list_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  column-gap: 25px;
}
.catalog_vid_block {
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 10px;
  align-items: center;
}
.catalog_vid_block .label {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #707070;
}
.catalog_vid_block .vid_btn {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.catalog_vid_block .vid_btn svg {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  stroke: none;
  fill: #707070;
}
.catalog_vid_block .vid_btn.active svg {
  fill: #000000;
}
.inner_catalog_table {
  display: grid;
  grid-template-columns: 1fr;
  --columns-auto-size: auto;
  position: relative;
}
.inner_catalog_table.preparation {

}
.inner_catalog_table.preparation::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  border-radius: 10px;
  z-index: 100;
}
.inner_catalog_table.preparation::after {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(100deg, #e7e7e7 40%, #ffffff 50%, #e7e7e7 60%);
  z-index: 101;
  animation: loading 1.5s ease-in-out infinite;
  background-size: 400%;
  border-radius: 10px;
}
@keyframes loading {
  0% {background-position: 100% 50%;}
  100% {background-position: 0 50%;}
}

.inner_catalog_table .table_head {
  display: grid;
  /* grid-template-columns: 1fr 2.3fr minmax(139px, 1.5fr) minmax(98px, 1fr) minmax(97px, 1fr) minmax(53px, 1fr) minmax(80px, 1fr) 110px; */
  grid-template-columns: var(--columns-auto-size);
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 5px;
  align-items: end;
  justify-items: start;
  padding: 10px 20px;
  box-sizing: border-box;
  background-color: rgb(255 255 255 / 50%);
  position: sticky;
  top: var(--header-height-scrolled);
  z-index: 10;
  border-radius: 10px 10px;
  margin-bottom: 2px;
  backdrop-filter: blur(3px);
  border: 1px solid #E0E0E0;
  will-change: auto;
}
.inner_catalog_table .table_head .head_cell {
  font-family: 'Futura PT';
  font-weight: 450;
  font-size: 13px;
  line-height: 70%;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #252525;
  transform: rotate(20deg) translate(0%, -10px);
  transform-origin: left bottom;
  writing-mode: sideways-lr;
}
.inner_catalog_table .table_head .head_cell span {
  display: inline-block;
  max-height: 130px;
}
.inner_catalog_table .table_body {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 4px;
}
.product_row {
  --text-color: #252525;
  display: grid;
  grid-template-columns: var(--columns-auto-size);
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  grid-column-gap: 5px;
  align-items: center;
  justify-items: start;
  padding: 10px 20px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: var(--text-color);
  background-color: rgb(255 255 255 / 20%);
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
  text-decoration: none;
  backdrop-filter: blur(3px);
}
.inner_catalog_table .product_row:not(.searching_tov):nth-child(2n){
  background-color: rgb(0 0 0 / 5%);
  --text-color: #252525;
}
.product_row.searching_tov {
  background-color: #ffd15b;
}
.product_row .row_cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.product_row .row_cell:first-child {
  font-weight: 600;
}
.product_row .row_cell .environment_item {
  display: flex;
  align-items: center;
  column-gap: 4px;
}
.product_row .row_cell .environment_item svg {
  width: 11px;
  height: auto;
  stroke: none;
  fill: #252525;
}
.product_row:hover {
  transform: translate(-1px, -1px) scale(1.005);
  box-shadow: 10px 10px 25px #e1e1e1;
}
.product_row .row_cell .details_btn {
  display: flex;
  align-items: center;
  column-gap: 9px;
}
.product_row .row_cell .details_btn svg {
  width: 12px;
  height: auto;
  stroke: none;
  fill: var(--text-color);
}
.product_row .row_cell.buy {
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.product_row .row_cell.buy svg {
  width: 24px;
  height: auto;
  stroke: none;
  fill: #9D0300;
}
.product_row .row_cell.buy:hover {
  /* background-color: #252525; */
}
.product_row .row_cell.buy:hover svg {
  fill: #9D0300;
}
.inner_catalog_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}
.product_card {
  container-type: inline-size;
  container-name: card;
  display: grid;
  grid-template-columns: 1fr;
  /* background-color: #FFFFFF; */
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
  backdrop-filter: blur(3px);
}
.product_card.shadow {
  box-shadow: 10px 10px 25px #e1e1e1;
}
.product_card:hover {
  transform: translate(-5px, -5px) scale(1.01);
  box-shadow: 10px 10px 25px #e1e1e1;
}
.product_card .head {
  /* background-color: #87909B; */
  border-radius: 10px 10px 0px 0px;
  padding: 15px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgb(0 0 0 / 5%);
}
.product_card.searching_tov .head {
  background-color: #ffd15b;
}
.product_card .head .title {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  text-transform: uppercase;
  font-feature-settings: 'pnum' on, 'lnum' on;
  /* color: #FFFFFF; */
  color: #1D1D1D;
}
.product_card .head .environment_list {
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 5px;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
  text-transform: uppercase;
  font-feature-settings: 'pnum' on, 'lnum' on;
  /* color: #FFFFFF; */
  color: #1D1D1D;
}
.product_card .environment_list .item {
  display: flex;
  align-items: center;
  column-gap: 4px;
}
.product_card .environment_list .item svg {
  width: auto;
  height: 16px;
  stroke: none;
  /* fill: #ffffff; */
  fill: #1D1D1D;
  margin-top: -2px;
}
.product_card .environment_list .separator {

}
.product_card .body {
  display: grid;
  grid-template-columns: 1fr;
  padding: 15px 20px 20px 20px;
  box-sizing: border-box;
  grid-column-gap: 20px;
  /* grid-template-areas:
  'characters img'
  'btn img'; */
  grid-template-areas: 'characters' 'footer';
  border-radius: 0px 0px 10px 10px;
  background-color: rgb(255 255 255 / 20%);
}
/* .product_card.noimg .body {
  grid-template-columns: 1fr;
  grid-template-areas: 'characters' 'btn';
} */
.product_card.searching_tov .body {
  /* background-color: #ffd15b; */
}
.product_card .characters_list {
  grid-area: characters;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #707070;
  padding: 15px 0px 30px 0px;
  box-sizing: border-box;
  position: relative;
}
/* .product_card .characters_list::after {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 150px;
  background: linear-gradient(0deg, rgb(255 255 255), rgb(255 255 255 / 0%));
} */
.product_card .characters_list .row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-column-gap: 5px;
}
.product_card .characters_list .label {

}
.product_card .characters_list .line {
  width: 100%;
  height: 15px;
  box-sizing: border-box;
  border-bottom: 1px dashed #707070;
}
.product_card .characters_list .value {
  color: #000000;
}
.product_card .body .card_img {
  grid-area: img;
  height: 100%;
  aspect-ratio: 1 / 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.product_card .body .footer {
  grid-area: footer;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.product_card .body .card_btn {
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  color: #000000;
}
.product_card .body .card_btn svg {
  width: auto;
  height: 12px;
  stroke: none;
  fill: #000000;
}
.product_card .body .buy_btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_card .body .buy_btn svg {
  width: 24px;
  height: auto;
  stroke: none;
  fill: #9D0300;
}

/* ========================================================================== */

.catalog_tov_page {
  display: grid;
  grid-template-columns: 1fr 300px;
  grid-column-gap: 50px;
  grid-template-areas: 'tov_cont tov_img';
  margin-bottom: 50px;
}
.catalog_tov_page .catalog_tov_cont {
  grid-area: tov_cont;
}
.catalog_tov_page .catalog_tov_cont b {
  display: inline-block;
  margin-bottom: 25px;
}
.catalog_tov_page .catalog_tov_img_wrapper {
  grid-area: tov_img;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 15px;
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  box-sizing: border-box;
  overflow: hidden;
}
.catalog_tov_page .catalog_tov_img_wrapper .catalog_tov_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tov_page_characters {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
  'title .'
  'environment environment'
  'characters characters';
}
.tov_page_characters .characters_title_wrapper {
  grid-area: title;
  column-gap: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.tov_page_characters .characters_title_wrapper svg {
  width: auto;
  height: 29px;
  stroke: none;
  fill: #252525;
}
.environment_block {
  grid-area: environment;
  justify-self: start;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  grid-column-gap: 15px;
  margin-bottom: 25px;
}
.environment_block .label {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #707070;
}
.tov_characters_environment {
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 5px;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
  line-height: normal;
  text-transform: uppercase;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #000000;
}
.tov_characters_environment .item {
  display: flex;
  align-items: center;
  column-gap: 4px;
}
.tov_characters_environment .item svg {
  width: auto;
  height: 16px;
  stroke: none;
  fill: var(--icon-color);
  margin-top: -2px;
}
.tov_characters_environment .item.water {
  --icon-color: #364870;
}
.tov_characters_environment .item.couple {
  --icon-color: #364870;
}

.tov_characters_list {
  grid-area: characters;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.6fr;
  grid-column-gap: 25px;
  grid-row-gap: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #707070;
  justify-content: space-between;
  justify-items: start;
}
.tov_characters_list .li {
  --left-indent: 50px;
  width: 100%;
  display: grid;
  grid-template-columns: var(--left-indent) auto minmax(50px, 1fr) auto;
  grid-column-gap: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #262626;
  position: relative;
  box-sizing: border-box;
  white-space: nowrap;
}
.tov_characters_list .li.horizontal_line::before {
  position: absolute;
  content: '';
  top: 4px;
  left: calc(var(--left-indent) / 2);
  width: 2px;
  height: calc(100% + 10px);
  background-color: #DADCDF;
}
.tov_characters_list .li .dot {
  justify-self: center;
  margin-top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #323841;
  box-sizing: border-box;
  position: relative;
}
.tov_characters_list .li .dot::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #323841;
  transform: translate(-50%, -50%);
}
.tov_characters_list .label {

}
.tov_characters_list .line {
  width: 100%;
  height: 15px;
  box-sizing: border-box;
  border-bottom: 1px dashed #707070;
}
.tov_characters_list .value {
  color: #000000;
}

/* ========================================================================== */

.tov_page_gallery {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 25px;
}
.tov_page_gallery .gallery_grid {

}
.gallery_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
}
.gallery_grid .item {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 15px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.gallery_grid .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15px;
}

.contacts_page {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  grid-column-gap: 50px;
}
.contacts_page .contacts_list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 25px;
  justify-items: start;
}
.contacts_page .contacts_block {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 16px;
}
.contacts_page .contacts_block .item {
  display: grid;
  grid-template-columns: 20px auto;
  grid-column-gap: 10px;
  position: relative;
}
.contacts_page .contacts_block .item:not(.title) {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #000000;
}
.contacts_page .contacts_block .item svg {
  width: 20px;
  height: auto;
  stroke: none;
  fill: #252525;
  background-color: #ffffff;
}
.contacts_page .contacts_block .item::before {
  position: absolute;
  content: '';
  top: 8px;
  left: 9px;
  width: 2px;
  height: calc(100% + 16px);
  background-color: #DADCDF;
  z-index: -1;
}
.contacts_page .contacts_block .item:last-child::before {
  display: none;
}
.contacts_page .contacts_block .item .dot {
  justify-self: center;
  margin-top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #323841;
  box-sizing: border-box;
  position: relative;
}
.contacts_page .contacts_block .item .dot::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #323841;
  transform: translate(-50%, -50%);
}
.contacts_social_block {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 15px;
}
.social_list.contacts {
  justify-self: start;
  grid-gap: 25px;
}
.social_list.contacts .item svg {
  fill: #000000;
}
.contacts_page .map {
  border: 1px solid #CFCFCF;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

/* ========================================================================== */

.about_page {

}
.about_page_cont {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #2F2F2F;
  margin-bottom: 50px;
}
.about_page_cont strong {
  font-weight: 700;
}
.page_title_withlogo {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 15px;
  align-items: center;
  margin-bottom: 50px;
}
.page_title_withlogo .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_title_withlogo svg {
  width: auto;
  height: 58px;
  stroke: none;
  fill: #252525;
}
.page_title_withlogo h2 {
  color: #252525;
}

.about_numbers_grid {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-row-gap: 45px;
  justify-content: space-between;
  margin-bottom: 100px;
}
.about_numbers_grid .card {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
  justify-items: center;
  grid-template-rows: auto auto;
  align-items: stretch;
}
.about_numbers_grid .card .number_group {
  --number-size: 40px;
  --span-size: 24px;
  display: flex;
  align-items: flex-end;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  text-align: center;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #2F2F2F;
  line-height: normal;
}
.about_numbers_grid .card .number_group .number {
  font-size: var(--number-size);
}
.about_numbers_grid .card .number_group .designation {
  font-size: var(--span-size);
  transform: translate(0px, -3px);
  margin-left: 7px;
}
.about_numbers_grid .card .label {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  color: #2F2F2F;
}

.about_designoffice {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 50px;
  margin-bottom: 100px;
}
.about_designoffice .designoffice_block {
  display: grid;
  grid-column-gap: 25px;
}
.about_designoffice .designoffice_block.first {
  grid-template-columns: 1fr auto;
  grid-template-areas:
  'title_block block_img'
  'items_list block_img';
}
.about_designoffice .designoffice_block.second {
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
  'block_img title_block'
  'block_img items_list';
}
.about_designoffice .page_title_withlogo {
  grid-area: title_block;
}
.about_designoffice .designoffice_items_list {
  grid-area: items_list;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 25px;
}
.about_designoffice .designoffice_block_img {
  grid-area: block_img;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.about_designoffice .item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 15px;
  align-items: start;
  grid-template-areas:
  'icon label'
  'icon text';
}
.about_designoffice .item .icon {
  grid-area: icon;
  width: 80px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about_designoffice .item .icon svg {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  stroke: none;
  fill: #252525;
}
.about_designoffice .item .label {
  grid-area: label;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  color: #252525;
}
.about_designoffice .item .text {
  grid-area: text;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #828282;
}

/* ========================================================================== */

.reviews_page_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}




.reviews_page_reviews_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
}
.reviews_slide_item {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
  background-color: #E9E9E9;
  border: 1px solid #E0E0E0;
  border-radius: 16px;
  padding: 25px;
  box-sizing: border-box;
  z-index: 1;
  grid-template-areas:
    'user_name right_info'
    'user_name right_info'
    'text text'
    'images images';
  grid-template-rows: auto auto 1fr auto;
}
.reviews_slide_item .user_name {
  grid-area: user_name;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: normal;
  color: #000000;
}
.right_info {
  grid-area: right_info;
  display: grid;
  grid-template-columns: 1fr;
}
.reviews_slide_item .date {
  justify-self: end;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #1D1D1D;
}
.reviews_slide_item .stars_list {
  justify-self: end;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
}
.reviews_slide_item .stars_list .star {
  padding: 2px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews_slide_item .stars_list .star svg {
  width: 100%;
  height: auto;
  fill: #9C9C9C;
}
.reviews_slide_item .stars_list .star.active svg {
  fill: #FFBB00;
}
.reviews_slide_item .review_text {
  grid-area: text;
  font-weight: 300;
  font-size: 16px;
  line-height: normal;
  color: #1D1D1D;
  margin-top: 25px;
}
.text_link {
  display: inline-block;
  font-weight: 300;
  font-size: 16px;
  line-height: normal;
  color: #1D1D1D;
  text-decoration: none;
  margin: 0px 5px;
  text-decoration: none;
}
.text_link:hover {
  text-decoration: underline;
}
.text_link svg {
  width: auto;
  height: 10px;
  stroke-width: 4;
  fill: none;
  stroke: var(--text-accent);
  transition: 0.25s;
  margin-left: 5px;
}
.text_link:hover svg {
  transform: translate(5px, 0px);
}

.reviews_slide_item .review_images {
  grid-area: images;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
}
.reviews_slide_item .review_images:not(:empty){
  margin-top: 25px;
}
.reviews_slide_item .review_images .review_img {
  width: 100%;
  aspect-ratio: 2/1.5;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
}

/* ========================================================================== */

.window_wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.window_placeholder {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 1;
}
.window_cont {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.window_cont.in {
  animation: 0.25s window_cont_in cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
@keyframes window_cont_in {
  0% { opacity: 0; transform: translate( -50%, -25%); }
  100% { opacity: 1; transform: translate( -50%, -50%); }
}
.window_cont.out {
  animation: 0.25s window_cont_out cubic-bezier(0.25, 0.5, 0.5, 0.9) forwards;
}
@keyframes window_cont_out {
  0% { opacity: 1; transform: translate( -50%, -50%); }
  100% { opacity: 0; transform: translate( -50%, -25%); }
}

.close_window {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.close_window svg {
  width: 100%;
  height: auto;
  opacity: 1;
  fill: #87909B;
  stroke: none;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.close_window:hover {
  transform: scale(1.1);
}
.close_window:hover svg {
  fill: #9D0300;
}
.animation_logo {
  width: 15vw;
}
.animation_logo svg {
  width: 100%;
  height: auto;
}
.animation_logo.animate svg path:nth-child(1){
  animation: 0.5s win_logo_gear_anim linear forwards;
  animation-delay: 1.5s;
  clip-path: polygon(50% 50%, 121% 50%, 121% 50%, 121% 50%, 121% 50%, 121% 50%);
}
.animation_logo.animate svg path:nth-child(2){
  animation: 0.5s win_logo_gear_anim linear forwards;
  animation-delay: 1.5s;
  clip-path: polygon(50% 50%, 121% 50%, 121% 50%, 121% 50%, 121% 50%, 121% 50%);
}
@keyframes win_logo_gear_anim {
  0% { clip-path: polygon(50% 50%, 121% 50%, 121% 50%, 121% 50%, 121% 50%, 121% 50%); }
  25% { clip-path: polygon(50% 50%, 121% 50%, 50% 121%, 50% 121%, 50% 121%, 50% 121%); }
  50% { clip-path: polygon(50% 50%, 121% 50%, 50% 121%, -21% 50%, -21% 50%, -21% 50%); }
  75% { clip-path: polygon(50% 50%, 121% 50%, 50% 121%, -21% 50%, 50% -21%, 50% -21%); }
  100% { clip-path: polygon(50% 50%, 121% 50%, 50% 121%, -21% 50%, 50% -21%, 121% 50%); }
}
.animation_logo.animate svg path:nth-child(3){
  fill: rgba(255, 255, 255, 0%);
  animation: 1.5s win_logo_T_anim linear forwards;
}
@keyframes win_logo_T_anim {
  0% {
    fill: rgba(255, 255, 255, 0%);
    stroke-width: 5;
    stroke: #ffffff;
    stroke-dasharray: 0, 740;
  }
  80% {
    fill: rgba(255, 255, 255, 0%);
    stroke-width: 2;
    stroke: #ffffff;
    stroke-dasharray: 740, 740;
  }
  100% {
    fill: rgba(255, 255, 255, 100%);
    stroke: none;
  }
}




/* ========================================================================== */

.add_review_window_stars {
  display: grid;
  grid-template-columns: repeat(5, 42px);
}
.add_review_window_stars .star_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  padding-left: 0px;
  padding-right: 0x;
  cursor: pointer;
}
.add_review_window_stars .star_item input {
  display: none;
}
.add_review_window_stars .star_item svg {
  width: 25px;
  height: auto;
  fill: none;
  stroke: #FEB95C;
  stroke-width: 1;
}
.add_review_window_stars .star_item svg.active {
  fill: #FEB95C;
  stroke: #FEB95C;
  stroke-width: 1;
}


.review_window_wrapper {
  position: relative;
  box-shadow: 6px 1px 29px rgba(0, 0, 0, 0.3);
}
.review_window {
  width: 600px;
  max-height: 95vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 0px;
  box-sizing: border-box;
  border-radius: 25px;
  background-color: rgba(15, 16, 17, 0.8);
  border: 1px solid var(--border-color);
}
.review_window_body {
  width: 100%;
  padding: 25px 50px;
  box-sizing: border-box;
  overflow: auto;
}
.review_window_body h2 {
  margin-bottom: 50px;
}
.review_content_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 35px;
  margin-bottom: 25px;
}
.review_window_footer {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 25px;
}
.review_window_block {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
}
.review_window_block .label {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #87909B;
  letter-spacing: -0.025em;
}

/* ========================================================================== */

.window_loading_wrapper {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1px);
  z-index: 10;
  opacity: 0;
  transition: 0.25s;
  pointer-events: none;
}
.window_cont.loading .window_loading_wrapper {
  opacity: 1;
  pointer-events: auto;
}

.window_content_block {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  max-height: 95vh;
  overflow: auto;
  background-color: #F5F5F5;
  border-radius: 20px;
  box-sizing: border-box;
  box-shadow: 6px 1px 29px rgba(0, 0, 0, 0.3);
}
.window_content_block.quiz_window {
  width: 1000px;
}
.window_content_block .window_head {
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.window_content_block .window_head .window_title {
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.window_content_block .window_head .window_title svg {
  width: auto;
  height: 39px;
  stroke: none;
  fill: #252525;
}
.quiz_footer {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  box-sizing: border-box;
}
.quiz_footer.menu {
  justify-content: center;
}
.quiz_footer.menu .politics_block {
  display: none;
}
.quiz_footer.menu .endquiz {
  display: none;
}
.window_wrapper .politics_block .label {
  color: #252525;
}
.window_wrapper .politics_block .label a {
  color: #252525;
}
.window_wrapper .politics_block.error .label {
  color: #9D0300;
}
.window_wrapper .politics_block.error .label a {
  color: #9D0300;
}
.window_label {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #87909B;
}
.form_annotation {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #87909B;
  letter-spacing: -0.025em;
}
.form_annotation .red_star {
  color: #FF1616;
}

.quiz_menu_list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
.quiz_menu_list .item {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #ffffff;
  position: relative;
  background-color: #87909B;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-column-gap: 10px;
  align-items: center;
}
.quiz_menu_list .item:hover {
  transform: translate(-5px, -5px) scale(1.01);
  box-shadow: 10px 10px 25px #9d9d9d;
}
.quiz_menu_list .item svg {
  width: 15px;
  height: auto;
  stroke: none;
  fill: rgba(255, 255, 255, 80%);
}

.quiz_slides_wrapper {
  position: relative;
  padding: 5px 25px 50px 30px;
  margin: 0px 5px 0px 0px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  max-height: 100%;
  overflow: auto;
}
.quiz_slides_wrapper .quiz_slide {
  display: none;
  /* overflow: hidden; */
  flex-direction: column;
}
.quiz_slides_wrapper .quiz_slide.active {
  display: flex;
}

.quiz_slide_form_container {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 25px;
}
.quiz_cont_title {
  margin-bottom: 25px;
  display: flex;
  transition: 0.5s;
  transition-timing-function: ease-in-out;
}
.quiz_cont_title h3 {

}
.quiz_slide_head {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 20px;
  align-items: center;
}
.prew_slide_btn {
  display: flex;
  align-items: center;
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  text-align: center;
  color: #252525;
  column-gap: 12px;
  cursor: pointer;
  padding-left: 6px;
  letter-spacing: -0.025em;
}
.prew_slide_btn svg {
  width: 14px;
  height: auto;
  stroke: none;
  fill: #252525;
  transform: rotate(-90deg);
  margin-top: -1px;
}
.quiz_form_group {
  padding: 20px;
  border-radius: 10px;
  background-color: #ffffff;
}
.quiz_form {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 16px;
}
.quiz_form.two_columns {
  grid-template-columns: 1fr 1fr;
}
.quiz_form.three_columns {
  grid-template-columns: 1fr 1fr 1fr;
}
.quiz_input_block.two_cl {
  grid-column: span 2;
}
.quiz_form_block.two_cl {
  grid-column: span 2;
}

.quiz_input_block.error .quiz_input {
  border-bottom: 1px solid #ff0000;
}
.quiz_form_block.error .quiz_custom_select .custom_select {
  border: 1px solid #ff0000;
}
.quiz_form_block.error .custom_checkbox .checkbox {
  border: 1px solid #ff0000;
}
.quiz_form_block.error .custom_checkbox .label {
  color: #ff0000;
}
.quiz_form_block.error .custom_radio .radio {
  border: 1px solid #ff0000;
}
.quiz_form_block.error .custom_radio .label {
  color: #ff0000;
}
.quiz_form_block {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 8px;
  align-self: end;
  transition: 0.5s;
  transition-timing-function: ease-in-out;
}
.quiz_form_block > .label {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #87909B;
  letter-spacing: -0.025em;
}
.quiz_form_block > .label .red_star {
  color: #FF1616;
}
.quiz_ch_group {
  justify-self: start;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 15px;
}
.quiz_custom_select {
  position: relative;
  cursor: pointer;
}
.quiz_custom_select .custom_select {
  width: 100%;
  height: 35px;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #87909B;
  border-radius: 8px;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #2F2F2F;
  padding: 0px 28px 0px 12px;
  box-sizing: border-box;
  outline: none;
  appearance: none;
  cursor: pointer;
}
.quiz_custom_select svg {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 6px;
  height: auto;
  stroke: none;
  fill: #9D0300;
  transform: translate(0px, -50%);
  transition: 0.25s;
  pointer-events: none;
}
.quiz_custom_select .custom_select:focus + svg {
  transform: translate(0px, -50%) rotate(90deg);
}
.quiz_input_block {
  align-self: end;
  position: relative;
  padding-top: 30px;
  box-sizing: border-box;
  transition: 0.5s;
  transition-timing-function: ease-in-out;
  display: flex;
  align-items: flex-end;
  column-gap: 5px;
}
.quiz_input_block .quiz_input {
  width: 100%;
  height: 32px;
  background-color: rgba(0, 0, 0, 0);
  border: 0px;
  border-bottom: 1px solid #87909B;
  border-radius: 0px;
  padding: 0px;
  padding-bottom: 6px;
  box-sizing: border-box;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: #2F2F2F;
}
.quiz_input_block .quiz_input:focus {
  outline: none;
}
.quiz_input_block textarea.quiz_input {
  height: 130px;
  resize: vertical;
}
.quiz_input_block .quiz_input.error {
  border-bottom: 1px solid #ff0000;
}
.quiz_input_block > .label {
  position: absolute;
  left: 0px;
  top: 0px;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #87909B;
  pointer-events: none;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
  white-space: nowrap;
  letter-spacing: -0.025em;
  transform: translate(0px, 35px);
}
.quiz_input_block .quiz_input:focus ~ .label {
  transform: translate(0px, 0%);
}
.quiz_input_block .quiz_input:not(:placeholder-shown) ~ .label {
  transform: translate(0px, 0%);
}
.quiz_input_block > .label .red_star {
  color: #FF1616;
}
.quiz_input_block > .input_unit {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #87909B;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.025em;
  transform: translate(0px, 3px);
}
.custom_radio {
  justify-self: start;
  display: flex;
  align-items: center;
  column-gap: 8px;
  cursor: pointer;
}
.custom_radio .label {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #2F2F2F;
  transition: 0.25s;
}
.custom_radio input {
  display: none;
}
.custom_radio .radio {
  width: 20px;
  height: 20px;
  border: 1px solid #9E9E9E;
  border-radius: 50%;
  position: relative;
  box-sizing: border-box;
}
.custom_radio .radio::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #9D0300;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
}
.custom_radio input:checked + .radio {
  border: 1px solid #9D0300;
}
.custom_radio input:checked + .radio::after {
  opacity: 1;
}

/* ========================================================================== */

.window_content_block.quiz_end_window {

}
.quiz_end_wrapper {
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
.quiz_end_wrapper h2 {

}
.complete_window_text {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  text-align: center;
  color: #252525;
}

/* ========================================================================== */

.vopros_list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 25px;
}
.vopros_item {
  height: 100%;
  position: relative;
  overflow: hidden;
  background-color: #E0E0E0;
  border-radius: 15px;
  box-sizing: border-box;
  z-index: 1;
}
.vopros_item .vopros_head {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 25px;
  padding: 25px;
  box-sizing: border-box;
  cursor: pointer;
}
.vopros_item .vopros_icon {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  font-feature-settings: 'tnum' on, 'lnum' on;
  color: #9D0300;
}
.vopros_item .vopsos_text {
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  align-self: center;
  letter-spacing: -0.025em;
}
.vopros_item .vopsos_text p {
  font-family: 'Montserrat';
  margin: 0px;
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  letter-spacing: -0.025em;
}
.vopros_item .otvet_wrapper {
  overflow: hidden;
  height: 0px;
}
.vopros_item .otvet_block {
  padding: 0px 25px 25px 25px;
  box-sizing: border-box;
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  color: var(--text-color);
}
.vopros_item .otvet_block p {
  margin: 0px;
  margin-bottom: 25px;
}
.vopros_item .otvet_block p:last-child {
  margin-bottom: 0px;
}




.window_content_block.vopros_window {
  width: 700px;
}
.vopros_window_body {
  align-self: start;
  position: relative;
  padding: 5px 25px 50px 30px;
  margin: 0px 5px 0px 0px;
  box-sizing: border-box;
  max-height: 100%;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 25px;
}
.window_footer {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  box-sizing: border-box;
}

.review_window_body {
  align-self: start;
  position: relative;
  padding: 5px 25px 50px 30px;
  margin: 0px 5px 0px 0px;
  box-sizing: border-box;
  max-height: 100%;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 25px;
}

/* ========================================================================== */

.search_result_text {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: #252525;
  margin-bottom: 20px;
}
.custom_list .li a {
  text-decoration: underline;
  color: #262626;
}
.custom_list .li a:hover {
  text-decoration: none;
}

/* ========================================================================== */

.catalog_symbols {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-column-gap: 50px;
  margin-top: 50px;
  padding: 50px;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: rgb(255 255 255 / 20%);
  border: 1px solid #E0E0E0;
  backdrop-filter: blur(3px);
}
.catalog_symbols h4 {
  margin-bottom: 25px;
}
.catalog_sumbols_columns {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-column-gap: 25px;
}
.catalog_symbols_list {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 12px;
  grid-row-gap: 8px;
  align-items: start;
}
.catalog_symbols_list .designation {
  font-weight: 600;
}
.catalog_symbols_list .label {
  font-size: 14px;
  margin-top: 2.5px;
}

/* ========================================================================== */

.index_catalog_container {
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 100%;
  grid-row-gap: 50px;
}
.indexcat_slider_wrapper {
  padding: 70px 0px 50px 0px;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: rgb(255 255 255 / 20%);
  border: 1px solid #E0E0E0;
  backdrop-filter: blur(3px);
}
.indexcat_slider_wrapper:nth-child(2n){
  background-color: rgb(0 0 0 / 5%);
}
.index_catalog_head {
  justify-self: center;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-column-gap: 25px;
  align-items: center;
  margin-bottom: 50px;
  padding: 0px 12px;
  box-sizing: border-box;
}
.index_catalog_head h4 {
  text-align: center;
}
.index_catalog_head .slider_arrow {
  display: flex;
  cursor: pointer;
}
.index_catalog_head .slider_arrow svg {
  width: 20px;
  height: auto;
  stroke: none;
  fill: #252525;
}
.index_catalog_head .slider_arrow.prew svg {
  transform: scale(-1, 1);
}
.index_catalog_slider .item {
  width: 250px;
  display: grid;
  grid-template-columns: 1fr;
  text-decoration: none;
  justify-items: center;
  grid-row-gap: 25px;
}
.index_catalog_slider .item .title {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: #000000;
  box-sizing: border-box;
  text-align: center;
}
.index_catalog_slider .item .item_img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transition: 0.25s;
  transition-timing-function: ease;
  user-select: none;
  appearance: none;
}
.index_catalog_slider .item:hover .item_img {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* ========================================================================== */

.index_catalog_info {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 25px;
  justify-items: center;

  padding: 50px;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: rgb(255 255 255 / 20%);
  border: 1px solid #E0E0E0;
  backdrop-filter: blur(3px);
}
.index_catalog_info h4 {
  text-align: center;
}
.index_catalog_info .text {
  max-width: 900px;
  justify-self: center;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #262626;
}
.index_catalog_info .footer {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
}
.index_catalog_info .footer .indexcat_search_block {
  grid-column: 1/3;
}

.indexcat_search_block {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.indexcat_search_block .search_input {
  width: 100%;
  height: 40px;
  border: 1px solid #B7B7B7;
  border-radius: 10px;
  background-color: #FFFFFF;
  padding: 0px 28px 0px 15px;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #000000;
  outline: none;
}
.indexcat_search_block .search_input::placeholder {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #7C7C7C;
}
.indexcat_search_block svg {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0px, -50%);
  width: 18px;
  height: auto;
  stroke: none;
  fill: #9D0300;
  cursor: pointer;
}



.search_result_list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 15px;
}
.search_result_list .item {
  text-decoration: none;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 25px;
  row-gap: 10px;
  grid-template-areas:
  'img title'
  'img subtitle'
  'img link';
  font-weight: 400;
  line-height: 130%;
  justify-items: start;
}
.search_result_list .item .img {
  grid-area: img;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #E0E0E0;
  background-color: #E9E9E9;
  box-sizing: border-box;
  position: relative;
}
.search_result_list .item .img.noimg::after {
  position: absolute;
  content: 'Нет изображения';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  line-height: 12px;
  color: #707070;
  text-align: center;
}
.search_result_list .item .img.cover_bg {
  background-size: cover;
}
.search_result_list .item .img.contain_bg {
  background-size: contain;
}
.search_result_list .item .title {
  font-family: 'Futura PT';
  grid-area: title;
  align-self: end;
  font-size: 22px;
  color: #000000;
  font-weight: 450;
  box-sizing: border-box;
}
.search_result_list .item .category {
  grid-area: subtitle;
  font-size: 14px;
  color: #707070;
}
.search_result_list .item .link_btn {
  grid-area: link;
  align-self: start;
  font-size: 16px;
  color: #000000;
  box-sizing: border-box;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 5px;
}
.search_result_list .item:hover .link_btn {
  text-decoration: none;
}
.search_result_list .item .link_btn svg {
  width: 14px;
  height: auto;
  fill: #000000;
}










/* ========================================================================== */
