
*::-webkit-scrollbar {
  width: 8px;
}
textarea::-webkit-scrollbar {
  width: 6px;
}
*::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 6px;
}
*::-webkit-scrollbar-thumb {
  background: #6f0000;
  border-radius: 6px;
}
*::-webkit-scrollbar-thumb:hover {
  background: #A90218;
}
*::-webkit-scrollbar-corner {
  background: transparent;
}
html, body {
  margin: 0px;
  padding: 0px;
  font-family: 'Futura PT';
  background-color: #0F1011;

  --max-width: 1650px;
  --side-padding: 25px;
  --header-height: 100px;
  --text-accent: #ffffff;
  --text-color: #B7B7B7;
  --accent-color: #A90218;
  --bg-transparent: rgba(16,16,16,0.5);
  --border-color: #323232;
  --glow-color: rgba(169, 2, 24, 0.5);
  --page-blur: blur(3px);
  --noscroll-padding: 8px;
}
body {
  overflow-x: hidden;
  overflow-y: auto;
}
body.noscroll {
  overflow: hidden;
  padding-right: var(--noscroll-padding);
}
body.modal-open {
  overflow: hidden;
  padding-right: var(--noscroll-padding);
}
p {
  color: var(--text-color);
}
img {
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.header_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 100;
  position: fixed;
  top: 0px;
  left: 0px;
  transition: 0.5s;
}
.header_wrapper.scrolled {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
}
.header_wrapper.mobmenu_active {
  filter: var(--page-blur);
}
.header {
  width: 100%;
  max-width: var(--max-width);
  display: grid;
  justify-content: space-between;
  grid-auto-flow: column;
  align-items: center;
  padding: 40px var(--side-padding) 0px var(--side-padding);
  box-sizing: border-box;
  column-gap: clamp(25px, 4vw, 80px);
  grid-template-columns: auto 1fr minmax(135px, auto) minmax(101px, auto) auto;
  grid-template-areas: 'logo menu phone social button';
}
.mob_burger_placeholder {
  display: none;
  grid-area: burger;
  width: 30px;
  height: 30px;
}
.mob_burger {
  right: 5px;
  top: 19px;
  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: #c70021;
  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%;
  background-color: rgba(15,16,17,0.5);
  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;
  backdrop-filter: url(#displacementFilter);
  will-change: display, transform;
}
.mobmenu_wrapper.active {
  transform: translate(0%, 0%);
}
.mobmenu_wrapper .mobmenu_dots {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mobmenu_wrapper .mobmenu_dots svg {
  width: auto;
  height: 110%;
  transform: translate(-36%, 30%) rotate(51deg);
  transform-origin: center;
}
.mobmenu_wrapper .mobmenu_dots img {
  width: auto;
  height: 110%;
  transform: translate(-36%, 30%) rotate(51deg);
  transform-origin: center;
}
.header .header_logo {
  grid-area: logo;
  display: flex;
  text-decoration: none;
}
.header .header_logo svg {
  width: auto;
  height: 60px;
}
.main_menu.desctop {
  grid-area: menu;
  display: grid;
  grid-template-columns: repeat(5, auto);
  align-items: center;
  /* column-gap: clamp(25px, 4vw, 80px); */
  justify-items: center;
  justify-content: space-evenly;
}
.main_menu.mobile {
  display: none;
  justify-items: center;
  grid-row-gap: 25px;
  align-self: start;
}

.mobmenu {
  justify-self: center;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  position: relative;
  z-index: 2;
  grid-template-rows: auto 1fr auto auto;
  grid-row-gap: 50px;
}
.mobmenu::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 40%);
  z-index: -1;
  filter: blur(20px);
  border-radius: 100px;
}
.mobmenu .header_logo {

}
.mobmenu .header_logo svg {
  width: 150px;
  height: auto;
}

.mobmenu .contacts_list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 15px;
  justify-self: center;
}
.mobmenu .contacts_list .fc_item {
  text-decoration: none;
  display: grid;
  grid-template-columns: 20px auto;
  grid-column-gap: 10px;
  align-items: center;
  cursor: pointer;
}
.mobmenu .contacts_list .fc_item .text {
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  color: var(--text-color);
  margin: 0px;
}
.mobmenu .contacts_list .fc_item:hover .text {
  text-decoration: underline;
}
.mobmenu .contacts_list .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobmenu .contacts_list .icon svg {
  width: 100%;
  height: auto;
  stroke: none;
  fill: #ffffff;
}
.mobmenu_social {
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-column-gap: 20px;
}
.mobmenu_social .social_link {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.25s;
}
.mobmenu_social .social_link:hover {
  transform: scale(1.1);
}
.mobmenu_social .social_link svg {
  width: 100%;
  height: auto;
  fill: #ffffff;
}




.main_menu .menu_link {
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  display: flex;
  align-items: center;
  color: var(--text-accent);
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}
.main_menu .menu_link.active::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 100%;
  width: 100%;
  border-bottom: 1px solid var(--accent-color);
}
.header_phone {
  grid-area: phone;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  display: flex;
  align-items: center;
  color: var(--text-accent);
  font-family: 'Montserrat';
  font-feature-settings: 'tnum' on, 'lnum' on;
  text-decoration: none;
}
.header_social {
  grid-area: social;
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-column-gap: 20px;
  justify-items: center;
}
.header_social .social_link {
  width: auto;
  max-width: 22px;
  height: auto;
  max-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.25s;
}
.header_social .social_link:hover {
  transform: scale(1.1);
}
.header_social .social_link svg {
  width: 100%;
  height: auto;
  fill: #ffffff;
}
.header .default_btn {
  grid-area: button;
  padding: 0px 65px;
  white-space: nowrap;
}
.default_btn {
  background-color: var(--accent-color);
  height: 40px;
  border-radius: 20px;
  padding: 0px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-accent);
  font-family: 'Futura PT';
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #FFFFFF;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.default_btn.gray {
  background-color: #1B1B1D;
}
.page_block_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.main_wrapper {
  padding-top: var(--header-height);
  transition: 0.5s;
  position: relative;
}
.main_wrapper.mobmenu_active {
  filter: var(--page-blur);
}
.page_block_wrapper.first {
  height: 100vh;
  max-height: 900px;
  box-sizing: border-box;
}

.page_block_wrapper.first .img_bg_wrapper {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.1;
  overflow: clip;
}
.page_block_wrapper.first .img_bg_wrapper .bg_viewport {
  width: 100%;
  height: 200%;
}
.page_block_wrapper.first .img_bg_wrapper img {
  position: sticky;
  top: var(--header-height);
  width: 100%;
  height: 100vh;
  max-height: 900px;
  object-fit: cover;
}
/* .page_block_wrapper.first::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-image: url(/images/first_block_bg2-2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.1;
  background-attachment: fixed;
} */
.page_block_wrapper .glass_background {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  background-color: var(--bg-transparent);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  z-index: -2;
  box-sizing: border-box;
}


.dots_bg_wrapper {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  padding-left: var(--side-padding);
  padding-right: var(--side-padding);
  box-sizing: border-box;
}
.dots_background {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  overflow: hidden;
  transform: translate(-50%, 0%);
}
.dots_background svg {
  width: 163%;
  transform: translate(-7%, 0%) rotate(3.2deg);
}
.dots_background img {
  width: 163%;
  transform: translate(-7%, 0%) rotate(3.2deg);
  object-fit: contain;
}






