@charset "UTF-8";
header {
  font-family: "Sofia Sans", sans-serif;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 2000;
  text-transform: uppercase;
}

nav {
  display: none;
}

.promo-header-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: relative;
}

.promo-header-box {
  width: 33%;
  display: flex;
  justify-content: center;
}

/* Левое меню */
.menu-left {
  display: flex;
  gap: 20px;
  width: 33%;
}

.menu-left a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.menu-left a:hover {
  color: #007bff;
}

/* Логотип по центру */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

/* Кнопка справа */
.phone-btn {
  background: #007bff;
  color: #fff;
  padding: 8px 20px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.phone-btn:hover {
  background: #0056b3;
}

/* Бургер */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.4s ease;
}

.promo {
  padding: 0 40px;
  max-width: 1280px;
  margin: auto;
  margin-bottom: 40px;
}

.promo-box {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/img/promo.jpg") center/cover no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  height: 85vh;
  border-radius: 25px;
}

.text-container {
  max-width: 1200px;
  padding: 0 20px;
  margin: auto;
  margin-bottom: 20px;
}
.text-container-contacts {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end !important;
}

.container-title {
  text-align: center;
  font-size: 26px;
}
.container-title-contacts {
  padding-top: 10px;
  margin: 0;
  margin-bottom: 30px;
  padding: 0;
}

.plate-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
}

.plate-img-block {
  display: block;
  margin: auto;
}

.promo-logo {
  width: 250px;
  margin: auto;
}

.promo-title {
  font-size: 32px;
  color: #fff;
  font-weight: 400;
  padding-top: 25%;
}

.promo-subtitle {
  font-size: 20px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 50px;
}

.promo-btn {
  color: #fff;
  border-radius: 100px;
  padding: 5px 30px;
  text-transform: uppercase;
  background-color: #007bff;
  font-weight: bold;
}
.promo-btn:hover {
  background: #0056b3;
  transition: 0.2s;
}

.calc-box {
  width: 50%;
  margin: auto;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 25px;
  color: #fff;
  padding: 20px;
}
.calc-title {
  text-align: center;
}
.calc-container {
  margin-bottom: 10px;
  background-color: #fff;
  border-radius: 15px;
  color: #007bff;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 16px;
}
.calc-label {
  width: 50%;
}
.calc-input {
  box-shadow: 0;
  border-radius: 5px;
  border: 1px solid transparent;
  padding: 5px;
  width: 50%;
  outline: none;
  font-family: "Nata Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
}
.calc-input:active {
  color: rgb(125, 125, 125);
}
.calc-input::-moz-placeholder {
  color: rgb(126, 126, 126);
  font-family: "Nata Sans", sans-serif;
}
.calc-input::placeholder {
  color: rgb(126, 126, 126);
  font-family: "Nata Sans", sans-serif;
}
.calc-input:hover::-moz-placeholder {
  color: rgb(53, 53, 53);
  -moz-transition: 0.2s;
  transition: 0.2s;
}
.calc-input:hover::placeholder {
  color: rgb(53, 53, 53);
  transition: 0.2s;
}
.calc-select {
  box-shadow: 0;
  border-radius: 5px;
  border: 1px solid transparent;
  padding: 5px;
  width: 60%;
  outline: none;
  font-family: "Nata Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgb(126, 126, 126);
}
.calc-select:hover {
  color: rgb(53, 53, 53);
}
.calc-option:hover::-moz-placeholder {
  color: rgb(125, 125, 125);
  -moz-transition: 0.2s;
  transition: 0.2s;
}
.calc-option:hover::placeholder {
  color: rgb(125, 125, 125);
  transition: 0.2s;
}
.calc-btn {
  border: none;
  border-radius: 100px;
  background-color: #007bff;
  color: #fff;
  padding: 7px 30px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 15px;
}
.calc-btn:hover {
  background-color: #fff;
  color: #007bff;
  transition: 0.2s;
}

