@charset "UTF-8";
/* HEADER */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  padding: 40px 20px;
  display: block;
  justify-content: center;
  pointer-events: none;
}
.site-header__inner {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  pointer-events: auto;
  padding-right: 35px;
}
.site-header__logo {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

/* Активный хедер при открытии меню */
.site.menu-open .site-header__icons {
  opacity: 1;
  pointer-events: auto;
}

.site-header__icons {
  opacity: 0;
  pointer-events: none;
}

/* HEADER ICONS */
.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.header-icon:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}
.header-icon img {
  width: 47px;
  height: 47px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* BURGER */
.menu-toggle {
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 9999;
  /* чтобы кнопка была выше всего */
}

.menu-toggle img {
  width: 35px;
  height: 35px;
  display: block;
}

.icon-close {
  display: none !important;
}

/* Когда меню открыто — показываем крестик */
.site.menu-open .icon-burger {
  display: none;
}

.site.menu-open .icon-close {
  display: block !important;
}

.page-design {
  background: #000;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  /*************************************
   * 1. HERO
   *************************************/
  /*************************************
   * 2–5. ЭТАПЫ (01, 02, 03, 04)
   *************************************/
  /*************************************
   * 6. BRAND BLOCK (Интербилдинг)
   *************************************/
  /*************************************
  * 7. PROEKTIRUEM
  *************************************/
  /*************************************
   * 8. ПОРТФОЛИО
   *************************************/
  /*************************************
  * 9. FORM
  *************************************/
  /*************************************
   * 10. АДАПТИВ
   *************************************/
}
.page-design .design-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.page-design .design-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.page-design .design-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}
.page-design .design-hero__title-block {
  position: absolute;
  left: 50%;
  bottom: 115px;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
}
.page-design .design-hero__title {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 42px;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 768px) {
  .page-design .design-hero {
    height: 100%;
  }
  .page-design .design-hero__title-block {
    width: 100%;
  }
  .page-design .design-hero__title {
    font-size: 32px;
    line-height: 110%;
  }
}
.page-design .design-step {
  display: grid;
  grid-template-columns: 27% 1fr;
  position: relative;
  padding: 80px 50px;
}
.page-design .design-step__number {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 24px;
  opacity: 0.8;
  color: #9D9D9D;
}
.page-design .design-step__number::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 50px;
  width: calc(100% - 50px);
  height: 2px;
  background-color: #9D9D9D;
  right: 50px;
  max-width: 93%;
}
.page-design .design-step__content {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 30px;
  gap: 60px;
  align-items: center;
}
.page-design .design-step__image {
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: center;
}
.page-design .design-step__text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
}
.page-design .design-step__title {
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 32px;
  margin: 0;
  padding-bottom: 20px;
  line-height: 110%;
  border-bottom: 1px solid #9D9D9D;
}
.page-design .design-step__desc {
  color: #9D9D9D;
  max-width: 550px;
  line-height: 105%;
  opacity: 0.7;
  margin: 0;
}
@media (max-width: 768px) {
  .page-design .design-step {
    grid-template-columns: 1fr;
    padding: 80px 15px 50px;
  }
  .page-design .design-step__number::after {
    height: 1px;
    left: 0;
    width: 100%;
    max-width: 100%;
  }
  .page-design .design-step__content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
  }
  .page-design .design-step__text {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    grid-template-columns: unset;
  }
  .page-design .design-step__title {
    font-size: 26px;
    max-width: 100%;
    border-bottom: 1px solid #D1974E;
    padding-bottom: 10px;
  }
  .page-design .design-step__desc {
    max-width: 100%;
    line-height: 130%;
  }
  .page-design .design-step__image {
    order: 2;
    width: 100%;
    height: 200px;
    border-radius: 5px;
  }
}
.page-design .design-brand {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.99);
}
.page-design .design-brand__image {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.page-design .design-brand__title-block {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 35px);
  text-align: center;
}
.page-design .design-brand__title {
  font-weight: 300;
  line-height: 105%;
  font-size: 20px;
  color: #9D9D9D;
  margin-bottom: 55px;
  margin-top: 0;
}
.page-design .design-brand__btn {
  font-weight: 300;
  line-height: 105%;
  font-size: 20px;
  color: #9D9D9D;
  margin: 0;
  text-decoration: none;
}
@media (max-width: 768px) {
  .page-design .design-brand__title-block {
    width: 95%;
  }
  .page-design .design-brand__title {
    margin-bottom: 25px;
    font-size: 16px;
  }
  .page-design .design-brand__btn {
    font-size: 16px;
  }
}
.page-design .design-plan {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.page-design .design-plan__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease-in-out;
}
.page-design .design-plan__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-design .design-plan__content {
  position: relative;
  padding: 120px 50px;
  z-index: 2;
  height: 100%;
}
.page-design .design-plan__title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}
.page-design .design-plan__desc {
  max-width: 450px;
  opacity: 0.75;
  line-height: 155%;
  margin-bottom: 35px;
}
.page-design .design-plan__tabs {
  position: absolute;
  bottom: 114px;
  display: flex;
  gap: 20px;
  width: 100%;
  z-index: 3;
}
.page-design .design-plan__tabs .tab {
  width: 211px;
  height: 211px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(252, 252, 252, 0.07);
  -webkit-backdrop-filter: blur(7px) saturate(100%);
          backdrop-filter: blur(7px) saturate(100%);
  padding: 20px 15px;
  border: none;
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.05em;
  transition: 0.3s;
  position: relative;
  color: #fff;
}
.page-design .design-plan__tabs .tab:hover {
  background: rgba(255, 255, 255, 0.1);
}
.page-design .design-plan__tabs .tab.active {
  border: 1px solid #9D9D9D;
}
.page-design .design-plan__tabs .tab__number {
  font-size: 20px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  margin-bottom: 5px;
  color: #d89b55;
}
.page-design .design-plan__tabs .tab__label {
  font-size: 26px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}