.page_block_wrapper.first .dots_background {
  top: 37%;
}
.page_block_wrapper.first .dots_background svg {

}

.page_block {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  justify-content: center;
  padding: 0px var(--side-padding);
  box-sizing: border-box;
}
.page_block_wrapper.first .page_block {
  padding: 0px;
  overflow: hidden;
}
.first_block_content {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  grid-template-areas:
  'logo img'
  'text img';
  position: relative;
}
.first_block_content .logo {
  grid-area: logo;
  justify-self: center;
  align-self: end;
  z-index: 2;
}
.first_block_content .logo svg {
  width: 300px;
  height: auto;
}
.first_block_content .text {
  justify-self: center;
  align-self: start;
  margin-top: 25px;
  grid-area: text;
  font-weight: 300;
  font-size: 24px;
  line-height: normal;
  text-align: center;
  color: var(--text-accent);
  z-index: 2;
}
.first_block_content .img_wrapper {
  grid-area: img;
  width: 100%;
  height: 100%;
  position: relative;
}
.first_block_content .img_wrapper img {
  position: absolute;
  left: 0px;
  top: 50%;
  width: auto;
  height: 100%;
  transform: translate(0px, -50%);
  filter: drop-shadow(10px 10px 10px #000000);
}
.printer_wrapper {
  width: 700px;
  grid-row: 1/4;
  box-sizing: border-box;
  position: relative;
  align-self: center;
}
.engine_wrapper {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 32%;
  z-index: 1;
  overflow: hidden;
  transition: 0.2s;
  pointer-events: none;
}
.engine_wrapper .engine {
  position: absolute;
  left: 0px;
  bottom: 0px;
}
.printer_image {
  --print-transition: 0.2s;
  pointer-events: none;
  position: relative;
  z-index: 2;
}
.printer_wrapper .printer_detal {
  position: absolute;
  left: 0%;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--print-transition);
}
.printer_wrapper .printer_detal.main {
  z-index: 1;
  position: static;
}
.printer_wrapper .printer_detal.guide {
  z-index: 4;
  transform: translate(0%, -27%);
}
.printer_wrapper .printer_detal.guide::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 50%;
  width: 100%;
  height: 50px;
  transform: translate(0px, -50px);
}
.printer_wrapper .printer_detal.guide img {
  width: 100%;
  height: 100%;
}
.printer_wrapper .printer_detal.head {
  z-index: 5;
  transform: translate(10%, -27%);
}
.printer_wrapper .figurine_wrapper {
  position: absolute;
  left: 50%;
  bottom: 21%;
  width: 40%;
  height: 0;
  object-fit: contain;
  transform: translate(-56%, 0);
  z-index: 2;
  overflow: hidden;
  display: flex;
  transition: var(--print-transition);
}
.printer_wrapper .figurine {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
h2 {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: normal;
  color: var(--text-accent);
  margin: 0px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
h2.center {
  text-align: center;
}
h2:last-child {
  margin-bottom: 0px;
}
p {
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  color: var(--text-color);
  margin: 0px;
  margin-bottom: 25px;
}
p:last-child {
  margin-bottom: 0px;
}
p.bold {
  font-weight: 500;
  color: var(--text-accent);
}
h3 {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: normal;
  color: var(--text-accent);
  margin: 0px;
  margin-bottom: 25px;
}
h3:last-child {
  margin-bottom: 0px;
}

ol {
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  color: var(--text-color);
  margin: 0px;
  padding-left: 47px;
  list-style: none;
  margin-bottom: 25px;
  list-style-type: none;
	counter-reset: num;
}
ol li {
  position: relative;
  margin-bottom: 10px;
}
ol li:last-child {
  margin-bottom: 0px;
}

ul {
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  color: var(--text-color);
  margin: 0px;
  padding-left: 47px;
  list-style: none;
  margin-bottom: 25px;
}
ul:last-child {
  margin-bottom: 0px;
}
ul li {
  position: relative;
  margin-bottom: 10px;
}
ol>li:before {
  content: counter(num) '.';
  counter-increment: num;
  display: inline-block;
  position: absolute;
  width: 25px;
  left: -30px;
  top: 1px;
  color: var(--accent-color);
  text-align: right;
  font-family: 'Roboto';
  font-feature-settings: 'tnum' on, 'lnum' on;
  font-size: 18px;
  line-height: normal;
  font-weight: 400;
}
ul li:last-child {
  margin-bottom: 0px;
}
ul li::after {
  position: absolute;
  content: '';
  left: -22px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-color);
}
.page_block_wrapper.second {

}
.second_block_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 50px;
  grid-column-gap: 50px;
}
.second_block_content .content {
  /* padding: 100px 0px; */
  box-sizing: border-box;
  grid-column: 2/3;
}

.page_block_wrapper.second p,
.page_block_wrapper.second h3,
.page_block_wrapper.second ul {
  opacity: 0;
  filter: blur(2px);
  --show-speed: 2s;
}
.page_block_wrapper.second p.show,
.page_block_wrapper.second h3.show,
.page_block_wrapper.second ul.show {
  animation: fadeIn var(--show-speed) forwards;
}

.second_block_content h2 {
  grid-column: 2/3;
  margin-top: 100px;
  margin-bottom: 0px;
}
.second_block_content .cont_columns {
  grid-column: 2 / 3;
  margin-bottom: 100px;
  grid-row-gap: 15px;
}
.second_block_content .cont_columns h3 {
  grid-column: 1/4;
  /* margin-bottom: 15px; */
}
.second_block_content .content p {
  margin-bottom: 50px;
}
.second_block_content .content h3 {
  margin-bottom: 15px;
}
.second_block_glow {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  z-index: -1;
}
.second_block_glow::after {
  content: '';
  z-index: -1;
  background-color: rgba(169,2,24,0.5);
  filter: blur(200px);
}
.cont_columns {
  display: grid;
  align-items: start;
}
.cont_columns.three_cl {
  grid-template-columns: 1fr 1fr max-content;
  grid-column-gap: 32px;
}
.cont_btn_group {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  grid-row-gap: 10px;
}
.cont_btn_group .btn_label {
  font-weight: 300;
  font-size: 18px;
  line-height: 23px;
  color: var(--text-color);
}
.third_block_content {
  width: 100%;
  display: grid;
  /* grid-template-columns: 1.5fr 1fr; */
  padding: 100px 0px;
  box-sizing: border-box;

  grid-template-columns: 0.75fr 0.75fr 1fr;
  grid-row-gap: 50px;
  grid-column-gap: 50px;
}
.third_block_content h2 {
  grid-column: 1/3;
}
.third_block_content h2 span.nowrap {
  white-space: nowrap;
}
.third_block_content .cont_group {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 15px;
  max-width: 345px;
  position: relative;
  z-index: 2;
}
.third_block_content .cont_group:nth-child(6){
  max-width: none;
  grid-column: 1 / 3;
}

.secondpage_content .third_block_content {
  padding: 50px 0px;
}

.page_block_wrapper.third .cont_group {
  opacity: 0;
  filter: blur(2px);
  --show-speed: 2s;
}
.page_block_wrapper.third .cont_group.show {
  animation: fadeIn var(--show-speed) forwards;
}
.page_block_wrapper.third .cont_group h3 {
  margin-bottom: 0px;
}

