@charset "UTF-8";

:root {
  
  --color-bg: #F7F4EF;
  
  --color-bg-soft: #EFE9E3;
  
  --color-red: #B83232;
  
  --color-red-dark: #8A2424;
  
  --color-gold: #C9A463;
  
  --color-gold-dark: #A98A52;
  
  --color-text: #2B2B2B;
  
  --color-text-soft: #5A5A5A;
  
  --color-border: #D9D2C8;
  
  --color-hover: #F1E9E2;
  
  --color-white: #FFF;
  
  --font-main: -apple-system, BlinkMacSystemFont,
  "PingFang SC", "Microsoft YaHei", "Heiti SC", "WenQuanYi Micro Hei",
  "Segoe UI", Roboto, sans-serif;
  --font-size-logo: 36px;
  --font-size-h1: 32px;
  --font-size-h2: 24px;
  --font-size-mega: 18px;
  --font-size-body: 16px;
  --font-size-small: 14px;
  --font-size-mini: 12px;
  --line-height-base: 1.65;
  
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-s: 12px;
  --space-m: 16px;
  --space-l: 24px;
  --space-xl: 32px;
  
  --radius-s: 4px;
  --radius-m: 8px;
  --radius-l: 12px;
  
  --shadow-soft: 0 1px 4px rgba(0, 0, 0, 0.08),
  0 0 14px rgba(0, 0, 0, 0.03);
  --shadow-strong: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-menu: 0 1px 8px rgba(0, 0, 0, 0.05);
  
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.45s ease;
}

* {
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: var(--line-height-base);
  background: var(--color-bg);
  overflow-x: hidden;
}

body.swal2-shown {
  overflow: auto !important;
  padding-right: 0 !important;
}

.header {
  top: 0;
  width: 100%;
  position: fixed;
  z-index: 999;
  padding: var(--space-m) 0;
  background-color: transparent;
  transition: var(--transition-base);
}

.header-shrink {
  background-color: var(--color-white);
  box-shadow: var(--shadow-menu);
  width: 100%;
}

.header-shrink .navbar-item {
  color: var(--color-red);
}

.header-shrink .navbar-item:hover {
  color: var(--color-red-dark);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.header-slider {
  width: 100%;
  height: 60vh;
}

.header-slider .swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header-slider .slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.header-slider .slide-content {
  position: relative;
  z-index: 5;
  left: 8%;
  transform: translateY(0);
  color: #fff;
}

.header-slider .slide-title {
  font-size: 50px;
  margin: 0 0 var(--space-s);
}

.header-slider .slide-desc {
  font-size: 24px;
  max-width: 600px;
}

.header-slider .slide-controls {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: var(--space-m);
  flex-direction: column;
  align-items: center;
  z-index: 6;
}

.header-slider .slide-controls .slide-button-prev,
.header-slider .slide-controls .slide-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xs);
  border: 1px solid var(--color-border);
  cursor: pointer;
}

.header-slider .slide-controls .slide-button-prev:hover,
.header-slider .slide-controls .slide-button-prev:active,
.header-slider .slide-controls .slide-button-next:hover,
.header-slider .slide-controls .slide-button-next:active {
  border-color: var(--color-hover);
}

.header-slider .slide-controls .slide-button-prev svg,
.header-slider .slide-controls .slide-button-next svg {
  fill: var(--color-border);
  width: 30px;
  height: auto;
}

.header-slider .slide-controls .slide-button-prev {
  order: 1;
}

.header-slider .slide-controls .slide-pagination {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  align-items: center;
}

.header-slider .slide-controls .slide-pagination .swiper-pagination-bullet {
  background: var(--color-white);
  font-size: var(--font-size-body);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 0;
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.header-slider .slide-controls .slide-pagination .swiper-pagination-bullet-active {
  background: var(--color-gold-dark);
}

.header-slider .slide-controls .slide-button-next {
  order: 3;
}

.header-slider .parallax-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.container {
  margin: 0 auto;
  padding: 0 var(--space-m);
  width: 1300px;
  position: relative;
}

.logotype a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-s);
  font-size: var(--font-size-logo);
  font-weight: 700;
  color: var(--color-gold-dark);
}