.page-design .black {
  width: 100%;
  height: 200px;
  position: relative;
  background-color: #000;
}
.page-design .black::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50px;
  right: 50px;
  height: 1px;
  background-color: #9D9D9D;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .page-design .black {
    height: 100px;
  }
  .page-design .black::before {
    left: 13px;
    right: 13px;
  }
}
@media (max-width: 768px) {
  .page-design .design-plan__content {
    padding: 50px 15px 0;
    display: flex;
    flex-direction: column;
  }
  .page-design .design-plan__tabs {
    position: relative;
    padding-top: 200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    justify-content: center;
    margin-top: auto;
    bottom: 30px;
  }
  .page-design .design-plan__tabs .tab {
    width: 185px;
    height: 185px;
  }
  .page-design .design-plan__tabs .tab:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .page-design .design-plan__tabs .tab.active {
    border: 1px solid #9D9D9D;
  }
  .page-design .design-plan__tabs .tab__label {
    font-size: 22px;
  }
}
.page-design .design-portfolio {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.page-design .design-portfolio__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-design .design-portfolio__title-block {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 115px;
  transform: translateX(-50%);
  text-align: center;
}
.page-design .design-portfolio__title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 0;
}
.page-design .design-portfolio__btn {
  font-weight: 300;
  line-height: 105%;
  font-size: 20px;
  margin: 0;
  color: #fff;
  text-decoration: none;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.page-design .design-portfolio__btn .icon-plus {
  width: 17px;
  height: 17px;
  display: block;
}
@media (max-width: 768px) {
  .page-design .design-portfolio__title {
    font-size: 32px;
  }
}
.page-design .design-form {
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  height: 100vh;
  width: 100%;
}
.page-design .design-form__title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 50px;
}
.page-design .design-form__form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 450px;
}
.page-design .design-form__form label {
  display: flex;
  flex-direction: column;
  font-size: 26px;
}
.page-design .design-form__form label span {
  margin-bottom: 8px;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.05em;
}
.page-design .design-form__form label input {
  padding: 17px 0 15px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #9D9D9D;
  font-size: 20px;
  outline: none;
}
.page-design .design-form__form label input:focus {
  border-bottom: 1px solid #D1974E;
  color: #fff;
}
.page-design .design-form__submit {
  margin-top: 20px;
  color: #fff;
  padding: 20px 100px;
  background: #d89b55;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 85px;
  max-width: 315px;
  font-size: 20px;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
}
.page-design .design-form__submit:hover {
  opacity: 0.85;
}
.page-design .design-form__policy {
  margin-top: -10px;
  font-size: 14px;
  max-width: 420px;
  line-height: 105%;
  color: #9D9D9D;
}
.page-design .design-form__image {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
}
.page-design .design-form__image img {
  width: 660px;
  height: 660px;
}
@media (max-width: 768px) {
  .page-design .design-form {
    padding: 0 13px;
    gap: 50px;
  }
  .page-design .design-form__image img {
    width: 100%;
    height: auto;
  }
  .page-design .design-form__title {
    font-size: 26px;
    margin-top: 75px;
  }
  .page-design .design-form__form label {
    font-size: 22px;
  }
  .page-design .design-form__form input {
    font-size: 16px;
  }
  .page-design .design-form__submit {
    padding: 17px 80px;
    font-size: 16px;
    margin-top: 0;
  }
}
.page-design .success-message {
  display: none;
  background-color: #28a745;
  color: white;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  position: relative;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}
