@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=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");
body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: system-ui;
  max-width: 1700px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow-x: hidden;
}

.header__burger {
  position: relative;
  z-index: 10;
  top: 10px;
  right: 0px;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 20px;
  margin-bottom: 30px;
}

.header__burger.active::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 13px;
}

.header__burger.active::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: 15px;
  left: 5px;
}

.header__burger.active span {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 2px;
}

.header__burger::after {
  content: '';
  background-color: #f8f1e5cc;
  position: absolute;
  width: 50%;
  height: 2px;
  left: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.header__burger::before {
  content: '';
  background-color: #f8f1e5cc;
  position: absolute;
  width: 50%;
  height: 2px;
  right: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.header__burger span {
  background-color: #f8f1e5cc;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  top: 9px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.header__burger::before {
  top: 0;
}

.header__burger::after {
  bottom: 0;
}

.header__links-blocks {
  position: fixed;
  width: 100%;
  height: 70%;
  left: 0%;
  bottom: -100%;
  background-color: #473421;
  z-index: 5 !important;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  text-align: center;
}

.header__links-blocks a {
  width: 100%;
  text-transform: uppercase;
  font-weight: 400;
  padding: 10px 0;
}

.header__links-blocks.active {
  bottom: 0;
}

.header__links-blocks.active a {
  color: #d7b780;
  font-size: 14px;
  padding: 10px;
  font-weight: 500;
}

.header__links-blocks a {
  text-decoration: none;
}

span {
  display: inline-block;
}

a {
  cursor: pointer;
}

.years {
  color: #ffffffd4;
  font-size: 24px;
  font-weight: 500;
  margin: 18px;
}

.review__container-btns {
  z-index: 1 !important;
}

/* ===== POPUP OFFER ===== */
.popup-offer {
  position: fixed;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
  z-index: 9999;
}

.popup-offer--visible {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.popup-offer__content {
  position: relative;
  max-width: 420px;
  width: 100%;
  border-radius: 20px;
  padding: 22px 20px 20px;
  background: linear-gradient(135deg, #1c140e, #362217);
  -webkit-box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
          box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  color: #f5f2ea;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.popup-offer__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3);
  color: #f5f2ea;
  font-size: 16px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup-offer__title {
  margin-right: 32px;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.popup-offer__text {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 16px;
  color: rgba(245, 242, 234, 0.85);
}

.popup-offer__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 12px 0px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0d39b, #f7b652);
  color: #2c1b0f;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
  -webkit-transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
  transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
  position: relative;
  overflow: hidden;
}

.popup-offer__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  opacity: 0.8;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-animation: hireBtnShine 2.8s ease-in-out infinite;
          animation: hireBtnShine 2.8s ease-in-out infinite;
}

.popup-offer__btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
          box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}

.popup-offer__btn:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
}

@media (min-width: 768px) {
  .popup-offer {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .popup-offer__content {
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
  .popup-offer--visible .popup-offer__content {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: -webkit-transform 0.35s ease;
    transition: -webkit-transform 0.35s ease;
    transition: transform 0.35s ease;
    transition: transform 0.35s ease, -webkit-transform 0.35s ease;
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  z-index: 1 !important;
}

.logo-body {
  z-index: -1;
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo-body img {
  z-index: 0;
  position: fixed;
  width: 120px;
  top: 0;
}

.wrapper {
  z-index: 1;
  padding: 1.8%;
  padding-bottom: 0;
  background: #322416;
  background: radial-gradient(circle, rgba(50, 36, 22, 0.93) 0%, #322416 61%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.header__container-hire-link a {
  margin-right: 20px;
}

.header {
  position: relative;
  z-index: 999;
}

.header a {
  text-decoration: none;
}

.header__container {
  margin: -1.8% -1.8%  1.8% -1.8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__container-logo {
  position: relative;
  font-family: "Orbitron", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 20px;
  margin-left: 30px;
  color: #f8f1e5cc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__container-logo img {
  width: 100px;
  display: block;
  position: relative;
  z-index: 1;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.4));
}

.header__container-hire-link {
  margin: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Orbitron", sans-serif;
}

.header__container-hire-link a {
  text-decoration: none;
  color: #d7b780;
  border: 1px solid #d7b780;
  padding: 10px;
  border-radius: 50%;
  -webkit-transition: all .2s;
  transition: all .2s;
  display: block;
}

.header__container-hire-link a:hover {
  background-color: #d7b780;
  color: #f8f1e5cc;
  border: 1px solid #d7b780;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.header__container-hire-link-language {
  margin: 0 30px 0 0;
}

.header__container-hire-link-hire-me a {
  border-radius: 20px;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.header__container-hire-link-hire-me a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  opacity: 0.8;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-animation: hireBtnShine 2.8s ease-in-out infinite;
          animation: hireBtnShine 2.8s ease-in-out infinite;
}

.header__container-hire-link-hire-me-nax {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  color: #322416;
  margin-bottom: -38px;
  text-transform: uppercase;
}

.header__container-hire-link-hire-me-nax a {
  text-decoration: none;
  display: inline-block;
  border-radius: 20px;
  border: 1px solid #ecd6b1;
  border-radius: 27px;
  width: 100%;
  text-align: center;
  background-color: #d7b780;
  color: #322416;
  padding: 6%;
  margin-left: -20px;
  font-weight: 500;
  -webkit-box-shadow: 0px 0px 30px #d7b780;
          box-shadow: 0px 0px 30px #d7b780;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.header__container-hire-link-hire-me-nax a:hover {
  -webkit-box-shadow: 0px 0px 10px #d7b780;
          box-shadow: 0px 0px 10px #d7b780;
}

.header__container-hire-link-hire-me-nax a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  opacity: 0.8;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-animation: hireBtnShine 2.8s ease-in-out infinite;
          animation: hireBtnShine 2.8s ease-in-out infinite;
}

.header-hero__container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-hero__container::before {
  content: 'Art{dev}';
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 200px;
  font-weight: 700;
  color: #36484410;
  font-family: "Orbitron", sans-serif;
  z-index: 1;
}

.header-hero__container-left {
  max-width: 40%;
  z-index: 4;
}

.header-hero__container-left-slogan-data {
  line-height: 1.05;
}

.header-hero__container-left-slogan-data-slogan {
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  color: #f8f1e5cc;
  font-weight: 600;
  line-height: 1.2;
}

.header-hero__container-left-slogan-data-data {
  display: inline-block;
  vertical-align: top;
  height: 100%;
  font-size: 14px;
  opacity: 0.6;
  text-transform: uppercase;
  margin-right: 100px;
  color: #f8f1e5cc;
  font-family: "Orbitron", sans-serif;
}

.header-hero__container-left-slogan-data-autor {
  display: block;
  vertical-align: top;
  text-align: right;
  height: 100%;
  font-size: 14px;
  opacity: 0.6;
  text-transform: uppercase;
  margin-right: 100px;
  color: #f8f1e5cc;
  font-family: "Orbitron", sans-serif;
  font-style: normal;
}

.header-hero__container-left-slogan-data-data-aliat {
  margin-left: 100px;
  text-align: right;
}

.header-hero__container-left-art {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-size: 250px;
  font-weight: 500;
  line-height: 1;
  color: #f8f1e5cc;
  font-family: "Orbitron", sans-serif;
  z-index: 5;
  margin-left: 50px;
}

.header-hero__container-left-video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  max-width: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.header-hero__container-left-video-block {
  width: 200px;
  height: 80px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
}

.header-hero__container-left-video-block video {
  width: 200px;
  height: 80px;
}

.header-hero__container-left-video-block iframe {
  width: 200px;
  height: 80px;
}

.header-hero__container-left-video-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  max-width: 30%;
  font-weight: 500;
  color: #f8f1e5cc;
}

.header-hero__container-mid {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 700px;
  height: auto;
  z-index: 3;
}

.header-hero__container-mid img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-filter: drop-shadow(0 5px 30px #5c4927b2);
          filter: drop-shadow(0 5px 30px #5c4927b2);
  opacity: 0.5;
}

.header-hero__container-mid::before, .header-hero__container-mid::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/1.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  pointer-events: none;
  z-index: 10;
}

.header-hero__container-mid::before {
  -webkit-transform: translateX(-6px);
          transform: translateX(-6px);
  animation: glitch-before 10s infinite steps(18) alternate-reverse;
}

.header-hero__container-mid::after {
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
  animation: glitch-after 11s infinite steps(16) alternate-reverse;
}

.header-hero__container-right {
  max-width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
}

.header-hero__container-right-links-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.header-hero__container-right-links-flex a {
  display: block;
  color: #f8f1e5cc;
  font-weight: 500;
  line-height: 2;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}

.header-hero__container-right-links-flex a:hover {
  color: #f8f1e5cc;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  text-decoration: underline;
}

.header-hero .fa-arrow-right {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.header-hero__container-right-links-flex a:hover .fa-arrow-right {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  color: #574a33;
}

.header-hero__container-right-links-flex-block {
  color: #f8f1e5cc;
}

.header-hero__container-right-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #f8f1e5cc;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.header-hero__container-right-arrow-0 {
  position: relative;
  font-size: 30px;
  font-weight: 500;
  font-family: "Orbitron", sans-serif;
  color: #f8f1e5cc;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.header-hero__container-right-arrow-0::before {
  content: 'from';
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-weight: 500;
  font-size: 10px;
  font-style: italic;
}

.header-hero__container-right-arrow-line {
  position: relative;
  width: 60%;
  height: 3px;
  background-color: #f8f1e5cc;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.header-hero__container-right-arrow-line::after {
  content: '';
  position: absolute;
  right: -3px;
  top: -6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 20px;
  height: 3px;
  background-color: #f8f1e5cc;
}

.header-hero__container-right-arrow-line::before {
  content: '';
  position: absolute;
  right: -3px;
  top: 6px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 20px;
  height: 3px;
  background-color: #f8f1e5cc;
}

.header-hero__container-right-arrow-1 {
  position: relative;
  font-size: 30px;
  font-weight: 500;
  font-family: "Orbitron", sans-serif;
  color: #f8f1e5cc;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.header-hero__container-right-arrow-1::before {
  content: 'to';
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 10px;
  font-style: italic;
}

.header-hero__container-right-arrow:hover .header-hero__container-right-arrow-1::before {
  color: #f8f1e5cc;
}

.header-hero__container-right-arrow:hover .header-hero__container-right-arrow-0::before {
  color: #f8f1e5cc;
}

.header-hero__container-right-arrow:hover .header-hero__container-right-arrow-1 {
  color: #f8f1e5cc;
}

.header-hero__container-right-arrow:hover .header-hero__container-right-arrow-0 {
  color: #f8f1e5cc;
}

.header-hero__container-right-arrow:hover .header-hero__container-right-arrow-line {
  -webkit-box-shadow: 0 1px 25px 1px #f8f1e5cc;
          box-shadow: 0 1px 25px 1px #f8f1e5cc;
}

.header-hero__container-right-about {
  text-align: right;
}

.header-hero__container-right-dev {
  color: #f8f1e5cc;
  position: relative;
  font-size: 250px;
  z-index: 2;
  margin-left: -200px;
  font-family: "Orbitron", sans-serif;
  margin-bottom: -20px;
  font-weight: 500;
}

.service__container {
  position: relative;
  background-color: #f8f1e5cc;
  padding: 1.8%;
  padding-bottom: 0;
  z-index: 2;
  background: #322416;
}

.service__container::before {
  content: 'Art{dev}';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 200px;
  font-weight: 700;
  color: #ffffff1a;
  font-family: "Orbitron", sans-serif;
  z-index: -1;
}

.service__container-title {
  text-align: center;
  color: #f8f1e5cc;
  font-size: 100px;
  font-family: "Orbitron", sans-serif;
  font-weight: 500;
}

.service__container-subtitle {
  color: #f8f1e5cc;
  display: none;
}

.service__container-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.service__container-flex-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333%;
          flex: 0 0 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.service__container-flex-midl {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333%;
          flex: 0 0 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.service__container-flex-right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333%;
          flex: 0 0 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.service__container-flex-block {
  background: #726b4a90;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 10px;
  width: 380px;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  border-radius: 10px;
  margin: 0 auto;
  border: 1px solid #f8f1e5cc;
}

.service__container-flex-block-top-text {
  font-size: 12px;
  display: none;
}

.service__container-flex-block-info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80%;
          flex: 0 0 80%;
  font-weight: 600;
  color: #d7b780;
}

.service__container-flex-block-title {
  font-size: 24px;
  font-weight: 600;
  font-family: "Orbitron", sans-serif;
  text-decoration: underline;
  letter-spacing: 1px;
}

.service__container-flex-block-get p {
  color: #f8f1e5cc;
  font-size: 14px;
  margin: 0%;
  margin-bottom: 1%;
}

.service__container-flex-block-get-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.service__container-flex-block-get-flex-block {
  margin-bottom: 3%;
}

.service__container-flex-block-get-flex-block-p {
  font-weight: 500;
  font-size: 12px;
}

.service__container-flex-block-get p {
  font-size: 14px;
  font-weight: 500;
}

.service__container-flex-block-subtitle {
  margin-bottom: 10px;
  color: #f8f1e5cc;
  font-size: 14px;
  font-weight: 500;
}

.service__container-flex-block-good-for {
  font-size: 12px;
  color: #f8f1e5cc;
  font-weight: 500;
}

.service__container-flex-block-good-for span {
  font-size: 14px;
  text-decoration: underline;
}

.service__container-flex-block-img {
  width: 100%;
}

.service__container-flex-block-img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.service__container-flex-mid-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.service__container-flex-mid-photo-container {
  position: relative;
}

.service__container-flex-mid-photo-container-3d {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  width: 400px;
  height: 400px;
  z-index: 10;
}

.service__container-flex-mid-photo-container-3d model-viewer {
  width: 100%;
  height: 100%;
}

.service ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 0;
}

.service ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333%;
          flex: 0 0 33.333%;
  display: block;
  text-align: center;
}

.about__container {
  position: relative;
  background-color: #322416;
  padding: 1.8%;
  padding-bottom: 0;
  z-index: 2;
  background: #322416;
}

.about__container::before {
  content: 'Art{dev}';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -29%);
  font-size: 200px;
  font-weight: 700;
  color: #ffffff1a;
  font-family: "Orbitron", sans-serif;
  z-index: -1;
}

.about__container-title {
  text-align: center;
  color: #f8f1e5cc;
  font-size: 100px;
  font-family: "Orbitron", sans-serif;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 30px;
}

.about__container-title p {
  margin: 0;
}

.about__container-contant {
  max-width: 95%;
  margin: 0 auto;
}

.about__container-contant-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about__container-contant-block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333%;
          flex: 0 0 33.333%;
  margin-bottom: 30px;
}