.logotype a svg {
  width: 60px;
  height: auto;
  fill: var(--color-red-dark);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.navbar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--space-l);
}

.navbar-item {
  padding: var(--space-xxs) 0;
  position: relative;
  display: block;
  color: var(--color-gold);
  font-size: var(--font-size-mega);
  font-weight: 500;
  transition: var(--transition-base);
}

.navbar-item a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  transition: inherit;
}

.navbar-item:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 0;
  height: 2px;
  background: var(--color-gold-dark);
  transition: var(--transition-base);
}

.navbar-item:hover {
  color: var(--color-gold-dark);
}

.navbar-item:hover:before {
  width: 100%;
}

.section {
  padding: 80px 0;
}

.section-bottom {
  padding: 0 0 80px;
}

.section-title {
  color: var(--color-red-dark);
  font-size: var(--font-size-h1);
  font-weight: 500;
  text-align: center;
  padding-bottom: var(--space-m);
  margin-bottom: 50px;
  position: relative;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  height: 2px;
  background: var(--color-gold-dark);
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  width: 100px;
  bottom: 2px;
}

.section-title::before {
  width: 150px;
  bottom: 6px;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.about-map {
  width: 240px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  position: relative;
}

.about-map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  max-width: 550px;
}

.about-text {
  font-size: var(--font-size-body);
  font-weight: 400;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: var(--space-s);
}

.pulse {
  position: absolute;
  top: 50px;
  right: 60px;
  width: 20px;
  height: 20px;
  z-index: 999;
}

.pulse span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-red-dark);
  border-radius: 50%;
  animation: pulse 2.5s linear infinite;
  box-sizing: border-box;
}

.pulse span:nth-child(1) {
  animation-delay: 0s;
}

.pulse span:nth-child(2) {
  animation-delay: 0.5s;
}

.pulse span:nth-child(3) {
  animation-delay: 1s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

#services {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.services-wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 150px;
}

.services-card {
  position: relative;
  padding: var(--space-l);
  border: 1px solid var(--color-border);
  text-align: left;
  text-indent: 25px;
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

.services-card-icon {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-red-dark);
  box-shadow: var(--shadow-strong);
  width: 80px;
  height: 80px;
  left: 50%;
  transform: translateX(-50%);
  top: -60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-card-icon img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.parallax {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.img1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url("/public/img/bg-1.jpg");
}

.prices-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  gap: 150px;
  overflow: hidden;
}

.prices-card {
  position: relative;
  padding: var(--space-l);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  overflow: hidden;
  flex-basis: 50%;
}

.prices-card-title {
  font-size: var(--font-size-h2);
  margin-bottom: var(--space-l);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
}

.prices-official-text {
  color: var(--color-text-soft);
  font-size: var(--font-size-body);
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.prices-key-factor {
  margin-top: var(--space-l);
  background: var(--color-bg-soft);
  padding: var(--space-m);
  border-top-left-radius: var(--radius-l);
  border-bottom-left-radius: var(--radius-l);
  border-left: 3px solid var(--color-gold-dark);
}

.prices-key-factor h4 {
  font-size: var(--font-size-mega);
  color: var(--color-red-dark);
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.prices-key-factor p {
  font-size: var(--font-size-small);
  color: var(--color-text-soft);
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.prices-key-factor span {
  font-weight: 700;
  color: #333;
  font-size: var(--font-size-mega);
}

#process {
  width: 100%;
  background-image: linear-gradient(var(--color-bg) 0%, var(--color-gold) 90%);
  background-repeat: no-repeat, no-repeat;
  background-position: left 0 top 0, left calc(500px + 50%) center;
  background-size: auto, contain;
  background-attachment: scroll, scroll;
}

#process-next {
  width: 100%;
  background-color: var(--color-gold);
}

.process-description {
  font-size: var(--font-size-h2);
  margin-bottom: var(--space-l);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  width: 100%;
}

.timeline {
  width: 100%;
  position: relative;
}

.timeline:after {
  content: "";
  position: absolute;
  width: 4px;
  background-color: var(--color-red-dark);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.timeline-item {
  padding: 10px 130px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 60px;
}

.timeline-item:nth-child(odd) .timeline-icon {
  right: -20px;
}

.timeline-item:nth-child(odd) .timeline-content::after {
  right: -10px;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent var(--color-red);
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 60px;
}

.timeline-item:nth-child(even) .timeline-icon {
  left: -20px;
}

.timeline-item:nth-child(even) .timeline-content::after {
  left: -10px;
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--color-red) transparent transparent;
}

.timeline-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: var(--font-size-h2);
  font-weight: bold;
  z-index: 10;
  border: 4px solid var(--color-red-dark);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-content {
  padding: 20px 25px;
  background-color: var(--color-bg-soft);
  border: 1px solid var(--color-red);
}

.timeline-content h3 {
  color: var(--color-red);
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-mega);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.timeline-content svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--color-red);
  stroke-width: 2;
}

