/* Глобальные стили */

html {
  overflow-y: scroll;
}

.body {
  margin: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  font-family: 'Roboto', 'Arial', sans-serif;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Этот класс добавляется для отключения возможности прокрутки при открытии бургер-меню  */
.no-scrolling {
  overflow-y: hidden;
}

/* Общие стили */

.content {
  width: 100%;
  height: 100%;
}

.light-container {
  width: 100%;
  background: #f5f3f1;
}

.dark-container {
  background: #202020;
  width: 100%;
}

picture img {
  object-fit: cover;
}

.grey-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: rgba(255, 255, 255, 0.7);
}

/* Стили желтой кнопки */

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  width: 263px;
  font-family: 'Roboto', 'Arial', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  color: #000;
  background: #FDC200;
  border: none;
  outline: none;
  cursor: pointer;
}

/* Стили кнопок карусели */

.prev-btn,
.next-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #FDC200;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
}

.next-btn::before,
.prev-btn::before {
  content: '';
  width: 2.4px;
  height: 12.8px;
  position: absolute;
  right: 0;
  top: 17.8px;
  background: #000000;
  z-index: 2;
}

.prev-btn::before {
  left: 0;
}

/* Стили овального элемента в карточках */

.yellow-elem {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 35px;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.6px;
  color: #070705;
  background: #FDC200;
  border-radius: 100px;
}

/* Стили header */

.header {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1232px;
  height: 127px;
  margin: 0 auto;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 26px;
  position: relative;
  z-index: 2;
}

.header__info {
  display: flex;
  gap: 6px;
}

.header__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header__item {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
}

.header__grey-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: rgba(255, 255, 255, 0.7);
}

.header__box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #ffffff4d;
  padding-top: 15px;
}

.header__container {
  display: flex;
  align-items: center;
}

.header__container .burger-button {
  display: none;
}

.download-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: transparent;
  border: none;
  padding: 2px 0;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.download-button__text {
  font-family: 'Roboto', 'Arial', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 21.7px;
  color: #FDC200;
  text-transform: uppercase;
}

/* Основная навигация */

.nav {
  display: flex;
  align-items: center;
}

.nav_place_footer {
  margin-top: 24px;
}

.nav__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 26px;
  list-style: none;
}

.nav__list_place_footer {
  gap: 20px;
  width: 100%;
  min-width: 940px;
  max-width: 940px;
}

.nav__button {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto', 'Arial', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 21.7px;
  background: transparent;
  border: none;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  position: relative;
  z-index: 3;
}

.nav__link {
  font-family: 'Roboto', 'Arial', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 21.7px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 3;
}

.nav__link::after,
.underline_animation::after {
  content: '';
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  transition: 0.2s;
  height: 2px;
  background: #FDC200;
}

.nav__link:hover:after,
.underline_animation:hover:after {
  width: 100%;
}

.nav__button_place_footer,
.nav__link_place_footer {
  color: #060e29;
}

/* Всплывающая навигация */
.nav__panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgb(0, 0, 0, 0.6);
  height: 290px;
  width: 100%;
  transition: all 0.2s ease-in-out;
  visibility: hidden;
  opacity: 0;
  backdrop-filter: blur(7px);
  padding: 180px 344px 29px;
}

.nav__item {
  display: flex;
  align-items: center;
  height: 40px;
}

.nav__item.search {
  gap: 10px;
}

.nav__list_place_footer .nav__item {
  height: 56px;
}

.nav__item:hover .nav__panel {
  visibility: visible;
  opacity: 1;
}

.nav__button svg {
  transition: all 0.2s ease-in-out;
}

.nav__item:hover .nav__button svg {
  transform: rotate(180deg);
}

.nav-bar {
  width: 100%;
  max-width: 1232px;
  margin: 0 auto;
}

.nav-bar__list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  width: fit-content;
  gap: 10px 60px;
  list-style: none;
}