.third_block_content .image_wrapper {
  grid-row: 1 / 6;
  grid-column: 3 / 4;
  align-self: start;
  justify-self: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  will-change: auto;
}
.third_block_content .image_wrapper .image_block {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.third_block_content .image_wrapper .image_block::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--glow-color);
  filter: blur(200px);
}
.third_block_content .image_wrapper .image_block img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.third_block_counters {
  grid-column: 1/3;
  display: grid;
  grid-template-columns: repeat(3, 1fr) max-content;
  grid-column-gap: 50px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.third_block_counters .group {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 15px;
}
.third_block_counters .group .counter {
  font-family: 'Montserrat';
  font-weight: 300;
  font-size: 48px;
  line-height: normal;
  font-feature-settings: 'tnum' on, 'lnum' on;
  color: var(--accent-color);
}
.third_block_counters .group .label {
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: var(--text-accent);
}
.page_block_wrapper.third::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-image: url(/images/background_cubes2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.1;
}
.page_block_wrapper.third .dots_background {
  top: 132%;
  transform: translate(-50%, -50%) scale(-1, 1);
}
.four_block_content {
  width: 100%;
  padding: 100px 0px;
  box-sizing: border-box;
}
.four_block_content h2 {
  margin-bottom: 50px;
}

.two_column_block {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
  justify-content: space-between;
  align-items: start;
}

.work_stages_list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 50px;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.work_stages_list .stage {
  width: 100%;
  max-width: 400px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 25px;
  grid-template-areas:
  'counter title'
  'counter label';
  align-items: start;
}
.page_block_wrapper.four .stage {
  opacity: 0;
  filter: blur(2px);
  --show-speed: 2s;
}
.page_block_wrapper.four .stage.show {
  animation: fadeIn var(--show-speed) forwards;
}

.work_stages_list .stage .counter {
  grid-area: counter;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: normal;
  font-feature-settings: 'tnum' on, 'lnum' on;
  color: var(--accent-color);
}
.work_stages_list .stage h3 {
  grid-area: title;
  margin-bottom: 0px;
}
.work_stages_list .stage .label {
  grid-area: label;
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  color: var(--text-color);
}
.page_block_wrapper.four {
  overflow: hidden;
}
.four_block_glow {
  position: absolute;
  content: '';
  left: 50%;
  top: 0px;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: var(--max-width);
  aspect-ratio: 16/3;
  z-index: -1;
  background-color: var(--glow-color);
  filter: blur(200px);
}
.page_block_wrapper.five::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-image: url(/images/background_cubes2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.1;
}
.five_block_content {
  display: grid;
  grid-template-columns: repeat(2, 1.1fr) repeat(2, 1fr);
  padding: 100px 0px;
  box-sizing: border-box;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
}
.five_block_content h2 {
  grid-column: 1 / 3;
  position: relative;
  z-index: 2;
}
.five_block_content .cont_group {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.page_block_wrapper.five .cont_group {
  opacity: 0;
  filter: blur(2px);
  --show-speed: 2s;
}
.page_block_wrapper.five .cont_group.show {
  animation: fadeIn var(--show-speed) forwards;
}
.page_block_wrapper.five .cont_group h3 {
  margin-bottom: 0px;
}

.five_block_content .image_wrapper {
  grid-row: 1 / 7;
  grid-column: 3/5;
  align-self: start;
  justify-self: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  will-change: auto;
}
.five_block_content .image_wrapper .image_block {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.five_block_content .image_wrapper .image_block::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--glow-color);
  filter: blur(200px);
}
.five_block_content .image_wrapper .image_block img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page_block_wrapper.five .dots_background {
  top: 108%;
  transform: translate(-50%, -50%) scale(-1, 1);
}

.page_block_wrapper.six {
  overflow: hidden;
}
.six_block_glow {
  position: absolute;
  content: '';
  left: 50%;
  top: 0px;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: var(--max-width);
  aspect-ratio: 16/3;
  z-index: -1;
  background-color: var(--glow-color);
  filter: blur(200px);
}

.six_block_content {
  width: 100%;
  padding: 100px 0px;
  box-sizing: border-box;
}
.our_works_slider_head {
  justify-self: center;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-column-gap: 50px;
  margin-bottom: 50px;
}
.our_works_slider_head .slide_arrow {
  display: flex;
  cursor: pointer;
  transition: 0.25s;
}
.our_works_slider_head .slide_arrow svg {
  width: 70px;
  height: auto;
  fill: none;
  stroke: var(--text-accent);
}
.our_works_slider_head .slide_arrow.next:hover {
  transform: scale(1.1, 1.1);
}
.our_works_slider_head .slide_arrow.prev {
  transform: scale(-1, 1);
}
.our_works_slider_head .slide_arrow.prev:hover {
  transform: scale(-1.1, 1.1);
}
.our_works_slider_head h2 {
  margin: 0px;
}
.our_works_slider_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 50px;
}
.ow_slide_item {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 15px;
  grid-template-rows: auto auto 1fr;
  text-decoration: none;
}
.ow_slide_item h3 {
  margin-bottom: 0px;
}
.ow_slide_item .image {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  border-radius: 25px;
  object-fit: cover;
  margin-bottom: 10px;
}
.ow_slide_item .label {
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  color: var(--text-color);
}

/* ========================================================================== */

.page_block_wrapper.seven {
  z-index: 2;
}