.about__container-contant-block-img {
  position: relative;
  width: 100%;
  z-index: 2;
}

.about__container-contant-block-img img {
  width: 100%;
  -webkit-filter: drop-shadow(6px 27px 49px #f8f1e5cc);
          filter: drop-shadow(6px 27px 49px #f8f1e5cc);
  opacity: 0.3;
}

.about__container-contant-block-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../img/logo.PNG");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  z-index: 1;
  opacity: 0.2;
}

.about__container-contant-block-img::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-image: url("../img/logo.PNG");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  z-index: 1;
  opacity: 0.2;
}

.about__container-contant-block-info {
  position: relative;
  margin-bottom: 30px;
  border: 1px solid #f8f1e5cc;
  padding: 3% 0 3% 40px;
  border-radius: 10px;
  background: #322416;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}

.about__container-contant-block-info::before {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 100%;
  height: 100%;
  background-image: url("../img/logo.PNG");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  opacity: 0.1;
}

.about__container-contant-block-info-title {
  font-size: 20px;
  font-weight: 600;
  font-family: "Orbitron", sans-serif;
  text-decoration: underline;
  letter-spacing: 1px;
  color: #d7b780;
  margin-bottom: 3%;
}

.about__container-contant-block-info-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #f8f1e5cc;
  max-width: 90%;
}

.about__container-subtitle {
  text-align: center;
  color: #f8f1e5cc;
}

.contact-form__status {
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.9;
}

.status--info {
  color: #c9c9c9;
}

.status--success {
  color: #4caf50;
}

.status--error {
  color: #ff6d6d;
}

.portfolio__container {
  position: relative;
  background-color: #322416;
  padding: 1.8%;
  padding-bottom: 0;
  z-index: 2;
  background: #322416;
}

.portfolio__container::after {
  content: 'Art{dev}';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -29%);
  font-size: 200px;
  font-weight: 700;
  color: #ffffff1a;
  font-family: "Orbitron", sans-serif;
  z-index: -1;
}

.portfolio__container-title {
  text-align: center;
  color: #f8f1e5cc;
  font-size: 100px;
  font-family: "Orbitron", sans-serif;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 30px;
}

.orbit3d {
  position: relative;
  width: 100%;
  height: 600px;
  margin: 0px auto;
  -webkit-perspective: 1200px;
          perspective: 1200px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 95%;
}

.orbit3d__center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

.orbit3d__center img {
  position: relative;
  width: 1000px;
}

.orbit3d__center::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 100%;
  height: 100%;
  background-image: url("../img/logo.PNG");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  z-index: 1;
  opacity: 0.2;
}

.orbit3d__center::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background-image: url("../img/logo.PNG");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  z-index: 1;
  opacity: 0.2;
}

.orbit3d__ring {
  position: absolute;
  inset: 0;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: translateZ(-200px) rotateY(0deg);
          transform: translateZ(-200px) rotateY(0deg);
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.35, 0.01, 0.21, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.35, 0.01, 0.21, 1);
  transition: transform 0.7s cubic-bezier(0.35, 0.01, 0.21, 1);
  transition: transform 0.7s cubic-bezier(0.35, 0.01, 0.21, 1), -webkit-transform 0.7s cubic-bezier(0.35, 0.01, 0.21, 1);
}

.orbit3d__card {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  width: 200px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(140, 111, 61, 0.7);
  color: #f5f5f5;
  font-family: "Nunito Sans", sans-serif;
  font-size: 12px;
  text-align: center;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.7s cubic-bezier(0.35, 0.01, 0.21, 1), -webkit-filter 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.7s cubic-bezier(0.35, 0.01, 0.21, 1), -webkit-filter 0.4s ease;
  transition: transform 0.7s cubic-bezier(0.35, 0.01, 0.21, 1), opacity 0.4s ease, filter 0.4s ease;
  transition: transform 0.7s cubic-bezier(0.35, 0.01, 0.21, 1), opacity 0.4s ease, filter 0.4s ease, -webkit-transform 0.7s cubic-bezier(0.35, 0.01, 0.21, 1), -webkit-filter 0.4s ease;
  z-index: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
}

.orbit3d__card img {
  width: 100%;
}

.orbit3d__card--active {
  position: relative;
  -webkit-filter: brightness(1.3);
          filter: brightness(1.3);
  -webkit-box-shadow: 0 0 30px rgba(140, 111, 61, 0.9);
          box-shadow: 0 0 30px rgba(140, 111, 61, 0.9);
  z-index: 3;
}

.orbit3d__controls button {
  background: #000;
  color: #d7b780;
  border: 1px solid #d7b780;
  border-radius: 999px;
  padding: 4px 16px;
  cursor: pointer;
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  position: relative;
  z-index: 4;
}

@media (max-width: 1024px) {
  .orbit3d {
    width: 100%;
    height: 700px;
    margin: 0px auto;
    -webkit-perspective: 1000px;
            perspective: 1000px;
  }
  .orbit3d__card {
    padding: 10px 12px;
    font-size: 11px;
  }
  .orbit3d__controls {
    bottom: 16px;
  }
}

@media (max-width: 768px) {
  __container-left-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .orbit3d {
    width: 100%;
    -webkit-perspective: 900px;
            perspective: 900px;
    overflow: hidden;
  }
  .orbit3d__card {
    padding: 8px 10px;
    font-size: 10px;
  }
  .orbit3d__controls {
    bottom: 12px;
  }
}

@media (max-width: 480px) {
  .header-hero__container {
    min-height: 747px;
  }
  .portfolio__container-title {
    text-align: center;
    color: #f8f1e5cc;
    font-size: 45px;
    font-family: "Orbitron", sans-serif;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: -50px;
    margin-top: 32px;
  }
  .orbit3d {
    width: 100%;
    height: 620px;
    margin: 0px auto;
    -webkit-perspective: 800px;
            perspective: 800px;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
  }
  .orbit3d__center img {
    width: 820px;
    height: 100%;
  }
  .orbit3d__card {
    padding: 6px 8px;
    font-size: 9px;
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.7s cubic-bezier(0.35, 0.01, 0.21, 1), -webkit-filter 0.4s ease;
    transition: opacity 0.4s ease, -webkit-transform 0.7s cubic-bezier(0.35, 0.01, 0.21, 1), -webkit-filter 0.4s ease;
    transition: transform 0.7s cubic-bezier(0.35, 0.01, 0.21, 1), opacity 0.4s ease, filter 0.4s ease;
    transition: transform 0.7s cubic-bezier(0.35, 0.01, 0.21, 1), opacity 0.4s ease, filter 0.4s ease, -webkit-transform 0.7s cubic-bezier(0.35, 0.01, 0.21, 1), -webkit-filter 0.4s ease;
  }
  .orbit3d__controls button {
    padding: 12px 20px;
    font-size: 12px;
  }
  .orbit3d__card--active {
    position: relative;
    -webkit-filter: brightness(1.3);
            filter: brightness(1.3);
    -webkit-box-shadow: 0 0 30px rgba(140, 111, 61, 0.9);
            box-shadow: 0 0 30px rgba(140, 111, 61, 0.9);
    z-index: 3;
  }
}

