@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

html,
body {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif !important;
  background-color: #F1F1F1 !important;
  overflow-x: hidden;
  font-weight: 400;
  color: #16232B;
  font-feature-settings: 'pnum' on, 'lnum' on;
}

textarea {
  border: none;
}

button,
input,
textarea {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  cursor: pointer;
  font-feature-settings: 'pnum' on, 'lnum' on;
}

.main2MobileImage {
  display: none;
}

.btn-basic {
  padding: 15px 20px;
  background-color: #16232B;
  color: #FFFFFF;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-basic:hover {
  background-color: #FF8912;
}

body {
  padding-top: 80px;
}



header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;
  transition: all 0.3s ease;
  padding: 20px 30px 0;
  max-width: 1400px;
  left: 50%;
  transform: translateX(-50%);
}

header .header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}


header .header .menu-header {
  display: flex;
  flex-direction: column;
  gap: 17px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

header .header .menu-header .menu {
  text-decoration: none;
  color: #16232B;
  font-size: 14px;
}

header .header .menu-header .menu:hover {
  color: #ff8912;
}


header .header .burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}


.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  box-sizing: border-box;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background-color: #fff;
  z-index: 2000;
  padding: 74px 20px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.close-menu-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.close-menu-btn img {
  width: 24px;
  height: 24px;
  display: block;
}

.menu-links-wrapper {

  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu .menu {
  text-decoration: none;
  color: #16232B;
  font-size: 14px;
  transition: color 0.2s ease;
  padding-bottom: 8px;
}

.mobile-menu .menu:hover {
  color: #ff8912;
}

.menu-links-wrapper .menu:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}


header.scrolled {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 15px 30px;
  width: 90%;
  top: 10px;
  border-radius: 10px;
}

header.scrolled .header {
  align-items: center;
}


