@charset "UTF-8";
.header {
  width: 100%;
  background-color: white;
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header .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;
  gap: 8px;
  height: 56px;
  padding: 0 32px;
  border-radius: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header .btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.header .btn:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
.header .btn-primary {
  background-color: #B78035;
  color: white;
}
.header .btn-primary:hover {
  background-color: #A06F2F;
}
.header .btn-secondary {
  background-color: rgba(34, 34, 34, 0.4);
  color: white;
  border: 2px solid white;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.header .btn-secondary:hover {
  background-color: rgba(34, 34, 34, 0.6);
}
.header .header-content {
  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;
  height: 100%;
  padding: 24px 20px;
  max-width: 1760px;
  margin: 0 auto;
  position: relative;
}
.header .logo-img {
  height: 40px;
  width: auto;
}
.header .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: auto;
}
.header .nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.header .nav a img {
  margin-left: 8px;
}
.header .nav a:hover {
  color: #B78035;
}
.header .header-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.header .header-contact .header-phone {
  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-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.header .header-contact .header-phone .phone-number {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}
.header .header-contact .header-phone .work-hours {
  font-size: 12px;
  color: #666;
}
.header .header-contact .header-btn {
  width: 132px;
  height: 40px;
  padding: 0;
  font-size: 14px;
  border-radius: 16px;
  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;
}
.header .mobile-controls {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.header .mobile-controls .mobile-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .mobile-controls .mobile-phone img {
  width: 24px;
  height: 24px;
}
.header .mobile-controls .mobile-menu-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: #C3954D;
  border-radius: 16px;
}
.header .mobile-controls .mobile-menu-toggle .close-icon {
  background: #222;
  display: none;
}
.header .mobile-controls .mobile-menu-toggle.active .menu-icon {
  display: none;
}
.header .mobile-controls .mobile-menu-toggle.active .close-icon {
  display: block;
  margin-left: 7px;
}
.header .mobile-controls .mobile-menu-toggle img {
  width: 24px;
  height: 24px;
}
.header .mobile-dropdown {
  position: fixed;
  top: 96px;
  left: 0;
  width: 100%;
  height: calc(100vh - 96px);
  background: white;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}
.header .mobile-dropdown.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.header .mobile-dropdown .dropdown-content {
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.header .mobile-dropdown .mobile-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.header .mobile-dropdown .mobile-nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .mobile-dropdown .mobile-nav a img {
  margin-left: 6px;
}
.header .mobile-dropdown .mobile-nav a:hover {
  color: #B78035;
}
.header .mobile-dropdown .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.header .mobile-dropdown .info img {
  max-width: 130px;
  height: auto;
  margin-bottom: 16px;
}
.header .mobile-dropdown .info .text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
.header .mobile-dropdown .info .tel, .header .mobile-dropdown .info .mail {
  color: #333;
  margin-bottom: 16px;
  /* Paragraph L (B) */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.header .mobile-dropdown .info .tel a, .header .mobile-dropdown .info .mail a {
  color: inherit;
  text-decoration: none;
}
.header .mobile-dropdown .info .tel a:hover, .header .mobile-dropdown .info .mail a:hover {
  color: #B78035;
}
.header .mobile-dropdown .info .copy {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  margin-top: 20px;
}
.header .mobile-dropdown .info .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.header .mobile-dropdown .info .buttons a {
  padding: 10px 15px;
  background: #f5f5f5;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.header .mobile-dropdown .info .buttons a:hover {
  background: #eee;
}

@media (max-width: 1200px) {
  .header .nav {
    gap: 20px;
  }
  .header .header-contact {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .header .nav {
    display: none;
  }
  .header .header-contact {
    display: none;
  }
  .header .mobile-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.mobile-dropdown {
  pointer-events: none;
}
.mobile-dropdown.active {
  pointer-events: auto;
}

.mobile-menu-toggle img {
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.mobile-menu-toggle .close-icon {
  opacity: 0;
}
.mobile-menu-toggle.active {
  background: #222 !important;
}
.mobile-menu-toggle.active .menu-icon {
  opacity: 0;
}
.mobile-menu-toggle.active .close-icon {
  opacity: 1;
}

/* Footer */
.new-footer {
  background: #fff;
  padding: 60px 0 40px;
  color: #333;
  font-family: sans-serif;
}
.new-footer .container {
  border-top: 1px solid #B78035;
  padding-top: 64px;
}
.new-footer .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.new-footer .info {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 0;
  margin-right: 30px;
  width: 100%;
  max-width: 316px;
}
.new-footer .info img {
  max-width: 130px;
  height: auto;
  margin-bottom: 16px;
}
.new-footer .info .text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #666;
  margin-bottom: 10px;
}
.new-footer .info .tel, .new-footer .info .mail {
  color: #333;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}
.new-footer .info .tel a, .new-footer .info .mail a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.new-footer .info .tel a:hover, .new-footer .info .mail a:hover {
  color: #B78035;
}
.new-footer .info .tel {
  display: block;
}
.new-footer .info .tel a {
  color: #222;
  font-size: 16px;
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
.new-footer .info .mail a {
  color: #B78035;
}
.new-footer .info .copy {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  margin-top: 20px;
}
.new-footer .info .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-top: 20px;
  width: 100%;
}
.new-footer .info .buttons a {
  padding: 10px 15px;
  background: #f5f5f5;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.new-footer .info .buttons a:hover {
  background: #eee;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.new-footer .menu {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  min-width: 150px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.new-footer .menu-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #222;
}
.new-footer .menu-links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr; /* Два равных столбца */
  gap: 0 30px; /* Отступ между колонками */
}
.new-footer .menu a {
  display: block;
  color: #222;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 16px;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  width: 40%;
}
.new-footer .menu a:hover {
  color: #B78035;
}
@media (max-width: 768px) {
  .new-footer .menu-links {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr; /* На мобилках — один столбец */
  }
}
.new-footer .offices {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 200px;
}
.new-footer .offices h2 {
  color: var(--Primary, #222);
  font-family: Stolzl;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  margin-bottom: 24px;
}
.new-footer .offices .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: 16px;
}
.new-footer .offices .list .i {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0;
}
.new-footer .offices .list .i img {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
}
.new-footer .offices .list .i p {
  color: #888;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  margin-bottom: 4px;
}
.new-footer .offices .list .i b {
  color: #222;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  display: block;
}
.new-footer .social {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.new-footer .social a {
  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;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.new-footer .social a:hover {
  background: #eee;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.new-footer .social a img {
  width: 18px;
  height: 18px;
}
@media (max-width: 768px) {
  .new-footer {
    padding: 40px 0 30px;
  }
  .new-footer .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .new-footer .info {
    margin-right: 0;
    max-width: 100%;
  }
  .new-footer .menu, .new-footer .offices {
    min-width: 100%;
  }
  .new-footer .menu-columns, .new-footer .offices-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}