

.container-desktop {
  margin-left: 8%;
}

.container-mobile {
  display: none;
}

.link {
  color: #111;
  text-decoration: none;
}

/* Хэдер */

.header__logo {
  position: absolute;
  top: 0;
  left: 0;
}

.header__menu {
  margin: 40px 120px 85px 15%;
}

.header__list {
  position: relative;
  display: flex;
  justify-content: space-around;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__list_item {
  display: inline-block;
  position: relative;

  cursor: pointer;
  color: #8e8e8e;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  transition: all 0.2s ease-in;
}

.header__list_item:hover::after {
  color: #000;
  content: attr(data-title);
  position: absolute;
  left: 25%;
  top: 220%;
  z-index: 1;
  background-size: 100%;
  box-sizing: border-box;
  width: 148px;
  height: 89px;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 25px 10px;

  font-family: 'Golos';
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
}

.header__phone {
  position: absolute;
  right: -161px;
  top: 86px;
  transform: rotate(-90deg);

  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: rgba(231, 65, 27, 1);
}

.header__phone a {
  color: rgba(231, 65, 27, 1);
}

.header__phone-mob {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: rgba(231, 65, 27, 1);
}

/* Мэйн */

.content {
  max-width: 1472px;
  margin: 0 auto;
  padding: 0 16px;
}

.title__main {
  max-width: 762px;
  margin: 0px 120px 57px 15%;

  font-size: 72px;
  font-style: normal;
  font-weight: 500;
  line-height: 86px;
  letter-spacing: 0em;
  text-align: left;
  text-transform: uppercase;
}

.container__plug {
  margin: 0px 120px 0px 15%;
  padding: 0;
  display: flex;
  align-items: flex-start;
}

.plug__info {
  margin: 0;
  max-width: 342px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.contacts__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 30px;
}

.contacts__list_item {
  color: #e7411b;
  margin-bottom: 10px;
}

.contacts__list_item:last-child {
  margin-top: 28px;
  transition: opacity 0.2s ease-in;
}

.contacts__list_item:last-child:hover {
  opacity: 0.6;
}

.contacts__list_item-phone {
  color: #e7411b;
  text-decoration: none;
}

.contacts__list_item-email {
  color: #e7411b;
}

.contacts__list_item-price {
  color: #e7411b !important;
  font-weight: 700;
}

.volvo {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 200%;
  margin: 0 auto;
  z-index: -1;
}

@media screen and (min-width: 1900px) {
  .container-desktop {
    margin-left: 0;
  }
}

@media screen and (max-width: 1140px) {
  .header__menu {
    margin: 40px 10px 85px 12%;
  }
  .header__logo {
    width: 150px;
    height: 140px;
    left: -15px;
  }
}

@media screen and (max-width: 890px) {
  .container-desktop {
    display: none;
  }

  .container-mobile {
    display: block;
  }

  .nav__contacts {
    display: block;
    margin: 0 auto;
  }

  .contacts__list {
    display: block;
    margin: 22px 0 0 40%;
  }

  .contacts__list_item:last-child {
    margin-top: 18px;
  }

  .title__main {
    font-size: 42px;
    line-height: 50px;

    margin: 86px 0 36px 8px;
  }

  .container__plug {
    margin: 0 0 8px;
    max-width: 290px;
  }
}

@media screen and (max-width: 370px) {
  .header__logo {
    width: 110px;
    height: 100px;
    left: -10px;
  }

  .title__main {
    font-size: 36px;
    line-height: 50px;

    margin: 66px 0 36px 8px;
  }

  .contacts__list {
    margin: 8px 0 0 40%;
  }

  .container__plug {
    margin: 0px 0 0 8px;
  }
}

input::-webkit-calendar-picker-indicator {
  display: none !important;
}