.result {
  text-align: center;
  transition: 0.2s;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media (max-width: 768px) {
  .promo {
    padding: 0;
  }
  .promo-header {
    padding: 0 8%;
  }
  .promo-header-box {
    width: 50%;
  }
  .promo-logo {
    width: 180px;
  }
  .promo-box {
    height: auto;
    padding-bottom: 5px;
  }
  .menu-left,
  .menu-right {
    display: none;
  }
  nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    display: flex;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
  }
  nav.active {
    transform: translateY(0);
  }
  nav a {
    font-size: 20px;
  }
  .phone-btn {
    display: none;
  }
  .burger {
    display: flex;
  }
  /* Крестик */
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .calc-box {
    width: 90%;
    margin-bottom: 5px;
    padding: 10px;
  }
  .calc-container {
    padding: 10px 15px;
  }
  .calc-label {
    margin-bottom: 5px;
  }
  .calc-title {
    font-size: 20px;
  }
  .calc-input {
    padding: 0;
    font-size: 14px;
  }
  .calc-select {
    padding: 0;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    border: none;
  }
  .calc-option {
    padding: 0;
  }
}
.services {
  background-color: #efefef;
  max-width: 1280px;
  margin: auto;
  border-radius: 25px;
  margin-bottom: 60px;
}
.services-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.services-icon {
  width: 35px;
  height: 35px;
  margin-right: 5px;
}
.services-icon-text {
  font-size: 14px;
}
.services-icon-box {
  display: flex;
  align-items: center;
}
.services-item {
  width: 320px;
  margin-right: 15px;
  margin-bottom: 30px;
}
.services-item-title {
  font-weight: bold;
  font-size: 20px;
}
.services-item-subtitle {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.services-item-bonus {
  list-style: none;
  padding: 0;
}
.services-item-bonus-item {
  font-size: 14px;
}
.services-item-bonus-item:first-child {
  font-weight: bold;
  color: #007bff;
}
.services-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
}
.services-box:first-child {
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services-cost {
  background-color: #007bff;
  border-radius: 20px;
  padding: 20px;
  color: #fff;
  font-weight: bold;
}

.hidden-item {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.hidden-item.show {
  max-height: 100px; /* Достаточно для одного элемента */
  opacity: 1;
}

.show-more-btn {
  cursor: pointer;
  color: #007bff;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  margin-top: 5px;
}

.toggle-btn {
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #007bff;
  transition: transform 0.25s ease;
  margin: auto;
}

.toggle-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
}

.toggle-btn.rotate svg {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .services-item {
    margin-right: 0;
  }
}
.contacts {
  background-image: url("/img/contacts.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 25px;
  height: 70vh;
}
.contacts-container {
  background-color: #fff;
  border-radius: 25px;
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  margin-bottom: 50px;
}
.contacts-box-link {
  color: #000;
  text-align: center;
}
.contacts-list {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}
.contacts-item {
  margin-right: 20px;
}
.contacts-item:last-child {
  margin-right: 0;
}

@media (max-width: 768px) {
  .contacts {
    height: 50vh;
  }
}
.gallery {
  max-width: 1280px;
  margin: 0 auto;
  margin-bottom: 60px;
}
.gallery-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  gap: 20px;
}
.gallery-item {
  background-color: #efefef;
  border-radius: 25px;
  width: 30%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gallery-item-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery-item-title {
  font-size: 24px;
  margin-bottom: 15px;
  padding-right: 10px;
}
.gallery-item-subtitle {
  margin-bottom: 20px;
  min-height: 50px;
}
.gallery-item-icon {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  padding: 15px;
}
.gallery-item-img {
  width: 100%;
  border-radius: 25px;
  margin-bottom: 20px;
}
.gallery-item-btn {
  display: block;
  width: 100%;
  padding: 10px 0;
  color: #fff;
  background-color: #007bff;
  border-radius: 15px;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}
.gallery-item-btn:hover {
  background: #0056b3;
  transition: 0.2s;
}

@media (max-width: 768px) {
  .gallery-list {
    flex-direction: column;
  }
  .gallery-item {
    width: 90%;
    margin: auto;
  }
}
.about {
  max-width: 1280px;
  margin: 0 auto;
  margin-bottom: 60px;
}
.about-container {
  background-color: #007bff;
  border-radius: 25px;
  padding: 20px;
}
.about-container-title {
  color: #fff;
}
.about-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}
.about-item {
  background-color: #fff;
  border-radius: 20px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  font-weight: bold;
  width: 25%;
  margin-right: 15px;
  margin-bottom: 15px;
}
.about-item-box {
  display: flex;
  justify-content: space-between;
}
.about-item-counter {
  color: #aeaeae;
  font-size: 35px;
}
.about-item-icon {
  border-radius: 50%;
  background-color: #007bff;
  padding: 10px;
  width: 35px;
  height: 35px;
}
.about-text {
  border-bottom: 1px solid #c2c1c1;
  padding-bottom: 10px;
}

@media (max-width: 768px) {
  .about-item {
    width: 100%;
    margin-right: 0;
    height: 150px;
  }
}
body {
  font-family: "Nata Sans", sans-serif;
}

h1 {
  margin: 0;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
}/*# sourceMappingURL=main.css.map */