@font-face {
  font-family: 'MTS Compact';
  src: url('../fonts/MTSCompact-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: regular;
  font-display: swap;
}

@font-face {
  font-family: 'MTS Compact';
  src: url('../fonts/MTSCompact-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MTS Extended';
  src: url('../fonts/MTSExtended-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MTS Extended';
  src: url('../fonts/MTSExtended-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MTS Wide';
  src: url('../fonts/MTSWide-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    system-ui,
    -apple-system,
    'Segoe UI',
    Roboto,
    sans-serif;
  line-height: 1.5;
  color: #1a1a1a;
  background: black;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.8;
}

.container__header {
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 2;
}

.container {
  width: 1300px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 38px;
}

.container__logo {
  width: 125px;
  height: 125px;
}

.container__header-title {
  font-size: 24px;
  font-family: 'MTS Compact', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.container__header-address {
  font-family: 'MTS Compact', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 31.45px;
  letter-spacing: 0%;
  text-align: right;
  text-transform: uppercase;
}

.container__text {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 80%;
}

.container__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: white;
  text-transform: uppercase;
}

.container__main-title {
  font-size: 100px;
  font-family: 'MTS Compact', sans-serif;
  font-weight: 700;
  line-height: 75px;
  text-align: center;
  margin: 0;
}

.container_secondary-title {
  font-size: 42px;
  font-family: 'MTS Compact', sans-serif;
  font-weight: 400;
  line-height: 35px;
  margin-top: 18px;
  text-align: center;
  text-transform: uppercase;
}

.container__footer {
  z-index: 2;
  font-size: 42px;
  font-family: 'MTS Compact', sans-serif;
  font-weight: 400;
  line-height: 35px;
  margin-top: 18px;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: white;
}

.container__footer-title {
  line-height: 43px;
  margin: 0;
}

.event-description {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
  line-height: 22px;
  text-transform: none;
}

@media (max-width: 768px) {
  .container__logo {
    width: 75px;
    height: 75px;
  }

  .container__header-title {
    font-size: 15px;
  }

  .container__header-address {
    font-size: 15px;
    line-height: 16px;
  }

  .container {
    padding: 15px;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .container__main-title {
    font-size: 50px;
    line-height: 37.5px;
    font-weight: 600;
  }

  .container_secondary-title {
    font-size: 21px;
    line-height: 20.5px;
    margin-top: 9px;
  }

  .container__footer {
    font-size: 21px;
    line-height: 20.5px;
  }

  .container__footer-title {
    line-height: 20.5px;
  }

  .event-description {
    max-width: 520px;
    font-size: 13px;
    line-height: 16px;
  }
}
