.site-content {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.site-section {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 100svh;
  display: flex;
}

.code-for-it {
  width: 100%;
}

.calculator-content {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  height: 100%;
  min-height: 100svh;
  max-height: 100vh;
  padding: 2rem 1rem 1rem;
  display: flex;
  position: relative;
}

.calculator-content.home {
  justify-content: space-between;
  align-items: center;
}

.calculator-content._404 {
  justify-content: flex-start;
  align-items: center;
}

.calc-title {
  color: #000;
  text-align: center;
  font-family: Open Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: underline;
}

.calc-title.link {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  text-decoration: none;
}

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

.calc-title.link.no {
  color: #bebebe;
  cursor: not-allowed;
}

.calc-title.link.no:hover {
  text-decoration: none;
}

.calc-footer {
  color: #cacaca;
  text-align: center;
  font-family: Open Sans, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.footer-inside-link {
  color: #8d8d8d;
  text-decoration: none;
}

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

.footer-div {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: grid;
}

.footer-div.home {
  grid-template-columns: 1fr;
}

.site-grid {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: .5fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.ad-div {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
  display: flex;
  position: sticky;
  top: 0;
}

.ad-div.left {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  display: none;
}

.ad-div.right {
  justify-content: flex-end;
  align-items: center;
  max-height: 100vh;
  display: none;
}

.ad-link-block {
  width: 100%;
  max-width: 200px;
  height: 100%;
}

.ad-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.ad-image.mobile {
  display: none;
}

.home-menu-div {
  z-index: 2;
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.home-menu-div._404 {
  margin-top: 25vh;
}

.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: 260px;
  display: flex;
}

.back-link-block {
  color: #3f3f3f;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 2rem auto auto 1rem;
}

.backer {
  font-family: Open Sans, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 28px;
}

.money-back {
  z-index: 0;
  opacity: .04;
  pointer-events: none;
  object-fit: contain;
  height: 100%;
  padding-top: 15vh;
  padding-bottom: 15vh;
  position: absolute;
}

@media screen and (max-width: 991px) {
  .site-section {
    min-height: auto;
    max-height: none;
  }

  .code-for-it {
    max-width: none;
  }

  .calculator-content {
    max-height: none;
  }

  .calculator-content.home {
    grid-column-gap: 8rem;
    grid-row-gap: 8rem;
  }

  .calculator-content._404 {
    min-height: 70svh;
  }

  .calc-title {
    margin-top: 4rem;
  }

  .calc-title.link {
    margin-top: 0;
  }

  .footer-inside-link.try {
    color: #666;
    font-size: 16px;
    line-height: 24px;
  }

  .footer-div {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
    grid-template-columns: 1fr;
    width: auto;
    max-width: none;
    margin-top: 4rem;
    display: flex;
  }

  .site-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    grid-template-columns: 1fr;
  }

  .ad-div {
    position: relative;
  }

  .ad-div.right {
    margin-top: -2rem;
  }

  .ad-link-block {
    max-width: none;
    max-height: 20vh;
  }

  .ad-image {
    height: 120px;
  }

  .ad-image.desktop {
    display: none;
  }

  .ad-image.mobile {
    height: auto;
    max-height: 120px;
    display: inline-flex;
  }

  .home-menu-div._404 {
    margin-top: 20vh;
  }
}

@media screen and (max-width: 767px) {
  .calc-title {
    font-size: 20px;
    line-height: 20px;
  }

  .backer {
    line-height: 16px;
  }
}

@media screen and (max-width: 479px) {
  .calculator-content._404 {
    min-height: 70svh;
  }

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

#w-node-_1120dd7f-d05c-6b95-106f-7b08c8fc4dc1-e7e38d6a {
  justify-self: start;
}

#w-node-_1120dd7f-d05c-6b95-106f-7b08c8fc4dc8-e7e38d6a {
  justify-self: end;
}

#w-node-_37c910ed-14c3-4e32-cbbf-84712c377aa4-85d520fb {
  justify-self: start;
}

#w-node-_37c910ed-14c3-4e32-cbbf-84712c377aa1-85d520fb {
  justify-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-_28860b89-c21b-e1dc-0c86-90d0909f3d98-e7e38d6a, #w-node-_37c910ed-14c3-4e32-cbbf-84712c377a9b-85d520fb, #w-node-_37c910ed-14c3-4e32-cbbf-84712c377a9b-73a663c9, #w-node-e30f04f6-3758-6355-0668-4a04037260d3-c438663b {
    grid-area: 1 / 1 / 2 / 2;
  }
}


