@font-face {
  font-family: "ZenKakuGothicNew";
  font-display: swap;
  src: url("./ZenKakuGothicNew-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("./Inter_18pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("./Inter_18pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("./Inter_18pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

:root {
  --background-black: #000;
  --color-white: #fff;
}

html {
  scroll-behavior: smooth;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

input {
  box-sizing: border-box;
}

::after,
::before {
  box-sizing: border-box;
}

.page {
  height: 100%;
  font-size: 16px;
  line-height: 20px;
}

.page__body {
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background-color: #fff;
  color: #000000;
}

.page-main {
  flex-grow: 1;
  overflow: hidden;
  /* margin-top: 80px; */
}

.footer {
  margin-top: auto;
}

:root {
  --container-width: 1157px;
  --container-padding: 15px;
  --page-bg: #fff;
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-padding);

  max-width: var(--container-width);
  width: 100%;
}

.promo {
  height: 100vh;
}

.promo__wrapper {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.banner {
  height: 100%;
}

.banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo__block {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.promo__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}

.promo__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 60%;
}

.promo__block-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.title-1 {
  font-size: 65px;
  line-height: 100%;
  font-weight: 900;
  font-family: "ZenKakuGothicNew", sans-serif;
  color: var(--page-bg);
}

.promo__text {
  font-size: 25px;
  line-height: 120%;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: var(--page-bg);
}

.promo-contact {
  width: 40%;
}
.promo-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.promo-contact-link {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.promo-contact-top {
  display: flex;
  align-items: center;
  gap: 7px;
}
.contact-text {
  font-size: 16px;
  line-height: 135%;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: var(--page-bg);
}
.contact-title {
  font-size: 20px;
  line-height: 140%;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: var(--page-bg);
  text-decoration: none;
  padding-left: 31px;
}

@media (max-width: 1024px) {
  .promo__inner {
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }

  .promo__info {
    gap: 30px;
    width: 100%;
  }

  .title-1 {
    font-size: 45px;
  }

  .title-1 br {
    display: none;
  }

  .promo__text {
    font-size: 20px;
    line-height: 110%;
  }

  .promo-contact {
    width: 100%;
  }
  .promo-contact-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }

  .contact-text {
    font-size: 15px;
    line-height: 115%;
  }
  .contact-title {
    font-size: 18px;
    line-height: 120%;
    padding-left: 31px;
  }
}

@media (max-width: 768px) {
  .promo__info {
    gap: 20px;
    width: 100%;
  }

  .title-1 {
    font-size: 35px;
  }

  .promo__text {
    font-size: 18px;
    line-height: 100%;
  }

  .promo-contact-list {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .contact-text {
    font-size: 14px;
    line-height: 100%;
  }
  .contact-title {
    font-size: 16px;
    line-height: 100%;
  }
}

@media (max-width: 580px) {
  .promo__info {
    gap: 20px;
    width: 100%;
  }

  .title-1 {
    font-size: 26px;
  }

  .promo__text {
    font-size: 16px;
  }

  .promo-contact-list {
    grid-template-columns: 1fr;
  }

  .contact-text {
    font-size: 14px;
  }
  .contact-title {
    font-size: 15px;
  }
}