.price__container-subtitle {
  color: #f8f1e5cc;
  text-align: center;
  max-width: 70%;
  margin: 1% auto;
}

.price__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-right: 10px;
  font-family: "Orbitron", sans-serif;
  z-index: 10;
  margin-top: 3%;
}

.price__btn a {
  text-decoration: none;
  color: #f8f1e5cc;
  border: 1px solid #f8f1e5cc;
  padding: 10px;
  border-radius: 20px;
  -webkit-transition: all .2s;
  transition: all .2s;
  display: block;
  font-size: 12px;
  cursor: pointer;
}

.sell-btn {
  color: #d7b780 !important;
  border: 1px solid #d7b780 !important;
  position: relative;
  overflow: hidden;
}

.sell-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  opacity: 0.8;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-animation: hireBtnShine 2.8s ease-in-out infinite;
          animation: hireBtnShine 2.8s ease-in-out infinite;
}

.price__btn-info-btn {
  padding: 10px 19px !important;
  margin-right: 10px;
}

.sell-btn:hover {
  background-color: #d7b780 !important;
  color: #322416 !important;
}

.price__btn a:hover {
  background-color: #f8f1e5cc;
  color: #f8f1e5cc;
}

.service-modal {
  position: fixed;
  inset: 0;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 999;
}

.service-modal--open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.service-modal__window {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 78%;
  background: rgba(15, 15, 15, 0.95);
  border-radius: 16px;
  border: 1px solid #f8f1e5cc;
  padding: 24px 28px 28px;
  color: #f5f5f5;
  font-family: "Nunito Sans", sans-serif;
}

.service-modal__title {
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
  margin: 0 0 16px;
  color: #f8f1e5cc;
}

.service-modal__list {
  margin: 0 0 20px;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.5;
}

.service-modal__list li + li {
  margin-top: 4px;
}

.service-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: none;
  background: transparent;
  color: #aaa;
  font-size: 22px;
  cursor: pointer;
}

.service-modal__cta {
  display: inline-block;
  margin-top: 4px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #d7b780;
  background: transparent;
  color: #d7b780;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.service-modal__cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  opacity: 0.8;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-animation: hireBtnShine 2.8s ease-in-out infinite;
          animation: hireBtnShine 2.8s ease-in-out infinite;
}

.service-modal__cta:hover {
  background: #d7b780;
  color: #111;
}

.question__container {
  position: relative;
  padding: 2%;
  background: #322416;
}

.question__container::before {
  content: 'Art{dev}';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -55%);
  font-size: 200px;
  font-weight: 700;
  color: #ffffff1a;
  font-family: "Orbitron", sans-serif;
  z-index: 1;
}

.question__info {
  position: relative;
  margin-bottom: 30px;
  border: 1px solid #f8f1e5cc;
  padding: 3% 0 3% 40px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 2;
}

.question__info-title {
  font-size: 40px;
  color: #f8f1e5cc;
}

.question__info-subtitle {
  font-size: 16px;
  color: #f8f1e5cc;
  max-width: 80%;
}

.question__info-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-right: 30px;
  font-family: "Orbitron", sans-serif;
  z-index: 10;
  margin-top: 3%;
  text-align: right;
}

.question__info-btn a {
  text-decoration: none;
  color: #f8f1e5cc;
  border: 1px solid #f8f1e5cc;
  padding: 10px;
  border-radius: 20px;
  -webkit-transition: all .2s;
  transition: all .2s;
  display: block;
  font-size: 16px;
  cursor: pointer;
}

.question__info-btn a:hover {
  background-color: #f8f1e5cc;
  color: #f8f1e5cc;
}

.review {
  padding: 80px 0;
  background: #322416;
  color: #fff;
}

.review__container {
  position: relative;
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 20px;
}

.reiveew__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.reiveew__flex span {
  display: block;
  font-size: 8px !important;
  margin-top: 5px;
  color: #d7b780c9;
}

.review__container::before {
  content: 'Art{dev}';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -10%);
          transform: translate(-50%, -10%);
  font-size: 200px;
  font-weight: 700;
  color: #ffffff1a;
  font-family: "Orbitron", sans-serif;
  z-index: 1;
}

.review__container-title {
  text-align: center;
  color: #f8f1e5cc;
  font-size: 100px;
  font-family: "Orbitron", sans-serif;
  font-weight: 500;
}

.review__container-subtitle {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  color: #f8f1e5cc;
  max-width: 90%;
  margin: 30px auto;
}

.review__container-flex-controls {
  max-width: 90%;
  margin: 30px auto;
}

/* Swiper wrapper */
.review__container-slider {
  position: relative;
  padding: 3%;
  max-width: 90%;
}

/* Карточка отзыва */
.review-card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18px 18px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(140, 111, 61, 0.6);
  -webkit-box-shadow: 0 0 24px rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 24px rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.review-card__text {
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #f5f5f5;
}

.review-card__name {
  font-size: 13px;
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #d7b780;
}

.mySwiper {
  width: 100%;
}

.mySwiper .swiper-slide {
  height: 100%;
}

.review__container-flex-controls {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0 !important;
  top: 43px !important;
  left: 0 !important;
  width: 200px !important;
}

.review__container-btns {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin-top: 41px !important;
}

.swiper-button-next, .swiper-button-prev {
  position: relative !important;
  top: 0 !important;
  width: 50px !important;
  height: 50px !important;
  z-index: 10;
  cursor: pointer;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  color: #f8f1e5cc !important;
  border: 1px solid #f8f1e5cc;
  border-radius: 50%;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 24px !important;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, -16px) !important;
  right: auto;
}

.swiper-pagination-bullet-active {
  background: #f8f1e5cc !important;
}

.swiper-pagination-bullet {
  background: #aa8c8c !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 14px !important;
}

.swiper-pagination-progressbar {
  background: rgba(255, 255, 255, 0.1) !important;
}

.swiper-pagination-progressbar-fill {
  background: #f8f1e5cc !important;
}

.swiper-slide {
  margin-bottom: 50px;
  height: auto !important;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  background: #f8f1e5cc !important;
}

@media (max-width: 768px) {
  .review__container-subtitle {
    font-size: 16px;
    margin: 16px auto;
    text-align: center;
  }
  .review__container-title {
    font-size: 45px;
  }
  .review__container::before {
    -webkit-transform: translate(-50%, 20%);
            transform: translate(-50%, 20%);
    font-size: 90px;
  }
  .review-card {
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
  }
  .review {
    padding: 50px 0;
  }
  .review__container-slider {
    padding: 10px 0 40px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

.review__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.person img {
  width: 100%;
  height: 56px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 50%;
}

.person {
  width: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
}

.rating:not(:checked) > input {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.rating:not(:checked) > label {
  float: right;
  cursor: pointer;
  font-size: 20px;
  color: #ffb432;
}

.rating:not(:checked) > label:before {
  content: '★';
}

.rating > input:checked + label:hover,
.rating > input:checked + label:hover ~ label,
.rating > input:checked ~ label:hover,
.rating > input:checked ~ label:hover ~ label,
.rating > label:hover ~ input:checked ~ label {
  color: #ffb432;
}

.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
  color: #ffb432;
}

.rating > input:checked ~ label {
  color: #ffb432;
}

.contact {
  position: relative;
  padding: 3%;
  background: #322416;
  overflow: hidden;
}

.contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact__container {
  position: relative;
  padding: 1.8%;
  padding-bottom: 0;
  z-index: 2;
}

.contact__container::before {
  content: 'Art {dev}';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-70%, -40%);
          transform: translate(-70%, -40%);
  font-size: 400px;
  font-weight: 700;
  color: #ffffff0b;
  font-family: "Orbitron", sans-serif;
  line-height: 0.7;
  z-index: -1;
  text-align: center;
}

/* ЛЕВАЯ ЧАСТЬ */
.contact__left {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  color: #f5f5f5;
}

.contact__label {
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d7b780;
  margin-bottom: 12px;
}

.contact__title {
  font-family: "Orbitron", sans-serif;
  font-size: 45px;
  margin-bottom: 18px;
  color: #f8f1e5cc;
  font-weight: 500;
}

.contact__text {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #f8f1e5cc;
  max-width: 380px;
  margin-bottom: 32px;
}

.contact__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px;
}

.contact__details-item span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: #888;
}

.contact__details-item strong,
.contact__details-item a {
  color: #d7b780;
}

.contact__details-item a {
  text-decoration: none;
  border-bottom: 1px dashed rgba(140, 111, 61, 0.6);
  padding-bottom: 2px;
}