.nav-bar__link {
  color: rgb(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  z-index: 3;
  transition: all 0.2s ease-in-out;
}

.nav-bar__link:hover {
  color: #fff;
}

/* Всплывающая панель футера */
.nav__panel_place_footer {
  position: absolute;
  bottom: 210px;
  top: -62px;
  left: 0;
  right: 0;
  height: 120px;
  width: 100%;
  background: #f5f3f1;
  transition: all 0.2s ease-in-out;
  visibility: hidden;
  opacity: 0;
  padding: 20px 344px 0;
}

.nav__panel_place_footer .nav-bar__list {
  width: 100%;
  max-width: 940px;
  padding: 0;
  margin-left: auto;
}

.nav__panel_place_footer .nav-bar__link:hover {
  color: #000000;
}

.nav__panel_place_footer .nav-bar__link {
  color: rgb(0, 0, 0, 0.5);
}

.nav__item:hover .nav__panel_place_footer {
  visibility: visible;
  opacity: 1;
}

.logo {
  position: relative;
  z-index: 3;
  cursor: pointer;
}

@media screen and (max-width: 1919px) {
  .nav__panel,
  .nav__panel_place_footer {
    padding-left: calc((100% - 1232px) / 2);
    padding-right: calc((100% - 1232px) / 2);
  }
}

@media screen and (max-width: 1279px) {
  .nav__panel {
    display: none;
  }
}

@media screen and (max-width: 1279px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-width: 100%;
    height: 48px;
  }

  .header__wrapper {
    padding-bottom: 0;
  }

  .logo_place-header {
    width: 115px;
    height: 48px;
  }

  .header__info {
    display: none;
  }

  .header__box {
    width: fit-content;
    border: none;
  }

  .header__container {
    gap: 55px;
  }

  .header__container .burger-button {
    display: flex;
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
  }

  /* Навигация */
  .header__nav {
    display: none;
  }
}

@media screen and (max-width: 766px) {
  .header {
    min-width: 343px;
    max-width: 100%;
    margin: 0 auto;
  }

  .header__container .download-button {
    display: none;
  }
}

/* Хлебные крошки */

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
}

.breadcrumbs__wrapper {
  display: flex;
  flex-direction: column;
}

.breadcrumbs__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 52.5px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
}

.breadcrumbs__path {
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumbs__link {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
}

@media screen and (max-width: 1279px) {
  .breadcrumbs {
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
    margin-top: 45px;
  }

  .breadcrumbs__wrapper {
    align-self: flex-start;
  }
}

@media screen and (max-width: 766px) {
  .breadcrumbs {
    gap: 14px;
    align-items: flex-start;
    margin-top: 38px;
    min-height: 170px;
  }

  .breadcrumbs__title {
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -0.24px;
  }

  .breadcrumbs__path {
    flex-wrap: wrap;
    gap: 6px;
  }
}

/* footer */

.footer {
  width: 100%;
}

/* footer black-block */

.footer__black-block {
  width: 100%;
  max-width: 1920px;
  color: #fff;
  padding: 112px 344px 114px;
  margin: 0 auto;
}

.footer__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 47px 28px;
}

.footer__title {
  font-size: 32px;
  font-weight: 400;
  line-height: 47px;
  text-transform: uppercase;
  max-width: 440px;
  padding-right: 16px;
}

.footer__title span {
  color: #FDC200;
}

.footer__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  padding-left: 17px;
  border-left: 1px solid #ffffff66;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.footer__contacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-right: auto;
}

.footer__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #ffc70066;
  width: 100%;
  padding: 20px 0;
}

.footer__items:nth-child(odd) {
  padding-right: 40px;
}

.footer__items:nth-child(even) {
  padding-left: 40px;
  padding-right: 12px;
}

.footer__elem {
  color: #FDC200;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  opacity: 0.8;
}

.footer__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

/* footer white-block */
.footer .light-container {
  position: relative;
}

.footer__white-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 1920px;
  padding: 34px 344px 50px;
  color: #060e29;
  margin: 0 auto;
}

.footer__nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
  padding-bottom: 20px;
  border-bottom: 1px solid #8080804d;
  grid-column: auto / span 2;
}

.footer__copyright-container {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 700;
  line-height: 27.7px;
  padding-top: 24px;
}

.footer__copyright {
  font-weight: 400;
  line-height: 27.7px;
}

.footer__form-container {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 24px;
  justify-self: flex-end;
}

.footer__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 21.7px;
  width: 104px;
}

