@font-face {
  font-family: 'Benzin';
  src: url('../fonts/Benzin-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Benzin';
  src: url('../fonts/Benzin-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Benzin';
  src: url('../fonts/Benzin-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Benzin';
  src: url('../fonts/Benzin-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Benzin", sans-serif;
  background-color: black;
  color: #fff;
}

h1, h2, p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.container {
  width: 1180px;
  margin: 0 auto;
}

.header {
  position: absolute;
  width: 100%;
  background-color: black;
  padding-top: 64px;
  padding-bottom: 21px;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  width: 80px;
  height: 47px;
  margin-right: 163px;
}

.nav__list {
  display: flex;
  gap: 30px;
  margin-right: auto;
}

.nav__link {
  font-weight: 400;
  font-size: 10px;
  transition: color 0.5s ease;
}

.nav__link:hover {
  color: #f13613;
}

.header__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.header__link {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 10px;
  line-height: 11px;
  letter-spacing: 0.09em;
}

.header__link::before {
  content: '';
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.header__link_mail::before {
  width: 20px;
  height: 15px;
  background-image: url('../img/mail.svg');
  margin-right: 10px;
}

.header__link_phone::before {
  width: 16px;
  height: 15px;
  background-image: url('../img/phone.svg');
  margin-right: 12px;
}

.header__nav {
  margin-right: auto;
}

.header__burger {
  display: none;
}

.header__close {
  display: none;
}

.promo {
  height: 935px;
  background-image: url('../img/promo1440.webp');
  background-size: 1440px;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 321px;
}

.promo__title {
  width: 240px;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  margin-left: 945px;
  margin-bottom: 35px;
}

.promo__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: 30px;
  margin-bottom: 77px;
}

.promo__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 17px;
}

.promo__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 299px;
  height: 49px;
  font-weight: 600;
  font-size: 15px;
  line-height: 17px;
  letter-spacing: 0.09em;
  color: #fff;
  background: #f13613;
  margin-left: 30px;
  transition: background 0.5s ease, color 0.5s ease;
}

.promo__button:hover {
  color: #000;
  background: #fff;
}

.service {
  margin-bottom: 221px;
}

.service__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 69px;
}

.service__title {
  display: inline-block;
  font-weight: 700;
  font-size: 24px;
  line-height: 18px;
  padding-left: 8px;
  border-left: 2px solid #f13613;
}

.service__small {
  width: 261px;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  text-align: right;
}

.service__small span {
  color: #f13613;
}

.service__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 88px 162px;
  margin-bottom: 100px;
}

.service__item {
  position: relative;
}

.service__number {
  font-weight: 700;
  font-size: 96px;
  line-height: 75px;
  color: #f13613;
}

.service__text {
  position: absolute;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
}

.service__text_first {
  bottom: 0;
}

.service__text_second {
  bottom: -18px;
  width: 164px;
}

.service__text_third {
  bottom: -36px;
}

.service__list-box {
  display: flex;
  gap: 44px;
  width: 1015px;
  margin: 0 auto;
}

.service__item-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 147px;
  border: 1px solid #fff;
}

.service__moniker-box {
  display: block;
}

.service__text-box {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
}

.service__moniker-box_first {
  width: 74px;
  padding-top: 21px;
  margin-bottom: 15px;
}

.service__moniker-box_second {
  width: 46px;
  padding-top: 16px;
  margin-bottom: 18px;
}

.service__moniker-box_third {
  width: 50px;
  padding-top: 15px;
  margin-bottom: 16px;
}

.project {
  height: 950px;
  background-image: url('../img/project1440.webp');
  background-size: 1440px;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 403px;
}

.project__title {
  display: none;
}

.project__subtitle {
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  letter-spacing: 0.09em;
  color: #f13613;
  margin-bottom: 30px;
}

.project__list {
  margin-bottom: 61px;
}

.project__number {
  display: none;
}

.project__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
}

.project__text_left {
  margin-left: 177px;
}

.project__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 299px;
  height: 49px;
  font-weight: 600;
  font-size: 15px;
  line-height: 17px;
  letter-spacing: 0.09em;
  color: #fff;
  background: #f13613;
  transition: background 0.5s ease, color 0.5s ease;
}