.page_block_wrapper.seven .img_bg_wrapper {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.1;
  overflow: clip;
}
.page_block_wrapper.seven .img_bg_wrapper .bg_viewport {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translate(0px, -50%);
  width: 100%;
  height: 300vh;
}
.page_block_wrapper.seven .img_bg_wrapper img {
  position: sticky;
  top: 150%;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* .page_block_wrapper.seven::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-image: url(/images/background_cubes2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.1;
  background-attachment: fixed;
} */
.seven_block_content {
  width: 100%;
  padding: 100px 0px;
  box-sizing: border-box;
}



.stroke_btn {
  border: 1px solid var(--accent-color);
  height: 30px;
  border-radius: 15px;
  padding: 0px 25px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-accent);
  font-family: 'Futura PT';
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.stroke_btn svg {
  width: 28px;
  height: auto;
  stroke: #ffffff;
  fill: none;
  margin-left: 8px;
  transition: 0.25s;
}
.stroke_btn:hover svg {
  transform: translate(10px, 0px);
}

.seven_block_content .stroke_btn {
  justify-self: center;
  padding: 0px 50px;
}


.reviews_slider_head {
  justify-self: center;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-column-gap: 50px;
  margin-bottom: 50px;
}
.reviews_slider_head h2 {
  margin: 0px;
}
.reviews_slider_head .slide_arrow {
  display: flex;
  cursor: pointer;
  transition: 0.25s;
}
.reviews_slider_head .slide_arrow svg {
  width: 70px;
  height: auto;
  fill: none;
  stroke: var(--text-accent);
}
.reviews_slider_head .slide_arrow.next:hover {
  transform: scale(1.1, 1.1);
}
.reviews_slider_head .slide_arrow.prev {
  transform: scale(-1, 1);
}
.reviews_slider_head .slide_arrow.prev:hover {
  transform: scale(-1.1, 1.1);
}

.reviews_slider_wrapper {
  margin-bottom: 15px;
}
.reviews_slider_wrapper.owl-carousel .owl-stage {
  display: flex;
}
.reviews_slider_wrapper.owl-carousel .owl-dots {
  margin-top: 15px;
  justify-self: end;
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 5px;
}
.reviews_slider_wrapper.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #9C9C9C;
  border-radius: 10px;
  transition: 0.25s;
}
.reviews_slider_wrapper.owl-carousel .owl-dots .owl-dot.active {
  width: 20px;
  background-color: #A90218;
}
.reviews_slide_item {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
  background-color: rgba(0,0,0,0.3);
  border: 1px solid var(--border-color);
  border-radius: 25px;
  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::after {
  position: absolute;
  content: '';
  left: 50%;
  top: 0px;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: var(--max-width);
  aspect-ratio: 16 / 3;
  z-index: -1;
  background-color: var(--glow-color);
  filter: blur(80px);
}
.reviews_slide_item .user_name {
  grid-area: user_name;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: normal;
  color: var(--text-accent);
}
.right_info {
  grid-area: right_info;
  display: grid;
  grid-template-columns: 1fr;
}
.reviews_slide_item .date {
  justify-self: end;
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  color: #9C9C9C;
}
.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: 18px;
  line-height: normal;
  color: var(--text-accent);
  margin-top: 25px;
}
.text_link {
  display: inline-block;
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  color: var(--text-accent);
  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;
}
.page_block_wrapper.application {

}
.page_block_wrapper.application .dots_bg_wrapper {
  top: auto;
  bottom: 0px;
  overflow: hidden;
}
.page_block_wrapper.application .dots_background {
  top: 40%;
  transform: translate(-50%, -50%);
}
.page_block_wrapper.application .dots_background svg {
  transform: translate(-47%, 0%) rotate(3.2deg);
}
.page_block_wrapper.application .dots_background img {
  transform: translate(-47%, 0%) rotate(3.2deg);
}
.application_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.application_wrapper .image_container_block {
  display: grid;
  grid-template-columns: 1fr;
  user-select: none;
  position: relative;
  align-self: end;
  height: 100%;
}
.application_wrapper .image_wrapper {
  align-self: end;
  width: 100%;
  max-height: 716px;
  position: absolute;
  width: auto;
  height: calc(100% - 100px);
  bottom: 0px;
  right: 0px;
  will-change: auto;
  display: flex;
}
.application_wrapper .image_wrapper img {
  width: auto;
  height: 100%;
}
/* .application_wrapper .image_wrapper::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--glow-color);
  filter: blur(200px);
} */
.application_wrapper .image_wrapper .red_light {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--glow-color);
  filter: blur(200px);
}


.application_container {
  padding-top: 100px;
  padding-bottom: 150px;
  box-sizing: border-box;
  z-index: 1;
}
.application_head {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  grid-row-gap: 15px;
  margin-bottom: 100px;
}
.application_head h2 {
  margin-bottom: 0px;
}
.application_form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 50px;
  margin-bottom: 50px;
}
.appl_input_block {
  position: relative;
}
.application_form .appl_input_block.three_cl {
  grid-column: 1/4;
}
.appl_input_block .appl_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: 'Futura PT';
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: normal;
  color: var(--text-accent);
}
.appl_input_block .appl_input:focus {
  outline: none;
}
.appl_input_block textarea.appl_input {
  height: 125px;
  resize: none;
}
.appl_input_block .appl_input.error {
  border-bottom: 1px solid #ff0000;
}
.appl_input_block .label {
  position: absolute;
  left: 0px;
  top: 0px;
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: normal;
  color: var(--text-color);
  pointer-events: none;
  transition: 0.25s;
  white-space: nowrap;
}
.appl_input_block .appl_input:focus ~ .label {
  transform: translate(0px, -100%);
}
.appl_input_block .appl_input:not(:placeholder-shown) ~ .label {
  transform: translate(0px, -100%);
}
.appl_input_block .label .star {
  color: var(--accent-color);
}
.form_upload_files {
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 25px;
  align-items: center;
}
.application_form .form_upload_files {
  grid-column: 1/4;
  grid-template-columns: auto auto 1fr;
}
.form_upload_files .label {
  font-weight: 300;
  font-size: 12px;
  line-height: normal;
  color: var(--text-color);
  margin: 0px;
}
.application_footer {
  display: grid;
  justify-content: space-between;
  grid-auto-flow: column;
  align-items: center;
}

.application_form .upload_btn {
  padding: 0px 50px;
}
.upload_btn {
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 15px;
  align-content: center;
  justify-content: center;

  background-color: #1C1B1D;
  height: 40px;
  border-radius: 20px;
  padding: 0px 20px;
  box-sizing: border-box;
  color: var(--text-accent);
  font-family: 'Futura PT';
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #FFFFFF;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.upload_btn input {
  display: none;
}
.upload_btn .btn_text {
  grid-column: 2/3;
  grid-row: 1/2;
}
.upload_btn .btn_label {
  grid-column: 2/3;
  grid-row: 2/3;
  font-size: 9px;
  color: var(--text-color);
}
.upload_btn svg {
  align-self: center;
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  width: 26px;
  height: auto;
  stroke: var(--accent-color);
  fill: none;
  stroke-width: 1.5;
}

.drop_zone_wrapper {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 50%;
  top: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  transition: 0.25s;
  z-index: 1000;
}
.drop_zone {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  height: 80%;
  background-color: rgba(0, 0, 0, 0.5);
  border: 5px dashed var(--accent-color);
  transform: translate(-50%, -50%);
  border-radius: 20px;
  z-index: -1;

  display: flex;
  align-items: center;
  justify-content: center;
}
.drop_zone svg {
  width: 50%;
  height: auto;
  fill: none;
  stroke: var(--accent-color);
}
.drop_zone_wrapper.dragover {
  opacity: 1;
  visibility: visible;
}


.politics_block {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 8px;
  align-items: center;
}
.custom_checkbox {

}
.custom_checkbox input {
  display: none;
}
.custom_checkbox .checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid #9E9E9E;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.custom_checkbox .checkbox svg {
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 22px;
  height: auto;
  stroke: none;
  fill: var(--accent-color);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.custom_checkbox input:checked + .checkbox svg {
  opacity: 1;
}

.politics_block.error .label {
  color: var(--accent-color);
}
.politics_block.error .custom_checkbox .checkbox {
  border: 1px solid var(--accent-color);
}

.politics_block .label {
  font-weight: 300;
  font-size: 12px;
  line-height: normal;
  color: var(--text-accent);
  margin: 0px;
}
.politics_block .label a {
  color: var(--text-accent);
  text-decoration: underline;
}
.politics_block .label a:hover {
  text-decoration: none;
}
.application_footer .default_btn {
  padding: 0px 55px;
}

