@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-Regular.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: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.8;
}

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

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

.container__logo {
  position: absolute;
  right: 0;
  top: 0;
  width: 216px;
  height: 216px;
}

.container__header-title {
  font-size: 33px;
  font-family: "MTS Wide", sans-serif;
  font-weight: 400;
  text-transform: inherit;
  line-height: 31px;
}

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

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

.container__main {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
  color: black;
  text-transform: uppercase;
  left: 57px;
  bottom: 67px;
}

.container__main-title {
  font-size: 106.67px;
  font-family: "MTS Wide", sans-serif;
  font-weight: 400;
  line-height: 86.67px;
  text-align: center;
  color: black;
  display: flex;
text-align: start;
}

.container_secondary-title {
  font-size: 33.33px;
  font-family: "MTS Wide", sans-serif;
  font-weight: 400;
  line-height: 37.33px;
  margin-top: 31px;
  text-align: left;
  text-transform: initial;
}

.container__footer {
  position: absolute;
  z-index: 2;
  font-size: 33.33px;
  font-family: "MTS Wide", sans-serif;
  font-weight: 400;
  line-height: 37.33px;
  margin-top: 31px;
  text-align: left;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  color: black;
  right: 57px;
  bottom: 67px;
  gap: 150px;
}

.container__footer-title {
  line-height: 28.67px;
  text-align: right;
  text-transform: initial;

}

@media (max-width: 1200px) {
  .container__logo {
    width: 80px;
    height: 80px;
  }

  .container__header-title {
    font-size: 16px;
    line-height: 20px;
    width: 100%;
  }

  /* .container__header-address { 
    font-size: 10px;
    line-height: 10.67px;
  } */

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

  .container__main {
    top: 50%;
    left: 15px;
    transform: translateY(-50%);

  }

  .container__main-title {
    font-size: 80px;
    line-height: 70px;
  }

  .container_secondary-title {
    font-size: 20px;
    line-height: 20px;
    margin-top: 5px;
  }

  .container__footer {
    flex-direction: row;
    justify-content: space-between;
    left: 15px;
    gap: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    font-size: 20px;
    bottom: 15px;
    line-height: 26px;
    align-items: center;
  }

  .container__footer-title {
    font-size: 20px;
    line-height: 22px;
  }

  .container__header-title {
    width: calc(100% - 70px);
  }
}