header.scrolled .header .menu-header {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

header.scrolled .header .burger {
  display: block;
}

footer .block-footer {
  background-color: #16232b;
}

footer .block-footer .footer-one {
  padding: 40px 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

footer .block-footer .footer-one .block-one {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

footer .block-footer .footer-one .block-one .block-btn {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

footer .block-footer .footer-one .block-one .block-btn .btn-basic {
  font-size: 16px;
  font-weight: 500;
  padding: 15px 20px;
  white-space: nowrap;
}

footer .block-footer .footer-one .block-one .block-btn .btn-question {
  background: #ffffff;
  color: #16232b;
}

footer .block-footer .footer-one .block-one .block-btn .btn-question:hover {
  background-color: #ff8912;
  border-color: #ff8912;
  color: #fff;
}

footer .block-footer .footer-one .block-one .block-btn .btn-review {
  background: #16232b;
  border: 1px solid #ffffff;
  color: #ffffff;
}

footer .block-footer .footer-one .block-one .block-btn .btn-review:hover {
  border-color: #ff8912;
  color: #ff8912;
}

footer .block-footer .footer-one .block-one .contacts {
  display: flex;
  flex-direction: row;
  gap: 10px;
  transition: opacity 0.3s ease;
}

footer .block-footer .footer-one .block-one .contacts .special {
  padding: 10px 15px;
}

footer .block-footer .footer-one .block-two h3 {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 10px;
}

footer .block-footer .footer-one .block-two p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 120%;
}

footer .block-footer .footer-one .block-three {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

footer .block-footer .footer-one .block-three .tel h3,
footer .block-footer .footer-one .block-three .email h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

footer .block-footer .footer-one .block-three .tel p,
footer .block-footer .footer-one .block-three .tel a,
footer .block-footer .footer-one .block-three .email p,
footer .block-footer .footer-one .block-three .email a {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}

footer .block-footer .footer-one .block-four {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

footer .block-footer .footer-one .block-four a {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

footer .block-footer .footer-one .block-four a:hover {
  color: #ff8912;
}

footer .block-footer .footer-two-container {
  background-color: #0f181d;
  padding: 20px 50px;
}

footer .block-footer .footer-two {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

footer .block-footer .footer-two .one,
footer .block-footer .footer-two a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  opacity: 50%;
}

footer .block-footer .footer-two a:hover {
  color: #FF8912;
  opacity: 100%;
}



.main-1 {
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  box-sizing: border-box;
  padding-top: 100px;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 120px;
}

.main-1 .block-main-1 .img-mob {
  display: none;
}

.main-1 .block-main-1 .img-font {
  position: absolute;
  top: -270px;
  max-width: 90%;
}

.main-1 .block-main-1 .img-font img {
  max-width: 100%;
  height: auto;
}

.main-1 .block-main-1 .img-font video {
  width: 100%;
}

.main-1 .block-main-1 .img-mob video {
  width: 100%;
}

.main-1 .block-main-1 .inf-main-1 {
  display: flex;
  position: relative;
  z-index: 1;
  padding-top: 290px;
  flex-direction: column;
  gap: 23px;
}

.main-1 .block-main-1 .inf-main-1 .heading .heading-main-1 {
  margin: 0;
  text-transform: uppercase;
  font-size: 48px;
  font-weight: 400;
  line-height: 110%;
  margin-right: 400px;
}

.main-1 .block-main-1 .inf-main-1 .inf {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 97px;
}

.main-1 .block-main-1 .inf-main-1 .inf .text {
  max-width: 550px;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 2%;
  margin: 0;
}

.main-1 .block-main-1 .inf-main-1 .inf .contacts {
  position: absolute;
  bottom: 0;
  z-index: 50;
  right: 55px;
  transition: opacity 0.3s ease;
}

.main-1 .block-main-1 .inf-main-1 .inf .contacts .special {
  padding: 13px 15px;
}



.main-2 {
  background-color: #ffffff;
}

.main-2 .block-main-2 {
  display: flex;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.main-2 .block-main-2 .img img {
  display: block;
}

.main-2 .block-main-2 .block-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  padding-left: 30px;
}

.main-2 .block-main-2 .img {
  max-width: 500px;
}

.main-2 .block-main-2 .img img {
  width: auto;
  height: 100%;
}

.main-2 .block-main-2 .block-text .block-one {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.main-2 .block-main-2 .block-text .block-one .inf {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-2 .block-main-2 .block-text .inf .heading {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: center;
}

.main-2 .block-main-2 .block-text .inf .heading .img {
  border-radius: 50%;
  background-color: #16232b;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.main-2 .block-main-2 .block-text .inf .heading .img img {
  width: 24px;
}

.main-2 .block-main-2 .block-text .block-one .inf .heading .heading-main-2 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
}

.main-2 .block-main-2 .block-text .block-one .inf p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}

.main-2 .block-main-2 .block-text .block-two .inf {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-2 .block-main-2 .block-text .block-two .inf .heading .heading-main-2 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
}

.main-2 .block-main-2 .block-text .block-two .inf p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}



body.modal-open {
  height: 100vh;
  overflow-y: hidden;
}

.popap {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  padding-top: 40px;
  overflow-y: hidden;
  box-sizing: border-box;
}

.popap.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow-y: auto;
}

.popap__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.29);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1;
}

.popap__content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 640px;
  width: 100%;
  background-color: #fff;
  padding: 60px 70px 90px 70px;
  margin-bottom: 40px;
}

.popap__content .close-popap {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.popap__content .close-popap img {
  display: block;
  width: 25px;
  height: 25px;
}


.popap__content .popap-heading {
  padding-bottom: 40px;
  text-transform: uppercase;
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  text-align: center;
}

.popap__content form .form-name,
.popap__content form .form-phone,
.popap__content form .form-email,
.popap__content form .form-coment {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.popap__content form .form-name input,
.popap__content form .form-phone input,
.popap__content form .form-email input,
.popap__content form .form-coment input {
  border: none;
  width: 100%;
  height: 35px;
  box-sizing: border-box;
  margin-bottom: 15px;
  margin-top: 25px;
  padding-left: 15px;
}

.popap__content form .form-name input::after,
.popap__content form .form-phone input::after,
.popap__content form .form-email input::after,
.popap__content form .form-coment input::after {
  border: none;
}

.popap__content form .form-name,
.popap__content form .form-phone,
.popap__content form .form-email {
  border-bottom: 1px solid rgba(22, 35, 43, 0.4235294118);
}

.popap__content form .form-coment textarea {
  border: none;
  padding-top: 25px;
  padding-left: 15px;
}

.popap__content form .form-coment {
  border: none;
}

.popap__content form .hidden-file-input {
  display: none;
}

.popap__content form .custom-file-label {
  display: inline-block;
  cursor: pointer;
  margin: 11px 0;
  font-size: 14px;
  text-decoration: underline;
  color: #000000;
  opacity: 50%;
}

.popap .popap__content form .file-upload-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  border: none;
  border-bottom: 1px solid rgba(22, 35, 43, 0.4235294118);
  margin-bottom: 25px;
}

.popap .popap__content form .custom-file-label {
  display: inline-block;
  cursor: pointer;
  margin: 11px 0;
  font-size: 14px;
  text-decoration: underline;
  color: #000000;
  opacity: 50%;
  transition: opacity 0.2s;
}

.popap .popap__content form .custom-file-label:hover {
  opacity: 1;
}

.popap .popap__content form .hidden-file-input {
  display: none;
}

.popap .popap__content form #file-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease;
  margin-top: 5px;
  margin-bottom: 5px;
  padding-left: 15px;
  width: 100%;
}

.popap .popap__content form #file-info.active {
  opacity: 1;
  max-height: 30px;
}