/* ПРАВАЯ ЧАСТЬ — КАРТОЧКА ФОРМЫ */
.contact__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 55%;
          flex: 0 0 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.contact-card {
  width: 100%;
  max-width: 420px;
  padding: 24px 47px 26px 34px;
  border-radius: 20px;
  background: radial-gradient(circle at top, #211309 0, #0d0704 70%);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
  color: #f8f1e5cc;
  position: relative;
  overflow: hidden;
  border: 1px solid #f8f1e5cc;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  opacity: 0.9;
  pointer-events: none;
  mix-blend-mode: screen;
}

.contact-card__header {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.contact-card__title {
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  margin-bottom: 4px;
}

.contact-card__subtitle {
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px;
  color: #f8f1e5cc;
}

.contact-card__types {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.contact-type-btn {
  position: relative;
  z-index: 1;
  padding: 6px 6px;
  border-radius: 999px;
  border: 1px solid rgba(140, 111, 61, 0.45);
  background: #dfdad1;
  font-family: "Nunito Sans", sans-serif;
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #000;
  cursor: pointer;
  -webkit-transition: all 0.2s  ease;
  transition: all 0.2s  ease;
}

.contact-type-btn:hover {
  border-color: #f8f1e5cc;
  color: #625030;
}

.contact-type-btn--active {
  background: linear-gradient(120deg, #f8f1e5cc, #b8904a);
  border-color: transparent;
  color: #111;
  -webkit-box-shadow: 0 0 18px rgba(140, 111, 61, 0.9);
          box-shadow: 0 0 18px rgba(140, 111, 61, 0.9);
}

/* ФОРМА */
.contact-card__form {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.contact-card__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.contact-card__field--two {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[2];
      grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-card__field label {
  font-family: "Nunito Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f8f1e5cc;
}

.contact-card__field input,
.contact-card__field select,
.contact-card__field textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #f8f1e5cc;
  padding: 10px 11px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px;
  color: #f8f1e5cc;
  outline: none;
  -webkit-transition: border-color 0.2s ease, background 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, background 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.contact-card__field input::-webkit-input-placeholder,
.contact-card__field textarea::-webkit-input-placeholder {
  color: #00000081;
}

.contact-card__field input:-ms-input-placeholder,
.contact-card__field textarea:-ms-input-placeholder {
  color: #00000081;
}

.contact-card__field input::-ms-input-placeholder,
.contact-card__field textarea::-ms-input-placeholder {
  color: #00000081;
}

.contact-card__field input::placeholder,
.contact-card__field textarea::placeholder {
  color: #00000081;
}

.contact-card__field input:focus,
.contact-card__field select:focus,
.contact-card__field textarea:focus {
  border-color: #f8f1e5cc;
  -webkit-box-shadow: 0 0 0 1px #322416;
          box-shadow: 0 0 0 1px #322416;
  background: #322416;
  color: #f8f1e5cc;
}

.contact-card__note {
  font-family: "Nunito Sans", sans-serif;
  font-size: 11px;
  color: #f8f1e5cc;
  margin-top: 2px;
}

.contact-card__submit {
  margin-top: 4px;
  width: 100%;
  padding: 11px 0;
  border-radius: 999px;
  border: none;
  font-family: "Orbitron", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: linear-gradient(120deg, #f8f1e5cc, #d6aa55);
  color: #111;
  cursor: pointer;
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9);
  -webkit-transition: background 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: background 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  margin-left: 7px;
  position: relative;
  overflow: hidden;
}

.contact-card__submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  opacity: 0.8;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-animation: hireBtnShine 2.8s ease-in-out infinite;
          animation: hireBtnShine 2.8s ease-in-out infinite;
}

.contact-card__submit:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 16px 40px black;
          box-shadow: 0 16px 40px black;
  background: linear-gradient(120deg, #d6aa55, #f0c76b);
}

.contact-card__submit:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.9);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.9);
}

/* АДАПТИВ */
@media (max-width: 900px) {
  .contact__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 40px;
  }
  .contact__left,
  .contact__right {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .contact__right {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .contact-card {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .review__container {
    position: relative;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0px 0px;
  }
  .contact__container::before {
    -webkit-transform: translate(-50%, 24%);
            transform: translate(-50%, 24%);
    font-size: 150px;
  }
  .contact__title {
    font-size: 45px;
  }
  .contact-card__field--two {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .person img {
    width: 100%;
    height: 69px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    border-radius: 50%;
  }
}

.faq {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}

.faq {
  position: relative;
  padding: 3%;
  background: #322416;
  overflow: hidden;
}

.faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.faq__container {
  position: relative;
  padding: 1.8%;
  padding-bottom: 0;
  z-index: 2;
}

.faq__container::before {
  content: 'Art {dev}';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-70%, -40%);
          transform: translate(-70%, -40%);
  font-size: 400px;
  font-weight: 700;
  color: #ffffff0b;
  font-family: "Orbitron", sans-serif;
  line-height: 0.7;
  z-index: -1;
  text-align: center;
}

.faq__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
          flex: 0 0 35%;
}

.faq__eyebrow {
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d7b780;
  margin-bottom: 12px;
}

.faq__title {
  font-family: "Orbitron", sans-serif;
  font-size: 70px;
  line-height: 1.1;
  color: #f8f1e5cc;
  margin-bottom: 18px;
  font-weight: 500;
}

.faq__subtitle {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #f8f1e5cc;
  max-width: 340px;
}

/* список */
.faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 5%;
}

.faq__item {
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(140, 111, 61, 0.45);
  -webkit-box-shadow: 0 0 24px rgba(0, 0, 0, 0.75);
          box-shadow: 0 0 24px rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  overflow: hidden;
  -webkit-transition: border-color 0.2s ease, background 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.2s ease, background 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.faq__item:hover {
  border-color: #f8f1e5cc;
  background: rgba(0, 0, 0, 0.75);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.faq__question {
  width: 100%;
  padding: 16px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  color: #f8f1e5cc;
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  text-align: left;
}

.faq__question span:first-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.faq__icon {
  font-family: "Orbitron", sans-serif;
  font-size: 30px;
  line-height: 1;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  color: #d7b780;
}

/* ответ */
.faq__answer {
  padding: 0 20px 0 20px;
  max-height: 0;
  overflow: hidden;
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #a1875b;
  -webkit-transition: max-height 0.25s ease, padding-bottom 0.25s ease;
  transition: max-height 0.25s ease, padding-bottom 0.25s ease;
}

/* открытое состояние */
.faq__item--open .faq__answer {
  max-height: 200px;
  /* если будут очень длинные ответы – можешь увеличить */
  padding-bottom: 16px;
}

.faq__item--open .faq__icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  color: #f8f1e5cc;
}

/* адаптив */
@media (max-width: 900px) {
  .faq__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
  .faq__left,
  .faq__right {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .faq__title {
    font-size: 45px;
  }
}

@media (max-width: 600px) {
  .faq {
    padding: 3%;
  }
  .faq__title {
    font-size: 45px;
  }
  .faq__subtitle {
    font-size: 14px;
  }
  .faq__question {
    font-size: 14px;
    padding: 14px 16px;
  }
  .faq__answer {
    font-size: 13px;
    padding: 0 16px 0 16px;
  }
}

.footer {
  position: relative;
  padding: 60px 0 40px;
  background: #322416;
  overflow: hidden;
  color: #f5f5f5;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.footer__overlay {
  position: absolute;
  inset: 0;
  background: #322416;
  pointer-events: none;
}

.footer__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
}

/* Левая колонка */
.footer__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
}

.header__container-logo-footer {
  margin: 0 !important;
  display: block;
}

.footer__tagline {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #f8f1e5cc;
}

.footer__copy {
  margin-top: 18px;
  font-size: 14px;
  color: #f8f1e5cc;
}

/* Центр */
.footer__middle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.footer__title {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d7b780;
  margin-bottom: 6px;
}

.footer__link {
  font-size: 14px;
  color: #f8f1e5cc;
  text-decoration: none;
  -webkit-transition: color 0.2s ease, -webkit-transform 0.2s ease;
  transition: color 0.2s ease, -webkit-transform 0.2s ease;
  transition: color 0.2s ease, transform 0.2s ease;
  transition: color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.footer__link:hover {
  color: #f8f1e5cc;
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

/* Правая колонка */
.footer__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.footer__title--right {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.footer__social-link {
  font-size: 14px;
  color: #f8f1e5cc;
  text-decoration: none;
  position: relative;
  padding-right: 14px;
  -webkit-transition: color 0.2s ease, -webkit-transform 0.2s ease;
  transition: color 0.2s ease, -webkit-transform 0.2s ease;
  transition: color 0.2s ease, transform 0.2s ease;
  transition: color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.footer__social-link::after {
  content: "↗";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 11px;
  color: #f8f1e5cc;
  opacity: 0;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.footer__social-link:hover {
  color: #f8f1e5cc;
  -webkit-transform: translateX(-3px);
          transform: translateX(-3px);
}

.footer__social-link:hover::after {
  opacity: 1;
  -webkit-transform: translate(2px, -1px);
          transform: translate(2px, -1px);
}

.footer__cta {
  text-align: center;
  text-decoration: none;
  margin-top: 12px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid #f8f1e5cc;
  background: linear-gradient(135deg, #f8f1e5cc, #d5b476);
  color: #050505;
  font-size: 14px;
  font-family: "Orbitron", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
  transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease, -webkit-filter 0.15s ease;
  position: relative;
  overflow: hidden;
}

.footer__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  opacity: 0.8;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-animation: hireBtnShine 2.8s ease-in-out infinite;
          animation: hireBtnShine 2.8s ease-in-out infinite;
}

.footer__cta:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 0 20px rgba(140, 111, 61, 0.7);
          box-shadow: 0 0 20px rgba(140, 111, 61, 0.7);
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}

/* Большое слово артдев на фоне */
.footer__bigword {
  inset: auto 0 0 0;
  text-align: center;
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 270px;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff24;
  line-height: 0.7;
  z-index: 1;
  text-align: center;
  opacity: 0.35;
  pointer-events: none;
  -webkit-transform: translateY(35%);
          transform: translateY(35%);
  padding-bottom: 50px;
}

/* Адаптация */
@media (max-width: 900px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
  }
  .footer__right {
    text-align: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer__socials {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer__title--right {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .footer__bigword {
    opacity: 0.22;
    -webkit-transform: translateY(45%);
            transform: translateY(45%);
  }
}

@media (max-width: 600px) {
  .footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    padding: 60px 0 40px;
    background: #322416;
    background: linear-gradient(179deg, black 6%, #181818 100%);
    overflow: hidden;
    color: #f5f5f5;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
  }
  .footer {
    padding: 40px 0 30px;
  }
  .footer__container {
    padding: 0 16px;
  }
  .footer__middle {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer__logo {
    font-size: 22px;
  }
  .footer__bigword {
    font-size: 77px;
  }
  .footer__cta {
    margin-top: 12px;
    padding: 16px 90px;
    border-radius: 999px;
    border: 1px solid #f8f1e5cc;
    background: linear-gradient(135deg, #f8f1e5cc, #d5b476);
    color: #050505;
    font-size: 14px;
  }
}

@media (max-width: 1400px) {
  .header-hero__container-mid {
    left: 46%;
    width: 622px;
  }
  .header-hero__container::before {
    content: 'Art{dev}';
    position: absolute;
    top: 20%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 200px;
    text-align: center;
    font-weight: 700;
    color: #ffffff1e;
    font-family: "Orbitron", sans-serif;
    z-index: 1;
  }
  .header-hero .header-hero__container-right {
    max-width: 40%;
  }
  .header-hero__container-right-dev {
    font-size: 225px;
  }
  .service__container::before {
    content: 'Art{dev}';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 150px;
    font-weight: 700;
    color: #ffffff1a;
    font-family: "Orbitron", sans-serif;
    z-index: -1;
  }
}

@media (max-width: 1024px) {
  .header-hero__container::before {
    content: 'Art{dev}';
    position: absolute;
    top: 20%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 200px;
    text-align: center;
    font-weight: 700;
    color: #ffffff1e;
    font-family: "Orbitron", sans-serif;
    z-index: 1;
  }
  .header-hero .header-hero__container-right {
    max-width: 40%;
  }
  .header-hero__container-right-dev {
    color: #f8f1e5cc;
    position: relative;
    font-size: 180px;
    z-index: 2;
    margin-left: -200px;
    font-family: "Orbitron", sans-serif;
    margin-bottom: -40px;
    font-weight: 500;
  }
  .header-hero__container::before {
    content: 'Art{dev}';
    position: absolute;
    top: 20%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 151px;
    text-align: center;
    font-weight: 700;
    color: #ffffff1e;
    font-family: "Orbitron", sans-serif;
    z-index: 1;
  }
  .header-hero__container-left-video-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    max-width: 50%;
    font-family: "Sansita Swashed", system-ui;
    font-weight: 500;
    color: #f8f1e5cc;
  }
  .header-hero__container-mid {
    position: absolute;
    bottom: 0;
    left: 41%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 547px;
    height: auto;
    z-index: 3;
  }
  .price__btn {
    margin-bottom: 1%;
  }
  .service__container {
    position: relative;
    background-color: #322416;
    padding: 1.8%;
    padding-bottom: 0;
    z-index: 2;
    background: #322416;
  }
  .service__container::before {
    content: 'Art{dev}';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 170px;
    font-weight: 700;
    color: #ffffff1a;
    font-family: "Orbitron", sans-serif;
    z-index: -1;
  }
  .service__container-title {
    text-align: center;
    color: #f8f1e5cc;
    font-size: 100px;
    font-family: "Orbitron", sans-serif;
    margin-bottom: 0px;
    font-weight: 500;
  }
  .service__container-subtitle {
    color: #f8f1e5cc;
    display: none;
  }
  .service__container-flex {
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .service__container-flex-left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-bottom: 0px;
  }
  .service__container-flex-right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-bottom: 0px;
  }
  .service__container-flex-block {
    background: rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
    padding: 0px;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-radius: 10px;
    border: 1px solid #f8f1e5cc;
  }
  .service__container-flex-block-top-text {
    font-size: 12px;
    display: none;
  }
  .service__container-flex-block-contant {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    padding: 10px;
  }
  .service__container-flex-block-info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    font-weight: 600;
  }
  .service__container-flex-block-title {
    font-size: 24px;
    font-weight: 600;
    font-family: "Orbitron", sans-serif;
    text-decoration: underline;
  }
  .service__container-flex-block-get p {
    font-size: 14px;
    margin: 3%;
  }
  .service__container-flex-block-get-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .service__container-flex-block-get-flex-block {
    margin-bottom: 3%;
  }
  .service__container-flex-block-get-flex-block-p {
    font-weight: 600;
    font-size: 12px;
  }
  .service__container-flex-block-get p {
    font-size: 18px;
    font-weight: 600;
  }
  .service__container-flex-block-subtitle {
    margin-bottom: 10px;
    color: #f8f1e5cc;
    font-size: 14px;
    font-weight: 600;
    margin-left: 1%;
  }
  .service__container-flex-block-good-for {
    font-size: 12px;
    color: #f8f1e5cc;
    font-weight: 600;
    margin-left: 1%;
  }
  .service__container-flex-block-good-for span {
    font-size: 14px;
  }
  .service__container-flex-block-img {
    width: 100%;
  }
  .service__container-flex-block-img img {
    width: 100%;
    height: 400px;
  }
  .service__container-flex-mid-photo-container {
    position: relative;
  }
  .service__container-flex-mid-photo-container-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -40%);
            transform: translate(-50%, -40%);
    width: 400px;
    height: 400px;
    z-index: 10;
  }
  .service__container-flex-mid-photo-container-3d model-viewer {
    width: 100%;
    height: 100%;
  }
  .service ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding: 0;
  }
  .service ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333%;
            flex: 0 0 33.333%;
    display: block;
    text-align: center;
  }
  .about__container::before {
    content: 'Art{dev}';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -29%);
    font-size: 150px;
    font-weight: 700;
    color: #ffffff1a;
    font-family: "Orbitron", sans-serif;
    z-index: -1;
  }
  .question__container::before {
    font-size: 170px;
  }
  .portfolio__container::after {
    font-size: 170px;
  }
  .review__container::before {
    font-size: 170px;
  }
  .footer__bigword {
    font-size: 150px;
  }
}

@media (max-width: 800px) {
  .header-hero__container-mid {
    width: 600px;
  }
  .question__container::before {
    content: 'Art{dev}';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -55%);
    font-size: 90px;
    font-weight: 700;
    color: #ffffff1a;
    font-family: "Orbitron", sans-serif;
    z-index: 1;
  }
  .question__info-btn {
    margin-right: 0px;
  }
  .question__info {
    position: relative;
    margin-bottom: 0px;
    border: 1px solid #f8f1e5cc;
    padding: 3% 12px 3% 14px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(3px);
    z-index: 2;
  }
  .price__btn {
    margin-bottom: 3%;
  }
  .header-hero__container-left-art {
    font-size: 226px;
  }
  .header-hero__container-right-dev {
    margin-left: -230px;
  }
  .header-hero__container::before {
    font-size: 136px;
  }
  .review__container::before {
    font-size: 130px;
  }
  .contact__container::before {
    top: 41%;
    left: 50%;
    font-size: 243px;
  }
  .service__container {
    position: relative;
    background-color: #322416;
    padding: 1.8%;
    padding-bottom: 0;
    z-index: 2;
    background: #322416;
    overflow: hidden;
  }
  .service .service__container::before {
    content: 'Art{dev}';
    position: absolute;
    top: 51%;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    font-size: 130px;
    font-weight: 700;
    color: #ffffff1a;
    font-family: "Orbitron", sans-serif;
    z-index: -1;
  }
  .service__container::after {
    content: url(../img/logo.PNG);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -40%) scale(0.5);
    font-weight: 700;
    z-index: -1;
    opacity: 0.3;
  }
  .service__container-title {
    text-align: center;
    color: #f8f1e5cc;
    font-size: 45px;
    font-family: "Orbitron", sans-serif;
    margin: 30px 0;
    font-weight: 500;
  }
  .service__container-subtitle {
    color: #f8f1e5cc;
    display: none;
  }
  .service__container-flex {
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .service__container-flex-left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-bottom: 0px;
  }
  .service__container-flex-right {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    z-index: 6;
  }
  .service__container-flex-block {
    background: rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
    padding: 0px;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-radius: 10px;
    border: 1px solid #f8f1e5cc;
  }
  .service__container-flex-block-top-text {
    font-size: 18px;
    display: none;
  }
  .service__container-flex-block-contant {
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    padding: 10px;
  }
  .service__container-flex-block-info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
            flex: 0 0 80%;
    font-weight: 600;
  }
  .service__container-flex-block-title {
    font-size: 24px;
    font-weight: 600;
    font-family: "Orbitron", sans-serif;
    text-decoration: underline;
  }
  .service__container-flex-block-get p {
    font-size: 16px;
    margin: 3%;
  }
  .service__container-flex-block-get-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .service__container-flex-block-get-flex-block {
    margin-bottom: 3%;
  }
  .service__container-flex-block-get-flex-block-p {
    font-weight: 500;
    font-size: 16px;
  }
  .service__container-flex-block-get p {
    font-size: 20px;
    font-weight: 500;
  }
  .service__container-flex-block-subtitle {
    margin-bottom: 10px;
    color: #f8f1e5cc;
    font-size: 16px;
    font-weight: 500;
    padding: 0px 10px;
  }
  .service__container-flex-block-good-for {
    font-size: 16px;
    color: #f8f1e5cc;
    font-weight: 6500;
    padding: 10px;
  }
  .service__container-flex-block-good-for span {
    font-size: 18px;
    font-weight: 500;
    text-decoration: underline;
  }
  .service__container-flex-block-img {
    width: 100%;
  }
  .service__container-flex-block-img img {
    width: 100%;
    height: 270px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  .service__container-flex-mid-photo-container {
    position: relative;
  }
  .service__container-flex-mid-photo-container-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -40%);
            transform: translate(-50%, -40%);
    width: 400px;
    height: 400px;
    z-index: 10;
  }
  .service__container-flex-mid-photo-container-3d model-viewer {
    width: 100%;
    height: 100%;
  }
  .service ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding: 0;
  }
  .service ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333%;
            flex: 0 0 33.333%;
    display: block;
    text-align: center;
  }
  .footer__bigword {
    font-size: 124px;
  }
  .about__container {
    position: relative;
    background-color: #322416;
    padding: 1.8%;
    padding-bottom: 0;
    z-index: 2;
    background: #322416;
  }
  .about__container::before {
    content: 'Art{dev}';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, 51%);
    font-size: 84px;
    font-weight: 700;
    color: #ffffff1a;
    font-family: "Orbitron", sans-serif;
    z-index: -1;
  }
  .about__container-title {
    text-align: center;
    color: #f8f1e5cc;
    font-size: 55px;
    font-family: "Orbitron", sans-serif;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .about__container-title p {
    margin: 0;
  }
  .about__container-contant {
    max-width: 95%;
    margin: 0 auto;
  }
  .about__container-contant-blocks {
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about__container-contant-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333%;
            flex: 0 0 33.333%;
    margin-bottom: 30px;
  }
  .about__container-contant-block-img {
    position: relative;
    width: 100%;
    z-index: 2;
    display: none;
  }
  .about__container-contant-block-img img {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    -webkit-filter: drop-shadow(6px 27px 49px #f8f1e5cc);
            filter: drop-shadow(6px 27px 49px #f8f1e5cc);
    opacity: 0.3;
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
  }
  .about__container-contant-block-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../img/logo.PNG");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: screen;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    z-index: 1;
    opacity: 0;
    display: none;
  }
  .about__container-contant-block-img::after {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-image: url("../img/logo.PNG");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: screen;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    z-index: 1;
    opacity: 0;
    display: none;
  }
  .about__container-contant-block-info {
    position: relative;
    margin-bottom: 30px;
    border: 1px solid #f8f1e5cc;
    padding: 3% 0 3% 40px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
  }
  .about__container-contant-block-info::before {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 100%;
    height: 100%;
    background-image: url("../img/logo.PNG");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    opacity: 0.1;
  }
  .about__container-contant-block-info-title {
    font-size: 20px;
    font-weight: 600;
    font-family: "Orbitron", sans-serif;
    text-decoration: underline;
    letter-spacing: 1px;
    margin-bottom: 3%;
  }
  .about__container-contant-block-info-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #f8f1e5cc;
    max-width: 90%;
  }
  .contant-block {
    margin: 0;
    padding-bottom: 30px;
  }
  .block-info4 {
    margin-bottom: 0;
  }
  .portfolio__container::after {
    content: 'Art{dev}';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -29%);
    font-size: 40px;
    font-weight: 700;
    color: #ffffff1a;
    font-family: "Orbitron", sans-serif;
    z-index: -1;
  }
}