.timeline-content p {
  font-size: var(--font-size-small);
  color: var(--color-text-soft);
}

.timeline-content:after {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  top: 10px;
  border: medium solid var(--color-red);
}

#choice {
  width: 100%;
  background-image: linear-gradient(var(--color-gold) 0%, var(--color-red-dark) 90%);
  background-repeat: no-repeat, no-repeat;
  background-position: left 0 top 0, left calc(500px + 50%) center;
  background-size: auto, contain;
  background-attachment: scroll, scroll;
}

.choice-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  gap: 50px;
}

.choice-content {
  flex: 1;
  max-width: 60%;
}

.choice-content h2 {
  font-size: var(--font-size-h1);
  color: var(--color-red-dark);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: var(--space-s);
  margin-bottom: var(--space-l);
  font-weight: 700;
}

.choice-content p {
  margin-bottom: var(--space-m);
  color: var(--color-text);
  font-size: var(--font-size-body);
}

.choice-image-block {
  flex: 1;
  max-width: 40%;
  padding: 20px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}

.choice-image-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.choice-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-l);
  padding: var(--space-s) var(--space-l);
  background-color: var(--color-red);
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 700;
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-strong);
  transition: var(--transition-base);
}

.choice-button:hover {
  background-color: var(--color-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(184, 50, 50, 0.4);
}

.choice-button svg {
  stroke: var(--color-white);
  width: 18px;
  height: 18px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  background: var(--color-white);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.contact-info-panel {
  background-color: var(--color-red-dark);
  background-image: linear-gradient(135deg, var(--color-red-dark) 0%, #5e1616 100%);
  padding: 50px 40px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-panel-title {
  font-size: var(--font-size-h2);
  margin-bottom: var(--space-xs);
  color: var(--color-gold);
}

.contact-info-panel-text {
  opacity: 0.9;
  margin-bottom: var(--space-xl);
}

.contact-form-panel {
  padding: 50px;
}

.contact-card-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-card-item-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(-radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

.contact-card-item-icon-box svg {
  width: 24px;
  height: 24px;
}

.contact-card-item-info-content h4 {
  font-size: var(--font-size-body);
  margin-bottom: var(--space-xxs);
  opacity: 0.8;
}

.contact-card-item-info-content p {
  font-size: var(--font-size-mega);
  font-weight: 600;
  line-height: 1.4;
}

.contact-card-item-info-content span {
  font-size: var(--font-size-small);
  font-weight: 400;
  opacity: 0.7;
  margin-top: var(--space-xxs);
}

form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.form-group {
  position: relative;
  width: 100%;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text-soft);
}

.form-group:has(input[required]) label::after,
.form-group:has(textarea[required]) label::after {
  content: " *";
  color: #e53935;
  font-weight: bold;
}

.form-control {
  width: 100%;
  padding: 15px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 16px;
  transition: var(--transition-base);
  font-family: inherit;
}

.form-control:focus {
  border-color: var(--color-gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 164, 99, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  background: var(--color-gold-dark);
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-base);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn-submit:hover {
  background: var(--color-gold);
  transform: translateY(-2px);
}

#footer {
  background: #1a0808;
  color: rgba(255, 255, 255, 0.6);
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
  border-top: 5px solid var(--color-gold-dark);
}

.upbtn {
  z-index: 9999;
  width: 70px;
  height: 70px;
  color: var(--color-white);
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  border: 3px solid var(--color-gold-dark);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.7s ease-in-out;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--color-red-dark);
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMS4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDQ5MS44NTggNDkxLjg1OCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNDkxLjg1OCA0OTEuODU4OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjMycHgiIGhlaWdodD0iMzJweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTQ5MS44NTgsNDQyLjQ2MWMwLDEzLjkzMS0xMS4yOTMsMjUuMjI0LTI1LjIyNCwyNS4yMjRMMjQ1LjkzLDM3My4wOTdMMjUuMjI0LDQ2Ny42ODYgICAgQzExLjI5Miw0NjcuNjg2LDAsNDU2LjM5MiwwLDQ0Mi40NjFMMjI3LjAxMSwzMi41OGMwLDAsMTguOTE4LTE4LjkxOCwzNy44MzQsMEMyODMuNzY0LDUxLjQ5OSw0OTEuODU4LDQ0Mi40NjEsNDkxLjg1OCw0NDIuNDYxeiIgZmlsbD0iI0ZGRkZGRiIvPgoJPC9nPgoJPGc+Cgk8L2c+Cgk8Zz4KCTwvZz4KCTxnPgoJPC9nPgoJPGc+Cgk8L2c+Cgk8Zz4KCTwvZz4KCTxnPgoJPC9nPgoJPGc+Cgk8L2c+Cgk8Zz4KCTwvZz4KCTxnPgoJPC9nPgoJPGc+Cgk8L2c+Cgk8Zz4KCTwvZz4KCTxnPgoJPC9nPgoJPGc+Cgk8L2c+Cgk8Zz4KCTwvZz4KCTxnPgoJPC9nPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+CjxnPgo8L2c+Cjwvc3ZnPgo=);
}

.upbtn:hover {
  transform: scale(1.2);
  box-shadow: var(--shadow-strong);
}

.line {
  background: var(--color-bg);
}

.line svg {
  width: 100%;
  height: 60px;
}

.mobile-menu-checkbox {
  display: none;
}

.mobile-menu-checkbox:checked + .mobile-menu-button {
  position: fixed;
  top: 20px;
  right: 20px;
  transition: all 0.3s ease;
}

.mobile-menu-checkbox:checked + .mobile-menu-button:before {
  transform: rotate(45deg);
  top: 50%;
}

.mobile-menu-checkbox:checked + .mobile-menu-button:after {
  opacity: 0;
}

.mobile-menu-checkbox:checked + .mobile-menu-button span {
  transform: rotate(-45deg);
  bottom: 50%;
}

.mobile-menu-checkbox:checked ~ .navbar {
  right: 0;
}

.mobile-menu-button {
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  display: none;
  z-index: 1001;
}

.mobile-menu-button:after,
.mobile-menu-button:before,
.mobile-menu-button span {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-red);
  transition: 0.3s ease;
}

.mobile-menu-button:before {
  top: 0;
  transform: translateY(0);
}

.mobile-menu-button:after {
  bottom: 0;
  transform: translateY(0);
}

.mobile-menu-button span {
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1400px) {
  .header-slider .slide-title {
    font-size: 40px;
    margin: 0 0 var(--space-xs);
  }

  .header-slider .slide-desc {
    font-size: 20px;
  }

  .header-slider .slide-controls .slide-button-prev,
  .header-slider .slide-controls .slide-button-next {
    padding: var(--space-xxs);
  }

  .header-slider .slide-controls .slide-button-prev svg,
  .header-slider .slide-controls .slide-button-next svg {
    width: 25px;
  }

  .container {
    width: 1170px;
  }

  .section {
    padding: 60px 0;
  }

  .section-bottom {
    padding: 0 0 60px;
  }

  .section-title {
    font-size: 28px;
    padding-bottom: var(--space-s);
    margin-bottom: 40px;
  }

  .services-wrapper {
    gap: 100px;
  }

  .services-card-icon {
    top: -40px;
    width: 60px;
    height: 60px;
  }

  .prices-wrapper {
    gap: 100px;
  }

  .prices-card-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .prices-official-text {
    gap: 20px;
  }

  .choice-content h2 {
    font-size: 28px;
  }

  .choice-image-block {
    max-width: 35%;
  }

  .contact-wrapper {
    gap: 30px;
  }
}

@media (max-width: 1200px) {
  .header-slider .slide-title {
    font-size: 30px;
  }

  .header-slider .slide-desc {
    font-size: 18px;
    max-width: 400px;
  }

  .header-slider .slide-controls {
    flex-direction: row;
    top: unset;
    right: 20px;
    transform: translateY(0);
    bottom: 20px;
    gap: var(--space-xs);
  }

  .header-slider .slide-controls .slide-pagination {
    flex-direction: row;
    gap: var(--space-xs);
  }

  .container {
    width: 970px;
  }

  .logotype a {
    font-size: var(--font-size-h1);
  }

  .logotype a svg {
    width: 50px;
  }

  .navbar-list {
    gap: 20px;
  }

  .section {
    padding: 40px 0;
  }

  .section-bottom {
    padding: 0 0 40px;
  }

  .section-title {
    font-size: var(--space-l);
    margin-bottom: 30px;
  }

  .services-wrapper {
    gap: 50px;
  }

  .parallax {
    padding-top: 60px;
  }

  .prices-wrapper {
    gap: 50px;
  }

  .process-description {
    font-size: var(--font-size-mega);
  }

  .timeline-item {
    padding: 10px 0;
  }

  .choice-content h2 {
    font-size: var(--space-l);
  }

  .choice-image-block {
    max-width: 40%;
    padding: var(--space-s);
  }

  .contact-wrapper {
    gap: 0;
  }

  .contact-info-panel {
    padding: 30px;
    gap: 30px;
  }

  .contact-form-panel {
    padding: 30px;
  }

  .upbtn {
    width: 60px;
    height: 60px;
    background-size: 60%;
  }
}

@media (max-width: 992px) {
  .header-slider .slide-content {
    left: 50%;
    transform: translateX(-50%);
  }

  .container {
    width: 750px;
  }

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-bg-soft);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: -6px 0px 8px rgba(0, 0, 0, 0.15);
  }

  .navbar-list {
    flex-direction: column;
  }

  .about-wrapper {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  .about-list {
    max-width: unset;
  }

  .about-text {
    font-size: var(--font-size-small);
    width: 100%;
  }

  .services-wrapper {
    flex-direction: column;
  }

  .services-card {
    font-size: var(--font-size-small);
  }

  .prices-wrapper {
    flex-direction: column;
  }

  .prices-card {
    flex-basis: unset;
    width: 100%;
  }

  .prices-card-title {
    font-size: 20px;
  }

  .timeline:after {
    left: 5%;
  }

  .timeline-item {
    width: 95%;
  }

  .timeline-item:nth-child(odd) {
    padding-right: unset;
    left: 5%;
    padding-left: 60px;
  }

  .timeline-item:nth-child(odd) .timeline-icon {
    right: unset;
    left: -20px;
  }

  .timeline-item:nth-child(odd) .timeline-content::after {
    right: unset;
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--color-red) transparent transparent;
  }

  .timeline-item:nth-child(even) {
    left: 5%;
  }

  .choice-wrapper {
    justify-content: center;
    gap: 30px;
    flex-direction: column;
  }

  .choice-content {
    max-width: 100%;
  }

  .choice-image-block {
    max-width: 80%;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .mobile-menu-button {
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .header-slider {
    height: 50vh;
  }

  .header-slider .slide-title {
    font-size: 26px;
  }

  .header-slider .slide-desc {
    font-size: 16px;
    max-width: 300px;
  }

  .header-slider .slide-controls {
    right: 50%;
    transform: translateX(50%);
  }

  .container {
    width: 100%;
  }
}