.popap .popap__content form .file-name {
  font-size: 12px;
  color: #16232b;
  opacity: 0.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 10px;
}

.popap .popap__content form .remove-file {
  background: none;
  border: none;
  color: #888;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.popap .popap__content form .remove-file:hover {
  color: #ff0000;
}


.popap__content form .contacts-form {
  padding-top: 30px;
  padding-bottom: 30px;
}

.popap__content form .contacts-form h3 {
  margin: 0;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}

.popap__content form .contacts-form .btn-contacts {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 15px;
}

.popap__content form .contacts-form .btn-contacts input[type=radio] {
  display: none;
}

.popap__content form .contacts-form .btn-contacts label {
  display: block;
  padding: 15px 0;
  border-radius: 10px;
  border: 1px solid #16232b;
  background-color: #fff;
  color: #16232b;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.popap__content form .contacts-form .btn-contacts label:hover {
  background-color: #FF8912;
  border-color: #FF8912;
  color: #fff;
}

.popap__content form .contacts-form .btn-contacts input[type=radio]:checked+label {
  background-color: #16232b;
  color: #fff;
}

.popap__content form .contacts-form .btn-contacts input[type=radio]:checked+label:hover {
  background-color: #FF8912;
}

.popap__content form .btn-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding-bottom: 30px;
}

.popap__content form .btn-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.popap__content form .btn-checkbox label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  user-select: none;
}

.popap__content form .btn-checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid #16232b;
  transition: all 0.2s ease;
}

.popap__content form .btn-checkbox label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid #16232b;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.popap__content form .btn-checkbox input[type=checkbox]:checked+label::after {
  opacity: 1;
}

.popap__content form .btn-basic {
  width: 100%;
}