.header-hero__container-left-video-dec {
  max-width: 100%;
}

@media (max-width: 600px) {
  .service .service__container::before {
    font-size: 72px;
  }
  .footer__bigword {
    font-size: 72px;
  }
  .review__container::before {
    font-size: 72px;
  }
  .contact__container::before {
    top: 27%;
    left: 50%;
    font-size: 163px;
  }
  .faq__container::before {
    top: 35%;
    left: 70%;
    font-size: 156px;
  }
  .question__container::before {
    content: 'Art{dev}';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -55%);
    font-size: 72px;
    font-weight: 700;
    color: #ffffff1a;
    font-family: "Orbitron", sans-serif;
    z-index: 1;
  }
  .question__info-btn {
    margin-right: 0px;
  }
  .question__info {
    position: relative;
    margin-bottom: 0px;
    border: 1px solid #f8f1e5cc;
    padding: 3% 12px 3% 14px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(3px);
    z-index: 2;
  }
  .price__btn {
    margin-bottom: 3%;
  }
  .header a {
    text-decoration: none;
  }
  .header__container {
    margin: -1.8% -1.8%  1.8% -1.8%;
    position: fixed;
    width: 100%;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #322416f0;
  }
  .header__container-logo {
    font-family: "Orbitron", sans-serif;
    font-size: 30px;
    margin-left: 30px;
    color: #f8f1e5cc;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__container-logo span {
    display: none;
  }
  .header__container-logo img {
    width: 120px;
  }
  .header__container-hire-link {
    margin: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: "Orbitron", sans-serif;
  }
  .header__container-hire-link-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 50px;
  }
  .header__container-hire-link a {
    text-decoration: none;
    padding: 10px;
    border-radius: 50%;
    -webkit-transition: all .2s;
    transition: all .2s;
    display: block;
    margin-right: 20px;
  }
  .header__container-hire-link a:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .header__container-hire-link-language {
    margin: 0 0px 0 0;
  }
  .header__container-hire-link-language-mob {
    margin: 0 0px 0 0;
    display: none;
    opacity: 0;
  }
  .header__container-hire-link-hire-me {
    margin-right: 0px;
  }
  .header__container-hire-link-hire-me-mob {
    display: block;
  }
  .header__container-hire-link-hire-me a {
    border-radius: 20px;
  }
  .header__container-logo::before {
    left: 1px !important;
    -webkit-filter: hue-rotate(20deg);
            filter: hue-rotate(20deg);
    -webkit-animation-duration: 2.2s;
            animation-duration: 2.2s;
  }
  .header__container-logo::after {
    left: -1px !important;
    -webkit-filter: hue-rotate(-20deg);
            filter: hue-rotate(-20deg);
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
  }
  .header-hero__container {
    position: relative;
    width: 100%;
    display: block;
    padding-top: 112px;
    height: 89vh;
  }
  .header-hero__container::before {
    content: 'Art{dev}';
    position: absolute;
    top: 44%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 150px;
    line-height: 107px;
    font-weight: 700;
    color: #ffffff05;
    font-family: "Orbitron", sans-serif;
    z-index: 1;
    text-transform: uppercase;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    letter-spacing: 5px;
  }
  .header-hero__container-left {
    max-width: 100%;
    z-index: 4;
  }
  .header-hero__container-left-slogan-data {
    line-height: 1.05;
  }
  .header-hero__container-left-slogan-data-slogan {
    font-size: 25px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 700;
    text-align: center;
  }
  .header-hero__container-left-slogan-data-data {
    display: inline-block;
    vertical-align: top;
    height: 100%;
    font-size: 14px;
    opacity: 0.6;
    text-transform: uppercase;
    margin-right: 40px;
    font-family: "Orbitron", sans-serif;
  }
  .header-hero__container-left-slogan-data-autor {
    vertical-align: top;
    height: 100%;
    font-size: 14px;
    opacity: 0.6;
    text-transform: uppercase;
    margin-right: 0px;
    font-family: "Orbitron", sans-serif;
    font-style: normal;
    display: none;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
  .header-hero__container-left-slogan-data-data-aliat {
    margin-left: 0px;
    text-align: right;
  }
  .header-hero__container-left-art {
    position: absolute;
    bottom: 185px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 156px;
    font-weight: 500;
    line-height: 1;
    color: #f8f1e5cc;
    font-family: "Orbitron", sans-serif;
    z-index: 2;
    width: 100%;
    /* text-align: center; */
    margin-left: 0;
  }
  .header-hero__container-left-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    display: none;
    margin-top: 50px;
    max-width: 100%;
  }
  .header-hero__container-left-video-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    display: flex;
    margin-top: 50px;
  }
  .header-hero__container-left-video-block {
    width: 200px;
    height: 80px;
    background-color: #f8f1e5cc;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
  .header-hero__container-left-video-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 12px;
    max-width: 40%;
    font-family: "Sansita Swashed", system-ui;
    font-weight: 500;
    color: #f8f1e5cc;
  }
  .header-hero__container-mid {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    height: auto;
    z-index: 3;
  }
  .header-hero__container-mid img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-filter: drop-shadow(0 5px 30px #5c4927b2);
            filter: drop-shadow(0 5px 30px #5c4927b2);
    opacity: 0.5;
  }
  .header-hero__container-mid::before, .header-hero__container-mid::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/1.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    pointer-events: none;
  }
  .header-hero__container-mid::before {
    -webkit-transform: translateX(-6px);
            transform: translateX(-6px);
    animation: glitch-before 10s infinite steps(18) alternate-reverse;
  }
  .header-hero__container-mid::after {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
    animation: glitch-after 11s infinite steps(16) alternate-reverse;
  }
  .header-hero__container-right {
    max-width: 100% !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    z-index: 3;
    position: absolute;
    right: 0;
    margin-top: 9px;
    width: 100%;
  }
  .header-hero__container-right-links-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .header-hero__container-right-links-flex a {
    display: block;
    color: #f8f1e5cc;
    font-weight: 600;
    line-height: 2;
    -webkit-transition: all .3s;
    transition: all .3s;
    text-decoration: none;
  }
  .header-hero__container-right-links-flex a:hover {
    color: #f8f1e5cc;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    text-decoration: underline;
  }
  .header-hero .fa-arrow-right {
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .header-hero__container-right-links-flex a:hover .fa-arrow-right {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    color: #574a33;
  }
  .header-hero__container-right-links-flex-block {
    text-align: center;
    margin-top: 15px;
  }
  .header-hero__container-right-about {
    text-align: right;
  }
  .header-hero__container-right-dev {
    color: #f8f1e5cc;
    position: relative;
    font-size: 130px;
    letter-spacing: -5px;
    margin-left: 58px;
    font-family: "Orbitron", sans-serif;
    margin-bottom: 0px;
    margin-top: 274px;
  }
  .service {
    position: relative;
    margin-top: -49px;
    z-index: 12;
  }
  .service__container {
    position: relative;
    background-color: #322416;
    padding: 1.8%;
    padding-bottom: 0;
    z-index: 2;
    background: #322416;
    overflow: hidden;
  }
  .service__container::before {
    content: 'Art{dev}';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
            transform: translate(-50%, -100%);
    font-size: 90px;
    font-weight: 700;
    color: #ffffff1a;
    font-family: "Orbitron", sans-serif;
    z-index: -1;
  }
  .service__container::after {
    content: url(../img/logo.PNG);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -40%) scale(0.5);
    font-weight: 700;
    z-index: -1;
    opacity: 0.3;
  }
  .service__container-title {
    text-align: center;
    color: #f8f1e5cc;
    font-size: 45px;
    font-family: "Orbitron", sans-serif;
    margin: 30px 0;
    font-weight: 500;
  }
  .service__container-subtitle {
    color: #f8f1e5cc;
    display: none;
  }
  .service__container-flex {
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .service__container-flex-left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
  }
  .service__container-flex-right {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    z-index: 6;
  }
  .service__container-flex-block {
    background: rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
    padding: 0px;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-radius: 10px;
    border: 1px solid #f8f1e5cc;
  }
  .service__container-flex-block-top-text {
    font-size: 18px;
    display: none;
  }
  .service__container-flex-block-contant {
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    padding: 10px;
  }
  .service__container-flex-block-info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
            flex: 0 0 80%;
    font-weight: 600;
  }
  .service__container-flex-block-title {
    font-size: 24px;
    font-weight: 600;
    font-family: "Orbitron", sans-serif;
    text-decoration: underline;
  }
  .service__container-flex-block-get p {
    font-size: 16px;
    margin: 1%;
  }
  .service__container-flex-block-get-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .service__container-flex-block-get-flex-block {
    margin-bottom: 3%;
  }
  .service__container-flex-block-get-flex-block-p {
    font-weight: 500;
    font-size: 16px;
  }
  .service__container-flex-block-get p {
    font-size: 16px;
    font-weight: 500;
  }
  .service__container-flex-block-subtitle {
    margin-bottom: 10px;
    color: #f8f1e5cc;
    font-size: 16px;
    font-weight: 500;
    padding: 0px 10px;
  }
  .service__container-flex-block-good-for {
    font-size: 16px;
    color: #f8f1e5cc;
    font-weight: 500;
    padding: 10px;
  }
  .service__container-flex-block-good-for span {
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
  }
  .service__container-flex-block-img {
    width: 100%;
  }
  .service__container-flex-block-img img {
    width: 100%;
    height: 270px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  .service__container-flex-mid-photo-container {
    position: relative;
  }
  .service__container-flex-mid-photo-container-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -40%);
            transform: translate(-50%, -40%);
    width: 400px;
    height: 400px;
    z-index: 10;
  }
  .service__container-flex-mid-photo-container-3d model-viewer {
    width: 100%;
    height: 100%;
  }
  .service ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding: 0;
  }
  .service ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333%;
            flex: 0 0 33.333%;
    display: block;
    text-align: center;
  }
  .about__container {
    position: relative;
    background-color: #322416;
    padding: 1.8%;
    padding-bottom: 0;
    z-index: 2;
    background: #322416;
  }
  .about__container::before {
    content: 'Art{dev}';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, 51%);
    font-size: 84px;
    font-weight: 700;
    color: #ffffff1a;
    font-family: "Orbitron", sans-serif;
    z-index: -1;
  }
  .about__container-title {
    text-align: center;
    color: #f8f1e5cc;
    font-size: 55px;
    font-family: "Orbitron", sans-serif;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .about__container-title p {
    margin: 0;
  }
  .about__container-contant {
    max-width: 95%;
    margin: 0 auto;
  }
  .about__container-contant-blocks {
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about__container-contant-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333%;
            flex: 0 0 33.333%;
    margin-bottom: 30px;
  }
  .about__container-contant-block-img {
    position: relative;
    width: 100%;
    z-index: 2;
    display: none;
  }
  .about__container-contant-block-img img {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    -webkit-filter: drop-shadow(6px 27px 49px #f8f1e5cc);
            filter: drop-shadow(6px 27px 49px #f8f1e5cc);
    opacity: 0.3;
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
  }
  .about__container-contant-block-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../img/logo.PNG");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: screen;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    z-index: 1;
    opacity: 0;
    display: none;
  }
  .about__container-contant-block-img::after {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-image: url("../img/logo.PNG");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: screen;
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    z-index: 1;
    opacity: 0;
    display: none;
  }
  .about__container-contant-block-info {
    position: relative;
    margin-bottom: 30px;
    border: 1px solid #f8f1e5cc;
    padding: 3% 0 3% 40px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
  }
  .about__container-contant-block-info::before {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 100%;
    height: 100%;
    background-image: url("../img/logo.PNG");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    opacity: 0.1;
  }
  .about__container-contant-block-info-title {
    font-size: 20px;
    font-weight: 600;
    font-family: "Orbitron", sans-serif;
    text-decoration: underline;
    letter-spacing: 1px;
    margin-bottom: 3%;
  }
  .about__container-contant-block-info-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #f8f1e5cc;
    max-width: 90%;
  }
  .contant-block {
    margin: 0;
    padding-bottom: 30px;
  }
  .block-info4 {
    margin-bottom: 0;
  }
  .portfolio__container::after {
    content: 'Art{dev}';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -29%);
    font-size: 40px;
    font-weight: 700;
    color: #ffffff1a;
    font-family: "Orbitron", sans-serif;
    z-index: -1;
  }
}

