:root {
  --dark: #1e1e1e;
  --white: white;
  --primary: #a38236;
  --grey: #858585;
  --grade-1: #a56307;
  --grade-2: #d89b00;
  --error: #ff244c;
  --dark-grade-1: #1a1a1a;
  --dark-grade-2: #303030;
  --secondary: #bd2b28;
  --light-grey: #aaa;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

body {
  background-color: var(--dark);
  color: var(--white);
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 24px;
}

h1 {
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
}

h2 {
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

h3 {
  letter-spacing: -.5px;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

h5 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

h6 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
}

p {
  margin-bottom: 24px;
}

a {
  color: var(--primary);
  text-decoration: none;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 12px;
  padding-left: 40px;
}

img {
  max-width: 100%;
  display: inline-block;
}

blockquote {
  border-left: 2px solid var(--primary);
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 12px 24px;
  font-size: 20px;
  line-height: 28px;
}

figure {
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 32px;
}

figcaption {
  color: var(--grey);
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  line-height: 20px;
}

.hover-line {
  background-image: linear-gradient(to right, var(--grade-1), var(--grade-2));
  width: 50%;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.nav-link {
  color: var(--white);
  margin-left: 16px;
  margin-right: 16px;
  padding: 3px 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  position: relative;
  overflow: hidden;
}

.nav-link.dropdown {
  padding-top: 4px;
  padding-bottom: 0;
  padding-right: 18px;
  display: block;
}

.navbar {
  z-index: 100;
  background-color: #151515d9;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: fixed;
}

.menu-icon-line-top, .menu-icon-line-bottom {
  background-color: var(--white);
  height: 2px;
}

.nav-left {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.brand {
  color: var(--white);
  flex: none;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding: 12px 16px;
  display: flex;
}

.nav-right {
  justify-content: flex-end;
  align-items: center;
  padding-right: 12px;
  display: flex;
}

.button {
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #0000;
  border: 8px solid #0000;
  border-radius: 32px;
  justify-content: center;
  align-items: center;
  height: 64px;
  margin: -8px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button.large {
  white-space: nowrap;
  border-radius: 38px;
  height: 76px;
  padding-left: 32px;
  padding-right: 32px;
  font-size: 18px;
  line-height: 24px;
}

.button.large.btn-pulse {
  border-style: none;
  position: absolute;
  inset: 0% 40px;
}

.button.large.main {
  z-index: 1;
  flex: none;
  margin-top: 0;
  margin-bottom: -10px;
}

.button.small {
  height: 56px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 13px;
}

.button.full-width {
  width: 100%;
}

.button.full-width.invisible {
  opacity: 0;
  cursor: auto;
}

.button.full-width.disabled {
  color: #c5c5c5;
  cursor: not-allowed;
}

.button.featured-button {
  width: 200px;
  height: 56px;
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 13px;
  position: relative;
}

.menu-icon-line-middle {
  background-color: var(--white);
  height: 2px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.navigation {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.menu-icon {
  float: right;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.nav-menu {
  justify-content: center;
  align-items: center;
  display: flex;
}

.logo {
  height: 39px;
}

.logo.pet-generals {
  height: 42px;
}

.logo-text {
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-left: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.top-button {
  z-index: 10;
  color: #fff;
  cursor: pointer;
  background-color: #252525;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  line-height: 20px;
  transition: color 1s cubic-bezier(.165, .84, .44, 1), background-color 1s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  position: fixed;
  inset: auto 12px 12px auto;
}

.top-button:hover {
  background-color: var(--primary);
}

.sg-typography {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 33.33% auto;
  grid-auto-columns: 1fr;
  max-width: 770px;
  padding-top: 32px;
}

.sg-colors {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.top-button-icon {
  margin: 0 auto 1px;
  position: relative;
  transform: rotate(180deg);
}

.top {
  height: 0;
}

.wrapper {
  z-index: 2;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1234px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  position: relative;
}

.page-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.back-to-top {
  height: 0;
}

.sg-color-card {
  background-color: #ffffff0f;
  border-radius: 8px;
  padding: 12px;
}

.section-intro {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.section-intro.margin-bottom {
  margin-bottom: 80px;
}

.section-intro.wide {
  max-width: 770px;
}

.sg-color {
  background-color: var(--dark);
  height: 160px;
  max-height: 13vw;
}

.sg-color.grade-1 {
  background-image: linear-gradient(to right, var(--grade-1), var(--grade-2));
}

.sg-color.error-color {
  background-color: var(--error);
}

.sg-color.dark-grade {
  background-image: linear-gradient(to right, var(--dark-grade-1), var(--dark-grade-2));
}

.sg-color.grey-color {
  background-color: var(--grey);
}

.sg-color.primary-color {
  background-color: var(--primary);
}

.sg-color.secondary-color {
  background-color: var(--secondary);
}

.breadcrumbs-link {
  color: var(--white);
  background-color: #0000;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 10px;
  position: relative;
  overflow: hidden;
}

.breadcrumbs-link:hover {
  background-color: #1515151f;
}

.breadcrumbs-link.current-page {
  color: var(--grey);
}

.breadcrumbs-link.current-page:hover {
  background-color: #0000;
}

.breadcrumbs {
  text-align: left;
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  margin-top: 28px;
  padding: 8px;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  display: flex;
}

.text-label {
  background-image: linear-gradient(to right, var(--grade-1), var(--grade-2));
  color: var(--grade-2);
  letter-spacing: 3px;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  display: inline-block;
}

.breadcrumb-divider {
  background-color: #fff3;
  width: 20px;
  height: 1px;
  margin-bottom: 1px;
  margin-left: 8px;
  margin-right: 8px;
}

.sg-color-name {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.section {
  z-index: 3;
  background-color: var(--dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 128px;
  padding-bottom: 128px;
  position: relative;
}

.section.border-top {
  border-top: 1px solid #ffffff1a;
}

.section.no-padding-top {
  padding-top: 0;
}

.section.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.hero-intro {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 970px;
  margin: 12vh auto 8vh;
  display: flex;
  position: relative;
}

.hero-intro.daevasotan-hero, .hero-intro.pg-hero {
  margin-top: 1vh;
  margin-bottom: 0;
}

.hero-heading {
  margin-top: 16px;
  margin-bottom: 32px;
}

.hero-image {
  border: 1px solid #ffffff29;
  border-radius: 6px;
  width: 140vh;
  min-width: 600px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  box-shadow: 0 15px 40px #000000b3;
}

.hero-image.daevasotan {
  z-index: 3;
  background-image: url('../images/pg_map_wireframe_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.hero-image.namings {
  border-style: none;
  border-width: 0;
  margin-left: 0;
  margin-right: 0;
  position: relative;
}

.hero-image.screenshots {
  z-index: 3;
  background-image: url('../images/pg_screenshots_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.hero-image.namings-copy, .hero-image.gallery {
  border-style: none;
  border-width: 0;
  margin-left: 0;
  margin-right: 0;
  position: relative;
}

.hero-section {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 26vw;
  padding-top: 100px;
  padding-bottom: 0;
  display: flex;
}

.hero-section.fimbulwinter, .hero-section.pets-generals {
  position: relative;
}

.hero-preview-wrapper {
  perspective: 2000px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.hero-preview-wrapper.special {
  position: relative;
}

.intro-left {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.intro-left.margin-bottom {
  margin-bottom: 72px;
}

.main-grid {
  grid-column-gap: 30px;
  grid-row-gap: 64px;
  perspective: 2000px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.features-wrapper {
  width: 970px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.features {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  text-align: center;
  grid-template-rows: auto;
}

.feature {
  align-items: flex-start;
  display: flex;
}

.feature-info {
  flex: 1;
  margin-left: 24px;
}

.text-grey {
  color: var(--grey);
}

.text-grey.wiki {
  margin-bottom: 16px;
}

.icon-box {
  background-image: linear-gradient(to bottom, var(--dark-grade-2), var(--dark-grade-1));
  border-radius: 20px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
  position: relative;
  box-shadow: 0 4px 10px #00000040;
}

.icon-box.margin-bottom {
  margin-bottom: 20px;
}

.icon-box.no-bg {
  box-shadow: none;
  background-image: none;
  width: 120px;
  height: 120px;
}

.icon {
  z-index: 2;
  height: 40px;
  position: relative;
}

.icon.crafting {
  height: 44px;
}

.icon.helmet {
  height: 42px;
}

.icon.feature {
  height: 100%;
}

.feature-card {
  background-image: linear-gradient(155deg, var(--dark-grade-2), var(--dark-grade-1));
  border-radius: 20px;
  align-items: stretch;
  width: 100%;
  margin-bottom: 120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
  box-shadow: 0 15px 40px #000000b3;
}

.feature-card.adventures {
  background-image: radial-gradient(circle farthest-corner at 0% 100%, black, #fff0), linear-gradient(155deg, var(--dark-grade-2), var(--dark-grade-1));
  position: relative;
}

.feature-card-image {
  object-fit: cover;
  flex: 0 auto;
  width: 60%;
  max-width: none;
}

.feature-card-image.locations {
  max-height: 478px;
}

.feature-card-image.adventures {
  background-image: radial-gradient(circle farthest-side at 0 100%, #a7cfc866, #0000);
  max-height: 478px;
  position: relative;
}

.featre-card-info {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  margin-left: 2%;
  margin-right: 7%;
  display: flex;
}

.video {
  background-image: linear-gradient(to bottom, #15151566 41%, var(--dark) 96%), url('../images/macbook.png');
  opacity: 1;
  perspective: 2000px;
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 940px;
  height: 520px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 72px;
  display: flex;
  position: relative;
}

.play-button {
  z-index: 3;
  border: 2px solid var(--white);
  background-color: #0009;
  background-image: url('../images/play.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin-top: 11%;
  transition: transform 1s cubic-bezier(.165, .84, .44, 1), background-color 1s cubic-bezier(.165, .84, .44, 1), border-color 1s cubic-bezier(.165, .84, .44, 1);
  position: absolute;
}

.play-button:hover {
  border-color: var(--primary);
  transform: scale(1.06);
}

.footer-section {
  border-top: 1px solid #ffffff1a;
  flex-direction: column;
  align-items: center;
  padding-top: 48px;
  display: flex;
}

.footer-bottom {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #ffffff80;
  border-top: 1px solid #ffffff1a;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  align-items: center;
  width: 100%;
  margin-top: 52px;
  padding: 23px 72px 23px 32px;
  font-size: 11px;
  line-height: 16px;
  display: grid;
}

.footer-bottom-link {
  color: #fff;
  padding-top: 1px;
  padding-bottom: 1px;
  position: relative;
  overflow: hidden;
}

.footer-bottom-divider {
  background-color: #ffffff4d;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  margin-left: 10px;
  margin-right: 10px;
}

.footer-nav {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 8px;
  display: flex;
}

.footer-nav-link {
  color: var(--white);
  margin: 8px 16px;
  padding: 4px 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  position: relative;
  overflow: hidden;
}

.footer-bottom-left {
  color: var(--grey);
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.footer-bottom-right {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer-social {
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  padding: 12px;
  display: flex;
}

.footer-social-link {
  background-color: #ffffff0f;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin: 3px;
  transition: transform .5s cubic-bezier(.165, .84, .44, 1), background-color 1s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.footer-social-link:hover {
  transform: scale(1.16);
}

.footer-social-link.twitter-link:hover {
  background-color: #2aa3f0;
}

.footer-social-link.facebook-link:hover {
  background-color: #3b5998;
}

.footer-social-link.instagram-link:hover {
  background-color: #f83f5a;
}

.footer-social-link.youtube-link:hover {
  background-color: #fc0d1c;
}

.footer-social-link.medium-link:hover {
  background-color: #1a8917;
}

.footer-social-link.reddit-link:hover {
  background-color: #ff4300;
}

.footer-social-link.telegram-link:hover {
  background-color: #24a1de;
}

.footer-social-link.discord-link:hover {
  background-color: #7289da;
}

.footer-social-icon {
  width: 14px;
}

.subscribe-form-block {
  width: 100%;
  max-width: 470px;
  margin-bottom: 0;
  padding-top: 32px;
}

.subscribe-input-wrapper {
  background-color: #f2f3f50f;
  border-radius: 40px;
  align-items: center;
  width: 100%;
  padding: 8px;
  display: flex;
  overflow: hidden;
}

.subscribe-input {
  background-color: #0000;
  border: 1px #000;
  border-radius: 30px;
  flex: 1;
  height: 48px;
  margin: 0;
  padding-left: 27px;
  padding-right: 27px;
}

.subscribe-input:focus {
  color: #fff;
}

.subscribe-input::placeholder {
  color: var(--grey);
}

.form-text-bottom {
  color: #ffffff42;
  margin-top: 16px;
  font-size: 11px;
  line-height: 16px;
}

.form-success {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: #3fbe4e0a;
  border-radius: 8px;
  padding: 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.error {
  border: 1px solid var(--error);
  color: var(--error);
  background-color: #ff244c14;
  border-radius: 6px;
  margin-top: 16px;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
}

.product-hunt {
  flex-wrap: wrap;
  align-items: flex-start;
  width: 770px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.ph-info {
  flex: 1;
  padding-top: 24px;
  padding-bottom: 24px;
}

.ph-badge {
  background-color: #ffffff0f;
  border-radius: 16px;
  flex: none;
  min-width: 200px;
}

.leave-review {
  align-items: center;
  width: 100%;
  margin-top: 24px;
  display: flex;
}

.leave-review-line {
  background-color: #ffffff1a;
  flex: 1;
  height: 1px;
}

.leave-review-link {
  color: var(--white);
  flex: none;
  align-items: center;
  padding-right: 24px;
  transition: color .2s cubic-bezier(.165, .84, .44, 1), letter-spacing 1s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.leave-review-link:hover {
  color: var(--grade-2);
  letter-spacing: 1px;
}

.leave-review-icon {
  background-image: url('../images/pencil.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 18px;
  border: 1px solid #ffffff1a;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

.ph-info-text {
  color: var(--grey);
}

.ph-bage-text {
  text-align: center;
  border-top: 1px solid #ffffff1a;
  padding: 12px 24px;
  font-size: 13px;
}

.ph-badge-info {
  justify-content: space-between;
  align-items: center;
  margin: 16px 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.ph-badge-stars {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.ph-badge-star {
  width: 20px;
  margin-left: 1px;
  margin-right: 1px;
}

.ph-badge-rating {
  background-color: var(--dark);
  color: #ff8f23;
  text-align: center;
  letter-spacing: -.5px;
  border: 1px solid #fff3;
  border-radius: 40px;
  flex: none;
  margin-left: 20px;
  padding: 3px 11px;
  font-size: 17px;
  font-weight: 600;
}

.testimonials {
  grid-column-gap: 24px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.review {
  background-image: linear-gradient(138deg, var(--dark-grade-2), var(--dark-grade-1));
  border-radius: 20px;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 32px;
  display: flex;
  position: relative;
  box-shadow: 0 4px 10px #00000040;
}

.review-author {
  align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
}

.review-avatar {
  object-fit: cover;
  border-radius: 50%;
  flex: none;
  width: 48px;
  height: 48px;
  margin-right: 20px;
}

.review-info {
  flex: 1;
}

.review-name {
  margin-top: 1px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}

.review-text {
  color: var(--grey);
  margin-top: 4px;
}

.review-author-link {
  opacity: .4;
  justify-content: center;
  align-items: center;
  margin-left: 6px;
  padding: 8px;
  transition: transform .5s cubic-bezier(.165, .84, .44, 1), opacity 1s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.review-author-link:hover {
  opacity: 1;
  transform: scale(1.16);
}

.review-link-icon {
  width: 16px;
}

.features-v3 {
  grid-column-gap: 32px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.feature-v3-image {
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px #00000040;
}

.feature-v3-info {
  padding-left: 12px;
  padding-right: 12px;
}

.logotypes-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 1000px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.logotypes-heading {
  text-align: center;
  width: 100%;
  margin-bottom: 32px;
}

.logotype {
  filter: grayscale(40%);
  height: 32px;
  margin: 3%;
  transition: all .2s;
}

.logotype:hover {
  filter: grayscale(0%);
}

.faq {
  border-top: 1px solid #ffffff1a;
  width: 100%;
}

.accordion-info {
  padding-right: 72px;
}

.accordion-item {
  text-align: left;
  border-bottom: 1px solid #ffffff1a;
  padding-left: 24px;
  padding-right: 24px;
  transition: background-color .4s cubic-bezier(.25, .46, .45, .94);
  display: block;
  overflow: hidden;
}

.accordion-item:hover {
  background-color: #ffffff08;
}

.accordion-plus {
  background-color: #ffffff0f;
  border: 13px solid #0000;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin-right: 0;
  display: flex;
  position: absolute;
  right: 0;
}

.accordion-text {
  color: var(--grey);
  padding-bottom: 32px;
}

.plus-line-v {
  background-color: var(--white);
  border-radius: 1px;
  width: 2px;
  height: 100%;
  position: absolute;
}

.accordion-heading {
  flex: 1;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 16px;
}

.accordion-header {
  cursor: pointer;
  justify-content: flex-end;
  align-items: center;
  min-height: 72px;
  padding-top: 28px;
  padding-bottom: 28px;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.plus-line-h {
  background-color: var(--white);
  border-radius: 1px;
  width: 100%;
  height: 2px;
  position: absolute;
}

.text-link {
  color: var(--primary);
}

.text-link:hover {
  text-decoration: underline;
}

.pricing-list {
  text-align: left;
  border-top: 1px solid #ffffff1a;
  width: 100%;
  margin-top: 40px;
  padding-left: 0;
}

.check-icon {
  background-image: url('../images/check.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  margin-top: -2px;
  margin-right: 12px;
}

.pricing-3-cols {
  grid-column-gap: 32px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.price-tag {
  margin-top: 32px;
  margin-bottom: 8px;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.plan-info {
  color: var(--grey);
  margin-bottom: 32px;
  font-size: 13px;
  line-height: 20px;
}

.plan-name {
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #0003;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  position: absolute;
  inset: 0% 0% auto;
}

.pricing-list-item {
  color: var(--grey);
  border-bottom: 1px solid #ffffff1a;
  align-items: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 15px;
  line-height: 20px;
  display: flex;
}

.pricing-table {
  text-align: center;
  background-image: linear-gradient(#303030, #1a1a1a);
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pricing-plan-line {
  z-index: 1;
  background-color: #ffffff26;
  height: 1px;
  position: absolute;
  inset: auto 0% -1px;
}

.pricing-plan-line.highlighted {
  background-image: linear-gradient(to right, var(--grade-1), var(--grade-2));
}

.faq-wrapper {
  flex-direction: column;
  align-items: flex-start;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.faq-category {
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #ffffff0f;
  border-radius: 20px;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 32px;
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  display: flex;
}

.faq-category.first-category {
  margin-top: 40px;
}

.page-top-section {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 0;
  display: flex;
}

.page-intro {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 970px;
  margin: 13vh auto;
  display: flex;
  position: relative;
}

.page-intro.post-intro {
  max-width: 770px;
}

.page-heading {
  margin-top: 8px;
  margin-bottom: 0;
}

.faq-category-dot {
  background-color: var(--grade-2);
  background-image: linear-gradient(to right, var(--grade-1), var(--grade-2));
  border-radius: 50%;
  width: 6px;
  height: 6px;
  margin-right: 12px;
}

.link-grey {
  color: var(--grey);
  padding-bottom: 2px;
  font-size: 15px;
  line-height: 20px;
  position: relative;
  overflow: hidden;
}

.licenses {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  border-top: 1px solid #ffffff1a;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 670px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
  display: grid;
}

.licence-link-divider {
  background-color: #ffffff4d;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  margin-bottom: 11px;
  margin-left: 12px;
  margin-right: 12px;
  display: inline-block;
}

.licence-icon {
  width: 28px;
}

.licence-info {
  flex: 1;
  padding-top: 16px;
  padding-bottom: 12px;
  padding-left: 40px;
}

.licence-photo {
  object-fit: cover;
  border-radius: 8px;
  flex: none;
  width: 192px;
  height: 144px;
}

.licence-icons {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #ffffff0a;
  border-radius: 8px;
  flex: none;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 192px;
  height: 144px;
  padding: 24px;
  display: grid;
}

.licence {
  border-bottom: 1px solid #ffffff1a;
  align-items: center;
  margin-bottom: -1px;
  padding: 32px 0;
  display: flex;
}

.bottom-info-text {
  color: var(--grey);
  text-align: center;
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
  font-size: 13px;
  line-height: 20px;
}

.timeline {
  background-color: #fff3;
  flex-direction: column;
  align-items: center;
  width: 2px;
  display: flex;
  position: relative;
}

.changelog-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: "Date Timeline Info"
  / minmax(128px, auto) minmax(32px, auto) 1fr;
  grid-auto-columns: 1fr;
  padding-right: 40px;
  display: grid;
}

.timeline-date {
  color: gray;
  text-align: right;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 13px;
  line-height: 20px;
}

.version-heading {
  margin-bottom: 16px;
}

.timeline-info {
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 60px;
  display: flex;
}

.changelog-badge {
  color: var(--primary);
  text-transform: uppercase;
  border: 1px solid #3fbe4e80;
  border-radius: 32px;
  flex: none;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 2px 12px;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94), color .2s cubic-bezier(.25, .46, .45, .94);
  display: inline-block;
}

.changelog-badge.fix-badge {
  color: var(--error);
  border-color: #ff244c80;
}

.changelog-badge.enhance-badge {
  color: var(--secondary);
  border-color: #ff8f2380;
}

.timeline-dot {
  z-index: 2;
  background-color: var(--white);
  box-shadow: 0 0 0 12px var(--dark);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin-top: 12px;
  margin-left: 0;
  margin-right: 0;
  position: absolute;
  inset: 0% auto auto;
}

.change-text {
  color: var(--grey);
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 24px;
}

.changelog {
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
}

.change {
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: 10px;
  font-size: 17px;
  font-weight: 600;
  display: flex;
}

.posts {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.post-card {
  background-color: var(--dark);
  color: var(--white);
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-end;
  height: 368px;
  max-height: 32vw;
  transition: transform 1s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px #00000040;
}

.post-card-thumb {
  opacity: .5;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.post-card-content {
  padding-left: 32px;
  padding-right: 32px;
  position: relative;
}

.post-card-heading {
  max-width: 440px;
  margin-bottom: 24px;
}

.post-card-info {
  border-top: 1px solid #ffffff40;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.blog-category {
  background-color: var(--grade-1);
  color: var(--white);
  text-transform: uppercase;
  border-radius: 30px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
}

.blog-category.post-category {
  margin-bottom: 8px;
}

.post-card-date {
  font-size: 13px;
  line-height: 18px;
}

.change-heading {
  margin-bottom: 10px;
}

.pagination {
  margin-top: 48px;
}

.pagination-arrow {
  width: 20px;
  height: 20px;
  margin-top: -1px;
}

.post-heading {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 56px;
}

.post-image {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 680px;
  max-height: 64vw;
  margin-left: auto;
  margin-right: auto;
  display: block;
  box-shadow: 0 15px 40px #000000b3;
}

.post p {
  color: var(--light-grey);
  font-size: 17px;
  line-height: 28px;
}

.post a:hover {
  text-decoration: underline;
}

.post li {
  color: #aaa;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 17px;
}

.post-bottom-info {
  color: var(--grey);
  border-top: 1px solid #ffffff1a;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 13px;
  line-height: 20px;
  display: flex;
}

.post-content {
  width: 800px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 88px;
  padding-left: 15px;
  padding-right: 15px;
}

.post-content.sg-post-content {
  padding-top: 0;
  padding-bottom: 0;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 370px;
  max-width: 100%;
  padding: 40px;
  display: flex;
}

.utility-page-content._404-content {
  align-items: center;
  width: 570px;
}

.utility-page-form {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.input {
  background-color: #ffffff0f;
  border: 1px #000;
  border-radius: 24px;
  height: 48px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 8px 24px 9px;
}

.input::placeholder {
  color: var(--grey);
}

.input.password-input {
  text-align: center;
  margin-bottom: 16px;
}

.password-heading {
  margin-top: 16px;
  margin-bottom: 20px;
}

.side-blocks {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 72px;
  padding-right: 72px;
  display: grid;
}

.side-info {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 800px;
  padding-left: 15%;
  padding-right: 15%;
  display: flex;
}

.side-image {
  background-image: linear-gradient(142deg, var(--dark-grade-2), var(--dark-grade-1));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px #00000040;
}

.side-image.story {
  background-image: linear-gradient(142deg, var(--dark-grade-2), var(--dark-grade-1));
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.side-image.villian {
  background-image: linear-gradient(142deg, var(--dark-grade-2), var(--dark-grade-1));
  justify-content: center;
  align-items: center;
  max-width: 728px;
  max-height: 547.05px;
  display: flex;
  position: relative;
}

.side-image.pitch-black {
  background-image: linear-gradient(#000, #1d0000);
  justify-content: center;
  align-items: center;
  max-width: 728px;
  max-height: 547.05px;
  display: flex;
  position: relative;
}

.side-image.ghost-unit {
  background-image: url('../images/card_ghost_unit_city.jpg'), linear-gradient(142deg, var(--dark-grade-2), var(--dark-grade-1));
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: cover, auto;
  position: relative;
}

.side-image.villian-copy, .side-image.villian-copy-copy, .side-image.breed {
  background-image: linear-gradient(142deg, var(--dark-grade-2), var(--dark-grade-1));
  justify-content: center;
  align-items: center;
  max-width: 728px;
  max-height: 547.05px;
  display: flex;
  position: relative;
}

.hero-subscribe {
  width: 100%;
  max-width: 470px;
  margin-bottom: 0;
  padding-top: 16px;
}

.features-v2 {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.feature-v2 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.feature-v2-info {
  padding-top: 24px;
}

.text-grey-big {
  color: var(--grey);
  font-size: 20px;
  line-height: 28px;
}

.text-grey-big.with-list {
  margin-bottom: 0;
}

.feature-list {
  text-align: left;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 0;
}

.feature-list.feature-card-list {
  margin-bottom: 0;
}

.feature-list-item {
  color: var(--white);
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 17px;
  line-height: 24px;
  display: flex;
}

.check-circle-icon {
  background-color: #ffffff0f;
  background-image: url('../images/check.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 50%;
  flex: none;
  width: 32px;
  height: 32px;
  margin-right: 12px;
}

.text-white {
  color: var(--white);
}

.cta-card {
  background-image: linear-gradient(170deg, var(--dark-grade-2), var(--dark-grade-1));
  text-align: center;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  width: 970px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 72px 10%;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px #000000b3;
}

.cta-app-icon {
  border-radius: 20px;
  width: 92px;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px #00000040;
}

.cta-app-icon.icon-reckoning, .cta-app-icon.icon-wiki, .cta-app-icon.icon-pet-generals {
  box-shadow: none;
  width: 500px;
}

.button-bg {
  background-image: linear-gradient(125deg, var(--grade-2), var(--grade-1) 50%, var(--grade-2));
  width: 100%;
  position: absolute;
  inset: 0%;
}

.button-bg.disabled {
  background-image: linear-gradient(125deg, #555, #303030 50%, #555);
}

.button-bg.btn-pulse {
  background-image: linear-gradient(125deg, #d89b0080, #a5630780 50%, #d89b0080);
  border-radius: 40px;
  height: 100%;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%)translate(0, -50%);
}

.button-text {
  z-index: 1;
  position: relative;
}

.form-action-link {
  z-index: 1;
  background-color: #0000;
  height: 48px;
  margin-left: -28px;
  margin-right: -28px;
  padding-left: 28px;
  padding-right: 28px;
}

.licence-app {
  object-fit: cover;
  object-position: 0% 50%;
  border-radius: 8px;
  flex: none;
  width: 192px;
}

.licence-mockup {
  object-position: 0% 50%;
  border-radius: 8px;
  flex: none;
  width: 192px;
}

.nav-dropdown {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
}

.nav-link-content {
  margin-top: 6px;
  margin-bottom: 6px;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-right: 18px;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.nav-dropdown-list.w--open {
  background-color: var(--dark-grade-1);
  background-image: linear-gradient(140deg, var(--dark-grade-2), var(--dark-grade-1));
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  margin-left: -4px;
  overflow: hidden;
  box-shadow: 0 15px 40px #00000080;
}

.nav-dropdown-link {
  color: #ffffff80;
  margin-left: 0;
  margin-right: 0;
  padding: 12px 24px 12px 20px;
  font-size: 13px;
  font-weight: 500;
  transition: padding .5s cubic-bezier(.165, .84, .44, 1), color .5s cubic-bezier(.165, .84, .44, 1), background-color .5s cubic-bezier(.165, .84, .44, 1);
}

.nav-dropdown-link:hover {
  color: var(--primary);
  background-color: #00000040;
  padding-left: 24px;
  padding-right: 20px;
}

.nav-dropdown-link.w--current {
  color: #fff;
}

.dropdown-arrow {
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 0;
  font-size: 13px;
  line-height: 16px;
}

.sg-buttons {
  grid-column-gap: 72px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.terms {
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
}

.terms p {
  color: var(--light-grey);
}

.terms a:hover {
  text-decoration: underline;
}

.terms ol {
  color: var(--light-grey);
  margin-bottom: 20px;
}

.bold-white {
  color: var(--white);
}

.pg-logo-wrapper {
  width: 388.589px;
  height: 275.505px;
  margin-bottom: 20px;
  position: relative;
}

.pg-logo-shield {
  background-image: url('../images/pg_logo_shield_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.pg-logo-text {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.duststorm {
  z-index: 1;
  opacity: .6;
  flex-flow: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-wrapper {
  width: 100%;
  height: 752.667px;
  margin-top: -310px;
  position: relative;
}

.gradient-green {
  opacity: 0;
  background-image: radial-gradient(circle closest-corner at 50% 90%, #55ffdd4d, #0000 90%);
  position: absolute;
  inset: 0%;
}

.tronlands-map {
  background-image: url('../images/daevasotan_season_8_map_on.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
}

.whiteout {
  opacity: 0;
  color: #000;
  background-image: linear-gradient(#fff3, #000);
  position: absolute;
  inset: 0%;
}

.norse-pattern-one {
  z-index: 2;
  background-image: url('../images/map_pattern_upper.avif');
  background-position: 0 0;
  background-size: auto;
  width: 360px;
  height: 650px;
  position: absolute;
  inset: auto auto 65px 0;
}

.norse-pattern-one.right {
  z-index: 2;
  transform-style: preserve-3d;
  inset: auto 0 65px auto;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.norse-pattern-two {
  z-index: 1;
  background-image: url('../images/map_pattern_lower.avif');
  background-position: 0 0;
  background-size: auto;
  width: 467px;
  height: 509px;
  position: absolute;
  inset: auto auto 17% 0;
}

.norse-pattern-two.right {
  z-index: 1;
  top: auto;
  left: auto;
  right: 0%;
}

.image-lightbox {
  z-index: 5;
  opacity: 0;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: background-color .5s, opacity .5s;
  display: flex;
  position: absolute;
  inset: 0%;
}

.image-lightbox:hover {
  opacity: .5;
  background-color: #1a1a1a33;
}

.map-wrapper {
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  max-width: 1794px;
  max-height: 1200px;
  margin: 90px auto auto;
  position: relative;
  overflow: hidden;
}

.poi {
  text-align: center;
  cursor: pointer;
  background-image: url('../images/poi_normal_1poi_normal.png'), radial-gradient(circle closest-side, #0009, #0000);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 70% 70%, auto;
  width: 25px;
  height: 25px;
  margin-top: -2.5px;
  margin-left: -2.5px;
  font-family: Norse;
  font-size: 2em;
  font-weight: 700;
  line-height: 100%;
  transition: transform .2s;
  position: absolute;
  inset: 0% auto auto 0%;
  overflow: visible;
}

.poi:hover {
  background-image: url('../images/poi_active_1poi_active.png');
  transform: scale(1.1);
}

.poi.yygsvar-lake {
  background-image: url('../images/poi_1poi.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  top: 74.17%;
  left: 59.87%;
}

.poi.glacier-foot {
  top: 82.67%;
  left: 53.12%;
}

.poi.isvindur {
  top: 89.5%;
  left: 59.59%;
}

.poi.mount-sudarl {
  top: 98.08%;
  left: 51.45%;
}

.poi.lake-fleila {
  top: 82.58%;
  left: 34.4%;
}

.poi.frigid-plains {
  top: 96.5%;
  left: 26.93%;
}

.poi.ruins-of-nyoto {
  top: 94.33%;
  left: 34.23%;
}

.poi.glory-shop {
  top: 35.75%;
  left: 31.83%;
}

.poi.tournaments {
  top: 57.58%;
  left: 41.19%;
}

.poi.neon-district {
  top: 34%;
  left: 59%;
}

.poi.a-subway-station {
  top: 89.17%;
  left: 69.23%;
}

.poi.hotshop {
  top: 31.83%;
  left: 20.18%;
}

.poi.trontec-tower-network {
  top: 43%;
  left: 52%;
}

.poi.pawshop {
  top: 28.58%;
  left: 4.74%;
}

.poi.miracle-shop {
  top: 13.92%;
  left: 88.18%;
}

.poi.cuties-crafting {
  top: 56.5%;
  left: 60.42%;
}

.poi.crafting {
  top: 86.33%;
  left: 56.91%;
}

.poi.soranus-facility {
  top: 27.58%;
  left: 51.34%;
}

.poi.eireen-holmes-raid {
  top: 22%;
  left: 42%;
}

.inactive-poi {
  text-align: center;
  cursor: pointer;
  background-image: url('../images/poi_inactive_1poi_inactive.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  font-family: Norse;
  font-size: 2em;
  font-weight: 700;
  line-height: 100%;
  transition: transform .2s;
  position: absolute;
  inset: 0% auto auto 0%;
}

.inactive-poi:hover {
  transform: scale(1.1);
}

.inactive-poi.nordurhof {
  top: 60%;
  left: 4.02%;
}

.inactive-poi.skogmark {
  top: 83%;
  left: 10.43%;
}

.inactive-poi.fjordland {
  top: 97.08%;
  left: 5.69%;
}

.inactive-poi.twinpeaks {
  top: 63.08%;
  left: 59.09%;
}

.inactive-poi.loch-durin {
  top: 33.58%;
  left: 60.87%;
}

.inactive-poi.peak-of-hope {
  top: 23.42%;
  left: 71.07%;
}

.inactive-poi.isle-of-bear {
  top: 15.58%;
  left: 76.76%;
}

.inactive-poi.dal-duriada {
  top: 34.17%;
  left: 74.81%;
}

.inactive-poi.eosgard {
  top: 66.25%;
  left: 79.82%;
}

.inactive-poi.halls-of-sval {
  top: 77.17%;
  left: 75.87%;
}

.inactive-poi.aelas-gorge {
  top: 91.5%;
  left: 75.25%;
}

.inactive-poi.lifid-river {
  top: 78%;
  left: 85.45%;
}

.inactive-poi.river-dale {
  top: 69.42%;
  left: 91.25%;
}

.inactive-poi.ruins-of-alamare {
  top: 93.25%;
  left: 89.91%;
}

.inactive-poi.shetvatn {
  top: 84.33%;
  left: 96.21%;
}

.inactive-poi.three-lakes {
  top: 67.5%;
  left: 49.45%;
}

.hidden {
  display: none;
  position: absolute;
  inset: 0% auto auto 0%;
}

.location-name {
  color: #fff;
  text-shadow: -2px -2px #cb175e, -2px 2px #cb175e, 2px 2px #cb175e, 2px -2px #cb175e, -2px 0 #cb175e, 0 2px #cb175e, 2px 0 #cb175e, 0 -2px #cb175e;
  -webkit-text-fill-color: inherit;
  background-image: none;
  background-clip: border-box;
  justify-content: center;
  align-items: flex-end;
  width: 250px;
  height: 60px;
  font-family: Exo, sans-serif;
  font-size: .75em;
  font-weight: 500;
  line-height: 100%;
  transition: all .2s;
  display: flex;
  position: absolute;
  inset: -65px auto auto -115px;
}

.location-name:hover {
  color: #fff884;
  text-shadow: -2px -2px #cb171a, -2px 2px #cb171a, 2px 2px #cb171a, 2px -2px #cb171a, -2px 0 #cb171a, 0 2px #cb171a, 2px 0 #cb171a, 0 -2px #cb171a;
}

.location-name.town {
  text-shadow: -2px -2px #742b2e, -2px 2px #742b2e, 2px 2px #742b2e, 2px -2px #742b2e, -3px 0 #742b2e, 0 3px #742b2e, 3px 0 #742b2e, 0 -3px #742b2e;
  font-size: 130%;
}

.season-pass-icon {
  padding-top: 20px;
}

.display-none {
  display: none;
}

.disabled {
  color: #c5c5c5;
  cursor: not-allowed;
}

.gradient-background {
  z-index: 2;
  background-image: linear-gradient(180deg, #1e1e1e00 75%, var(--dark) 90%, var(--dark) 103%), radial-gradient(circle closest-corner at 50% 0%, #5064801a 15%, #505a804d 50%, transparent);
  position: absolute;
  inset: 0%;
}

.demon-normal {
  background-image: url('../images/hero_demon_normal.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
}

.demon-red {
  background-image: url('../images/hero_demon_red.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
}

.town {
  background-image: url('../images/hero_town.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
}

.town-red {
  opacity: 0;
  background-image: url('../images/hero_town_red.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
}

.hero-middle {
  background-image: url('../images/HERO-1.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
}

.hero-right, .hero-left {
  position: absolute;
  inset: 0%;
}

.heroes-red {
  opacity: 0;
  position: absolute;
  inset: 0%;
}

.gradient-red {
  background-image: radial-gradient(circle closest-corner at 50% 90%, #ff4d00, #83191b 30%, #c21619ab 55%, #0000);
  position: absolute;
  inset: 0%;
}

.gradient-holder {
  background-image: linear-gradient(to bottom, #15151500 80%, var(--dark) 97%);
  width: 2000px;
  margin-left: -403px;
  position: absolute;
  inset: 0%;
}

.laboratory {
  background-image: url('../images/card_villian_room_front.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.holmes-activated {
  position: relative;
}

.door-left {
  background-image: url('../images/card_villian_room_door_left.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.door-right {
  background-image: url('../images/card_villian_room_door_right.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.darkening {
  background-image: linear-gradient(to right, #0009, #0003 10%, #0009 35% 80%, #0000);
  position: absolute;
  inset: 0%;
}

.holmes-normal {
  background-image: url('../images/card_villian_room_holmes_normal.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.pentagram {
  background-image: url('../images/card_villian_pentagram.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.pentagram-holder {
  position: absolute;
  inset: 0%;
}

.darkening-holder {
  background-image: none;
  position: absolute;
  inset: 0%;
}

.hellish-landscape {
  background-image: url('../images/card_demon_slayer_bg.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.landscape-wrapper {
  position: absolute;
  inset: 0%;
}

.slayer-normal {
  position: relative;
}

.slayer-activated {
  background-image: url('../images/card_demon_slayer_activated.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.sword-activated {
  background-image: url('../images/card_demon_slayer_sword.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.fire-embers-right {
  background-image: url('../images/card_demon_slayer_embers1.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.fire-embers-left {
  background-image: url('../images/card_demon_slayer_embers2.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.black-city-background {
  background-image: linear-gradient(#0000, #000 54%);
  position: absolute;
  inset: 0%;
}

.ghost-unit-normal {
  opacity: 0;
  position: relative;
}

.ghost-unit-ghosted {
  background-image: url('../images/card_ghost_unit_ghosted.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.ghost-unit-glitched {
  opacity: 0;
  background-image: url('../images/card_ghost_unit_glitched.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.ghost-unit-container {
  position: relative;
}

.plot_glitches {
  background-image: url('../images/card_plot_glitches.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.plot-glitches-container {
  position: absolute;
  inset: 0%;
}

.logotype-color {
  height: 32px;
  margin: 0 0% 0%;
}

.logotype-color:hover {
  filter: grayscale(0%);
}

.logo-link {
  filter: grayscale(40%);
  margin: 3%;
  transition: all .3s;
}

.logo-link:hover {
  filter: grayscale(0%);
}

.body-dark {
  background-color: #24263f;
}

.tower-wrapper {
  width: 100%;
  height: 720px;
  margin-top: -230px;
  position: absolute;
}

.tower-main {
  background-image: url('../images/tower_main.png');
  background-position: 60%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
}

.tower-pieces-1 {
  background-image: url('../images/tower_stones_1.png');
  background-position: 60%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
}

.tower-pieces-2 {
  background-image: url('../images/tower_stones_2.png');
  background-position: 60%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
}

.pg-logo-halo {
  background-image: url('../images/pg_logo_halo_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.pg-logo-plate {
  background-image: url('../images/pg_logo_plate_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.pg-logo-head {
  background-image: url('../images/pg_logo_head_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.button-wrap {
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.pulse-wrapper {
  z-index: 0;
  justify-content: center;
  align-items: center;
  margin-top: -10px;
  padding-top: 0;
  padding-bottom: 20px;
  display: flex;
  position: static;
}

.pg-center-front {
  background-image: url('../images/hero_center_general_front_1.avif');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: auto 107%;
  position: absolute;
  inset: 0%;
}

.pg-right-near {
  background-image: url('../images/hero_right_near_1.avif');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: auto 107%;
  position: absolute;
  inset: 0%;
}

.pg-left-near {
  background-image: url('../images/hero_left_near_1.avif');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: auto 107%;
  position: absolute;
  inset: 0%;
}

.pg-right-far {
  background-image: url('../images/hero_right_far_1.avif');
  background-position: 50% 100%;
  background-size: auto 107%;
  position: absolute;
  inset: 0%;
}

.pg-left-far {
  background-image: url('../images/hero_left_far_1.avif');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: auto 107%;
  position: absolute;
  inset: 0%;
}

.pg-center-back {
  background-image: url('../images/hero_center_general_back_1.avif');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: auto 107%;
  position: absolute;
  inset: 0%;
}

.world-map {
  background-image: url('../images/pg_map_1.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  inset: 0%;
}

.breeding {
  position: relative;
}

.wiki-bg {
  opacity: 0;
  background-image: radial-gradient(circle closest-side, #2c4b8699, #0e234c00);
  position: absolute;
  inset: 0%;
}

.wiki-bg-initial {
  background-image: radial-gradient(circle closest-side, #33343699, #0e234c00);
  position: absolute;
  inset: 0%;
}

.screen-upper-left {
  z-index: 2;
  background-image: url('../images/screen_upper_left.avif');
  background-position: 0 0;
  background-size: auto;
  width: 360px;
  height: 650px;
  position: absolute;
  inset: auto auto 65px 0;
}

.screen-upper-left.right {
  z-index: 2;
  transform-style: preserve-3d;
  inset: auto 0 65px auto;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.screen-lower-left {
  z-index: 1;
  background-image: url('../images/screen_lower_left.avif');
  background-position: 0 0;
  background-size: auto;
  width: 467px;
  height: 509px;
  position: absolute;
  inset: auto auto 17% 0;
}

.screen-lower-left.right {
  z-index: 1;
  top: auto;
  left: auto;
  right: 0%;
}

.screen-upper-right {
  z-index: 2;
  background-image: url('../images/screen_upper_rightt.avif');
  background-position: 0 0;
  background-size: auto;
  width: 360px;
  height: 650px;
  position: absolute;
  inset: auto auto 65px 0;
}

.screen-upper-right.right {
  z-index: 2;
  transform-style: preserve-3d;
  inset: auto 0 65px auto;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.screen-upper-right.right-unique {
  z-index: 2;
  inset: auto 0 65px auto;
}

.screen-lower-riight {
  z-index: 1;
  background-image: url('../images/screen_lower_right.avif');
  background-position: 0 0;
  background-size: auto;
  width: 467px;
  height: 509px;
  position: absolute;
  inset: auto auto 17% 0;
}

.screen-lower-riight.right, .screen-lower-riight.right-unique {
  z-index: 1;
  top: auto;
  left: auto;
  right: 0%;
}

.adventures-highlights {
  z-index: 0;
  opacity: 0;
  background-image: radial-gradient(circle at 10% 100%, #77badf99, #0000 70%);
  position: absolute;
  inset: 0%;
}

.pet-generals-h1 {
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  margin-bottom: 0;
  display: block;
  position: absolute;
}

.species, .about {
  position: relative;
}

.features-hidden {
  opacity: 0;
  height: 0;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
    line-height: 56px;
  }

  h2 {
    font-size: 32px;
    line-height: 40px;
  }

  h3 {
    font-size: 24px;
    line-height: 32px;
  }

  h4 {
    font-size: 20px;
    line-height: 28px;
  }

  h5 {
    font-size: 17px;
    line-height: 24px;
  }

  h6 {
    font-size: 15px;
    line-height: 20px;
  }

  .hover-line {
    display: none;
  }

  .nav-link {
    text-transform: none;
    margin-left: 0;
    margin-right: 0;
    padding: 12px 36px;
    font-size: 20px;
    line-height: 28px;
    display: block;
  }

  .nav-link.dropdown {
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: 32px;
    display: flex;
  }

  .menu-button {
    z-index: 150;
    background-color: #0000;
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .navbar {
    height: 72px;
    padding-left: 0;
    padding-right: 0;
  }

  .menu-icon-line-top, .menu-icon-line-bottom {
    border-radius: 1px;
  }

  .brand {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-right {
    padding-right: 0;
  }

  .button.nav-button {
    height: 56px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 13px;
  }

  .menu-icon-line-middle {
    border-radius: 1px;
  }

  .navigation {
    grid-template-columns: auto auto;
    grid-auto-columns: 1fr;
  }

  .nav-menu {
    z-index: 10;
    background-color: var(--dark);
    text-align: left;
    background-image: linear-gradient(to right, #303030, #1a1a1a);
    width: 280px;
    height: auto;
    max-height: 100vh;
    padding-top: 88px;
    overflow: scroll;
  }

  .logo {
    height: 32px;
  }

  .logo-text {
    margin-left: 16px;
    font-size: 17px;
  }

  .top-button {
    bottom: 12px;
    right: 12px;
  }

  .sg-typography {
    padding-top: 0;
  }

  .sg-colors {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-intro.margin-bottom {
    margin-bottom: 64px;
  }

  .sg-color {
    height: 18vw;
    max-height: none;
  }

  .breadcrumbs {
    margin-top: 24px;
  }

  .text-label {
    letter-spacing: 2px;
    font-size: 13px;
    line-height: 16px;
  }

  .section {
    padding: 80px 0;
  }

  .hero-intro {
    margin-top: 20px;
    margin-bottom: 80px;
  }

  .hero-intro.daevasotan-hero, .hero-intro.pg-hero {
    margin-top: 0;
  }

  .hero-heading {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-section {
    padding-top: 120px;
    position: static;
  }

  .hero-section.pets-generals {
    padding-top: 80px;
  }

  .intro-left.margin-bottom {
    margin-bottom: 60px;
  }

  .main-grid {
    grid-column-gap: 16px;
    grid-row-gap: 64px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .features {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .feature-info {
    margin-left: 20px;
  }

  .icon-box {
    background-image: linear-gradient(#303030, #1a1a1a);
    border-radius: 16px;
    width: 72px;
    height: 72px;
  }

  .icon-box.no-bg {
    width: 60px;
    height: 60px;
  }

  .icon {
    height: 36px;
  }

  .feature-card {
    border-radius: 16px;
    flex-direction: column;
    width: 83.33%;
    margin-bottom: 80px;
    padding-bottom: 8px;
  }

  .feature-card-image {
    border-bottom: 1px solid #ffffff1a;
    width: 100%;
  }

  .featre-card-info {
    margin-left: 8%;
    margin-right: 8%;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .video {
    height: 50vw;
  }

  .play-button {
    background-size: 36px;
    width: 88px;
    height: 88px;
  }

  .footer-section {
    padding-top: 40px;
  }

  .footer-bottom {
    margin-top: 44px;
  }

  .footer-social {
    margin-top: 8px;
  }

  .product-hunt {
    width: 100%;
  }

  .testimonials {
    grid-template-columns: 1fr;
    padding-left: 16%;
    padding-right: 16%;
  }

  .review {
    border-radius: 16px;
    margin-bottom: 32px;
  }

  .features-v3 {
    grid-column-gap: 24px;
    grid-row-gap: 64px;
    grid-template-columns: 1fr 1fr;
  }

  .feature-v3-image {
    border-radius: 16px;
    margin-bottom: 20px;
  }

  .logotype {
    height: 28px;
    margin: 16px 20px;
  }

  .pricing-3-cols {
    grid-row-gap: 48px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    max-width: 60vw;
  }

  .faq-wrapper {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .faq-category.first-category {
    margin-top: 20px;
  }

  .page-top-section {
    padding-top: 56px;
    position: static;
  }

  .page-intro {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .page-heading {
    font-size: 5.6vw;
    line-height: 7vw;
  }

  .changelog-block {
    grid-template-columns: minmax(88px, auto) minmax(32px, auto) 1fr;
  }

  .posts {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    padding-left: 12%;
    padding-right: 12%;
  }

  .post-card {
    border-radius: 16px;
    height: 44vw;
    max-height: none;
  }

  .post-heading {
    font-size: 5.6vw;
    line-height: 7vw;
  }

  .post-image {
    border-radius: 16px;
    height: 64vw;
    max-height: none;
  }

  .post-content {
    padding-top: 60px;
    padding-left: 0;
    padding-right: 0;
  }

  .side-blocks {
    grid-row-gap: 48px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding-left: 12%;
    padding-right: 12%;
    overflow: hidden;
  }

  .side-info {
    padding-left: 0%;
    padding-right: 12%;
  }

  .side-image {
    border-radius: 16px;
  }

  .features-v2 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    padding-left: 12%;
    padding-right: 12%;
  }

  .feature-v2 {
    text-align: left;
    flex-direction: row;
    align-items: flex-start;
  }

  .feature-v2-info {
    padding-top: 0;
    padding-left: 20px;
  }

  .text-grey-big {
    font-size: 17px;
    line-height: 24px;
  }

  .cta-card, .cta-app-icon {
    border-radius: 16px;
  }

  .button-bg {
    background-image: linear-gradient(125deg, var(--grade-1), var(--grade-2));
  }

  .nav-link-content {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 23px;
  }

  .nav-dropdown-list.w--open {
    box-shadow: none;
    background-color: #0000;
    background-image: none;
    border-radius: 0;
    flex-wrap: wrap;
    margin-left: 0;
    padding-top: 4px;
    padding-bottom: 4px;
    position: relative;
  }

  .nav-dropdown-link {
    color: #fff;
    padding-left: 52px;
    padding-right: 52px;
  }

  .nav-dropdown-link:hover, .nav-dropdown-link:visited {
    color: #fff;
  }

  .nav-dropdown-link.w--current {
    color: #e8985c;
  }

  .dropdown-arrow {
    margin-top: 7px;
    margin-bottom: 7px;
    font-size: 15px;
  }

  .sg-buttons {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .pg-logo-wrapper {
    width: 357px;
  }

  .duststorm {
    height: 1050px;
  }

  .hero-wrapper {
    height: 545px;
    margin-top: -200px;
  }

  .norse-pattern-one, .norse-pattern-two, .norse-pattern-two.right {
    display: none;
  }

  .poi {
    background-size: 16px 16px, auto;
    width: 20px;
    height: 20px;
    margin-top: -2px;
    margin-left: -2px;
    font-size: 1.1em;
  }

  .inactive-poi {
    width: 16px;
    height: 16px;
    font-size: 1.1em;
  }

  .location-name {
    width: 140px;
    height: 40px;
    top: -40px;
    left: -60px;
  }

  .logotype-color {
    height: 28px;
    margin: 16px 20px;
  }

  .screen-upper-left, .screen-lower-left, .screen-lower-left.right, .screen-upper-right, .screen-lower-riight, .screen-lower-riight.right, .screen-lower-riight.right-unique {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .nav-link {
    padding: 10px 32px;
    font-size: 17px;
    line-height: 24px;
  }

  .nav-link.dropdown {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar {
    height: 64px;
  }

  .button.large {
    height: 64px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 15px;
  }

  .button.large.main {
    height: 60px;
  }

  .menu-icon {
    margin-left: 2px;
    margin-right: 2px;
  }

  .nav-menu {
    width: 220px;
    padding-top: 64px;
  }

  .logo.pet-generals {
    height: 36px;
  }

  .top-button {
    display: none;
  }

  .sg-colors {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .sg-color-card {
    padding: 8px;
  }

  .section-intro.margin-bottom {
    margin-bottom: 48px;
  }

  .sg-color-name {
    margin-top: 10px;
    margin-bottom: 2px;
    font-size: 11px;
    line-height: 16px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-intro {
    margin-top: 0;
    margin-bottom: 60px;
  }

  .hero-image {
    min-width: 0;
  }

  .hero-section {
    padding-top: 96px;
  }

  .intro-left.margin-bottom {
    margin-bottom: 48px;
  }

  .main-grid {
    grid-row-gap: 48px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .icon-box.no-bg {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
    margin-left: 10%;
  }

  .feature-card {
    border-radius: 12px;
    margin-bottom: 60px;
  }

  .featre-card-info {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .play-button {
    background-size: 24px;
    width: 64px;
    height: 64px;
  }

  .footer-section {
    padding-top: 24px;
  }

  .footer-bottom {
    margin-top: 28px;
    padding: 16px;
  }

  .footer-nav-link {
    margin: 4px 12px;
  }

  .footer-social {
    margin-top: 0;
  }

  .subscribe-input-wrapper {
    padding: 6px;
  }

  .ph-info {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .testimonials {
    padding-left: 11%;
    padding-right: 11%;
  }

  .review {
    border-radius: 12px;
    margin-bottom: 24px;
  }

  .review-author {
    flex-wrap: wrap;
  }

  .features-v3 {
    grid-row-gap: 48px;
  }

  .feature-v3-image {
    border-radius: 12px;
  }

  .feature-v3-info {
    padding-left: 8px;
    padding-right: 8px;
  }

  .accordion-info {
    padding-right: 56px;
  }

  .accordion-item {
    padding-left: 16px;
    padding-right: 16px;
  }

  .accordion-plus {
    border-width: 11px;
    width: 36px;
    height: 36px;
  }

  .accordion-text {
    padding-bottom: 16px;
  }

  .accordion-heading {
    font-size: 17px;
    line-height: 24px;
  }

  .accordion-header {
    min-height: 60px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .pricing-3-cols {
    max-width: 66vw;
  }

  .faq-category {
    margin-top: 48px;
    margin-bottom: 20px;
  }

  .faq-category.first-category {
    margin-top: 0;
  }

  .page-intro {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .page-heading {
    font-size: 7vw;
    line-height: 8vw;
  }

  .timeline-dot {
    box-shadow: 0 0 0 10px var(--dark);
    width: 10px;
    height: 10px;
    margin-top: 10px;
  }

  .change-text {
    font-size: 15px;
  }

  .posts {
    grid-row-gap: 24px;
  }

  .post-card-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .post-card-heading {
    margin-bottom: 16px;
  }

  .post-card-info {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .post-heading {
    font-size: 7vw;
    line-height: 8vw;
  }

  .post-image {
    border-radius: 12px;
  }

  .post-content {
    padding-top: 48px;
  }

  .side-blocks {
    grid-row-gap: 32px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .side-info {
    padding-right: 0%;
  }

  .side-image {
    border-radius: 12px;
  }

  .features-v2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    padding-left: 10%;
    padding-right: 10%;
  }

  .feature-v2 {
    flex-flow: column;
  }

  .cta-card {
    border-radius: 12px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .cta-app-icon {
    width: 72px;
    margin-bottom: 16px;
  }

  .cta-app-icon.icon-wiki {
    width: 210px;
  }

  .nav-dropdown-link {
    padding-left: 48px;
    padding-right: 48px;
  }

  .dropdown-arrow {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .sg-buttons {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    justify-items: center;
  }

  .pg-logo-wrapper {
    width: 230px;
    height: 150px;
    margin-bottom: 10px;
  }

  .duststorm {
    height: 740px;
  }

  .hero-wrapper {
    height: 339px;
    margin-top: -140px;
  }

  .poi {
    background-size: 60% 60%, auto;
    font-size: .9em;
  }

  .inactive-poi {
    font-size: .9em;
  }

  .location-name {
    text-shadow: -1px -1px #cb175e, -1px 1px #cb175e, 1px 1px #cb175e, 1px -1px #cb175e, -1px 0 #cb175e, 0 1px #cb175e, 1px 0 #cb175e, 0 -1px #cb175e;
    width: 80px;
    font-size: .65em;
    top: -40px;
    left: -30px;
  }

  .location-name:hover {
    text-shadow: -1px -1px #cb171a, -1px 1px #cb171a, 1px 1px #cb171a, 1px -1px #cb171a, -1px 0 #cb171a, 0 1px #cb171a, 1px 0 #cb171a, 0 -1px #cb171a;
  }

  .location-name.town {
    text-shadow: -1px -1px #742b2e, -1px 1px #742b2e, 1px 1px #742b2e, 1px -1px #742b2e, -2px 0 #742b2e, 0 2px #742b2e, 2px 0 #742b2e, 0 -2px #742b2e;
    font-size: 120%;
  }

  .image {
    height: 100%;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 30px;
  }

  .navbar {
    z-index: 100;
  }

  .nav-menu {
    width: 100%;
  }

  .logo-text {
    display: none;
  }

  .sg-colors {
    grid-template-columns: 1fr 1fr;
  }

  .sg-color {
    height: 24vw;
  }

  .hero-intro {
    margin-top: 20px;
  }

  .hero-intro.daevasotan-hero, .hero-intro.pg-hero {
    margin-top: 0;
  }

  .hero-heading {
    margin-top: 8px;
    margin-bottom: 16px;
    font-size: 30px;
    line-height: 36px;
  }

  .intro-left {
    text-align: center;
    align-items: center;
  }

  .main-grid {
    grid-column-gap: 0px;
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .features {
    grid-row-gap: 48px;
  }

  .feature {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .feature-info {
    margin-top: 20px;
    margin-left: 0;
  }

  .feature-card {
    width: 100%;
    margin-bottom: 40px;
  }

  .featre-card-info {
    margin-left: 24px;
    margin-right: 24px;
  }

  .play-button {
    margin-top: 7%;
  }

  .footer-bottom {
    grid-row-gap: 8px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .footer-bottom-right {
    justify-content: flex-start;
  }

  .subscribe-input {
    padding-left: 25px;
  }

  .product-hunt {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .ph-info {
    padding-top: 0;
    padding-bottom: 32px;
  }

  .leave-review {
    justify-content: center;
  }

  .leave-review-line {
    display: none;
  }

  .leave-review-link {
    padding-right: 0;
  }

  .testimonials {
    padding-left: 0%;
    padding-right: 0%;
  }

  .review {
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
  }

  .review-author {
    justify-content: center;
  }

  .review-avatar {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
    margin-right: 0;
  }

  .review-author-link {
    margin-top: 10px;
    margin-right: 10px;
    position: absolute;
    inset: 0% 0% auto auto;
  }

  .features-v3 {
    grid-column-gap: 0px;
    grid-template-columns: 1fr;
  }

  .logotype {
    height: 26px;
    margin: 12px;
  }

  .accordion-info {
    padding-right: 0;
  }

  .accordion-item {
    padding-left: 0;
    padding-right: 0;
  }

  .accordion-heading {
    font-size: 15px;
    line-height: 20px;
  }

  .pricing-list {
    margin-top: 32px;
    padding-top: 24px;
  }

  .pricing-3-cols {
    grid-row-gap: 40px;
    max-width: none;
  }

  .pricing-table {
    padding: 40px 24px;
  }

  .page-heading {
    font-size: 10vw;
    line-height: 12vw;
  }

  .licence-info {
    text-align: center;
    margin-top: 8px;
    padding-left: 0;
  }

  .licence {
    flex-direction: column;
    padding-top: 48px;
  }

  .changelog-block {
    grid-column-gap: 24px;
    grid-row-gap: 8px;
    grid-template: "Timeline-Mobile Date-Mobile Date-Mobile"
                   "Timeline-Mobile Info-Mobile Info-Mobile"
                   / auto minmax(32px, auto) 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .timeline-date {
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .posts {
    padding-left: 0%;
    padding-right: 0%;
  }

  .post-card {
    height: 72vw;
  }

  .post-card-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .post-heading {
    font-size: 10vw;
    line-height: 12vw;
  }

  .side-blocks {
    grid-row-gap: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .side-info {
    padding-left: 0%;
    padding-right: 0%;
  }

  .features-v2 {
    grid-row-gap: 48px;
    padding-left: 0%;
    padding-right: 0%;
  }

  .feature-v2 {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .feature-v2-info {
    padding-top: 20px;
    padding-left: 0;
  }

  .cta-card {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cta-heading {
    font-size: 30px;
    line-height: 36px;
  }

  .sg-buttons {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .pg-logo-wrapper {
    width: 100%;
  }

  .pg-logo-shield {
    background-size: contain;
  }

  .pg-logo-text {
    justify-content: center;
    align-items: center;
  }

  .duststorm {
    height: 700px;
  }

  .hero-wrapper {
    width: 140%;
    height: 280px;
    margin-left: -20%;
  }

  .poi {
    background-size: 50% 50%, 50% 50%;
    width: 18px;
    height: 18px;
  }

  .poi.neon-district {
    top: 33%;
    left: 61%;
  }

  .inactive-poi {
    width: 14px;
    height: 14px;
  }

  .location-name {
    width: 60px;
    height: 30px;
    font-size: .6em;
    top: -30px;
    left: -22px;
  }

  .location-name.town {
    font-size: .9em;
    top: -13px;
  }

  .logotype-color {
    height: 26px;
    margin: 12px;
  }

  .pg-logo-halo, .pg-logo-plate, .pg-logo-head {
    background-size: contain;
  }
}

#w-node-_4d7f10fd-1cc0-3ef4-bf4d-658c93dc7ebd-5ead72c1, #w-node-b59a6a9e-5f11-2a19-8ede-e30e25048b41-5ead72c1, #w-node-d717c4eb-b7ee-8374-7c1e-bd800de6f2e0-5ead72c1, #w-node-e7cf1450-7476-06a1-4bf8-82fb0b26c4eb-5ead72c1, #w-node-_873b045e-8fd1-35b2-607d-d3f6633f63f6-5ead72c1 {
  justify-self: center;
}

#w-node-_48d8d40f-6207-01c0-222e-f920fda6a98a-5ead72c1 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: start;
}

#w-node-_48d8d40f-6207-01c0-222e-f920fda6a98f-5ead72c1 {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-_5a1e5f61-7055-9b29-54d6-0cf4bc645124-c7ad72c5 {
  place-self: start end;
}

#w-node-_5a1e5f61-7055-9b29-54d6-0cf4bc645126-c7ad72c5 {
  place-self: stretch center;
}

#w-node-_5a1e5f61-7055-9b29-54d6-0cf4bc645154-c7ad72c5 {
  place-self: start stretch;
}

#w-node-_5a1e5f61-7055-9b29-54d6-0cf4bc645156-c7ad72c5 {
  place-self: start center;
}

#w-node-aa44fdd9-6377-002f-1fb4-42ff287875ca-6dad72c6 {
  place-self: start end;
}

#w-node-aa44fdd9-6377-002f-1fb4-42ff287875cc-6dad72c6 {
  place-self: stretch center;
}

#w-node-aa44fdd9-6377-002f-1fb4-42ff287875d6-6dad72c6 {
  place-self: start stretch;
}

#w-node-aa44fdd9-6377-002f-1fb4-42ff287875d8-6dad72c6 {
  place-self: stretch center;
}

#w-node-b146e646-2c39-7850-d251-0be064a92c92-6dad72c6 {
  place-self: start stretch;
}

#w-node-b146e646-2c39-7850-d251-0be064a92c94-6dad72c6 {
  place-self: start center;
}

#w-node-_4d7f10fd-1cc0-3ef4-bf4d-658c93dc7ebd-a2ad72ca, #w-node-b59a6a9e-5f11-2a19-8ede-e30e25048b41-a2ad72ca, #w-node-d717c4eb-b7ee-8374-7c1e-bd800de6f2e0-a2ad72ca {
  justify-self: center;
}

#w-node-_48d8d40f-6207-01c0-222e-f920fda6a98a-a2ad72ca {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: start;
}

#w-node-_48d8d40f-6207-01c0-222e-f920fda6a98f-a2ad72ca {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-f29aa8af-9909-36a7-7a05-1f9ad30c51bc-56ad72cb, #w-node-f29aa8af-9909-36a7-7a05-1f9ad30c51bd-56ad72cb, #w-node-f29aa8af-9909-36a7-7a05-1f9ad30c51be-56ad72cb, #w-node-f29aa8af-9909-36a7-7a05-1f9ad30c51bf-56ad72cb, #w-node-f29aa8af-9909-36a7-7a05-1f9ad30c51c0-56ad72cb, #w-node-f29aa8af-9909-36a7-7a05-1f9ad30c51c1-56ad72cb {
  place-self: center;
}

#w-node-_260b317a-e174-7e69-0923-8e653b23e236-72ad72ce {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: start;
}

#w-node-_260b317a-e174-7e69-0923-8e653b23e23b-72ad72ce {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-_4d7f10fd-1cc0-3ef4-bf4d-658c93dc7ebd-97732e27 {
  justify-self: center;
}

#w-node-_21fcf27a-5c57-83a2-cbf5-b896036f0f19-97732e27 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-b59a6a9e-5f11-2a19-8ede-e30e25048b41-97732e27, #w-node-d717c4eb-b7ee-8374-7c1e-bd800de6f2e0-97732e27 {
  justify-self: center;
}

#w-node-_48d8d40f-6207-01c0-222e-f920fda6a98a-97732e27 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: start;
}

#w-node-_48d8d40f-6207-01c0-222e-f920fda6a98f-97732e27 {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

@media screen and (max-width: 991px) {
  #w-node-_4d7f10fd-1cc0-3ef4-bf4d-658c93dc7ebc-5ead72c1 {
    order: -9999;
  }

  #w-node-b59a6a9e-5f11-2a19-8ede-e30e25048b41-5ead72c1 {
    grid-area: 2 / 1 / 2 / 2;
  }

  #w-node-d717c4eb-b7ee-8374-7c1e-bd800de6f2e0-5ead72c1 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-e7cf1450-7476-06a1-4bf8-82fb0b26c4eb-5ead72c1 {
    grid-area: 2 / 1 / 2 / 2;
  }

  #w-node-_873b045e-8fd1-35b2-607d-d3f6633f63f6-5ead72c1 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_48d8d40f-6207-01c0-222e-f920fda6a98a-5ead72c1 {
    grid-area: span 1 / span 6 / span 1 / span 6;
    align-self: start;
  }

  #w-node-_4d7f10fd-1cc0-3ef4-bf4d-658c93dc7ebc-a2ad72ca, #w-node-b59a6a9e-5f11-2a19-8ede-e30e25048b40-a2ad72ca, #w-node-_7f66fb1d-1684-8505-8c30-1baf3ed3fed7-a2ad72ca {
    order: -9999;
  }

  #w-node-_48d8d40f-6207-01c0-222e-f920fda6a98a-a2ad72ca, #w-node-_260b317a-e174-7e69-0923-8e653b23e236-72ad72ce {
    grid-area: span 1 / span 6 / span 1 / span 6;
    align-self: start;
  }

  #w-node-b59a6a9e-5f11-2a19-8ede-e30e25048b41-97732e27 {
    grid-area: 2 / 1 / 2 / 2;
  }

  #w-node-d717c4eb-b7ee-8374-7c1e-bd800de6f2e0-97732e27 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_48d8d40f-6207-01c0-222e-f920fda6a98a-97732e27 {
    grid-area: span 1 / span 6 / span 1 / span 6;
    align-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_48d8d40f-6207-01c0-222e-f920fda6a98a-5ead72c1, #w-node-_48d8d40f-6207-01c0-222e-f920fda6a98f-5ead72c1 {
    grid-column: span 1 / span 1;
  }

  #w-node-_5a1e5f61-7055-9b29-54d6-0cf4bc645124-c7ad72c5 {
    grid-area: Date-Mobile;
    justify-self: start;
  }

  #w-node-_5a1e5f61-7055-9b29-54d6-0cf4bc645126-c7ad72c5 {
    grid-area: Timeline-Mobile;
    place-self: stretch center;
  }

  #w-node-_5a1e5f61-7055-9b29-54d6-0cf4bc645128-c7ad72c5 {
    grid-area: Info-Mobile;
  }

  #w-node-_5a1e5f61-7055-9b29-54d6-0cf4bc645154-c7ad72c5 {
    grid-area: Date-Mobile;
  }

  #w-node-_5a1e5f61-7055-9b29-54d6-0cf4bc645156-c7ad72c5 {
    grid-area: Timeline-Mobile;
  }

  #w-node-_5a1e5f61-7055-9b29-54d6-0cf4bc645158-c7ad72c5 {
    grid-area: Info-Mobile;
  }

  #w-node-aa44fdd9-6377-002f-1fb4-42ff287875ca-6dad72c6 {
    grid-area: Date-Mobile;
    justify-self: start;
  }

  #w-node-aa44fdd9-6377-002f-1fb4-42ff287875cc-6dad72c6 {
    grid-area: Timeline-Mobile;
    place-self: stretch center;
  }

  #w-node-aa44fdd9-6377-002f-1fb4-42ff287875ce-6dad72c6 {
    grid-area: Info-Mobile;
  }

  #w-node-aa44fdd9-6377-002f-1fb4-42ff287875d6-6dad72c6 {
    grid-area: Date-Mobile;
  }

  #w-node-aa44fdd9-6377-002f-1fb4-42ff287875d8-6dad72c6 {
    grid-area: Timeline-Mobile;
  }

  #w-node-aa44fdd9-6377-002f-1fb4-42ff287875da-6dad72c6 {
    grid-area: Info-Mobile;
  }

  #w-node-b146e646-2c39-7850-d251-0be064a92c92-6dad72c6 {
    grid-area: Date-Mobile;
  }

  #w-node-b146e646-2c39-7850-d251-0be064a92c94-6dad72c6 {
    grid-area: Timeline-Mobile;
  }

  #w-node-b146e646-2c39-7850-d251-0be064a92c96-6dad72c6 {
    grid-area: Info-Mobile;
  }

  #w-node-_48d8d40f-6207-01c0-222e-f920fda6a98a-a2ad72ca, #w-node-_48d8d40f-6207-01c0-222e-f920fda6a98f-a2ad72ca, #w-node-_260b317a-e174-7e69-0923-8e653b23e236-72ad72ce, #w-node-_260b317a-e174-7e69-0923-8e653b23e23b-72ad72ce, #w-node-_48d8d40f-6207-01c0-222e-f920fda6a98a-97732e27, #w-node-_48d8d40f-6207-01c0-222e-f920fda6a98f-97732e27 {
    grid-column: span 1 / span 1;
  }
}