.about-2 {
  padding: 0 30px;
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-2 img {
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}

.about-2 .about-2__image {
  border-radius: 10px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.about-2 h2 {
  font-size: 48px;
  font-weight: 400;
  margin: 0;
  padding-bottom: 30px;
}

.about-2 .text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-2 .text p {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  line-height: normal;
}

.about-3 {
  padding: 0 30px;
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 120px;
}

.about-3 .heading-about-3 {
  margin: 0;
  padding-bottom: 40px;
  font-size: 48px;
  font-weight: 400;
}

.about-3 .block-menu-about {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about-3 .block-menu-about .block {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.about-3 .block-menu-about .block p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
}

.about-3 .block-menu-about .block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 57.98%, rgba(0, 0, 0, 0.9) 93.81%);
  border-radius: 0 0 20px 20px;
  z-index: 1;
}

.about-3 .block-menu-about .block:nth-child(1) {
  background-image: url("/wp-content/themes/kristall/assets/img/about-us/6afdf5ba8a8118737fc38914d76b9f37578003cd.png");
}

.about-3 .block-menu-about .block:nth-child(2) {
  background-image: url("/wp-content/themes/kristall/assets/img/about-us/5f4fb8c2086d190866b017222b179b09a8631e55.png?v=1.0.1");
}

.about-3 .block-menu-about .block:nth-child(3) {
  background-image: url("/wp-content/themes/kristall/assets/img/about-us/07d8580746bf7426a2a6a0dbceaa066fa122448a.jpg");
}

.about-3 .block-menu-about .block:nth-child(4) {
  background-image: url("/wp-content/themes/kristall/assets/img/about-us/d3d4bfdc5561774ccbd13b8871c110f58f348919.png");
}

.about-3 .block-menu-about .block:nth-child(5) {
  background-image: url("/wp-content/themes/kristall/assets/img/about-us/d0cb8f5829223792b1ca0f31d8fd0a221a70cc0b.png");
}

.about-3 .block-menu-about .block:nth-child(6) {
  background-image: url("/wp-content/themes/kristall/assets/img/about-us/aced55eeb24f34eacb47bc9b856a47a300b70d2b.png");
}

.about-3 .block-menu-about .block:nth-child(7) {
  background-image: url("/wp-content/themes/kristall/assets/img/about-us/8b8613e57e87509a63e757a8f2dfa0692aec0fa0.png");
}

.about-3 .block-menu-about .block:nth-child(8) {
  background-image: url("/wp-content/themes/kristall/assets/img/about-us/a27dbca6f4e326b9bc1a812675da85ea8f936dd5.png");
}

.about-3 .block-menu-about .block:nth-child(9) {
  background-image: url("/wp-content/themes/kristall/assets/img/about-us/214f61a81ec11b86afad61d3fa6cfd871e16d3fb.png");
}

.about-3 .block-menu-about .block:nth-child(10) {
  background-image: url("/wp-content/themes/kristall/assets/img/about-us/e3690beaf8ffa6436b8cbe15b6e8a66be1c59183.png?v=1.0.1");
}

.about-3 .block-menu-about .block:nth-child(11) {
  background-image: url("/wp-content/themes/kristall/assets/img/about-us/Frame 1948754386-1.jpg");
}

.about-3 .block-menu-about .block:nth-child(12) {
  background-image: url("/wp-content/themes/kristall/assets/img/about-us/Frame 1948754386.jpg");
}

.form {
  background-color: #fff;
  margin-bottom: 120px;
}

.form .block {
  position: relative;
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.form .block .form-block {
  max-width: 35%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.form .block .form-block h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 10px;
}

.form .block .form-block h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
}

.form .block .form-block form .form-name,
.form .block .form-block form .form-phone,
.form .block .form-block form .form-email,
.form .block .form-block form .form-coment {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form .block .form-block form .form-name input,
.form .block .form-block form .form-phone input,
.form .block .form-block form .form-email input,
.form .block .form-block form .form-coment input {
  border: none;
  width: 100%;
  outline: #FF8912;
  padding-bottom: 15px;
  padding-top: 15px;
  padding-left: 15px;
}

.form .block .form-block form .form-name input::after,
.form .block .form-block form .form-phone input::after,
.form .block .form-block form .form-email input::after,
.form .block .form-block form .form-coment input::after {
  border: none;
}

.form .block .form-block form .form-name,
.form .block .form-block form .form-phone,
.form .block .form-block form .form-email {
  border-bottom: 1px solid rgba(22, 35, 43, 0.4235294118);
}

.form .block .form-block form .form-coment #coment {
  border: none;
  outline: none;
  padding: 0;
  font-family: "Raleway", sans-serif !important;
}

.form .block .form-block form .form-coment {
  border: none;
  padding-top: 25px;
  padding-left: 15px;
}

.form .block .form-block form .hidden-file-input {
  display: none;
}

.form .block .form-block form .custom-file-label {
  display: inline-block;
  cursor: pointer;
  margin: 11px 0;
  font-size: 14px;
  text-decoration: underline;
  color: #000000;
  opacity: 50%;
}

.form .block .form-block form .file-upload-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  border: none;
  border-bottom: 1px solid rgba(22, 35, 43, 0.4235294118);

}

.form .block .form-block form #file-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease;
  margin-top: 5px;
}

.form .block .form-block form #file-info.active {
  opacity: 1;
  max-height: 30px;
}

.form .block .form-block form .file-name {
  font-size: 12px;
  color: #16232b;
  opacity: 0.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 10px;
}


.form .block .form-block form .remove-file {
  background: none;
  border: none;
  color: #888;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.form .block .form-block form .remove-file:hover {
  color: #ff0000;
}


.form .block .form-block form .contacts-form {
  padding-top: 30px;
  padding-bottom: 30px;
}

.form .block .form-block form .contacts-form h3 {
  margin: 0;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}

.form .block .form-block form .contacts-form .btn-contacts {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 15px;
}