.footer__form {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer__input {
  height: 50px;
  border: 1px solid #FDC200;
  padding: 0 16px;
  background: transparent;
  cursor: pointer;
  width: 100%;
  max-width: 169px;
}

.footer__input:focus {
  outline: none;
}

.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #FDC200;
  border: none;
  outline: none;
  cursor: pointer;
}

@media screen and (max-width: 1919px) {
  /* footer black-block */
  .footer__black-block {
    max-width: 1280px;
    padding-left: 24px;
    padding-right: 24px;
  }

  /* footer white-block */
  .footer__white-block {
    max-width: 1280px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media screen and (max-width: 1279px) {
  /* footer black-block */
  .footer__black-block {
    min-width: 100%;
    padding: 65px 32px;
  }

  .footer__info {
    grid-template-columns: repeat(2, 50%);
    gap: 0;
  }

  .footer__description {
    line-height: 21px;
    min-width: 100%;
  }

  .footer__container {
    grid-column: auto / span 2;
    gap: 28px;
    border-top: 1px solid #ffc70066;
    padding: 20px 0 47px;
    margin-top: 29px;
  }

  .footer__title {
    max-width: 350px;
    font-size: 24px;
    line-height: 37px;
  }

  .footer__contacts {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    margin-right: 0;
    column-gap: 70px;
    border-bottom: 1px solid #ffc70066;
    padding-bottom: 12px;
  }

  .footer__contacts .footer__items:nth-child(1),
  .footer__contacts .footer__items:nth-child(2) {
    grid-row: auto / span 2;
  }

  .footer__contacts .footer__items:nth-child(3),
  .footer__contacts .footer__items:nth-child(4) {
    grid-row: auto / span 1;
  }

  .footer__contacts .footer__items:nth-child(4) {
    grid-row: auto / span 1;
  }

  .footer__items {
    gap: 4px;
    padding: 0;
    border-top: none;
    padding-bottom: 20px;
  }

  .footer__items:nth-child(odd),
  .footer__items:nth-child(even) {
    padding: 0;
  }

  .footer__text {
    padding-bottom: 8px;
  }

  .footer__map {
    grid-column: auto / span 2;
  }

  /* footer white-block */
  .footer__white-block {
    min-width: 100%;
    padding: 29px 32px 32px;
  }

  .footer__nav-container {
    grid-column: auto / span 1;
    gap: 0;
    padding-bottom: 36px;
    order: 1;
  }

  .footer__nav {
    display: none;
  }

  .footer__copyright-container {
    padding-top: 31px;
    grid-column: auto / span 2;
    order: 3;
  }

  .footer__form-container {
    align-self: flex-end;
    border-bottom: 1px solid #8080804d;
    padding-top: 0;
    padding-bottom: 36px;
    order: 2;
    height: max-content;
    width: 100%;
  }

  .footer__label {
    margin-left: auto;
  }
}

@media screen and (max-width: 766px) {
  /* footer black-block */
  .footer__black-block {
    min-width: 375px;
    max-width: 100%;
    padding: 37px 16px 48px;
  }

  .footer__info {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__title {
    max-width: 100%;
  }

  .footer__description {
    display: none;
  }

  .footer__container {
    gap: 18px;
    padding: 20px 0 47px;
    margin-top: 29px;
  }

  .footer__contacts {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    column-gap: 0px;
    border-bottom: none;
    padding-bottom: 22px;
  }

  .footer__container .button {
    width: 100%;
  }

  .footer__contacts .footer__items:nth-child(1),
  .footer__contacts .footer__items:nth-child(2) {
    border-bottom: 1px solid #ffc70066;
    padding-bottom: 29px;
  }

  .footer__contacts .footer__items:nth-child(3),
  .footer__contacts .footer__items:nth-child(4) {
    padding-top: 26px;
  }

  .footer__items:nth-child(odd) {
    padding-right: 12px;
  }

  .footer__text {
    font-size: 14px;
    padding-bottom: 0;
  }

  .footer__map {
    grid-column: auto;
  }

  /* footer white-block */
  .footer__white-block {
    grid-template-columns: 1fr;
    min-width: 375px;
    max-width: 100%;
    padding: 29px 16px 20px;
  }

  .footer__nav-container {
    grid-column: auto / span 1;
    padding-bottom: 24px;
    border: none;
  }

  .footer__copyright-container {
    font-size: 13px;
    line-height: 22px;
    padding-top: 18px;
    grid-column: auto / span 1;
  }

  .footer__copyright {
    line-height: 22px;
  }

  .footer__form-container {
    gap: 20px;
    justify-self: flex-start;
    padding-bottom: 33px;
  }

  .footer__label {
    margin-left: 0;
  }
}

/* Желтый блок-вставка */

.yellow-container {
  background-color: #FDC200;
  width: 100%;
}

.yellow-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1920px;
  height: 134px;
  padding-left: 344px;
  padding-right: 344px;
  margin: 0 auto;
}

.yellow-block__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  color: #060e29;
  text-align: right;
}

.yellow-block__phone-container {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}

.yellow-block__items {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  max-width: 700px;
}

.yellow-block__item {
  font-size: 24px;
  font-weight: 800;
  line-height: 49.5px;
  text-transform: uppercase;
}

.yellow-block__list {
  display: flex;
  gap: 48px;
  list-style: disc;
  color: #060e29;
  font-size: 16px;
  font-weight: 600;
  line-height: 49.5px;
}

@media screen and (max-width: 1919px) {
  .yellow-block {
    max-width: 1280px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media screen and (max-width: 1279px) {
  .yellow-block {
    min-width: 100%;
    padding-left: 32px;
    padding-right: 32px;
  }

  .yellow-block__wrapper {
    gap: 40px;
  }

  .yellow-block__phone-container {
    min-width: max-content;
  }

  .yellow-block__items {
    width: 100%;
    line-height: 21px;
    text-align: right;
  }

  .yellow-block__item {
    font-size: 16px;
    text-align: right;
  }

  .yellow-block__list {
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
    line-height: 27px;
  }
}

@media screen and (max-width: 766px) {
  .yellow-block {
    min-width: 375px;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    height: 100%;
    min-height: 235px;
    padding: 32px 16px;
  }

  .yellow-block__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 29px;
  }

  .yellow-block__items {
    gap: 12px;
    text-align: start;
  }

  .yellow-block__item {
    font-size: 13px;
    line-height: 26px;
    text-align: start;
  }

  .yellow-block__list {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    line-height: 27px;
    padding-left: 18px;
  }
}

/* Модальное окно с формой */
.popup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  visibility: hidden;
  opacity: 0;
  transition: 0.5s ease;
  z-index: 100;
  cursor: pointer;
}

.popup_is-open {
  visibility: visible;
  opacity: 1;
}

.popup__content {
  display: flex;
  flex-direction: column;
  width: 607px;
  min-height: 490px;
  background: #fff;
  border-radius: 8px;
  padding: 30px 35px;
  cursor: default;
}

.popup__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.popup__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 45px;
  letter-spacing: -0.01em;
  text-align: left;
  text-transform: uppercase;
  color: #060e29;
}