.footer_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1;
  position: relative;
  transition: 0.5s;
}
.footer_wrapper.mobmenu_active {
  filter: var(--page-blur);
}
.footer_wrapper::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-image: url(/images/background_cubes2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 0.1;
}
.footer_wrapper .footer {
  width: 100%;
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 100px var(--side-padding);
  box-sizing: border-box;
  align-items: start;
  justify-items: center;
  grid-template-areas:
  'logo services materials contacts'
  'dev_text services materials contacts';
}
.footer_wrapper .footer .logo_column {
  grid-area: logo;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  grid-row-gap: 25px;
}
.footer_wrapper .footer .logo_column svg {
  width: 300px;
  height: auto;
}
.footer_wrapper .footer .development_text {
  justify-self: center;
  grid-area: dev_text;
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  color: var(--text-accent);
  margin: 0px;
  text-decoration: none;
}
.footer_wrapper .footer .development_text:hover {
  text-decoration: underline;
}
.footer_wrapper .footer .column {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 25px;
}
.footer_wrapper .footer .column.services {
  grid-area: services;
}
.footer_wrapper .footer .column.materials {
  grid-area: materials;
}
.footer_wrapper .footer .column.contacts {
  grid-area: contacts;
}
.footer_wrapper .footer .footer_title {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  text-transform: uppercase;
  color: var(--text-accent);
}
.footer_wrapper .footer .footer_column_menu {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
}
.footer_wrapper .footer .footer_column_menu .item {
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  color: var(--text-color);
  margin: 0px;
  text-decoration: none;
}
.footer_wrapper .footer .footer_column_menu .item:hover {
  text-decoration: underline;
}

.footer_social {
  justify-self: start;
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-column-gap: 20px;
  margin-top: 25px;
}
.footer_social .social_link {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.25s;
}
.footer_social .social_link:hover {
  transform: scale(1.1);
}
.footer_social .social_link svg {
  width: 100%;
  height: auto;
  fill: #ffffff;
}

.footer_wrapper .footer .footer_column_menu.contacts {
  grid-row-gap: 50px;
}
.footer_wrapper .footer .contacts_list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 15px;
  justify-self: start;
}
.footer_wrapper .footer .contacts_list .fc_item {
  text-decoration: none;
  display: grid;
  grid-template-columns: 20px auto;
  grid-column-gap: 10px;
  align-items: center;
  cursor: default;
}
.footer_wrapper .footer .contacts_list .fc_item:not(.no_pointer) {
  cursor: pointer;
}
.footer_wrapper .footer .contacts_list .fc_item .text {
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  color: var(--text-color);
  margin: 0px;
}
.footer_wrapper .footer .contacts_list .fc_item:not(.no_pointer):hover .text {
  text-decoration: underline;
}
.footer_wrapper .footer .contacts_list .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_wrapper .footer .contacts_list .icon svg {
  width: 100%;
  height: auto;
  stroke: none;
  fill: #ffffff;
}




/* ========================================================================== */

.secondpage_header_wrapper {
  /* height: 250px; */
  height: 30px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.secondpage_header_wrapper::before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(15, 16, 17, 0) 0%, #0F1011 100%);
  z-index: -3;
}
.secondpage_header_wrapper::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -4;
}
.secondpage_header_bg {
  position: absolute;
  left: 50%;
  top: 0px;
  width: 100%;
  height: 100%;
  background-image: url(/images/background_cubes2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -4;
  opacity: 0.5;
  /* max-width: var(--max-width); */
  transform: translate(-50%, 0px);
}
.secondpage_header_bg.contain {
  background-size: contain;
}
.secondpage_header_wrapper .dots_bg_wrapper {
  opacity: 0.5;
}
.secondpage_header_wrapper .dots_background {
  transform: translate(-50%, -23%);
}
.secondpage_header_wrapper .dots_background svg {
  transform: translate(-18%, -10%) rotate(-11deg);
}
.secondpage_header_wrapper .dots_background img {
  transform: translate(-18%, -10%) rotate(-11deg);
}
.secondpage_header {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  justify-content: flex-start;
  align-items: start;
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 100px;
  align-self: center;
}
.secondpage_header .logo_wrapper svg {
  width: 200px;
  height: auto;
}
.secondpage_block_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.secondpage_block {
  width: 100%;
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: 400px 1fr;
  grid-column-gap: 75px;
  padding-left: var(--side-padding);
  padding-right: var(--side-padding);
  box-sizing: border-box;
}

/* ========================================================================== */

h1 {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: normal;
  color: var(--text-accent);
  margin: 0px;
  text-transform: uppercase;
}
h1.center {
  text-align: center;
}

.bread_crumbs {
  justify-self: start;
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}
.bread_crumbs .item {
  font-weight: 300;
  font-size: 16px;
  line-height: normal;
  color: var(--text-accent);
  text-decoration: none;
}
.bread_crumbs .item:hover {
  text-decoration: underline;
}
.bread_crumbs .arrow {
  width: 30px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bread_crumbs .arrow svg {
  width: 100%;
  height: auto;
  fill: var(--text-color);
}
.secondpage_header_cont {
  align-self: center;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 25px;
}

.secondpage_menu_wrapper {
  z-index: 2;
  padding-top: 25px;
}
.secondpage_menu {
  box-sizing: border-box;
  /* background-color: #0F1011; */
  /* background-color: rgba(15, 16, 17, 0.5); */
  z-index: 1;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.secondpage_menu.sticky {
  position: sticky;
  top: calc(var(--header-height) + 25px);
  max-height: calc(100vh - var(--header-height) - 35px);
}
.secondpage_glow_wrapper {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 0px;
  display: none;
}
.secondpage_glow_wrapper.first {

}
.secondpage_glow_wrapper.last {

}
.secondpage_glow_wrapper.first .secondpage_glow {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.secondpage_glow_wrapper.first .secondpage_glow::after {
  display: block;
  content: '';
  transform: translate(0%, -50%);
  width: 100%;
  max-width: var(--max-width);
  aspect-ratio: 1 / 1;
  z-index: -1;
  background-color: var(--glow-color);
  filter: blur(200px);
}
.secondpage_glow_wrapper.last .secondpage_glow {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.secondpage_glow_wrapper.last .secondpage_glow::after {
  display: block;
  content: '';
  transform: translate(0%, 50%);
  width: 100%;
  max-width: var(--max-width);
  aspect-ratio: 1 / 1;
  z-index: -1;
  background-color: var(--glow-color);
  filter: blur(200px);
}


.secondpage_head_title {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: var(--text-color);
  margin: 0px;
  text-transform: uppercase;
}
h2.secondpage_title {
  font-family: 'Benzin';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  color: var(--text-accent);
  margin: 0px;
  text-transform: uppercase;
  margin-bottom: 50px;
  z-index: 5;
  position: relative;
}
h2.secondpage_title.center {
  text-align: center;
}
.secondpage_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* background-color: rgba(15,16,17, 0.5); */
  padding: 50px 25px;
  box-sizing: border-box;
  z-index: 1;
}

.secondpage_content h2 {
  margin-bottom: 50px;
  position: relative;
  z-index: 10;
}
.secondpage_content h1 {
  margin-bottom: 50px;
  position: relative;
  z-index: 10;
}
.secondpage_content p {
  margin-bottom: 25px;
}
.def_text_group {
  margin-bottom: 50px;
}
.def_text_group:last-child {
  margin-bottom: 0px;
}
.def_text_group p:last-child {
  margin-bottom: 0px;
}
.def_text_group.contacts p {
  margin: 0px;
}
.def_text_row {
  justify-self: start;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  grid-column-gap: 25px;
  margin-bottom: 50px;
}
.def_text_row:last-child {
  margin-bottom: 0px;
}
.def_text_row.align_c {
  align-items: center;
}
.def_text_row.full {
  width: 100%;
}
.def_text_row.two_column {
  grid-template-columns: 1fr 1fr;
}
.def_text_row .def_text_group {
  margin-bottom: 0px;
}
.def_text_row p:last-child {
  margin-bottom: 0px;
}
.def_text_group .def_text_row {
  margin-bottom: 25px;
}
.def_text_group .def_text_row:last-child {
  margin-bottom: 0px;
}
.def_text_group.contacts .def_text_row {
  grid-template-columns: 65px auto;
}
.contacts_numbers_list {
  display: grid;
  grid-template-columns: 1fr;
}
.contacts_numbers_list p {
  margin-bottom: 0px;
}
.secondpage_content .work_stages_block {
  z-index: 1;
  position: relative;
}
.secondpage_content .work_stages_block h2 {
  margin-bottom: 50px;
}
.secondpage_content .work_stages_block .work_stages_list {
  grid-template-columns: 1fr 1fr;
}
.map_wrapper {
  width: 100%;
  aspect-ratio: 2/1;
  position: relative;
  margin-bottom: 50px;
  z-index: 2;
}
.map_wrapper .map {
  position: absolute;
  left: 0px;
  top: 0px;
  width: calc(100% - 25px);
  height: calc(100% - 25px);
}
.map_wrapper::after {
  position: absolute;
  content: '';
  bottom: 0px;
  right: 0px;
  border: 2px solid var(--accent-color);
  width: calc(100% - 100px);
  height: calc(100% - 25px);
  box-sizing: border-box;
  z-index: -1;
}

.contacts_services_block {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  margin-bottom: 50px;
}
.contacts_services_block .def_text_group:last-child {
  margin-bottom: 0px;
}
.contacts_services_block .image_wrapper {
  width: 100%;
  height: 100%;
  justify-self: center;
  position: relative;
  z-index: 1;
}
.contacts_services_block .image_wrapper img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}
.contacts_services_block .image_wrapper::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: var(--glow-color);
  filter: blur(200px);
}
.contacts_services_block .image_wrapper .frame {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 60%;
  height: 80%;
  box-sizing: border-box;
  z-index: -1;
}
.contacts_services_block .image_wrapper .frame.first {
  top: 60%;
  left: 50%;
  z-index: -2;
  border: 2px solid var(--border-color);
  transform: translate(-50%, -50%) rotate(-45deg);
  clip-path: polygon(100% 15%, 70% 15%, 70% 70%, 100% 70%, 100% 100%, 0 100%, 0 0, 100% 0);
}
.contacts_services_block .image_wrapper .frame.second {
  top: 60%;
  left: 50%;
  z-index: -1;
  border: 2px solid var(--accent-color);
  transform: translate(-50%, -50%) rotate(45deg);
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%, 0 80%, 40% 80%);
}
.secondpage_menu .search_item {
  padding: 0px 25px;
  box-sizing: border-box;
  margin-bottom: 50px;
  /* margin-top: 25px; */
}
.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: var(--accent-color);
}