.project__button:hover {
  color: #000;
  background: #fff;
}

.stage {
  padding-top: 111px;
  padding-bottom: 211px;
}

.stage__container {
  display: flex;
  justify-content: space-between;
  gap: 21px;
}

.stage__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.stage__item {
  display: flex;
  gap: 17px;
}

.stage__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 20px;
  font-weight: 700;
  font-size: 15px;
  line-height: 11px;
  color: #f13613;
  background: #fff;
  margin-top: -4px;
}

.stage__content-text {
  width: 595px;
}

.stage__name {
  font-weight: 400;
  font-size: 15px;
  line-height: 12px;
  text-transform: uppercase;
  color: #f13613;
  margin-bottom: 14px;
}

.stage__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 19px;
}

.stage__line {
  width: 16px;
  height: 529px;
}

.stage__title {
  font-weight: 400;
  font-size: 36px;
  line-height: 38px;
  text-transform: uppercase;
  margin-bottom: 52px;
}

.stage__title span {
  color: #f13613;
}

.stage__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 438px;
}

.stage__description {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
}

.advantage {
  height: 718px;
  background-image: url('../img/advantage1440.webp');
  background-size: 1440px;
  background-repeat: no-repeat;
  background-position: center;
}

.advantage__title {
  display: inline-block;
  font-weight: 700;
  font-size: 24px;
  line-height: 18px;
  text-transform: uppercase;
  padding-left: 8px;
  border-left: 2px solid #f13613;
  margin-bottom: 180px;
}

.advantage__description {
  width: 960px;
  font-weight: 400;
  font-size: 36px;
  line-height: 43px;
  margin-left: 166px;
}

.gallery {
  margin-bottom: 77px;
}

.gallery_portfolio {
  margin-bottom: 0;
}

.gallery_video {
  padding-top: 354px;
  padding-bottom: 232px;
}

.gallery__scroll {
  display: none;
}

.portfolio {
  height: 1547px;
  background-image: url('../img/portfolio1440.webp');
  background-size: 1440px;
  background-repeat: no-repeat;
  background-position: center;
}

.portfolio {
  padding-top: 370px;
  padding-bottom: 69px;
}

.portfolio__title {
  font-weight: 800;
  font-size: 96px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 275px;
}

.gallery__title {
  display: inline-block;
  font-weight: 700;
  font-size: 24px;
  line-height: 18px;
  text-transform: uppercase;
  padding-left: 8px;
  border-left: 2px solid #f13613;
  margin-bottom: 69px;
}

.gallery__info {
  width: 1002px;
  margin: 0 auto;
}

.gallery__info_portfolio {
  width: 771px;
}

.gallery__moniker {
  max-width: 100%;
  width: 1002px;
  height: 643px;
  object-fit: cover;
  margin-bottom: 74px;
}

.gallery__moniker_portfolio {
  width: 771px;
  height: 495px;
  margin-bottom: 57px;
}

.gallery__content {
  margin-bottom: 74px;
}

.gallery__content_portfolio {
  margin-bottom: 57px;
}

.gallery__description {
  width: 736px;
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  margin: 0 auto;
}

.gallery__description span {
  color: #f13613;
}

.gallery__description_portfolio {
  width: 423px;
  font-size: 11px;
}

.gallery__arrow-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}

.gallery__arrow-box_portfolio {
  gap: 50px;
}

.gallery__arrow {
  width: 64px;
  height: 64px;
  cursor: pointer;
  color: #494949;
  transition: color 0.5s ease;
}

.gallery__arrow:hover {
  color: #f13613;
}

.gallery__video {
  width: 1002px;
  height: 643px;
  margin-bottom: 57px;
}

.autopark {
  height: 951px;
  background-image: url('../img/autopark1440.webp');
  background-size: 1440px;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 357px;
}

.autopark__title {
  font-weight: 800;
  font-size: 96px;
  text-transform: uppercase;
  text-align: center;
}

.product {
  padding-top: 114px;
  padding-bottom: 149px;
}