.popup__close-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.popup__form {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.popup__input-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 34px;
  margin-top: 28px;
  margin-bottom: 18px;
}

.popup__label {
  min-height: 64px;
}

.popup__input {
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  color: #000;
  width: 100%;
  height: 50px;
  border: none;
  background: transparent;
  border-bottom: 1px solid #000;
}

.popup__input:focus {
  outline: none;
  cursor: pointer;
}

.popup__input_error {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #ff4d4f;
}

.popup__info {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #808080;
  margin-bottom: 16px;
}

.popup__file-input {
  font-family: 'Roboto', 'Arial', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0em;
  color: #000;
  width: fit-content;
}

input[type='file']::file-selector-button {
  border: none;
  border-radius: 3px;
  background: #ededed;
  color: #000;
  font-family: 'Roboto', 'Arial', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0em;
  text-align: left;
  padding: 7px 9px;
  margin-right: 15px;
}

.popup__button {
  margin-top: 33px;
}

.popup__input::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #000;
}
.popup__input::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #000;
} /* Firefox 19+ */
.popup__input:-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #000;
} /* Firefox 18- */
.popup__input:-ms-input-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #000;
}

@media screen and (max-width: 639px) {
  .popup__content {
    width: 343px;
    min-height: 617px;
    padding: 19px 21px 25px;
  }

  .popup__title {
    font-size: 24px;
  }

  .popup__input-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 18px;
    margin-bottom: 10px;
  }

  .popup__label {
    min-height: 67px;
  }

  .popup__info {
    line-height: 18px;
    margin-bottom: 23px;
  }

  .popup__button {
    width: 100%;
  }
}

