* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  border: none;
  color: white;
  letter-spacing: 0.05em;
}

body {
  text-transform: uppercase;
}

header {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  background: white;
}

.header__bg {
  /* background: url('/assets/images/cover-main.jpg') center no-repeat; */
  background: url('/assets/images/cover-main-new.jpg') center no-repeat;
  width: 100%;
  height: 100vh;
  display: block;
  content: " ";
  background-repeat: no-repeat;
  /* background-size: cover; */
  background-size: contain;
  background-position: bottom center;
}

header h1 {
  background-color: black;
  padding: 2vh 0;
  width: 100%;
  font-style: normal;
  font-weight: 800;
  font-size: 5vw;
  text-align: center;
}

header h2 {
  padding: 2vh 16px;
  width: 100%;

  font-weight: 600;
  font-size: 3vw;
  text-align: center;

  background-color: #D6A62B;
}

/* MAIN */

article {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  padding: 0 123px;
}

article > .section {
  text-decoration: none;
  cursor: pointer;
  margin-top: 41px;
}

article:last-child {
  margin-bottom: 41px;
}

.section {
  display: grid;
  grid-template-columns: 264px auto 264px;
  height: 234px;
  width: 100%;
}

.section__date-wrapper {
  background-color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 27px 16px;
}

.section__week {
  color: #D6A62B;
  font-weight: 800;
  font-size: 24px;
  line-height: 29px;
}

.section__day {
  font-weight: 800;
  font-size: 96px;
  line-height: 0.7em;
}

.section__month {
  font-weight: 800;
  font-size: 30px;
  line-height: 37px;
}

.section__location-wrapper {
  background-color: #E0E0E0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;

  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 37px;
  text-align: center;
  padding: 55px 30px;
}

.section__city {
  color: #D6A62B;
  line-height: 37px;
}

.section__place {
  color: black;
}

.section__button {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D6A62B;
  font-weight: 800;
  font-size: 32px;
  line-height: 39px;
  text-align: center;

  padding: 0 40px;
}

.section__button:hover {
  background-color: #525252;
}

/* FOOTER */

footer {
  background-color: black;
  height: 234px;
  padding: 53px 123px;
  display: flex;
}

.footer__logo {
  background: url(../images/LMA-logo.svg) no-repeat center;
  background-size: contain;
  height: 100%;
  width: 120px;
}

.footer__contacts {
  width: 100%;
  text-align: end;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-transform: none;
}

.footer__email {
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  color: #D6A62B;
  text-transform: none !important;
}

.footer__email:hover {
  text-decoration: none;
}

.footer__address {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
}

.footer__address span {
  color: #FF3036;
}

/* ТЕЛЕФОНЫ И ПЛАНШЕТЫ */

@media only screen and (max-width: 1200px) {
  main > article {
    padding: 0 50px;
  }

  footer {
    padding: 50px;
  }
}

@media only screen and (max-width: 1050px) {
  article {
    padding: 0 !important;
  }

  article > .section {
    margin-top: 18px;
  }
  
  article:last-child {
    margin-bottom: 18px;
  }
  
  .section {
    height: 181px;
    width: 100%;

    grid-template-columns: 113px 1fr;
    grid-template-rows: 1fr 0.81fr;
  }
  
  .section__week {
    font-size: 10px;
    line-height: 12px;
  }
  
  .section__day {
    font-size: 40px;
    line-height: 27px;
  }
  
  .section__month {
    font-size: 13px;
    line-height: 16px;
  }
  
  .section__location-wrapper {
    font-size: 15px;
    line-height: 18px;
    padding: 20px 16px;
  }
  
  .section__date-wrapper {
    padding: 11px 7px;
  }

  .section__city {
    line-height: 1em;
  }
  
  .section__button {
    font-size: 24px;
    line-height: 29px;
    grid-column: span 2;

    padding: 11px 7px;
  }
  
  /* FOOTER */
  
  footer {
    height: 130px;
    padding: 23px;
  }
  
  .footer__email {
    font-size: 14px;
    line-height: 17px;
  }
  
  .footer__address {
    font-size: 10px;
    line-height: 12px;
  }
}

@media only screen and (max-width: 768px) {
  header {
    height: 75vh;
  }
  header > h1 {
    font-size: 9vw;
  }

  header > h2 {
    font-size: 7vw;
  }
  .header__bg {
    max-width: 98%;
    margin: 0 auto;
  }
}
