@font-face {
  font-family: "Benzin";
  src: url("../fonts/benzin-semibold.otf");
}

@font-face {
  font-family: "Grtsk";
  src: url("../fonts/grtsk-tera-12.ttf");
}

:root {
  --orange: #f26d10;
  --violet: #b48fef;
  --green: #0e5652;
  --beige: #ffe2cc;
}

.orange {
  color: #f26d10;
}

.orange_bg {
  background-color: #f26d10;
}

.orange_border {
  border: var(--orange) 2px solid;
  border-radius: 20px;
}

.violet {
  color: #b48fef;
}

.violet_bg {
  background-color: #b48fef;
}

.violet_border {
  border: var(--violet) 2px solid;
  border-radius: 20px;
}

.green {
  color: #0e5652;
}

.green_bg {
  background-color: #0e5652;
}

.green_border {
  border: var(--green) 2px solid;
  border-radius: 20px;
}

.beige {
  color: #ffe2cc;
}

.beige_bg {
  background-color: #ffe2cc;
}

.beige_border {
  border: var(--beige) 2px solid;
  border-radius: 20px;
}

.light_violet {
  color: #f8f4fd;
}

.light_violet_bg {
  background-color: #f8f4fd;
}

* {
  box-sizing: border-box;
  font-family: Benzin, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  position: relative;
}

p {
  margin: 0;
  padding: 0;
}

.page__wrapper {
  max-width: 1440px;
  margin: 0 auto;
}
.header {
  width: 100%;
}

.container {
  margin: 60px 20px;
}

@media screen and (max-width: 600px) {
  .container {
    margin: 20px 20px;
  }
}

/* --HEADER-- */
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__social {
  height: 100%;
}
.header__social img {
  object-fit: contain;
  width: 140px;
}