.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: 'Futura PT';
  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: 'Futura PT';
  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%);
}

.secondpage_menu .consiltation_item {
  margin-top: 25px;
  margin-bottom: 50px;
}
.secondpage_menu .consiltation_item img {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: auto;
  height: 100%;
  transform: scale(-1, 1);
}
.secondpage_menu .consiltation_item .content {
  position: relative;
  padding: 0px 25px 100px 25px;
  box-sizing: border-box;
}
.secondpage_menu .consiltation_item .btn_wrapper {
  padding: 0px 25px;
  box-sizing: border-box;
}
.secondpage_menu .consiltation_item h3 {
  margin-bottom: 15px;
}

.secondpage_menu .reviews_item {
  padding: 0px 15px;
  box-sizing: border-box;
  margin-bottom: 50px;
  max-width: 100%;
  overflow: hidden;
}
.secondpage_menu .reviews_item .reviews_slider_head {
  width: 100%;
  margin-bottom: 15px;
}
.secondpage_menu .reviews_item .reviews_slider_head h3 {
  text-align: center;
  margin: 0px;
}
.secondpage_menu .reviews_item .reviews_slider_head .slide_arrow svg {
  width: 40px;
}
.secondpage_menu .reviews_item .btn_wrapper {
  padding: 0px 10px;
  box-sizing: border-box;
  margin-top: 15px;
}
.secondpage_menu .reviews_slider_wrapper.owl-carousel .owl-dots {
  justify-self: center;
  margin-top: 15px;
}
.secondpage_menu .our_works_item {
  padding: 0px 15px;
  box-sizing: border-box;
  margin-bottom: 50px;
  max-width: 100%;
  overflow: hidden;
}
.secondpage_menu .our_works_item .our_works_slider_head {
  width: 100%;
  margin-bottom: 15px;
}
.secondpage_menu .our_works_item .our_works_slider_head h3 {
  text-align: center;
  margin: 0px;
}
.secondpage_menu .our_works_item .our_works_slider_head .slide_arrow svg {
  width: 40px;
}
.secondpage_menu .our_works_item .our_works_slider_wrapper {
  grid-template-columns: 1fr;
}
.secondpage_menu .our_works_item .ow_slide_item {
  /* background-color: #171719; */
  border-radius: 25px;
}
.secondpage_menu .our_works_item .ow_slide_item .content {
  padding: 0px 0px 25px 0px;
  box-sizing: border-box;
}
.secondpage_menu .our_works_item .ow_slide_item .content h3 {
  margin-bottom: 15px;
  text-align: left;
  font-size: 18px;
}
.secondpage_menu .our_works_item .btn_wrapper {
  padding: 0px 10px;
  box-sizing: border-box;
  margin-top: 15px;
}
.secondpage_menu .our_works_slider_wrapper.owl-carousel .owl-dots {
  justify-self: center;
  margin-top: 15px;
}
.our_works_slider_wrapper  {
  margin-bottom: 15px;
}
.our_works_slider_wrapper.owl-carousel .owl-stage {
  display: flex;
}
.our_works_slider_wrapper.owl-carousel .owl-dots {
  margin-top: 15px;
  justify-self: end;
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 5px;
}
.our_works_slider_wrapper.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #9C9C9C;
  border-radius: 10px;
  transition: 0.25s;
}
.our_works_slider_wrapper.owl-carousel .owl-dots .owl-dot.active {
  width: 20px;
  background-color: #A90218;
}
.six_block_content .stroke_btn {
  justify-self: center;
  padding: 0px 50px;
}

.secondpage_menu .reviews_item .reviews_slide_item {
  background-color: rgba(0, 0, 0, 0);
  margin-left: 2px;
  grid-column-gap: 10px;
}
.secondpage_menu .reviews_item .reviews_slide_item::after {
  display: none;
}
.secondpage_menu .reviews_item .reviews_slide_item .review_text {
  color: var(--text-color);
}


/* ========================================================================== */

