.sitePopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: auto;
  background-color: rgba(225, 225, 225, 0.9);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.sitePopup.js-show {
  opacity: 1;
  pointer-events: all;
}

.sitePopup__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 80px clamp(1rem, 0.4851rem + 2.2388vw, 2.5rem);
}

.sitePopup__inner {
  position: relative;
  width: 100%;
}

.sitePopup__innerWrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 24px;
  z-index: 1;
}

.sitePopup__text {
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  max-width: 596px;
  margin: 0 0 70px;
}

.sitePopup__title {
  font-size: 96px;
  font-weight: 500;
  line-height: 1.15;
  color: #ffffff;
  text-align: center;
  max-width: 1124px;
  margin: 0 0 84px;
}

.sitePopup__link {
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  padding: 6px 33px 8px;
}

.sitePopup__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sitePopup__media::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0, 0.6);
}

.sitePopup__media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sitePopup__close {
  position: absolute;
  top: 22px;
  right: 22px;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  cursor: pointer;
  z-index: 4;
  transition: opacity 0.5s ease;
}

.sitePopup__close:hover {
  opacity: 0.6;
}

.sitePopup__close svg {
  width: 49px;
  height: auto;
  overflow: visible;
}

@media screen and (max-width: 1600px) {

  .sitePopup__text {
    font-size: 28px;
    max-width: 556px;
    margin: 0 0 50px;
  }

  .sitePopup__title {
    font-size: 70px;
    max-width: 1070px;
    margin: 0 0 60px;
  }

  .sitePopup__link {
    font-size:clamp(1.2rem, 0.8rem + 0.4vw, 1.5rem);
    padding: 0.375rem 2rem;
  }

  .sitePopup__close svg {
    width: 40px;
  }
}

@media screen and (max-width: 1023px) {

  .sitePopup__wrap {
    padding: 60px clamp(1rem, 0.4851rem + 2.2388vw, 2.5rem);
  }

  .sitePopup__text {
    font-size: 20px;
    margin: 0 0 30px;
  }

  .sitePopup__title {
    font-size: 50px;
    max-width: 780px;
    margin: 0 0 40px;
  }
}

@media screen and (max-width: 600px) {
  .sitePopup__title {
    font-size: 44px;
  }
}