@media (max-width: 1100px) {
  .page-design .design-plan {
    grid-template-columns: 1fr;
  }
  .page-design .design-form {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .page-design .design-step__content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .page-design .design-hero,
  .page-design .design-brand,
  .page-design .design-plan,
  .page-design .design-portfolio,
  .page-design .design-form {
    min-height: 700px;
    height: auto;
  }
}

.site-footer {
  background: #000;
  padding: 87px 65px 87px 50px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  /* Brand column */
  /* Bottom row */
}
.site-footer__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.site-footer .footer-group {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.site-footer .footer-group-location {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.site-footer__column--brand {
  grid-column: span 1;
}
.site-footer__column--brand .site-footer__title {
  margin: 0;
}
.site-footer__column--brand .site-footer__phone {
  margin: 0;
}
.site-footer__column--brand .site-footer__email {
  margin: 25px 0 0;
}
.site-footer__column--brand .site-footer__phone a,
.site-footer__column--brand .site-footer__email a {
  font-family: "Oswald", sans-serif;
  color: #D1974E;
  font-size: 26px;
  text-decoration: none;
  font-weight: 600;
}
.site-footer__column--brand .site-footer__socials {
  margin-top: 25px;
  display: flex;
  gap: 14px;
}
.site-footer__column--brand .site-footer__socials a {
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #444;
  transition: 0.3s;
}
.site-footer__column--brand .site-footer__socials a:hover {
  opacity: 0.8;
  background: #666;
}
.site-footer__column--brand .site-footer__socials a img {
  width: 47px;
  height: 47px;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-footer__column h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  margin: 0;
}
.site-footer__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-footer__list li {
  margin-bottom: 15px;
}
.site-footer__list li a {
  color: #aaa;
  font-size: 16px;
  text-decoration: none;
}
.site-footer__list li a:hover {
  color: #fff;
}
.site-footer__address {
  color: #aaa;
  font-size: 16px;
  margin: 0;
}
.site-footer__bottom {
  margin-top: 100px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #888;
  font-size: 16px;
}
.site-footer__bottom a {
  color: #888;
  text-decoration: none;
}
.site-footer__bottom a:hover {
  color: #fff;
}

/* Адаптив */
@media (max-width: 1200px) {
  .site-footer__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 70px 15px;
  }
  .site-footer__column h3 {
    font-size: 26px;
  }
  .site-footer__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .site-footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: left;
    align-items: flex-start;
  }
  .site-footer__column--brand .site-footer__socials {
    margin: 0;
  }
}
@media (max-width: 480px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}