@media (max-width: 380px) {
  .service .service__container::before {
    font-size: 81px;
  }
  .question__container::before {
    font-size: 76px;
  }
  .orbit3d__center img {
    width: 694px;
    height: 100%;
  }
}

@media (max-width: 320px) {
  .service .service__container::before {
    font-size: 67px;
  }
  .about__container::before {
    font-size: 68px;
  }
  .question__container::before {
    font-size: 66px;
  }
  .review__container::before {
    font-size: 67px;
  }
  .footer__bigword {
    font-size: 54px;
  }
  .header-hero__container-right-dev {
    font-size: 118px;
    margin-left: 22px;
    margin-top: 209px;
  }
  .header-hero__container-left-art {
    bottom: 174px;
    font-size: 131px;
    margin-left: -6px;
  }
}

/* ==== QUIZ SECTION ==== */
.quiz {
  padding: 80px 16px;
  background: #322416;
  color: #f5f5f5;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.quiz__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 40px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/* Left */
.quiz__left {
  background: radial-gradient(circle at top, #3d2815 0, #1a100a 60%, #100805 100%);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
          box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
}

.quiz__left::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0% 0%, rgba(255, 215, 128, 0.15), transparent 50%), radial-gradient(circle at 100% 100%, rgba(232, 169, 75, 0.25), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.quiz__badge {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 231, 178, 0.5);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffe7b2;
  margin-bottom: 18px;
}

.quiz__title {
  position: relative;
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 14px;
  color: #ffe2a0;
}

.quiz__text {
  position: relative;
  font-size: 14px;
  color: #f5f0e8;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 30px;
}

.quiz__avatar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin-top: auto;
}