.product__list {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.product__top {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.product__moniker {
  width: 780px;
}

.product__subtitle {
  font-weight: 700;
  font-size: 32px;
  line-height: 35px;
  color: #f13613;
  margin-bottom: 25px;
}

.product__tag {
  font-weight: 400;
  font-size: 15px;
  line-height: 17px;
  margin-bottom: 25px;
}

.product__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 17px;
}

.product__number {
  display: inline-block;
  font-weight: 700;
  font-size: 20px;
  line-height: 15px;
  color: #f13613;
  padding-bottom: 7px;
  border-bottom: 2px solid #fff;
}

.partner {
  height: 950px;
  background-image: url('../img/partner1440.webp');
  background-size: 1440px;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 333px;
}

.partner__title {
  font-weight: 800;
  font-size: 96px;
  text-transform: uppercase;
  text-align: center;
  margin-left: 12px;
}

.brand {
  padding-top: 114px;
  padding-bottom: 149px;
}

.brand__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 17px 50px;
  width: 961px;
  margin: 0 auto;
}

.brand__last {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 17px 50px;
}

.brand__moniker {
  width: 152px;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.brand__moniker:hover {
  width: 152px;
  filter: grayscale(0);
}

.contact {
  padding-top: 243px;
  padding-bottom: 149px;
}

.contact__title {
  font-weight: 700;
  font-size: 48px;
  line-height: 37px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 94px;
}

.contact__top {
  display: flex;
  gap: 78px;
  margin-bottom: 27px;
}

.contact__map {
  width: 580px;
  height: 460px;
  background: #d9d9d9;
}

.contact__form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}

.contact__input {
  font-weight: 400;
  font-size: 18px;
  color: #696969;
  border: 1.88px solid #fff;
  padding: 18px 13px;
  width: 521px;
  height: 63px;
  background: initial;
}

.contact__textarea {
  font-weight: 400;
  font-size: 18px;
  color: #696969;
  border: 1.88px solid #fff;
  padding: 18px 13px;
  width: 521px;
  height: 175px;
  background: initial;
}

.contact__button {
  width: 181px;
  height: 49px;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.09em;
  color: #fff;
  background: #f13613;
  border: 1.88px solid #f13613;
  cursor: pointer;
  transition: background 0.5s ease, border 0.5s ease, color 0.5s ease;
}

.contact__button:hover {
  color: #000;
  background: #fff;
  border: 1.88px solid #fff;
}

.contact__bottom {
  display: flex;
  justify-content: space-between;
}

.contact__address {
  display: none;
}

.contact__actual {
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
}

.contact__actual span {
  display: block;
  color: #f13613;
}

.contact__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.contact__manager {
  width: 213px;
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
  margin-bottom: 25px;
}

.contact__manager span {
  display: block;
  color: #f13613;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.contact__link {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
  letter-spacing: 0.09em;
}