@media screen and (max-width: 600px) {
  .header__social img {
    width: 86px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  /* width: 710px; */
  justify-content: flex-end;
  grid-gap: 20px;
  position: relative;
}

/* ЭТОТ СТИЛЬ НА 117 СТРОКЕ СКРЫВАЕТ БЛОКИ В ХЭДЕРЕ 
"ТОП ЗАЯВОК" И  "АВТОРИЗАЦИЯ".
ЧТОБ ПОКАЗАТЬ ЭТИ БЛОКИ НУЖНО ЗАКОММЕНТИТЬ  display: none;
*/


@media screen and (max-width: 900px) {
  .header__nav > a {
    display: none;
  }

  .header__nav {
    justify-content: flex-end;
  }
}

.header__about {
  display: block;
  height: 43px;
}

.header__about img {
  height: 100%;
  width: 100%;
}

.header__about button {
  /* border: none; */
  background: none;
  cursor: pointer;
  /* border: 2px solid var(--violet); */
  border-radius: 20px;
  padding: 10px;
  font-size: 14px;
  font-family: Grtsk, sans-serif;
}

.header__nav-link {
  font-family: Benzin, serif;
  background-color: transparent;
  color: var(--violet);
  font-size: 16px;
  text-decoration: none;
}
/* --------------------- end of HEADER--------------------- */

/* ------------------------MAIN------------------------- */
.page-main {
}
.main-page {
}

.main-page__wrap {
}
.main-page__main {
}
.main-info {
  width: 100%;
}

/* ЭТОТ БЛОК ВКЛЮЧИТЬ КОГДА В ВЕРСТКЕ НУЖНО ПОКАЗАТЬ КНОПКУ "БИЛЕТЫ НА ФИНАЛ"
ОН ДОБАВЛЯЕТ НУЖНЫЕ СТРОКИ В ГРИД-СЕТКУ


.main-info__head {
  display: grid;
  grid-template-columns:
    minmax(300px, 800px)
    minmax(200px, 500px);
  grid-template-rows:
    minmax(48px, auto)
    minmax(132px, auto)
    minmax(57px, auto)
    minmax(256px, auto);
  grid-gap: 40px;
  grid-template-areas:
    "btn . " 
    "title  pic"
    "date  pic"
    "text pic";
}

*/
.main-info__head {
  display: grid;
  grid-template-columns:
    minmax(300px, 800px)
    minmax(200px, 500px);
  grid-template-rows:
    minmax(48px, auto)
    minmax(80px, auto)
    minmax(57px, auto);
  grid-gap: 40px;
  grid-template-areas:
    "title  pic"
    "date  pic"
    "text pic";
}
@media screen and (max-width: 572px) {
  .main-info__head {
    grid-template-columns: minmax(150px, auto) minmax(94px, auto);
    grid-template-rows:
      minmax(37px, auto) minmax(51px, auto) minmax(42px, auto)
      auto;
    grid-gap: 5px;
    grid-template-areas:
      /* "btn pic " */
      "title  pic"
      "date  date"
      "text text";
  }
}

.main-info__head > a:first-child {
  font-size: 15px;
  font-weight: 800;
  line-height: 120%;
  width: 231px;
  height: 48px;
  color: #ffe2cc;
  background-color: #f26d10;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  text-decoration: none;
  display: none;
}

@media screen and (max-width: 888px) {
  .main-info__head > a:first-child {
    font-size: 12px;
    width: 159px;
  }
}

.main-info__subtitle {
  grid-area: btn;
}

@media screen and (max-width: 888px) {
  .main-info__subtitle {
    /* font-size: 12px; */
  }
}

.main-info__title {
  font-size: 48px;
  margin: 0;
  padding: 0;
  grid-area: title;
}

@media screen and (max-width: 888px) {
  .main-info__title {
    line-height: 1.5em;
    font-size: 32px;
  }
  .main-info__title .shoot {
    font-size: 24px;
  }
}
@media screen and (max-width: 560px) {
  .main-info__title {
    line-height: 25px;
    font-size: 24px;
  }
  .main-info__title .shoot {
    font-size: 18px;
  }
}

.main-info__date {
  font-size: 18px;
  font-family: "Grtsk";
  grid-area: date;
}
.main-info__date span {
  font-size: 18px;
  font-family: "Grtsk";
  grid-area: date;
}

@media screen and (max-width: 888px) {
  .main-info__date {
    margin: 16px 0;
    font-size: 16px;
  }
}

.main-info__text {
  grid-area: text;
}

.main-info__text p {
  font-size: 20px;
  font-family: "Grtsk";
}
.main-info__text .nominee {
  font-size: 20px;
  font-family: "Grtsk";
  margin-left: 70px;
}

@media screen and (max-width: 888px) {
  .main-info__text {
    font-size: 14px;
  }
}

.main-info__pictures {
  grid-area: pic;
  /* outline: 1px solid red; */
  /* width: 100%; */
  align-self: baseline;
}
.main-info__pictures img {
}
.main-info__picture {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.main-info__logos {
}

.video {
  margin-top: 60px;
}

/* ------------------------ end of MAIN------------------------ */

/* ------------------------ FOOTER------------------------ */
.footer {
  background-color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .container {
  width: 1440px;
  /* display: flex; */
}
.footer__main {
  display: grid;
  flex-wrap: wrap;
  width: 100%;
  grid-row-gap: 40px;
  justify-content: space-between;
  /* align-items: center; */
  margin: 30px 0;
  grid-template-columns: 1fr;
}
@media (min-width:768px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width:1280px) {
  .footer__main {
    grid-template-columns: 40% 20% 40%;
  }
}

.footer__support {
  display: flex;
  flex-direction: column;
}
.footer__title {
  font-size: 16px;
  color: #000;
  font-family: "Grtsk";
  /* margin-bottom: 20px; */
  text-transform: uppercase;
  text-align: center;
}

@media screen and (max-width: 550px) {
  .footer__title {
    font-size: 10px;
  }
}

.footer__supporters {
  display: flex;
  grid-gap: 30px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
  height: 120px;
}

.footer__supporters img {
  /* height: 100%; */
  object-fit: contain;
}


.footer__sber {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  height: 120px;
}

.footer__sber img {
  max-width: 100%;
  max-height: 100%;
}

.footer__partners {
  display: flex;
  grid-gap: 20px;
  text-align: center;
  justify-content: center;
}
@media (min-width:768px) and (max-width:1279px) {
  .footer__partners {
    grid-column: span 2;
  }
}
.footer__partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 1;
  height: 100%;
  justify-content: space-between;
}
.footer__partner img {
  width: 100%;
  object-fit: contain;
  max-height: 60px;
  margin: 30px 0;
}
.footer__links {
  display: none;
}

.footer__link {
  display: block;
  color: #f26d10;
  line-height: 50px;
  font-family: "Grtsk";
}

@media screen and (max-width: 550px) {
  .footer__link {
    font-size: 0.75em;
  }
}

.footer__copyright {
  color: var(--orange);
  font-family: "Grtsk";
  margin: 0 auto;
  text-align: center;
  font-size: 10px;
}
/* ------------------ end of FOOTER------------------ */
.sber-field {
  width: 100%;
  margin-bottom: 60px;
}
.sber-field a img {
  width: 100%;
}
/* ----------------Мобильное меню гамбургер---------------- */
.header__mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border-radius: 20px;
  flex-wrap: nowrap;
  grid-gap: 20px;
  padding: 10px;
  min-width: 160px;
  position: absolute;
  right: 0;
  top: -50px;
  outline: var(--beige) 1px solid;
  background-color: var(--violet);
  z-index: 1;
}
.header__mobile-menu_violet {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border-radius: 20px;
  flex-wrap: nowrap;
  grid-gap: 20px;
  padding: 10px;
  min-width: 160px;
  position: absolute;
  right: 0;
  outline: var(--violet) 1px solid;
  top: -50px;
  background-color: #fff;
  z-index: 1;
}

@media screen and (min-width: 900px) {
  .header__mobile-menu,
  .header__mobile-menu_violet {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .header__mobile-menu,
  .header__mobile-menu_violet {
    top: -40px;
  }
}

.menu_border {
  outline: none;
}

.header__mobile-menu a {
  text-decoration: none;
  color: var(--beige);
  font-size: 10px;
}
.header__mobile-menu_violet a {
  text-decoration: none;
  color: var(--violet);
  font-size: 10px;
}

.header__mobile-menu_burger {
  height: 30px;
  width: 30px;
  cursor: pointer;
  background-image: url(../images/burger_beige.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.header__mobile-menu_burger_violet {
  height: 30px;
  width: 30px;
  cursor: pointer;
  background-image: url(../images/burger_violet.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.header__mobile-menu_content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  grid-gap: 20px;
}
.header__mobile-menu_content_violet {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  grid-gap: 20px;
}

.content_hide {
  display: none;
}

.mobile-menu_content_show {
}

.header__mobile-menu_top {
  display: none;
}
.header__mobile-menu_top_violet {
  display: none;
}

.header__mobile-menu_terms {
}

.header__mobile-menu_enter {
}

.header__mobile-menu_vk {
  width: 24px;
  height: 24px;
}
.header__mobile-menu_vk_violet {
  width: 24px;
  height: 24px;
  background-image: url(../images/vk_violet.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.header__mobile-menu_vk img {
  width: 100%;
  height: 100%;
}
.header__mobile-menu_vk_violet img {
  width: 100%;
  height: 100%;
}

/* Страница документов */

.documents {
  padding: 0 10px;
}
.docunemts__title {
  font-size: 28px;
  color: var(--orange);
  font-family: Benzin;
  text-align: center;
  margin: 40px;
}
.documents__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}

@media screen and (max-width: 800px) {
  .documents__grid {
    grid-template-columns: 100%;
    grid-gap: 20px;
  }
}
.documents__grid-item {
  height: 60px;
  grid-gap: 20px;
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 800px) {
  .documents__grid-item {
    height: 6 0px;
    grid-gap: 20px;
  }
}
.documents__grid-item-marker {
}
.documents__grid-item-text a {
  text-decoration: none;
  font-size: 20px;
  color: var(--violet);
}

@media screen and (max-width: 800px) {
  .documents__grid-item-text a {
    font-size: 16px;
  }
}