.footer__top {
  background-color: #313132;
  padding: 50px 0 40px;
}
@media (min-width: 768px) {
  .footer__top {
    padding: 80px 0 60px;
  }
}
.footer__top_top {
  display: grid;
  grid-template-columns: auto;
  align-items: flex-start;
  gap: 40px;
}
@media (min-width: 1024px) {
  .footer__top_top {
    grid-template-columns: 0.65fr 1fr;
  }
}
.footer__top_top_mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer__top_top_mobile {
    display: none;
  }
}
.footer__top_top_mobile .footer__logo {
  max-width: 150px;
}
.footer__top_top_mobile .footer__socials {
  margin: 0;
}
.footer__top_top_mobile .footer__socials .social__icon {
  width: 32px;
  height: 32px;
}
.footer__top_bottom {
  margin: 30px 0 0 0;
  display: flex;
  flex-direction: column;
}
.footer__top_bottom .footer__logo,
.footer__top_bottom .footer__socials {
  display: none;
}
@media (min-width: 768px) {
  .footer__top_bottom {
    margin: 60px 0 0 0;
  }
  .footer__top_bottom .footer__logo {
    display: block;
  }
  .footer__top_bottom .footer__socials {
    display: flex;
  }
}
.footer__bottom {
  background-color: #262627;
  padding: 24px 0;
}
.footer__bottom_body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "l" "c";
  align-items: center;
  gap: 24px;
}
@media (min-width: 992px) {
  .footer__bottom_body {
    gap: 40px;
    grid-template-areas: "c l";
    grid-template-columns: 0.65fr 1fr;
  }
}
.footer__bottom_info {
  grid-area: c;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #fff;
  opacity: 0.6;
}
@media (min-width: 768px) {
  .footer__bottom_info {
    order: 0;
    font-size: 13px;
  }
}
.footer__bottom_info_year {
  padding: 0 2px;
}
.footer__bottom_links {
  grid-area: l;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .footer__bottom_links {
    align-items: flex-start;
    flex-direction: row;
    gap: 60px;
  }
}
.footer__bottom_links a {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .footer__bottom_links a {
    font-size: 13px;
  }
}
.footer__bottom_links a:hover {
  color: #ff7100;
}
.footer__nav {
  display: grid;
  grid-template-columns: auto;
}
@media (min-width: 768px) {
  .footer__nav {
    grid-template-columns: repeat(3, auto);
    gap: 40px;
  }
}
.footer__nav_section.active .footer__nav_category span svg {
  transform: rotate(180deg);
}
.footer__nav_category {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.24;
  color: #fff;
  padding: 14px 0 14px 0;
}
.footer__nav_category span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .footer__nav_category span {
    display: none;
  }
}
.footer__nav_category span svg {
  width: 11px;
  height: 11px;
  color: #fff;
  transition: transform 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
@media (min-width: 768px) {
  .footer__nav_category {
    line-height: 1.26;
    padding: 0;
    font-size: 22px;
    cursor: default;
  }
}
.footer__nav_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  margin: 0;
  transition: max-height 0.3s cubic-bezier(0.3, 0.1, 0.26, 1), margin 0.3s cubic-bezier(0.3, 0.1, 0.26, 1), opacity 0.3s cubic-bezier(0.3, 0.1, 0.26, 1), visibility 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
.footer__nav_list.show {
  margin: 10px 0 0 0;
  visibility: visible;
  opacity: 1;
}
@media (min-width: 768px) {
  .footer__nav_list {
    gap: 16px;
    margin: 24px 0 0 0;
    max-height: none;
    visibility: visible;
    opacity: 1;
  }
}
.footer__nav_list li a {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.36;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
.footer__nav_list li a:hover {
  color: #ff7100;
  opacity: 1;
}
.footer__tiles {
  display: flex;
  align-items: stretch;
  gap: 22px;
}
.footer__tile {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 24px;
  grid-template-areas: "icon size" "text text";
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 16px;
  padding: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 230px;
  transition: background-color 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
@media (min-width: 768px) {
  .footer__tile {
    padding: 30px;
  }
}
.footer__tile:hover {
  background-color: rgba(255, 255, 255, 0.14);
}
.footer__tile.link .footer__tile_icon {
  position: relative;
}
.footer__tile.link .footer__tile_icon span {
  transition: transform 0.3s cubic-bezier(0.3, 0.1, 0.26, 1), opacity 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
.footer__tile.link .footer__tile_icon span:nth-child(1) svg {
  color: #fff;
  transform: translateX(0) translateY(0);
}
.footer__tile.link .footer__tile_icon span:nth-child(2) {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-120%) translateY(120%);
}
.footer__tile.link .footer__tile_icon span:nth-child(2) svg {
  color: #ff7100;
}
.footer__tile.link:hover .footer__tile_icon span:nth-child(1) {
  transform: translateX(120%) translateY(-120%);
}
.footer__tile.link:hover .footer__tile_icon span:nth-child(2) {
  transform: translateX(0) translateY(0);
}
.footer__tile.link:hover .footer__tile_icon span:nth-child(2) svg {
  color: #ff7100;
}
.footer__tile.download .footer__tile_icon svg {
  width: 16px;
  height: 18px;
}
@media (min-width: 768px) {
  .footer__tile.download .footer__tile_icon svg {
    width: 18px;
    height: 22px;
  }
}
.footer__tile_icon {
  grid-area: icon;
  overflow: hidden;
}
.footer__tile_icon span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__tile_icon svg {
  width: 13px;
  height: 13px;
  color: #fff;
  transition: color 0.3s cubic-bezier(0.3, 0.1, 0.26, 1), width 0.3s cubic-bezier(0.3, 0.1, 0.26, 1), height 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
@media (min-width: 768px) {
  .footer__tile_icon svg {
    width: 15px;
    height: 15px;
  }
}
.footer__tile_size {
  grid-area: size;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.26;
  color: #fff;
  opacity: 0.6;
}
.footer__tile_text {
  grid-area: text;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.36;
  color: #fff;
  max-width: 120px;
}
.footer__tile:hover .footer__tile_icon svg {
  color: #ff7100;
}
.footer__logo svg {
  height: 26px;
  max-width: 210px;
  width: 100%;
}
.footer__socials {
  margin: 24px 0 0 0;
  display: flex;
  align-items: stretch;
  gap: 20px;
}
.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__socials a:hover .social__icon_telegram {
  background: #37aee2;
}
.footer__socials a:hover .social__icon_vk {
  background: #4c6c91;
}
.footer__socials a:hover .social__icon_youtube {
  background: #FF0000;
}
.footer__socials a .social__icon {
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
.footer__socials a .social__icon_telegram svg {
  width: 18px;
  height: 16px;
}
.footer__socials a .social__icon_vk svg {
  width: 18px;
  height: 11px;
}
.footer__standarts {
  margin: 40px 0 0 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .footer__standarts {
    gap: 30px;
    justify-content: flex-start;
  }
}
.footer__standarts span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__standarts span:nth-child(1) {
  order: 1;
}
.footer__standarts span:nth-child(2) {
  order: 3;
}
@media (min-width: 768px) {
  .footer__standarts span:nth-child(2) {
    order: 2;
  }
}
.footer__standarts span:nth-child(3) {
  order: 3;
}
.footer__standarts span:nth-child(4) {
  order: 2;
}
@media (min-width: 768px) {
  .footer__standarts span:nth-child(4) {
    order: 4;
  }
}
.footer__standarts span img {
  max-height: 40px;
  height: 100%;
  border-radius: 7px;
  overflow: hidden;
  pointer-events: none;
}
@media (min-width: 768px) {
  .footer__standarts span img {
    max-height: 54px;
  }
}