.contact__link::before {
  content: '';
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.contact__link_mail::before {
  width: 20px;
  height: 15px;
  background-image: url('../img/mail.svg');
  margin-right: 10px;
}

.contact__link_phone::before {
  width: 16px;
  height: 15px;
  background-image: url('../img/phone.svg');
  margin-right: 12px;
}

.about {
  height: 832px;
  background-image: url('../img/about1440.webp');
  background-size: 1440px;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 238px;
}

.about__title {
  font-weight: 800;
  font-size: 96px;
  text-transform: uppercase;
  margin-left: 100px;
  margin-bottom: 31px;
}

.about__description {
  width: 680px;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  margin-left: 100px;
  margin-bottom: 156px;
}

.about__list {
  display: flex;
  gap: 85px;
  margin-left: 100px;
}

.about__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about__item {
  display: flex;
}

.about__text {
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  text-transform: lowercase;
  color: #959595;
}

.about__text span {
  display: block;
}

.about__number {
  font-weight: 600;
  font-size: 10px;
  line-height: 7px;
  color: #f13613;
  padding-top: 5px;
  margin-right: 10px;
}

.block {
  display: flex;
  flex-direction: column;
}

.first {
  height: 603px;
  background-image: url('../img/first1440.webp');
  background-size: 1440px;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 105px;
  order: -2;
}

.first__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.first__small {
  font-weight: 400;
  font-size: 10px;
  line-height: 11px;
  text-transform: lowercase;
  color: #f13613;
  margin-bottom: 246px;
}

.first__title {
  display: none;
}

.first__description {
  width: 780px;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #9e9e9e;
}

.second {
  height: 579px;
  background-image: url('../img/second1440.webp');
  background-size: 1440px;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 303px;
}

.second__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.second__title {
  display: none;
}

.second__description {
  width: 780px;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #9e9e9e;
}

.third {
  height: 499px;
  background-image: url('../img/third1440.webp');
  background-size: 1440px;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 56px;
}

.third__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.third__title {
  display: none;
}

.third__small {
  font-weight: 400;
  font-size: 10px;
  line-height: 11px;
  text-transform: lowercase;
  color: #f13613;
  margin-bottom: 304px;
}

.third__description {
  width: 780px;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #9e9e9e;
}

.fourth {
  height: 558px;
  background-image: url('../img/fourth1440.webp');
  background-size: 1440px;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 354px;
}

.fourth__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fourth__title {
  display: none;
}

.fourth__description {
  width: 780px;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #9e9e9e;
}

.fifth {
  height: 503px;
  background-image: url('../img/fifth1440.webp');
  background-size: 1440px;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 104px;
  order: -1;
}

.fifth__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fifth__title {
  display: none;
}

.fifth__small {
  font-weight: 400;
  font-size: 10px;
  line-height: 11px;
  text-transform: lowercase;
  color: #f13613;
  margin-bottom: 219px;
}

.fifth__description {
  width: 780px;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #9e9e9e;
}

.sixth {
  height: 523px;
  background-image: url('../img/sixth1440.webp');
  background-size: 1440px;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 284px;
}

.sixth__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sixth__title {
  display: none;
}

.sixth__description {
  width: 780px;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #9e9e9e;
}

.footer {
  margin-bottom: 119px;
}

.footer__wrapper {
  display: flex;
  align-items: flex-end;
  gap: 34px;
}

.footer__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 18px;
  text-transform: uppercase;
  margin-bottom: 79px;
}

.footer__moniker {
  width: 128px;
  height: 72px;
  margin-bottom: 26px;
}

.footer__description {
  width: 385px;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  margin-bottom: 27px;
}

.footer__address_left {
  display: none;
}

.footer__social {
  margin-bottom: 27px;
}

.social__list {
  display: flex;
}

.social__link {
  width: 54px;
  color: #fff;
  transition: color 0.5s ease;
}

.social__link:hover {
  color: #f13613;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 10px;
  line-height: 11px;
  letter-spacing: 0.09em;
}

.footer__link::before {
  content: '';
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer__link_mail::before {
  width: 20px;
  height: 15px;
  background-image: url('../img/mail.svg');
  margin-right: 10px;
}

.footer__link_phone::before {
  width: 16px;
  height: 15px;
  background-image: url('../img/phone.svg');
  margin-right: 12px;
}

.footer__line {
  margin-right: 40px;
}

.footer__decision {
  width: 564px;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.09em;
  margin-bottom: 76px;
}

.footer__form {
  display: flex;
  margin-bottom: 87px;
}

.footer__input {
  width: 417px;
  height: 72px;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.09em;
  padding-left: 29px;
  color: #9c9c9c;
  border: none;
}

.footer__button {
  width: 263px;
  height: 72px;
  font-weight: 600;
  font-size: 15px;
  line-height: 17px;
  letter-spacing: 0.09em;
  color: #000;
  background: #d9d9d9;
  border: none;
  cursor: pointer;
  transition: background 0.5s ease, border 0.5s ease, color 0.5s ease;
}

.footer__button:hover {
  color: #fff;
  background: #f13613;
  border: 1.88px solid #f13613;
}

.footer__address {
  font-weight: 400;
  font-size: 15px;
  line-height: 17px;
  letter-spacing: 0.09em;
}

.access {
  background: #171717;
  padding-top: 33px;
  padding-bottom: 32px;
}

.access__link {
  font-weight: 400;
  font-size: 10px;
  line-height: 11px;
  letter-spacing: 0.09em;
  color: #686868;
}

.access__link span {
  color: #fff;
}