.form .block .form-block form .contacts-form .btn-contacts input[type=radio] {
  display: none;
}

.form .block .form-block form .contacts-form .btn-contacts label {
  display: block;
  padding: 15px 0;
  border-radius: 10px;
  border: 1px solid #16232b;
  background-color: #fff;
  color: #16232b;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.form .block .form-block form .contacts-form .btn-contacts label:hover {
  background-color: #FF8912;
  border-color: #FF8912;
  color: #fff;
}

.form .block .form-block form .contacts-form .btn-contacts input[type=radio]:checked+label {
  background-color: #16232b;
  color: #fff;
}

.form .block .form-block form .contacts-form .btn-contacts input[type=radio]:checked+label:hover {
  background-color: #FF8912;
}

.form .block .form-block form .btn-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding-bottom: 30px;
}

.form .block .form-block form .btn-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.form .block .form-block form .btn-checkbox label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  user-select: none;
}

.form .block .form-block form .btn-checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid #16232b;
  transition: all 0.2s ease;
}

.form .block .form-block form .btn-checkbox label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid #16232b;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.form .block .form-block form .btn-checkbox input[type=checkbox]:checked+label::after {
  opacity: 1;
}

.form .block .form-block form .btn-basic {
  width: 100%;
}

.form .block .img {
  position: absolute;
  max-width: 58%;
  width: 100%;
  right: 30px;
  bottom: 0;
  overflow: hidden;
}

.form .block .img img {
  width: 100%;
  height: auto;
  display: block;
}

.form .block .img .text-img {
  position: absolute;
  bottom: -1px;
}

.contacts-2 {
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 190px;
}

.contacts-2 .contacts-2-heading {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  padding-bottom: 40px;
}

.contacts-2 .contacts {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 30px;
}

.contacts-2 .contacts .office {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts-2 .contacts .office h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.contacts-2 .contacts .office p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

.contacts-2 .contacts .block-three {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contacts-2 .contacts .block-three .tel h3,
.contacts-2 .contacts .block-three .email h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contacts-2 .contacts .block-three .tel p,
.contacts-2 .contacts .block-three .tel a,
.contacts-2 .contacts .block-three .email p,
.contacts-2 .contacts .block-three .email a {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  color: #16232B;
  text-decoration: none;
}

.contacts-2 .contacts .block-four {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts-2 .contacts .block-four h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.contacts-2 .contacts .block-four .contacts {
  display: flex;
  flex-direction: row;
  gap: 10px;
  transition: opacity 0.3s ease;
}

.contacts-2 .contacts .block-four .contacts a {
  border-radius: 50px;
  width: 40px;
  height: 40px;
  background-color: #fff;
}

.contacts-2 .contacts .block-four .contacts a img {
  width: 100%;
  height: 100%;
  display: block;
}

.contacts-2 .contacts .block-four .contacts .special {
  padding: 10px 15px;
}

.contacts-2 .map {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}

.contacts-2 .map iframe {
  width: 100%;
}

.productiob-1 {
  padding: 60px 30px 0;
  box-sizing: border-box;
  display: flex;
  gap: 5px;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.productiob-1 a,
.productiob-1 p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #16232B;
}

.productiob-1 a {
  opacity: 30%;
  text-decoration: none;
  cursor: pointer;
}


.production-2 {
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 120px;
}

.production-2 h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  padding-bottom: 40px;
}

.production-2 .block-catalog-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}

.production-2 .block-catalog-two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.production-2 .block-catalog-two-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}

.block-catalog-item {
  position: relative;
  display: block;
  box-sizing: border-box;
  color: #16232B;
  text-decoration: none;
  overflow: hidden;
  min-height: 390px;
  padding: 30px;
  border-radius: 10px;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
}

.block-catalog-two>.block-catalog-item {
  min-height: auto;
  max-height: 150px;
}

.block-text {
  position: relative;
  z-index: 2;
}

.text p {
  font-size: 16px;
  margin: 0;
  padding-top: 10px;
}

.text .flex-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text .flex-block.special-gap {
  justify-content: flex-start;
  gap: 15px;
}

.text .flex-block h3 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.block-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.btn-circle img {
  width: 36px;
  height: 36px;
}

.production-2 .bg-glass {
  background-image: url('/wp-content/themes/kristall/assets/img/services/desktop/Frame 1948754300.jpg');
}