.quiz__avatar img {
  width: 400px;
  height: 400px;
  /* border-radius: 50%; */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  /* border: 2px solid rgba(255, 222, 160, 0.9); */
}

.quiz__avatar-info span {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.quiz__avatar-info small {
  font-size: 12px;
  opacity: 0.7;
}

/* Right */
.quiz__right {
  background: radial-gradient(circle at top, #211309 0, #0d0704 70%);
  border-radius: 24px;
  padding: 26px 24px 24px;
  -webkit-box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7);
          box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7);
}

/* Progress */
.quiz__progress {
  margin-bottom: 24px;
}

.quiz__progress-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}

.quiz__progress-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: -webkit-gradient(linear, left top, right top, from(#f4d192), color-stop(40%, #f7b15c), to(#f0822f));
  background: linear-gradient(90deg, #f4d192 0%, #f7b15c 40%, #f0822f 100%);
  -webkit-box-shadow: 0 0 16px rgba(240, 152, 70, 0.7);
          box-shadow: 0 0 16px rgba(240, 152, 70, 0.7);
  -webkit-transition: width 0.35s ease;
  transition: width 0.35s ease;
}

.quiz__progress-meta {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.8;
}

.quiz__progress-percent {
  font-family: "Orbitron", system-ui, sans-serif;
}

/* Steps */
.quiz-step {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.quiz-step--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.quiz-step__title {
  font-family: "Orbitron", system-ui, sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.quiz-step__subtitle {
  font-size: 13px;
  opacity: 0.75;
  margin-bottom: 12px;
}

/* Options */
.quiz-option {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 12px;
  margin-bottom: 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  gap: 10px;
  -webkit-transition: border 0.2s ease, background 0.2s ease, -webkit-transform 0.1s ease;
  transition: border 0.2s ease, background 0.2s ease, -webkit-transform 0.1s ease;
  transition: border 0.2s ease, background 0.2s ease, transform 0.1s ease;
  transition: border 0.2s ease, background 0.2s ease, transform 0.1s ease, -webkit-transform 0.1s ease;
  font-size: 14px;
}

.quiz-option input {
  position: relative;
  width: 16px;
  height: 16px;
  accent-color: #f5ba5a;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.quiz-option span {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.quiz-option:hover {
  border-color: rgba(245, 186, 90, 0.7);
  background: rgba(245, 186, 90, 0.08);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.quiz-option--radio input[type="radio"] {
  border-radius: 50%;
}

/* Fields */
.quiz-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
  font-size: 13px;
}

.quiz-field span {
  opacity: 0.8;
}

.quiz-field input,
.quiz-field textarea {
  outline: none;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 9px 10px;
  background: rgba(6, 4, 3, 0.85);
  color: #f5f5f5;
  font-size: 13px;
  resize: vertical;
}

.quiz-field input::-webkit-input-placeholder,
.quiz-field textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.quiz-field input:-ms-input-placeholder,
.quiz-field textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.quiz-field input::-ms-input-placeholder,
.quiz-field textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.quiz-field input::placeholder,
.quiz-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.quiz-field input:focus,
.quiz-field textarea:focus {
  border-color: #f5ba5a;
  -webkit-box-shadow: 0 0 0 1px rgba(245, 186, 90, 0.25);
          box-shadow: 0 0 0 1px rgba(245, 186, 90, 0.25);
}

/* Contact methods row */
.quiz-contact-methods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

/* Nav buttons */
.quiz__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 18px;
  gap: 10px;
}

.quiz-btn {
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #f5f5f5;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: "Orbitron", system-ui, sans-serif;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  -webkit-transition: background 0.2s ease, border 0.2s ease, opacity 0.15s ease, -webkit-transform 0.1s ease;
  transition: background 0.2s ease, border 0.2s ease, opacity 0.15s ease, -webkit-transform 0.1s ease;
  transition: background 0.2s ease, border 0.2s ease, opacity 0.15s ease, transform 0.1s ease;
  transition: background 0.2s ease, border 0.2s ease, opacity 0.15s ease, transform 0.1s ease, -webkit-transform 0.1s ease;
  overflow: hidden;
  position: relative;
}

.quiz-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  opacity: 0.8;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-animation: hireBtnShine 2.8s ease-in-out infinite;
          animation: hireBtnShine 2.8s ease-in-out infinite;
}

.quiz-btn--prev {
  min-width: 90px;
}

.quiz-btn--next,
.quiz-btn--submit {
  background: linear-gradient(135deg, #f3c67a, #f59642);
  color: #2a180c;
  border-color: transparent;
  -webkit-box-shadow: 0 10px 26px rgba(0, 0, 0, 0.65);
          box-shadow: 0 10px 26px rgba(0, 0, 0, 0.65);
}

.quiz-btn:hover:not(:disabled) {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 14px 30px rgba(0, 0, 0, 0.8);
          box-shadow: 0 14px 30px rgba(0, 0, 0, 0.8);
}

.quiz-btn:disabled {
  opacity: 0.4;
  cursor: default;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* Responsive */
@media (max-width: 900px) {
  .quiz__inner {
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
  .quiz__left {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

@media (max-width: 600px) {
  .quiz {
    padding: 56px 12px;
  }
  .quiz__right {
    padding: 20px 16px;
  }
  .quiz__title {
    font-size: 18px;
  }
  .quiz-option {
    font-size: 13px;
  }
  .quiz-btn {
    font-size: 11px;
    padding: 9px 14px;
  }
  .quiz__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.service__container-flex-block-img img {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.fullscreen-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}

.fullscreen-overlay img {
  max-width: 90%;
  max-height: 90%;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.close-btn:hover {
  color: #bbb;
}

@-webkit-keyframes hire-glitch-logo {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 1px);
            transform: translate(-2px, 1px);
  }
  40% {
    -webkit-transform: translate(2px, -1px);
            transform: translate(2px, -1px);
  }
  60% {
    -webkit-transform: translate(-1px, -2px);
            transform: translate(-1px, -2px);
  }
  80% {
    -webkit-transform: translate(1px, 2px);
            transform: translate(1px, 2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes hire-glitch-logo {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 1px);
            transform: translate(-2px, 1px);
  }
  40% {
    -webkit-transform: translate(2px, -1px);
            transform: translate(2px, -1px);
  }
  60% {
    -webkit-transform: translate(-1px, -2px);
            transform: translate(-1px, -2px);
  }
  80% {
    -webkit-transform: translate(1px, 2px);
            transform: translate(1px, 2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@-webkit-keyframes glitchAnimLogo {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  5% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
            clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }
  10% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 40%, 0 40%);
            clip-path: polygon(0 30%, 100% 30%, 100% 40%, 0 40%);
  }
  15% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 70%, 0 70%);
            clip-path: polygon(0 60%, 100% 60%, 100% 70%, 0 70%);
  }
  20% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 90%, 0 90%);
            clip-path: polygon(0 80%, 100% 80%, 100% 90%, 0 90%);
  }
  25%, 100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes glitchAnimLogo {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  5% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
            clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }
  10% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 40%, 0 40%);
            clip-path: polygon(0 30%, 100% 30%, 100% 40%, 0 40%);
  }
  15% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 70%, 0 70%);
            clip-path: polygon(0 60%, 100% 60%, 100% 70%, 0 70%);
  }
  20% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 90%, 0 90%);
            clip-path: polygon(0 80%, 100% 80%, 100% 90%, 0 90%);
  }
  25%, 100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@-webkit-keyframes glitch-before {
  0%, 100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  4% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
            clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }
  8% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 40%, 0 40%);
            clip-path: polygon(0 30%, 100% 30%, 100% 40%, 0 40%);
  }
  12% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 70%, 0 70%);
            clip-path: polygon(0 60%, 100% 60%, 100% 70%, 0 70%);
  }
  16% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 90%, 0 90%);
            clip-path: polygon(0 80%, 100% 80%, 100% 90%, 0 90%);
  }
  24% {
    -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 15%, 0 15%);
            clip-path: polygon(0 5%, 100% 5%, 100% 15%, 0 15%);
  }
  32% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 50%, 0 50%);
            clip-path: polygon(0 40%, 100% 40%, 100% 50%, 0 50%);
  }
  40% {
    -webkit-clip-path: polygon(0 65%, 100% 65%, 100% 75%, 0 75%);
            clip-path: polygon(0 65%, 100% 65%, 100% 75%, 0 75%);
  }
  55% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 30%, 0 30%);
            clip-path: polygon(0 20%, 100% 20%, 100% 30%, 0 30%);
  }
  65% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 60%, 0 60%);
            clip-path: polygon(0 50%, 100% 50%, 100% 60%, 0 60%);
  }
  75% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
            clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
  }
  85% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 40%, 0 40%);
            clip-path: polygon(0 30%, 100% 30%, 100% 40%, 0 40%);
  }
}

