:root {
  --header-height: 82px;
  --branding-height: 152px;
  --branding-bg-color: radial-gradient(#03050c 7%, #57718a 62%, #fff 100%);
}

body {
  background: var(--branding-bg-color);
}

.site-main,
.home .site-main {
  margin-top: calc(var(--branding-height) + var(--header-height));
  box-shadow:  0px -10px 10px -10px #4f4f4f;
}

.win {
  position: relative;
  display: flex;
  justify-content: center;
}

.win-link {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  height: 900px;
  width: 100%;
  min-height: 100vh;
  background: url('./img/city-bg-top.png') no-repeat top center / contain,
  url('./img/light-bg.png') no-repeat top center / contain;
}

.win-top {
  position: absolute;
  top: var(--header-height);
  padding-inline: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  max-width: 1920px;
  height: var(--branding-height);
  z-index: 1;
}

.win-top__content {
  position: absolute;
  width: 100%;
  max-width: 1420px;
  display: flex;
  align-items: flex-start;
}

.win-top__text-1 {
  margin-top: 16px;
  margin-right: 52px;
}

.win-top__text-2 {
  margin-top: 45px;
  margin-right: 35px;
}

.win-top__lady {
  margin-right: 24px;
}

.win-top__text-3 {
  align-self: center;
}

.win-top__logo {
  align-self: center;
  margin-left: auto;
}

.win-top__city-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.win-side {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 1920px;
}

.win-side__left {
  position: absolute;
  left: 0;
  bottom: -100px;
}

.win-side__right {
  position: absolute;
  right: 0;
  bottom: -100px;
}

.win-side__city-left {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.win-side__city-right {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 1480px) {
  .win-top__content {
    justify-content: center;
    height: 100%;
  }

  .win-top__text-1 {
    width: 270px;
    margin-right: 43px;
  }

  .win-top__text-2 {
    width: 232px;
    margin-right: 28px;
  }

  .win-top__lady {
    width: 180px;
    margin-right: 20px;
    align-self: flex-end;
  }

  .win-top__text-3 {
    width: 230px;
  }

  .win-top__logo {
    margin-left: 76px;
  }

  .win-side__left {
    left: -100px;
  }

  .win-side__right {
    right: -100px;
  }
}

@media (max-width: 1198px) {
  :root {
    --branding-height: 182px;
  }

  .win-side {
    display: none;
  }

  .win-top {
    padding-bottom: 10px;
  }

  .win-top__content > img {
    margin: 0;
  }

  .win-top__content {
    padding: 0 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: row;
    gap: 10px;
    align-items: end;
  }

  .win-top__text-1 {
    width: 220px;
  }

  .win-top__text-2 {
    width: 182px;
  }

  .win-top__lady {
    width: 220px;
    grid-row: 1 / span 2;
    position: relative;
    bottom: -10px;
  }

  .win-top__text-3 {
    width: 180px;
  }
}

@media (max-width: 991px) {
  :root {
    --header-height: 78px;
  }
}

@media (max-width: 768px) {
  .win-top__content {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
    column-gap: 20px;
    align-items: center;
    justify-items: center;
  }

  .win-top__lady {
    position: absolute;
  }

  .win-top__text-1 {
    width: 170px;
  }

  .win-top__text-2 {
    width: 132px;
  }

  .win-top__text-3 {
    width: 130px;
  }
}

@media (max-width: 480px) {
  .site-main,
  .home .site-main {
    margin-top: 0;
  }

  .win-top > * {
    display: none !important;
  }

  .win-top {
    position: relative;
    padding: 0;
    width: 100%;
    height: 400px;
    background: url('img/bg-mobile.png') no-repeat left / cover;
    z-index: 1;
  }

  .win-link {
    background: none;
  }
}