/* Бургер меню */
.burger-menu {
  display: none;
}

@media screen and (max-width: 1279px) {
  /* Бургер меню */
  .burger-menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #202020;
    padding: 43px 32px 130px;
    z-index: 110;
    overflow-y: scroll;
    transform: translateX(-100%);
    transition: all 0.2s ease-in-out;
  }

  .burger-menu_active {
    transform: translateX(0);
  }

  .burger-menu::-webkit-scrollbar {
    width: 8px;
  }
  .burger-menu::-webkit-scrollbar-track {
    background: transparent;
  }
  .burger-menu::-webkit-scrollbar-thumb {
    background-color: #FDC200;
    border-radius: 5px;
    border: 3px solid transparent;
  }

  .burger-menu__content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .burger-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    min-height: 84px;
    padding-bottom: 21px;
  }

  .burger-menu__contacts {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid rgb(255, 255, 255, 0.3);
    border-top: 1px solid rgb(255, 255, 255, 0.3);
    width: 100%;
    height: 100%;
    min-height: 99px;
    list-style: none;
    padding: 24px 0 33px;
  }

  .burger-menu__info {
    display: flex;
    gap: 5px;
  }

  .burger-menu__items {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .burger-menu__item {
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0em;
    color: #fff;
  }

  .burger-menu__grey-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    color: rgba(255, 255, 255, 0.7);
  }

  .burger-menu__close-btn {
    width: 25px;
    height: 25px;
    background: transparent;
    background-image: url('./images/burger-menu-close.svg');
    background-size: 25px 25px;
    border: none;
    cursor: pointer;
  }

  .burger-menu__list {
    display: flex;
    flex-direction: column;
    gap: 38px;
    list-style: none;
    padding-top: 30px;
  }

  .burger-menu__elem {
    position: relative;
  }

  .burger-menu__real_input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    width: 0;
    height: 0;
  }

  .burger-menu__label {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    cursor: pointer;
    z-index: 2;
  }

  .burger-menu__section-name {
    font-size: 24px;
    font-weight: 500;
    line-height: 22px;
    color: #fff;
    text-transform: uppercase;
  }

  .burger-menu__arrow {
    transform: rotate(180deg);
    transition: all 0.1s ease;
  }

  .burger-menu__links {
    display: none;
  }

  .burger-menu__link {
    font-family: 'Roboto', 'Arial', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
    color: rgb(255, 255, 255, 0.5);
    text-transform: uppercase;
  }

  .burger-menu__link:hover {
    color: #fff;
  }

  .burger-menu__real_input:checked ~ .burger-menu__links {
    display: flex;
    flex-direction: column;
    gap: 21px;
    list-style: none;
    padding: 33px 0 26px 80px;
  }

  .burger-menu__real_input:checked ~ .burger-menu__label > .burger-menu__arrow {
    transform: rotate(0deg);
  }
}

@media screen and (max-width: 766px) {
  .burger-menu {
    padding: 25px 16px 74px;
  }

  .burger-menu__header {
    min-height: 45px;
    padding-bottom: 0;
  }

  .burger-menu__header .logo {
    width: 106px;
    height: 45px;
  }

  .burger-menu__header .download-button {
    display: none;
  }

  .burger-menu__contacts {
    display: none;
  }

  .burger-menu__close-btn {
    width: 21px;
    height: 21px;
    background-size: 21px 21px;
  }

  .burger-menu__list {
    gap: 22px;
    padding-top: 47px;
  }

  .burger-menu__label {
    gap: 15px;
  }

  .burger-menu__section-name {
    font-size: 16px;
  }

  .burger-menu__arrow {
    width: 13px;
    height: 13px;
  }

  .burger-menu__link {
    font-size: 14px;
  }

  .burger-menu__real_input:checked ~ .burger-menu__links {
    gap: 10px;
    padding: 20px 0 26px 43px;
  }
}