.news_slider_head {
  justify-self: center;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-column-gap: 50px;
  margin-bottom: 50px;
}
.news_slider_head .slide_arrow {
  display: flex;
  cursor: pointer;
  transition: 0.25s;
}
.news_slider_head .slide_arrow svg {
  width: 70px;
  height: auto;
  fill: none;
  stroke: var(--text-accent);
}
.news_slider_head .slide_arrow.next:hover {
  transform: scale(1.1, 1.1);
}
.news_slider_head .slide_arrow.prev {
  transform: scale(-1, 1);
}
.news_slider_head .slide_arrow.prev:hover {
  transform: scale(-1.1, 1.1);
}
.news_slider_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 50px;
}
.news_slide_item {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 15px;
  text-decoration: none;
}
.news_slide_item .image {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  border-radius: 25px;
  object-fit: cover;
  margin-bottom: 10px;
}
.news_slide_item .label {
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  color: var(--text-color);
}
.news_slider_wrapper.owl-carousel .owl-dots {
  margin-top: 15px;
  justify-self: center;
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 5px;
}
.news_slider_wrapper.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #9C9C9C;
  border-radius: 10px;
  transition: 0.25s;
}
.news_slider_wrapper.owl-carousel .owl-dots .owl-dot.active {
  width: 20px;
  background-color: #A90218;
}

/* ========================================================================== */

.secondpage_menu .news_item {
  padding: 0px 15px;
  box-sizing: border-box;
  margin-bottom: 50px;
  max-width: 100%;
  overflow: hidden;
}
.secondpage_menu .news_item .news_slider_head {
  width: 100%;
  margin-bottom: 15px;
}
.secondpage_menu .news_item .news_slider_head h3 {
  text-align: center;
  margin: 0px;
}
.secondpage_menu .news_item .news_slider_head .slide_arrow svg {
  width: 40px;
}
.secondpage_menu .news_item .news_slider_wrapper {
  grid-template-columns: 1fr;
}
.secondpage_menu .news_item .news_slide_item {
  /* background-color: #171719; */
  border-radius: 25px;
}
.secondpage_menu .news_item .news_slide_item .content {
  padding: 0px 0px 25px 0px;
  box-sizing: border-box;
}
.secondpage_menu .news_item .news_slide_item .content h3 {
  margin-bottom: 15px;
  text-align: left;
  font-size: 18px;
}
.secondpage_menu .news_item .btn_wrapper {
  padding: 0px 10px;
  box-sizing: border-box;
  margin-top: 15px;
}

/* ========================================================================== */

.services_list_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
  justify-items: start;
  margin-bottom: 50px;
}
.services_block {
  width: 100%;
  max-width: 525px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  position: relative;
  /* backdrop-filter: url(#displacementFilter) blur(3px); */
  /* background-color: rgba(0, 0, 0, 0.3); */
  /* background-color: var(--bg-transparent); */
  box-sizing: border-box;
  border: 1px solid var(--border-color);
  z-index: 2;
  padding: 25px;
  box-sizing: border-box;
  grid-row-gap: 25px;
  position: relative;
  border-radius: 25px;
  text-decoration: none;
}
.services_block.consultation {
  /* grid-row-start: -1; */
  grid-column: 1/3;
  max-width: unset;
}
.services_block .image_wrapper {
  max-height: 300px;
  position: relative;
  z-index: -1;
  display: flex;
}

/* .services_block .image_wrapper::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--glow-color);
  filter: blur(200px);
} */

.services_block .image_wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.services_block p:last-child {
  margin-bottom: 0px;
}
.services_block .head {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .services_block .content {
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  color: var(--text-color);
  margin: 0px;
} */

/* ========================================================================== */

.materaials_list_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 50px;
}

.materaial_block .image_wrapper {
  position: relative;
  z-index: 1;
}
.materaial_block .image_wrapper::after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  width: 90%;
  height: 90%;
  z-index: -1;
  background-color: var(--glow-color);
  filter: blur(120px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.materaial_block .image_wrapper .image {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.materaial_block .head {
  display: flex;
  align-items: flex-end;
  margin-bottom: 25px;
}
.materaial_block .head h3 {
  line-height: 22px;
  margin-bottom: 3px;
}
.materaial_block .head .counter {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 48px;
  font-feature-settings: 'tnum' on, 'lnum' on;
  color: var(--accent-color);
  margin-right: 25px;
}
.materaial_block .head,
.materaial_block .def_text_group,
.materaial_block p,
.materaial_block .default_list {
  z-index: 2;
  position: relative;
}
.materaial_block .def_text_row:last-child,
.materaial_block .def_text_group:last-child,
.materaial_block p:last-child,
.materaial_block .default_list:last-child {
  margin-bottom: 0px;
}

/* ========================================================================== */


.reviews_page_head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.secondpage_content .reviews_page_head h1 {
  margin-bottom: 0px;
}
.reviews_page_head h2.secondpage_title {
  margin-bottom: 0px;
}

.reviews_page_reviews_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
}
.reviews_page_reviews_list .reviews_slide_item {
  /* border: 0px; */
  background-color: rgba(0, 0, 0, 0);
}
.reviews_page_reviews_list .reviews_slide_item::after {
  display: none;
}


/* ========================================================================== */


.window_wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.window_wrapper .dots_bg_wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}
.window_wrapper .dots_bg_wrapper.show {
  animation: 1s dots_bg_wrapper_show ease-in-out forwards;
}
@keyframes dots_bg_wrapper_show {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
.window_wrapper .dots_bg_wrapper.out {
  animation: 0.5s dots_bg_wrapper_out linear forwards;
}
@keyframes dots_bg_wrapper_out {
  0% {
    height: 100%;
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 0;
  }
}
.window_wrapper .dots_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 130vw;
  height: 130vh;
  transform: translate(-21%, 20%) rotate(32deg);
  object-fit: contain;
  filter: blur(1px);
}
.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%);
  backdrop-filter: blur(3px);
  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 {
  position: absolute;
  top: 59px;
  right: 22px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.close_window svg {
  width: 100%;
  height: auto;
  opacity: 1;
  stroke: var(--accent-color);
  stroke-width: 1;
}

.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: 42px;
  height: 42px;
  padding-left: 5px;
  padding-right: 5px;
  cursor: pointer;
}
.add_review_window_stars .star_item input {
  display: none;
}
.add_review_window_stars .star_item svg {
  width: 30px;
  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 {
  box-sizing: border-box;
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: normal;
  color: var(--text-color);
}
.complete_window_text {
  box-sizing: border-box;
  font-family: 'Futura PT';
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: normal;
  color: var(--text-color);
  margin-bottom: 25px;
}


.vopros_list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 25px;
}
.vopros_item {
  height: 100%;
  position: relative;
  overflow: hidden;
  /* background-color: var(--bg-transparent); */
  border: 1px solid var(--border-color);
  border-radius: 25px;
  box-sizing: border-box;
  z-index: 1;
}
/* .vopros_item::after {
  position: absolute;
  content: '';
  left: 50%;
  top: 0px;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: var(--max-width);
  aspect-ratio: 16 / 3;
  z-index: -1;
  background-color: var(--glow-color);
  filter: blur(80px);
} */
.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: normal;
  font-feature-settings: 'tnum' on, 'lnum' on;
  color: var(--accent-color);
}
.vopros_item .vopsos_text {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: normal;
  color: var(--text-accent);
  align-self: center;
}
.vopros_item .vopsos_text p {
  margin: 0px;
}
.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;
}

.vopros_page_head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.secondpage_content .vopros_page_head h1 {
  margin-bottom: 0px;
}
.vopros_page_head h2.secondpage_title {
  margin-bottom: 0px;
}
.vopros_page_head .default_btn {
  white-space: nowrap;
}

