*::-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: 'Bion';
  font-weight: normal;
  font-style: normal;
  font-size: 32px;
  line-height: normal;
  color: #987E98;
  background-color: #111016;

  --side-padding: 25px;
  --max-width: calc(1400px + calc(var(--side-padding) * 2));

  /* --header-height: 160px;
  --header-height-scrolled: 56px;
  --secondpage-header-height: 550px;
  --noscroll-padding: 8px;
  --text-color-title: #000000;
  --text-color: #2f2f2f;
  --max-block-title-width: none; */
}

body {

}
body.noscroll {
  overflow: hidden;
  padding-right: var(--noscroll-padding);
}
h1 {
  font-size: 48px;
  margin: 0px;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
}
h2 {
  font-size: 48px;
  margin: 0px;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
}
h3 {
  font-size: 32px;
  margin: 0px;
  font-weight: 300;
  color: #ffffff;
  text-transform: uppercase;
}
p {
  margin: 0px;
  margin-bottom: 32px;
}

header {
  width: 100%;
  position: fixed;
  top: 0px;
  padding-top: 36px;
  box-sizing: border-box;
  z-index: 100;
  transition: 0.25s;
  background-color: rgba(0, 0, 0, 0);
  /* backdrop-filter: blur(0px); */
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  will-change: auto;
}
header.scrolled {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: rgba(17,16,22, 44%);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(128,0,110,20%);
}
.header-container {
  width: 100%;
  max-width: var(--max-width, 1400);
  margin: 0px auto;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto auto;
  grid-template-areas: 'logo menu phone btn';
  column-gap: 50px;
  padding: 0px var(--side-padding);
  box-sizing: border-box;
}
section {
  width: 100%;
  max-width: var(--max-width, 1400);
  margin: 0px auto;
  padding: 40px var(--side-padding);
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.header-container .logotype {
  grid-area: logo;
  display: flex;
}
.header-container .logotype svg {
  width: 136px;
  height: auto;
  transition: 0.25s;
  will-change: auto;
}
.header-container .logotype svg path {
  fill: #ffffff;
}
header.scrolled .header-container .logotype svg {
  width: 110px;
}

.header-container nav {
  grid-area: menu;
  display: flex;
  justify-content: space-around;
}

/* ===== КОНТЕЙНЕР МЕНЮ ===== */
.header-container .menu_item {
  position: relative;
  border-radius: 5px;
  box-sizing: border-box;
}

/* ===== ССЫЛКИ МЕНЮ (ОСНОВНЫЕ) ===== */
.header-container .menu_link {
  display: flex;
  gap: 8px;
  padding: 10px;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.25s;
}

/* Активная ссылка */
.header-container .menu_item.active .menu_link {
  color: #ff00dd;
}

/* ===== СТРЕЛКА (АРРОУ) ===== */
.header-container .menu_link .arrow {
  display: flex;
  justify-content: center;
  width: 26px;
}

.header-container .menu_link .arrow svg {
  width: 9px;
  height: auto;
  stroke: #ffffff;
  transform: rotate(90deg);
  transition: 0.25s;
}

/* Стрелка в активном пункте */
.header-container .menu_item.active .menu_link .arrow svg {
  stroke: #ff00dd;
}

/* Поворот стрелки при ховере */
.header-container .menu_item:hover .menu_link .arrow svg {
  transform: rotate(270deg);
}

/* Активный пункт при ховере — стрелка белая */
.header-container .menu_item.active:hover .menu_link .arrow svg {
  stroke: #ffffff;
}

/* ===== ПОДМЕНЮ ===== */
.menu_item .submenu_wrapper {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease; /* добавлено для плавности */
}

/* Показываем подменю при ховере на родителя */
.menu_item:hover .submenu_wrapper {
  opacity: 1;
  visibility: visible;
}
.menu_item .submenu {
  display: flex;
  flex-direction: column;
  padding: 15px;
  background-color: rgba(128, 0, 110, 90%);
  border-radius: 0px 5px 5px 5px;
}

/* ===== ХОВЕРЫ ДЛЯ ПУНКТОВ МЕНЮ ===== */
.header-container .menu_item:hover {
  background-color: rgba(128, 0, 110, 90%);
  color: #ffffff;
}

/* Если у пункта есть подменю — скругляем только верхние углы */
.header-container .menu_item.has_subm:hover {
  border-radius: 5px 5px 0px 0px;
}

/* Активный пункт при ховере — текст белый */
.header-container .menu_item.active:hover .menu_link {
  color: #ffffff;
}

/* ===== ССЫЛКИ ВНУТРИ ПОДМЕНЮ ===== */
.menu_item .submenu .menu_link:hover {
  transform: translate(0px, -3px);
}
.header-container .default_btn {
  grid-area: btn;
}




.phone_item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  color: #FFFFFF;
  text-decoration: none;
  text-decoration: none;
}
.phone_item svg {
  width: 17px;
  height: auto;
  fill: #FF00DD;
}
.address_item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  color: #FFFFFF;
  text-decoration: none;
}
.address_item svg {
  width: 17px;
  height: auto;
  fill: #FF00DD;
}
.mail_item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  color: #FFFFFF;
  text-decoration: none;
}
.mail_item svg {
  width: 17px;
  height: auto;
  fill: #FF00DD;
}
.header-container .phone_item {
  grid-area: phone;
  gap: 8px;
}