.production-2 .bg-triplex {
  background-image: url('/wp-content/themes/kristall/assets/img/services/desktop/Frame 1948754301.jpg');
}

.production-2 .bg-mirror {
  background-image: url('/wp-content/themes/kristall/assets/img/services/desktop/Frame 1948754303.jpg');
}

.production-2 .bg-stemalit {
  background-image: url('/wp-content/themes/kristall/assets/img/services/desktop/Frame 1948754302.jpg');
}



.production-3 {
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 190px;
}

.production-3 h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  padding-bottom: 40px;
}

.production-3 .block-production-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  height: 580px;
  margin-bottom: 60px;
}

.production-3 .block-production-3 .group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.production-3 .block-production-3 .group-two {
  display: flex;
  flex-direction: column;
}

.production-3 .btn {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
}

.production-3 .btn p {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

.production-3 .btn .btn-basic {
  padding: 15px 120px 15px 120px;
  box-sizing: border-box;
  text-align: center;
}

.production-3 .block {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 10px;
  text-decoration: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-position: center;
  color: #16232B;
  transition: all 0.3s ease;
}

.production-3 .block .block-link,
.block-catalog-item .btn-circle {
  color: #16232B;
  transition: all 0.3s ease;
}

.production-3 .block:hover .block-link,
.block-catalog-item:hover .btn-circle {
  color: #FF8912;
}

.production-3 .group-two .block {
  height: 100%;
}


.production-3 .block .inf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.production-3 .block .inf h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  color: #16232B;
}

.production-3 .block .block-link {
  display: inline-block;
}

.production-3 .block .inf img {
  width: 36px;
  height: 36px;
  display: block;
}


.production-3 .block .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(187.84deg, #FFFFFF 14.67%, rgba(255, 255, 255, 0) 64.56%);
  border-radius: 10px;
}

.glass-2 {
  padding: 0 30px;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 190px;
  box-sizing: border-box;
}

.glass-2 h1 {
  margin: 0;
  text-transform: uppercase;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 10px;
}

.glass-2 .block-glass-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.glass-2 .block-glass-2 .one {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.glass-2 .block-glass-2 .two {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-height: 550px;
  border-radius: 10px;
  margin-top: 100px;
}

.glass-2 .block-glass-2 .one .text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.glass-2 .block-glass-2 .one .text p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

.glass-2 .block-glass-2 .one .inf-block h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 20px;
}

.glass-2 .block-glass-2 .one .inf-block .block {
  display: flex;
  flex-direction: column;
}

.glass-2 .block-glass-2 .one .inf-block .block .inf:first-child {
  border-top: 1px solid rgba(22, 35, 43, 0.3);
}

.glass-2 .block-glass-2 .one .inf-block .block .inf {
  padding: 15px 0 15px;
  border-bottom: 1px solid rgba(22, 35, 43, 0.3);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.glass-2 .block-glass-2 .one .inf-block .block .inf.row {
  grid-template-columns: 1fr;
}

.glass-2 .block-glass-2 .one .inf-block .block .inf h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.glass-2 .block-glass-2 .one .inf-block .block .inf p {
  line-height: 110%;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.glass-2 .block-glass-2 .two img {
  width: 100%;
}


.videoPlayer .playIcon {
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  z-index: 3;
  left: 52%;
  top: 54%;
  translate: -50% -50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  cursor: pointer;
}

.videoPlayer .playIcon svg {
  position: absolute;
  left: 27px;
  top: 21px;
}

.videoPlayer .pauseIcon {
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  z-index: 3;
  left: 52%;
  top: 54%;
  translate: -50% -50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
}

.logoRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

footer .block-footer .footer-one .block-one .logoRow .contacts {
  display: none;
}

footer .block-footer .footer-one .block-one .block-four {
  display: none;
}

/* Ошибки полей */
input.error, textarea.error {
    border-color: #e74c3c !important;
    background: #fff5f5;
}
.field-error {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 4px;
    animation: fadeIn 0.15s ease;
}

/* Уведомления */
.form-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    z-index: 10000;
    display: none;
    max-width: 350px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease;
}
.form-notification.success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}
.form-notification.error {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}
.form-notification .notif-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    margin-left: 12px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.form-notification .notif-close:hover { opacity: 1; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Адаптив уведомлений */
@media (max-width: 480px) {
    .form-notification {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}