/* ========================================================================== */


.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(3px);
  z-index: 10;
  opacity: 0;
  transition: 0.25s;
  pointer-events: none;
}
.window_cont.loading .window_loading_wrapper {
  opacity: 1;
  pointer-events: auto;
}
.vopros_window_wrapper {
  position: relative;
  box-shadow: 6px 1px 29px rgba(0, 0, 0, 0.3);
}
.vopros_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);
}
.vopros_window_body {
  width: 100%;
  padding: 25px 50px;
  box-sizing: border-box;
  overflow: auto;
}

.vopros_window_body h2 {
  margin-bottom: 50px;
}
.vopros_content_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 35px;
  margin-bottom: 25px;
}
.vopros_window_footer {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 25px;
}


/* ========================================================================== */




.upload_files_container {
  grid-column: 1/4;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 25px;
}
.upload_files_container:not(:empty){
  margin-top: 25px;
}
.upload_file_item {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  max-width: 100%;
  overflow: hidden;
  background-color: var(--bg-transparent);
  border: 1px solid var(--border-color);
  width: 100%;
  padding: 25px 0px 5px 5px;
  border-radius: 10px;
  box-sizing: border-box;
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #FFFFFF;
  font-feature-settings: 'tnum' on, 'lnum' on;
  position: relative;
  backdrop-filter: blur(5px);
  aspect-ratio: 1 / 1;
  text-decoration: none;
}
.upload_file_item.image {
  padding: 0px;
}
.upload_file_item .upload_file_item_image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.upload_file_item .file_name {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.upload_file_item .file_expansion {
  font-weight: 300;
  font-size: 24px;
  line-height: normal;
  font-feature-settings: 'tnum' on, 'lnum' on;
  color: var(--accent-color);
  padding-right: 15px;
  box-sizing: border-box;
}
.upload_file_item .remove_file {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.upload_file_item .remove_file svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: var(--accent-color);
}

.upload_image_item {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  max-width: 100%;
  overflow: hidden;
  background-color: var(--bg-transparent);
  border: 1px solid var(--border-color);
  width: 100%;
  padding: 25px 0px 15px 15px;
  border-radius: 10px;
  box-sizing: border-box;
  position: relative;
  aspect-ratio: 1 / 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.upload_image_item .remove_file {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.upload_image_item .remove_file svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: var(--accent-color);
}



.animation_logo_text {
  position: relative;
  z-index: 1;
}
.animation_logo_text::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--glow-color);
  filter: blur(200px);
}
.animation_logo_text svg {
  width: 500px;
  height: auto;
  stroke: #ffffff;
  stroke-dasharray: 0, 80;
  filter: drop-shadow(3px 3px 0px #A90218);
  overflow: visible;
}
.animation_logo_text svg path {
  animation: animation_logo_text ease-in-out forwards;
  animation-duration: 1s;
  stroke-width: 0;
}
@keyframes animation_logo_text {
  0% {
    stroke-width: 3;
    stroke-dasharray: 0, 80;
    filter: blur(5px);
  }
  100% {
    stroke-width: 3;
    stroke-dasharray: 80, 80;
    filter: blur(0px);
  }
}
.window_cont.loading .animation_logo_text svg path {
  animation: window_loading_animation_logo_text ease-in-out forwards;
  animation-duration: 1s;
  stroke-width: 0;
}
@keyframes window_loading_animation_logo_text {
  0% {
    stroke-width: 3;
    stroke-dasharray: 0, 80;
    filter: blur(5px);
  }
  100% {
    stroke-width: 3;
    stroke-dasharray: 80, 80;
    filter: blur(0px);
  }
}

.page_news_list_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
}

.page_news_list_block {
  display: grid;
  grid-template-columns: 1fr;
  text-decoration: none;
  /* background-color: #171719; */
  border-radius: 25px;
}
.page_news_list_block_photo_preview {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1.5;
  border-radius: 25px;
  object-fit: cover;
  margin-bottom: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page_news_list_block_info {
  padding: 25px 25px 25px 25px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
  'title title'
  'text text'
  'date btn';
  align-items: center;
  justify-content: space-between;
  grid-column-gap: 15px;
}
.page_news_list_block_date {
  grid-area: date;
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  color: var(--text-accent);
}
.page_news_list_block_title {
  grid-area: title;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: normal;
  color: var(--text-accent);
  /* text-transform: uppercase; */
  margin: 0px;
}
.page_news_list_block_text {
  grid-area: text;
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  color: var(--text-color);
  margin: 25px 0px;
}
.page_news_list_block_text p {
  margin: 0px;
}
.page_news_list_block_info .stroke_btn {
  grid-area: btn;
}
.f-modal {
  user-select: none;
}
.news_page_date_block {
  font-weight: 300;
  font-size: 18px;
  line-height: 150%;
  color: var(--text-color);
  margin-bottom: 25px;
}
.portfolio_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 25px;
}
.portfolio_item {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  /* background-color: rgba(0,0,0,0.3); */
  border-radius: 25px;
  z-index: 1;
  text-decoration: none;
  grid-template-rows: auto 1fr;
  padding: 0px 0px 35px 0px;
  box-sizing: border-box;
}
/* .portfolio_item::after {
  position: absolute;
  content: '';
  left: 50%;
  top: 0px;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: var(--max-width);
  aspect-ratio: 16 / 3;
  z-index: -1;
  background-color: var(--glow-color);
  filter: blur(80px);
} */
.portfolio_item .portfolio_item_cont {
  padding: 25px 0px 0px 0px;
  box-sizing: border-box;
}
.portfolio_item .portfolio_img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1.5;
  object-fit: cover;
  border-radius: 25px;
}
.portfolio_item .portfolio_title {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: normal;
  color: var(--text-accent);
  /* text-transform: uppercase; */
  margin-bottom: 25px;
  text-align: center;
}
.portfolio_item .portfolio_text {
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  color: var(--text-color);
  text-align: center;
  /* margin-bottom: 25px; */
}
.portfolio_item .portfolio_text p {
  margin: 0px;
}


.message_content {
  opacity: 0;
  filter: blur(2px);
  --show-speed: 2s;
}
.message_content.show {
  animation: fadeIn var(--show-speed) forwards;
}
@keyframes fadeIn {
  100% {
    opacity: 1;
    filter: none;
  }
}
.liquid_glass {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 0px;
  height: 0px;
}

.default_btn.view_all {

}
.default_btn.view_all svg {
  width: auto;
  height: 10px;
  stroke-width: 4;
  fill: none;
  stroke: var(--text-accent);
  transition: 0.25s;
  margin-left: 5px;
}
.default_btn.view_all:hover svg {
  transform: translate(5px, 0px);
}

.gallerycont {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 25px;
}
.gallery_item {

}
.gallery_img {
  aspect-ratio: 1/1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
  transition: 0.25s;
}
.gallery_img:hover {
  transform: scale(1.05);
}


.search_link {
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  color: var(--text-color);
  text-decoration: underline;
}
.search_link:hover {
  text-decoration: none;
}


.page_video {
  display: flex;
  width: 100%;
  height: auto;
  background-size: cover;
}
.page_video video {
  backdrop-filter: blur(8px);
  width: 100%;
  height: auto;
  aspect-ratio: 2/1.2;
}













/* ========================================================================== */