@keyframes glitch-before {
  0%, 100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  4% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
            clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }
  8% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 40%, 0 40%);
            clip-path: polygon(0 30%, 100% 30%, 100% 40%, 0 40%);
  }
  12% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 70%, 0 70%);
            clip-path: polygon(0 60%, 100% 60%, 100% 70%, 0 70%);
  }
  16% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 90%, 0 90%);
            clip-path: polygon(0 80%, 100% 80%, 100% 90%, 0 90%);
  }
  24% {
    -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 15%, 0 15%);
            clip-path: polygon(0 5%, 100% 5%, 100% 15%, 0 15%);
  }
  32% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 50%, 0 50%);
            clip-path: polygon(0 40%, 100% 40%, 100% 50%, 0 50%);
  }
  40% {
    -webkit-clip-path: polygon(0 65%, 100% 65%, 100% 75%, 0 75%);
            clip-path: polygon(0 65%, 100% 65%, 100% 75%, 0 75%);
  }
  55% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 30%, 0 30%);
            clip-path: polygon(0 20%, 100% 20%, 100% 30%, 0 30%);
  }
  65% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 60%, 0 60%);
            clip-path: polygon(0 50%, 100% 50%, 100% 60%, 0 60%);
  }
  75% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
            clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
  }
  85% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 40%, 0 40%);
            clip-path: polygon(0 30%, 100% 30%, 100% 40%, 0 40%);
  }
}

@-webkit-keyframes glitch-after {
  0%, 100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  5% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 25%, 0 25%);
            clip-path: polygon(0 15%, 100% 15%, 100% 25%, 0 25%);
  }
  10% {
    -webkit-clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%);
            clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%);
  }
  15% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
            clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
  }
  25% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
            clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }
  35% {
    -webkit-clip-path: polygon(0 35%, 100% 35%, 100% 45%, 0 45%);
            clip-path: polygon(0 35%, 100% 35%, 100% 45%, 0 45%);
  }
  45% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 70%, 0 70%);
            clip-path: polygon(0 60%, 100% 60%, 100% 70%, 0 70%);
  }
  60% {
    -webkit-clip-path: polygon(0 25%, 100% 25%, 100% 35%, 0 35%);
            clip-path: polygon(0 25%, 100% 25%, 100% 35%, 0 35%);
  }
  70% {
    -webkit-clip-path: polygon(0 55%, 100% 55%, 100% 65%, 0 65%);
            clip-path: polygon(0 55%, 100% 55%, 100% 65%, 0 65%);
  }
  80% {
    -webkit-clip-path: polygon(0 75%, 100% 75%, 100% 85%, 0 85%);
            clip-path: polygon(0 75%, 100% 75%, 100% 85%, 0 85%);
  }
  90% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 50%, 0 50%);
            clip-path: polygon(0 40%, 100% 40%, 100% 50%, 0 50%);
  }
}

@keyframes glitch-after {
  0%, 100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  5% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 25%, 0 25%);
            clip-path: polygon(0 15%, 100% 15%, 100% 25%, 0 25%);
  }
  10% {
    -webkit-clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%);
            clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%);
  }
  15% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
            clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
  }
  25% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
            clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }
  35% {
    -webkit-clip-path: polygon(0 35%, 100% 35%, 100% 45%, 0 45%);
            clip-path: polygon(0 35%, 100% 35%, 100% 45%, 0 45%);
  }
  45% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 70%, 0 70%);
            clip-path: polygon(0 60%, 100% 60%, 100% 70%, 0 70%);
  }
  60% {
    -webkit-clip-path: polygon(0 25%, 100% 25%, 100% 35%, 0 35%);
            clip-path: polygon(0 25%, 100% 25%, 100% 35%, 0 35%);
  }
  70% {
    -webkit-clip-path: polygon(0 55%, 100% 55%, 100% 65%, 0 65%);
            clip-path: polygon(0 55%, 100% 55%, 100% 65%, 0 65%);
  }
  80% {
    -webkit-clip-path: polygon(0 75%, 100% 75%, 100% 85%, 0 85%);
            clip-path: polygon(0 75%, 100% 75%, 100% 85%, 0 85%);
  }
  90% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 50%, 0 50%);
            clip-path: polygon(0 40%, 100% 40%, 100% 50%, 0 50%);
  }
}

@-webkit-keyframes burger-glitch-line {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  12% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  24% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  36% {
    -webkit-transform: translateX(-1px);
            transform: translateX(-1px);
  }
  48% {
    -webkit-transform: translateX(1px);
            transform: translateX(1px);
  }
  60% {
    -webkit-transform: translateX(-1px);
            transform: translateX(-1px);
  }
  72% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  84% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes burger-glitch-line {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  12% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  24% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  36% {
    -webkit-transform: translateX(-1px);
            transform: translateX(-1px);
  }
  48% {
    -webkit-transform: translateX(1px);
            transform: translateX(1px);
  }
  60% {
    -webkit-transform: translateX(-1px);
            transform: translateX(-1px);
  }
  72% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  84% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.contact-widget {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 2000;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.contact-widget__toggle {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #f8f1e5cc;
  background: radial-gradient(circle at 30% 30%, #d7b780 0, #d7b780 55%, #d7b780 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  color: #f5f5f5;
  -webkit-box-shadow: 0 0 24px rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 24px rgba(0, 0, 0, 0.8);
  outline: none;
  overflow: hidden;
}

.contact-widget__toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  opacity: 0.8;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-animation: hireBtnShine 2.8s ease-in-out infinite;
          animation: hireBtnShine 2.8s ease-in-out infinite;
}

.contact-widget__toggle::after {
  border-color: rgba(255, 255, 255, 0.5);
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}

@-webkit-keyframes contact-glitch {
  0%, 80%, 100% {
    opacity: 0;
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
  10% {
    opacity: 1;
    -webkit-transform: translate(-2px, 1px) scale(1.02);
            transform: translate(-2px, 1px) scale(1.02);
  }
  20% {
    -webkit-transform: translate(3px, -1px) scale(1.01);
            transform: translate(3px, -1px) scale(1.01);
  }
  30% {
    -webkit-transform: translate(-1px, 2px) scale(1.03);
            transform: translate(-1px, 2px) scale(1.03);
  }
  40% {
    -webkit-transform: translate(1px, -2px) scale(1.01);
            transform: translate(1px, -2px) scale(1.01);
  }
  50% {
    opacity: 0.7;
    -webkit-transform: translate(-3px, 1px) scale(1.04);
            transform: translate(-3px, 1px) scale(1.04);
  }
}

@keyframes contact-glitch {
  0%, 80%, 100% {
    opacity: 0;
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
  }
  10% {
    opacity: 1;
    -webkit-transform: translate(-2px, 1px) scale(1.02);
            transform: translate(-2px, 1px) scale(1.02);
  }
  20% {
    -webkit-transform: translate(3px, -1px) scale(1.01);
            transform: translate(3px, -1px) scale(1.01);
  }
  30% {
    -webkit-transform: translate(-1px, 2px) scale(1.03);
            transform: translate(-1px, 2px) scale(1.03);
  }
  40% {
    -webkit-transform: translate(1px, -2px) scale(1.01);
            transform: translate(1px, -2px) scale(1.01);
  }
  50% {
    opacity: 0.7;
    -webkit-transform: translate(-3px, 1px) scale(1.04);
            transform: translate(-3px, 1px) scale(1.04);
  }
}

.contact-widget__icon {
  font-size: 26px;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.9));
          filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.9));
}

.contact-widget__panel {
  position: absolute;
  left: 80px;
  bottom: 0;
  width: 280px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(5, 5, 5, 0.92);
  border: 1px solid rgba(140, 111, 61, 0.5);
  -webkit-box-shadow: 0 24px 40px rgba(0, 0, 0, 0.85);
          box-shadow: 0 24px 40px rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  color: #f5f5f5;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.22s ease-out, -webkit-transform 0.22s ease-out;
  transition: opacity 0.22s ease-out, -webkit-transform 0.22s ease-out;
  transition: opacity 0.22s ease-out, transform 0.22s ease-out;
  transition: opacity 0.22s ease-out, transform 0.22s ease-out, -webkit-transform 0.22s ease-out;
}

.contact-widget__panel--open {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

.contact-widget__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(20, 20, 20, 0.9);
  color: #f5f5f5;
  cursor: pointer;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-widget__title {
  margin: 0 28px 4px 0;
  font-size: 15px;
  font-weight: 700;
}

.contact-widget__subtitle {
  margin: 0 28px 14px 0;
  font-size: 13px;
  color: #b0b0b0;
}

.contact-widget__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.contact-widget__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 9px 10px;
  border-radius: 999px;
  border: 1px solid rgba(140, 111, 61, 0.6);
  text-decoration: none;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #f5f5f5;
  -webkit-transition: background 0.18s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.18s ease;
  transition: background 0.18s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.18s ease;
  transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
  transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.18s ease;
}

.contact-widget__btn--tg {
  background: linear-gradient(135deg, #1c3448, #0088cc);
}

.contact-widget__btn--wa {
  background: linear-gradient(135deg, #0f3b25, #25d366);
}

.contact-widget__btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.75);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.75);
}

@media (max-width: 768px) {
  .contact-widget {
    left: 16px;
    bottom: 16px;
  }
  .contact-widget__panel {
    left: 0;
    bottom: 80px;
  }
}

#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 13px;
  z-index: 99;
  font-size: 24px;
  background-color: #d7b780e7;
  color: #322416;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  text-align: center;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

#scrollToTopBtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  opacity: 0.8;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-animation: hireBtnShine 2.8s ease-in-out infinite;
          animation: hireBtnShine 2.8s ease-in-out infinite;
}

#scrollToTopBtn:hover {
  background-color: #f8f1e5cc;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 999999;
}

.modal.modal--open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal__content {
  position: relative;
  z-index: 1;
  color: #322416;
  max-width: 480px;
  width: 100%;
  padding: 20px;
  border-radius: 12px;
}

.modal__close {
  position: absolute;
  top: 56px;
  right: 34px;
  border: none;
  background: #ffffff00;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
}

.modal__body {
  margin-top: 24px;
}

@-webkit-keyframes hireBtnShine {
  0% {
    left: -120%;
  }
  40% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}

@keyframes hireBtnShine {
  0% {
    left: -120%;
  }
  40% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}
/*# sourceMappingURL=style.css.map */