@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

:root {
  --ar-bg-light-gray: #141414;
  --ar-bg-soft-grey: #232323;
  --ar-bg-grey: #333333;
  --ar-bg-dark-grey: #000000;
  --ar-bg-green: #32AA4E;
  --ar-txt-grey-subtext: #A0A0A0;
  --ar-txt-grey: #444444;
  --ar-txt-white: #e9e9e9;
}

.main-grid {
  display: grid;
  grid-template-columns: minmax(30px, 1fr) auto minmax(30px, 1fr);
  grid-template-rows: minmax(30px, auto) 1fr minmax(30px, auto);
}

.content-grid {
  grid-column: 2/span 1;
  grid-row: 2/span 1;
}

.grid-item-align-center {
  align-self: center;
}

.cards-holder {
  display: grid;
  gap: 30px;
  margin-bottom: 30px;
}

@media (min-width: 0px) and (max-width: calc(720px - 1px)) {
  .main-grid {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(30px, 1fr) auto minmax(30px, 1fr);
  }

  .content-grid {
    grid-column: 1/-1;
    grid-row: 2/span 1;
    align-self: center;
  }

  .cards-holder {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }
}
@media (min-width: 720px) and (max-width: calc(1024px - 1px)) {
  .cards-holder {
    grid-template-columns: 660px;
    grid-auto-flow: row;
  }

  .main-grid {
    grid-template-rows: minmax(30px, 1fr) auto minmax(30px, 1fr);
  }
}
@media (min-width: 1024px) and (max-width: calc(1200px - 1px)) {
  .cards-holder {
    grid-template-columns: 634px 300px;
  }
}
@media (min-width: 1200px) {
  .cards-holder {
    grid-template-columns: 710px 400px;
    grid-auto-flow: column;
  }
}
body {
  width: 100%;
  height: 100vh;
  background: #000000;
  color: #e9e9e9;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

h1 {
  font-size: 1.75rem;
  text-transform: uppercase;
}

h2 {
  font-size: 1.125rem;
  text-transform: uppercase;
}

.contentWrapper {
  display: flex;
  align-items: center;
  justify-items: flex-start;
  height: 100%;
  width: 100%;
  max-width: 964px;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}

section > *:not(:last-child) {
  margin-bottom: 30px;
}

@media (min-width: 0px) and (max-width: calc(720px - 1px)) {
  h1, h2 {
    text-align: center;
  }

  .contentWrapper {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .contentWrapper {
    max-width: 1140px;
  }
}
.header {
  width: 100%;
  height: 70px;
  background-color: #141414;
  padding: 0 30px;
  display: flex;
  justify-content: center;
}

.logoContainer {
  width: 90px;
}

.topNavigation {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.topNavigation li {
  padding-left: 23px;
}
.topNavigation li a {
  color: #E9E9E9;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
.topNavigation li a:hover {
  color: #A23F62;
  text-decoration: none;
}
.topNavigation li:first-of-type {
  padding-left: 0;
}

@media (min-width: 0) and (max-width: 719px) {
  .topNavigation {
    font-size: 14px;
  }
}
.heading {
  grid-column: 2/span 1;
  display: grid;
  grid-auto-flow: row;
  grid-template-rows: min-content;
  margin-bottom: 50px;
}
.heading img, .heading p {
  justify-self: center;
}
.heading img.logo {
  margin-top: 30px;
}
.heading img.photo {
  border-radius: 50%;
  border: 2px solid #777777;
}
.heading p {
  margin-top: 13px;
  color: #A0A0A0;
}

@media (min-width: 0px) and (max-width: calc(720px - 1px)) {
  .heading > img.logo {
    width: 270px;
  }
}
.book {
  display: grid;
  grid-auto-flow: column;
  gap: 30px;
}

.book-cover {
  width: 130px;
  height: 182px;
}

.book-info {
  position: relative;
  top: -6px;
}
.book-info p {
  line-height: 1.875rem;
}

@media (min-width: 0px) and (max-width: calc(720px - 1px)) {
  .book {
    display: grid;
    grid-auto-flow: row;
    gap: 30px;
  }

  .book-info > p {
    text-align: center;
  }

  .book-cover {
    justify-self: center;
    width: 185px;
    height: 259px;
  }
}
.subscribe {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
}

.subscribe-form {
  margin-top: 24px;
  display: grid;
  grid-auto-flow: row;
  gap: 13px;
}
.subscribe-form .input-group {
  position: relative;
}
.subscribe-form .input-group label {
  opacity: 0;
}
.subscribe-form .input-group input {
  height: 40px;
  width: 100%;
  background: #232323;
  outline: none;
  border: none;
  border-radius: 3px 3px 0 0;
  color: #e9e9e9;
  font-size: 14px;
  padding: 0 40px 0 15px;
}
.subscribe-form .input-group .border {
  position: relative;
  bottom: 0;
  height: 2px;
  background: linear-gradient(60deg, #EE455D 0%, #A0315A 40%, #602158 100%);
}
.subscribe-form .input-group .checkedTrue {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  background: #32AA4E;
}
.subscribe-form .input-group .hidden {
  display: none;
}

.subscribe-success-content {
  display: none;
}

@media (min-width: 0px) and (max-width: calc(720px - 1px)) {
  .subscribe-content > p {
    text-align: center;
  }
}
.card {
  background: #141414;
  border-radius: 0.313rem;
  padding: 1.875rem;
  width: 100%;
}

@media (min-width: 0px) and (max-width: calc(720px - 1px)) {
  .card {
    border-radius: 0;
  }
}
.book-buttons {
  margin-top: 25px;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: min-content min-content;
  gap: 15px;
}

.regular-button {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-weight: bold;
  text-transform: uppercase;
  color: #e9e9e9;
  outline: none;
  border: none;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 5px;
  padding: 0 30px;
  max-width: fit-content;
}
.regular-button:hover {
  cursor: pointer;
}

.kickstarter-button {
  background: linear-gradient(60deg, #EE455D 0%, #A0315A 40%, #602158 100%);
  border-radius: 5px;
  padding: 0 30px;
}

.instagram-button {
  background: linear-gradient(60deg, #EE455D 0%, #A0315A 40%, #602158 100%);
  padding: 2px;
  border-radius: 20px;
}
.instagram-button .instagram-holder {
  background: #000000;
  width: 100%;
  height: 100%;
  display: grid;
  grid-auto-flow: column;
  gap: 15px;
  align-items: center;
  border-radius: 20px;
  padding: 0 15px;
}
.instagram-button img.insta-logo {
  height: 20px;
  width: 20px;
}
.instagram-button img.insta-text-logo {
  position: relative;
  top: 2px;
}
.instagram-button:hover > .instagram-holder {
  background: transparent;
}

.hide-link-text {
  font-size: 0px;
}

.subscribe-button {
  background: linear-gradient(60deg, #EE455D 0%, #A0315A 40%, #602158 100%);
}

.disabled-button {
  background: #333333;
}

@media (min-width: 1024px) {
  .regular-button {
    animation-name: button-go-down;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
  }
  .regular-button:hover {
    animation-name: button-go-up;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
  }

  .disabled-button {
    animation: none;
  }
  .disabled-button:hover {
    animation: none;
  }

  @keyframes button-go-up {
    0% {
      top: 0;
    }
    1% {
      top: 0;
    }
    100% {
      top: -5px;
    }
  }
  @keyframes button-go-down {
    0% {
      top: 0;
    }
    1% {
      top: 0;
    }
    100% {
      top: 5px;
    }
  }
}
@media (min-width: 0px) and (max-width: calc(720px - 1px)) {
  .book-buttons {
    grid-auto-flow: row;
    grid-template-columns: min-content;
    gap: 30px;
    justify-content: center;
  }

  .subscribe-button {
    justify-self: center;
  }

  .instagram-button {
    justify-self: center;
  }
}
.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 30px 0 10px 0;
}
.breadcrumb li {
  display: flex;
  font-size: 14px;
  margin: 0 10px 20px 0;
  color: #A0A0A0;
  transition: all 0.5s ease-in-out;
}
.breadcrumb li a {
  color: #E9E9E9;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 22px;
  justify-content: space-between;
  transition: all 0.5s ease-in-out;
}
.breadcrumb li a:hover {
  color: #A23F62;
}
.breadcrumb li a:after {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(60deg, #EE455D 0%, #A0315A 40%, #602158 100%);
}
.breadcrumb li:hover {
  color: #C7C7C7;
}
.breadcrumb li:after {
  content: "—";
  margin-left: 10px;
  color: #E9E9E9;
}
.breadcrumb li:last-of-type:after {
  content: none;
}

/*# sourceMappingURL=styles.css.map */