.first_screen_wrapper {
  position: relative;
  z-index: 1;
}
.first_screen_bg_wrapper {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
.first_screen_bg {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 110%;
  height: 120%;
  display: flex;
}
.first_screen_bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.flower_bg_wrapper {
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  pointer-events: none;
}
.flower_bg_wrapper svg {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: auto;
  stroke: #FF00DD;
}
.first_screen_wrapper .flower_bg_wrapper {
  bottom: 0px;
  width: 100%;
  height: 100%;
  transform: translate(0%, 50%);
  overflow: clip;
}
.first_screen_wrapper .flower_bg_wrapper svg {
  width: 844px;
  stroke: rgba(255,0,221, 35%);
  transform: translate(-40%, 0%) rotate(-12.5deg);
}

section.first_screen {
  height: 100vh;
  max-height: 1500px;
  display: flex;
  align-items: center;

  padding: 0px var(--side-padding);
  position: relative;
  z-index: 1;
}
section.first_screen .fs_content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.first_screen .fs_content svg {
  width: 522px;
  height: auto;
}
section.first_screen .fs_content svg path {
  opacity: 0;
  animation: 1s logo_opacity_anim linear forwards;
  animation-delay: 0.5s;
}
@keyframes logo_opacity_anim {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
section.first_screen .fs_content svg path:nth-child(2){
  opacity: 1;
  animation: 0.5s logo_ring_anim linear forwards;
  animation-delay: 1s;
  clip-path: polygon(0% 50%, 0% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 100%);
}
@keyframes logo_ring_anim {
  0% { clip-path: polygon(0% 50%, 0% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 100%); }
  35% { clip-path: polygon(0% 50%, 0% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%); }
  50% { clip-path: polygon(0% 50%, 0% 100%, 100% 100%, 100% 50%, 100% 50%, 100% 50%); }
  65% { clip-path: polygon(0% 50%, 0% 100%, 100% 100%, 100% 50%, 100% 0%, 100% 0%); }
  100% { clip-path: polygon(0% 50%, 0% 100%, 100% 100%, 100% 50%, 100% 0%, 0% 0%); }
}
section.first_screen .fs_slogan {
  margin: 40px 0px;
  text-align: center;
  opacity: 0;
  animation: 1s fs_slogan_anim linear forwards;
  animation-delay: 0.5s;
}
@keyframes fs_slogan_anim {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.default_btn {
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0px 15px;
  background-color: #FF00DD;
  border: 1px solid #FF00DD;
  box-sizing: border-box;
  font-size: 20px;
  color: #FFFFFF;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}
.default_btn.first_screen {
  height: 80px;
  border-radius: 40px;
  font-size: 32px;
  text-transform: uppercase;
  background-color: #80006E;
  padding: 0px 30px;
  opacity: 0;
  animation: 0.5s def_btn_fs_anim ease-in-out forwards;
  animation-delay: 0.5s;
}
@keyframes def_btn_fs_anim {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  80% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.mobile_application_btn {
  height: 40px;
  display: none;
  align-items: center;
  padding: 0px 10px;
  background-color: #FF00DD;
  border: 1px solid #FF00DD;
  box-sizing: border-box;
  font-size: 16px;
  color: #FFFFFF;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 100;
}

section.services {
  position: relative;
  z-index: 1;
}
section.services h2 {
  margin-bottom: 24px;
}
.services_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.service_item {
  width: 100%;
  aspect-ratio: 2/1.2;
  border: 1px solid #FF00DD;
  box-sizing: border-box;
  background-color: #80006E;
  border-radius: 10px;
  padding: 40px 40px 40px 40px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.service_item .item_bg {
  position: absolute;
  content: '';
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
  pointer-events: none;
}
.service_item:hover .item_bg {
  transform: scale(1.1);
}
.service_item .item_bg::after {
  position: absolute;
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  /* border: 1px solid #FF00DD; */
  border-radius: 10px;
  background-color: rgba(17, 16, 22, 44%);
  z-index: 1;
  opacity: 0;
  transition: 0.25s;
}
.service_item:hover .item_bg::after {
  opacity: 1;
}
.service_item .name {
  font-size: 32px;
  color: #FFFFFF;
  z-index: 2;
  transition: 0.25s;
  text-transform: uppercase;
}
.service_item .name svg {
  width: 15px;
  height: auto;
  stroke: #ffffff;
  transition: 0.25s;
  margin-left: 8px;
}
.service_item:hover .name svg {
  transform: translate(6px, 0px);
}



.about_wrapper {
  position: relative;
  z-index: 1;
}
.about_wrapper .flower_bg_wrapper {
  left: auto;
  right: 0px;
  width: 100%;
  height: 140%;
  transform: translate(0%, 50%);
  overflow: clip;
}
.about_wrapper .flower_bg_wrapper svg {
  position: absolute;
  bottom: 0px;
  left: auto;
  right: 0px;
  width: 844px;
  stroke: rgba(255, 0, 221, 60%);
  transform: translate(45%, 0%) rotate(30deg) scale(-1, -1);
}


section.about {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
}
section.about h2 {
  margin-bottom: 24px;
}
.about_gallery {
  align-items: start;
  align-self: start;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.about_gallery .about_gall_main {
  width: 100%;
  border: 1px solid #FF00DD;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
}
.about_gallery .about_gall_main a {
  display: flex;
  width: 100%;
  height: auto;
}
.about_gallery .about_gall_main img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.about_gallery .about_gall_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.about_gallery .about_gall_list a {
  display: flex;
  aspect-ratio: 1/1;
}
.about_gallery .about_gall_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #FF00DD;
  box-sizing: border-box;
  border-radius: 10px;
}
section.about .text_side p {
  margin: 0px;
  margin-bottom: 25px;
}
section.about .text_side p:last-child {
  margin-bottom: 0px;
}


section.reviews {
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1;
  position: relative;
}

.reviews_head {
  display: flex;
  align-items: center;
  gap: 15px;
}
.reviews_head .slider_arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.reviews_head .slider_arrow svg {
  width: 20px;
  height: auto;
  stroke: #80006E;
}
.reviews_head .slider_arrow.prev svg {
  transform: scale(-1, 1);
}

.reviews_slider {

}
.reviews_slider.owl-carousel .owl-stage {
  display: flex;
}

.review_item_wrapper {
  width: 100%;
  height: 100%;
  padding: 0px 5px;
  box-sizing: border-box;
}
.review_item {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 25px;
  border: 2px solid #80006E;
  border-radius: 10px;
  background-color: rgba(17,16,22, 44%);
  backdrop-filter: blur(5px);
  padding: 22px 22px 40px 22px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
}
.review_item .head {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 15px;
  row-gap: 5px;
}
.review_item .photo {
  grid-column: 1;
  grid-row: 1/3;
  width: 80px;
  height: 80px;
  background-color: #80006E;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.review_item .name {
  color: #FFFFFF;
}
.review_item .date {
  color: #987E98;
}
.review_item .content {
  color: #FFFFFF;
  /* padding-left: calc(80px + 15px); */
}
.review_item .content p {
  color: #FFFFFF;
  margin: 0px;
}

section.masters {
  display: grid;
  gap: 24px;
}
.masters_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}
.master_block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 140px;
  position: relative;
}
.master_block.bottom_line::after {
  position: absolute;
  content: '';
  left: 50%;
  top: calc(100% + 40px);
  width: calc(100% + calc(var(--side-padding) * 2));
  height: 1px;
  background-color: #80006E;
  transform: translate(-50%, 0px);
}
.master_block.reverse {
  grid-template-columns: 1fr auto;
}
.master_block .photo {
  width: 420px;
  /* height: 575px; */
  aspect-ratio: 420 / 575;
  border-radius: 15px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.master_block .photo .photo_bg {
  position: absolute;
  bottom: 0%;
  left: -10%;
  width: 120%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  transition: 0.1s;
}
.master_block .photo .photo_bg.dark {
  filter: brightness(0.9) contrast(1.2);
}
.master_block .photo .name {
  position: absolute;
  left: -16px;
  top: 50%;
  transform-origin: center bottom;
  transform: translate(0%, -50%);
  font-size: 85px;
  line-height: 85px;
  font-weight: 900;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
  color: #ffffff;
}
.master_block .master_info {

}
.master_block .master_description {

}
.master_block .master_works {
  display: grid;
  gap: 20px;
}
.master_block .master_works.first {
  grid-template-columns: 1.7fr 1fr 1fr;
}
.master_block .master_works.second {
  grid-template-columns: 1fr 1fr 1.7fr;
}

.master_block .master_works .work_item {
  display: flex;
  aspect-ratio: 1/1;
}
.master_block .master_works .work_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #FF00DD;
  box-sizing: border-box;
  border-radius: 10px;
}
.master_block .master_works.first .work_item:nth-child(1) {
  grid-column: 1;
  grid-row: 1/3;
  aspect-ratio: unset;
}
.master_block .master_works.first .work_item:nth-child(4) {
  grid-column: 2/4;
  grid-row: 2;
  aspect-ratio: 2/0.8;
}
.master_block .master_works.second .work_item:nth-child(3) {
  grid-column: 1/3;
  grid-row: 2;
  aspect-ratio: 2/0.8;
}
.master_block .master_works.second .work_item:nth-child(4) {
  grid-column: 3;
  grid-row: 1/3;
  aspect-ratio: unset;
}



section.signup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 0px;
}

section.signup .form_side_container {
  width: 100%;
  height: 100%;
  position: relative;
}
.form_side_container .form_side {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50vw;
  height: 100%;
  display: flex;
  box-sizing: border-box;
}
.form_side_container .form_side svg {
  position: absolute;
  top: 20px;
  right: 250px;
  transform: translate(-50%, 0px);
  width: 275px;
  height: auto;
  animation: 4s form_logo_anim ease-in-out infinite;
}
@keyframes form_logo_anim {
  0% {
    transform: translate(-50%, -10px);
  }
  50% {
    transform: translate(-50%, 20px);
  }
  100% {
    transform: translate(-50%, -10px);
  }
}
.form_side_container .form_side img {
  position: absolute;
  right: 0px;
  bottom: 0px;
  transform: translate(0%, 0px);
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}



section.signup .form_block {
  margin-top: 142px;
  margin-bottom: 116px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
}
section.signup .form_block h2 {
  font-size: 32px;
  margin-bottom: 70px;
  text-align: center;
}
section.signup .form_block p {
  text-align: center;
}
.form_block .form_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 80px;
}
input.input_default {
  height: 71px;
  background-color: #80006E;
  border-radius: 9px;
  padding: 0px 17px;
  border: 0px;
  font-family: 'Bion';
  font-weight: normal;
  font-style: normal;
  font-size: 32px;
  line-height: normal;
  color: #ffffff;
  outline: none;
}
input.input_default::placeholder {
  color: #fbabee;
}
.select_wrapper {
  position: relative;
}
.select_wrapper svg {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 12px;
  height: auto;
  stroke: #ffffff;
  transform: translate(0px, -50%) rotate(90deg);
  transition: 0.25s;
  transition-timing-function: ease-in-out;
  pointer-events: none;
}
.select_wrapper select:focus ~ svg {
  transform: translate(0px, -50%) rotate(-90deg);
}
.select_wrapper select {
  width: 100%;
}
select.input_default {
  height: 71px;
  background-color: #80006E;
  border-radius: 9px;
  padding: 0px 30px 0px 17px;
  border: 0px;
  font-family: 'Bion';
  font-weight: normal;
  font-style: normal;
  font-size: 32px;
  line-height: normal;
  color: #ffffff;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
select.input_default:valid {
  color: #ffffff;
}
select.input_default:invalid  {
  color: #fbabee;
}
select.input_default option {
  color: #ffffff;
}
select.input_default option[disabled] {
  color: #fbabee;
}
.form_block .default_btn {
  justify-self: center;
  background-color: transparent;
}

.privat_block {
  justify-self: center;
  display: flex;
  gap: 10px;
}
.custom_checkbox {
  justify-self: start;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.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: 14px;
  height: auto;
  stroke: #ffffff;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.custom_checkbox input:checked + .checkbox svg {
  opacity: 1;
}
.privat_block .label {
  font-size: 18px;
  color: #ffffff;
}
.privat_block .label a {
  text-decoration: underline;
  color: #ffffff;
}
.privat_block .label a:hover {
  text-decoration: none;
}

/* ========================================================================== */

footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}
footer .flower_bg_wrapper {
  left: auto;
  right: 0px;
  width: 100%;
  height: 200%;
  transform: translate(0%, 0%);
  overflow: clip;
}
footer .flower_bg_wrapper svg {
  position: absolute;
  bottom: 0px;
  left: auto;
  right: 0px;
  width: 844px;
  stroke: rgba(255, 0, 221, 60%);
  transform: translate(35%, 0%) rotate(20deg) scale(-1, 1);
}
footer h2 {
  font-size: 32px;
}
footer .map_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
footer .map {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50vw;
  height: 100%;
  filter: grayscale(1);
}
footer .information {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 80px;
  box-sizing: border-box;
}
footer .information .contacts_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
footer .information .contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
footer .information .social {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
footer .information .footer_social_block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
footer .information .footer_social_block h2 {
  color: #FF00DD;
}
footer .information .footer_social_block:last-child {
  margin-top: 30px;
}

.social_list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 60px;
  gap: 15px;
}
.social_item {
  width: 100%;
  height: auto;
  display: flex;
}
.social_item svg {
  width: 100%;
  height: auto;
  fill: #FF00DD;
}
.social_item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ========================================================================== */

.contacts_page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.contacts_page h2 {
  font-size: 32px;
}
.contacts_page .map_wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.contacts_page .map {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
}
.contacts_page .information {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.contacts_page .information .contacts_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
.contacts_page .information .contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.contacts_page .information .social {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.contacts_page .information .footer_social_block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.contacts_page .information .footer_social_block h2 {
  color: #FF00DD;
}
.contacts_page .information .footer_social_block:last-child {
  margin-top: 30px;
}
section.secondpage .contacts_page .information h2 {
  margin: 0px;
}

/* ========================================================================== */

.secondpage_wrapper {
  margin-top: calc(110px + 10px);
}

.portfolio_filter_list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.portfolio_filter_list .item {
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0px 15px;
  /* background-color: #FF00DD; */
  border: 1px solid #FF00DD;
  box-sizing: border-box;
  font-size: 20px;
  color: #FFFFFF;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
}
.portfolio_filter_list .item.active {
  background-color: #80006E;
}



.portfolio_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.portfolio_grid .item {
  aspect-ratio: 1 / 1.26;
  height: 100%;
  display: flex;
  border-radius: 10px;
  border: 2px solid #80006E;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.portfolio_grid .item .item_bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  border-radius: 10px;
  display: flex;
  filter: brightness(0.5) blur(10px);
  pointer-events: none;
}
.portfolio_grid .item .item_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  pointer-events: none;
}



/* ========================================================================== */

section.secondpage h1 {
  margin-bottom: 32px;
}
section.secondpage h2 {
  margin-bottom: 32px;
}
section.secondpage h3 {
  margin-bottom: 32px;
}
section.secondpage ul,
section.secondpage ol {
  margin: 32px 0px;
  /* margin-bottom: 32px; */
}
section.secondpage ul li,
section.secondpage ol li {
  margin-bottom: 24px;
}

.service_page_head {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 20px;
  margin-bottom: 64px;
}
.service_gal_block {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 20px;
}
.service_gal_block .item {
  display: flex;
  aspect-ratio: 1/1;
  border: 2px solid #80006E;
  border-radius: 10px;
  box-sizing: border-box;
}
.service_gal_block .item:nth-child(1){
  grid-column: 1;
  grid-row: 1/3;
  aspect-ratio: unset;
  height: 100%;
}
.service_gal_block .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.work_stages_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-bottom: 64px;
}
.work_stages_list .work_step {
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #FF00DD;
  font-weight: 300;
  font-size: 32px;
  line-height: normal;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto auto;
}
.work_stages_list .work_step .counter {
  align-self: start;
  justify-self: end;
  color: #FF00DD;
}
.work_stages_list .work_step .title {
  color: #ffffff;
}
.work_stages_list .work_step .description {
  color: #987E98;
}

.service_price_list {
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}
.service_price_list .price_row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 0px 12px 0px;
  border-bottom: 3px solid #80006E;
  font-size: 32px;
  margin: 0px;
  font-weight: 300;
  color: #ffffff;
}
.service_price_list .price_row .title {
  text-transform: uppercase;
}
.service_price_list .price_row .title .explanation {
  text-transform: none;
  color: #987E98;
}
.service_price_list .price_row .price {

}

.service_master {
  margin-top: 80px;
}
.service_portfolio {
  margin-top: 80px;
}

/* ========================================================================== */

.mob_burger_placeholder {
  align-self: center;
  display: none;
  grid-area: burger;
  width: 30px;
  height: 30px;
}
.mob_burger {
  top: 22px;
  right: 25px;
  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: #ff006c;
  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;
  will-change: display, transform;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mobmenu_wrapper::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 9, 20, 80%);
  backdrop-filter: blur(10px);
  z-index: -1;
}
.mobmenu_wrapper.active {
  transform: translate(-100%, 0%);
}
.mobmenu {
  height: 100%;
  max-height: 100%;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto auto;
  justify-items: center;
  grid-row-gap: 30px;
  padding: 50px var(--side-padding);
  box-sizing: border-box;
}
.mobmenu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.mobmenu nav .menu_item {
  display: flex;
  flex-direction: column;
}
.mobmenu nav .menu_item .menu_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
  border-left: 2px solid rgba(128, 0, 110, 0%);
  box-sizing: border-box;
}
.mobmenu nav .menu_item.open > .menu_link {
  border-left: 2px solid rgba(128, 0, 110, 90%);
}
.mobmenu nav .menu_item .menu_link .arrow {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobmenu nav .menu_item .menu_link .arrow svg {
  width: 10px;
  height: auto;
  transition: 0.25s;
  transition-timing-function: ease-in-out;
  transform: rotate(90deg);
}
.mobmenu nav .menu_item.open .menu_link .arrow svg {
  transform: rotate(-90deg);
}
.mobmenu nav .menu_item.active > .menu_link {
  color: #ff00dd;
}

.mobmenu nav .menu_item.has_subm {

}
.mobmenu nav .menu_item .submenu_wrapper {
  position: static;
  visibility: visible;
  opacity: 1;
  overflow: hidden;
  height: 0px;
}
.mobmenu nav .menu_item .submenu {
  background: transparent;
  gap: 15px;
  border-left: 2px solid rgba(128, 0, 110, 90%);
  border-radius: 0px;
}
.mobmenu nav .menu_item .submenu .menu_link {

}


.mobmenu .header_logo {
  width: auto;
  margin-bottom: 25px;
  display: flex;
}
.mobmenu .header_logo svg {
  width: 150px;
  height: auto;
}

.mobmenu .header_contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.mobmenu .header_contacts .address_item span {
  max-width: 230px;
}

.mobmenu .social_block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.mobmenu .social_block .group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* ========================================================================== */

.not_found_page {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.not_found_container {
  justify-self: center;
  display: flex;
  justify-content: center;
  background: #111016;
  margin: 0px auto;
  position: relative;
}
.not_found_container img {
  width: 100%;
  max-width: 500px;
  height: auto;
  mix-blend-mode: lighten;
  pointer-events: none;
}

html .not_found_container h1 {
  font-family: "Roboto Mono", monospace;
}
.not_found_container h1 {
  position: absolute;
  top: 76%;
  left: 58%;
  transform: translate(-50%, -50%) skewY(-4deg) skewX(-10deg);
  margin: 0px;
  font-size: 120px;
  font-family: 'Bion';
  font-weight: 200;
  /* color: #ffffff; */
  /* mix-blend-mode: unset; */
  /* opacity: 80%; */
  /* text-shadow: 1px 1px 1px #595959, 2px 2px 2px #595959; */
  background: linear-gradient(140deg, rgba(255, 255, 255, 10%), rgba(255, 255, 255, 80%), rgba(255, 255, 255, 10%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.not_found_text {
  font-family: "Roboto Mono", monospace;
  text-align: center;
  margin: 32px 0px;
  font-weight: 300;
}









/* ========================================================================== */
