@charset "UTF-8";
body {
  box-sizing: border-box;
  background-color: #F9F9F9;
}

.maxsite {
  margin: 0 auto;
  max-width: 900px;
}
@media (min-width: 901px) {
  .maxsite {
    max-width: 1800px;
  }
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 901px) {
  .header {
    display: inline-block;
  }
}

.header__body {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.header__body__logo {
  width: 100%;
}
@media (min-width: 1150px) {
  .header__body {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  list-style: none;
  width: 100%;
  height: 150px;
  margin: 0;
  border-top: 2px solid #232C57;
  border-bottom: 2px solid #232C57;
  padding-left: 0;
}
.menu__box {
  transition-property: transform;
  transition-duration: 0.2s;
}
.menu__box:active {
  transform: scale(0.9);
}
.menu__option {
  text-decoration: none;
  color: #232C57;
  font-size: 14px;
  font-weight: 600;
  font-family: "Lora", serif;
  margin: 10px;
  padding: 10px;
  text-transform: uppercase;
}
@media (min-width: 901px) {
  .menu__option {
    margin: 15px;
    font-size: 24px;
    font-weight: 600;
  }
}
.menu__option:hover, .menu__option:focus {
  color: #a74561;
  text-shadow: 2px 4px 4px 4px rgb(7, 6, 6);
}
@media (min-width: 901px) {
  .menu {
    flex-direction: row;
    justify-content: center;
    border-top: none;
    height: auto;
    margin: 10px;
    padding-bottom: 5px;
  }
}
@media (min-width: 1150px) {
  .menu {
    margin: 0;
    padding-bottom: 0;
    border: none;
    height: auto;
  }
}

.quote {
  margin-top: 0;
  background-color: #F9F9F9;
  padding: 20px;
  text-align: center;
  font-family: "Lora", serif;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px;
  margin-bottom: 0;
  color: black;
  letter-spacing: 1.6;
  font-size: 14px;
}

.background {
  background-image: url(/images/wood-pozadi.jpg);
  background-repeat: repeat;
  background-attachment: fixed;
  background-size: 100%;
  padding-bottom: 10px;
  padding-top: 10px;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 901px) {
  .main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto auto;
    gap: 20px;
    align-items: normal;
  }
}
@media (min-width: 1150px) {
  .main {
    grid-template-rows: auto auto auto;
    gap: 30px;
  }
}

.book-info {
  margin-top: 0;
  font-family: "Lora", serif;
  line-height: 1.5;
  font-size: 14px;
  order: 2;
}
.book-info__text {
  margin: 30px;
  background-color: #F9F9F9;
  opacity: 90%;
  padding: 20px;
  border-radius: 5px;
}
.book-info__questions {
  margin: 30px;
  background-color: #F9F9F9;
  opacity: 90%;
  padding: 30px;
  border-radius: 5px;
}
@media (min-width: 901px) {
  .book-info__questions {
    width: 900px;
  }
}
@media (min-width: 1150px) {
  .book-info__questions {
    width: auto;
  }
}
.book-info__header {
  margin-top: 0;
  font-family: "Lora", serif;
  font-size: 24px;
}
.book-info__name1 {
  font-size: 24px;
  color: #232C57;
  margin-bottom: 30px;
}
.book-info__name2 {
  color: #a74561;
  font-weight: bold;
  font-size: 24px;
}
.book-info__bold {
  font-weight: bold;
}
@media (min-width: 901px) {
  .book-info {
    grid-column: 1/3;
    grid-row: 2;
    display: flex;
  }
}
@media (min-width: 1150px) {
  .book-info {
    grid-row: 1;
    grid-column: 2/3;
    display: block;
    font-size: 20px;
  }
}
@media (min-width: 1500px) {
  .book-info {
    font-size: 18px;
  }
}

.book-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  order: 1;
}
.book-image__cover {
  width: 280px;
  margin-top: 30px;
  border: 0.5px solid rgb(147, 138, 138);
  box-shadow: 2px 3px 3px 2px rgb(218, 217, 217);
  display: block;
  border-radius: 5px 0 0 5px;
}
@media (min-width: 600px) {
  .book-image__cover {
    width: 380px;
  }
}
@media (min-width: 1150px) {
  .book-image__cover {
    width: 440px;
    justify-content: flex-start;
  }
}
.book-image__bottom {
  background-color: #a74561;
  padding: 10px 30px;
  color: white;
  margin-top: 40px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 1.7;
  font-weight: 600;
  box-shadow: 1px 1px 1px 1.5px rgb(218, 217, 217);
  border-radius: 5px;
  transition-property: transform;
  transition-duration: 0.3s;
}
.book-image__bottom:hover, .book-image__bottom:focus {
  transform: scale(1.1);
  background-color: #a91244;
}
.book-image__bottom:active {
  transform: scale(1);
}
@media (min-width: 901px) {
  .book-image {
    grid-column: 1/3;
    grid-row: 1;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    order: none;
  }
}
@media (min-width: 1150px) {
  .book-image {
    grid-column: 1/2;
  }
}

.book-benefits-text {
  padding: 20px;
  margin: 30px;
  background-color: #F9F9F9;
  opacity: 90%;
  padding: 20px;
  font-family: "Lora", serif;
  line-height: 1.7;
  order: 4;
  font-size: 14px;
  border-radius: 5px;
}
.book-benefits-text__header {
  font-size: 18px;
  margin-top: 0;
}
@media (min-width: 1150px) {
  .book-benefits-text__header {
    font-size: 24px;
  }
}
@media (min-width: 901px) {
  .book-benefits-text {
    grid-row: 3/5;
    font-size: 18px;
  }
}
@media (min-width: 1150px) {
  .book-benefits-text {
    grid-row: 2;
    font-size: 18px;
  }
}

.book-benefits-photo {
  align-items: center;
  margin: 30px;
  order: 3;
}
@media (min-width: 1150px) {
  .book-benefits-photo {
    grid-row: 2;
    grid-column: 2/3;
  }
}
.book-benefits-photo__img {
  width: 100%;
  border-radius: 5px;
  /* margin: 0;
   object-fit: cover;*/
}

.reading-tips__photo {
  align-items: center;
  margin: 30px;
  order: 5;
}
@media (min-width: 1150px) {
  .reading-tips__photo {
    grid-column: 1/2;
  }
}
.reading-tips__photo__img {
  width: 100%;
  border-radius: 5px;
}

.reading-tips__text {
  background-color: #F9F9F9;
  opacity: 90%;
  padding: 20px;
  font-size: 14px;
  font-family: "Lora", serif;
  line-height: 1.7;
  order: 6;
  margin: 30px;
  border-radius: 5px;
}
.reading-tips__text__header {
  font-size: 16px;
  color: white;
}
@media (min-width: 901px) {
  .reading-tips__text {
    grid-column: 1/3;
    grid-row: 5;
  }
}
@media (min-width: 1150px) {
  .reading-tips__text {
    grid-column: 2/3;
    grid-row: 3;
    font-size: 18px;
  }
}

.reviews {
  width: 100%;
  margin: 30px;
}
.reviews__header {
  color: #a74561;
  font-size: 24px;
  text-shadow: 1px 1px 1px 2px rgb(14, 13, 13);
  width: 320px;
  background-color: #F9F9F9;
  opacity: 90%;
  padding: 10px;
  border-radius: 5px;
  font-family: "Lora", serif;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 300px;
  gap: 40px;
  text-align: center;
  margin: 30px 0;
  overflow-x: scroll;
}
.reviews__box {
  width: 300px;
  padding: 20px;
  background-color: #a74561;
  color: white;
  border-radius: 10px;
}
@media (min-width: 1150px) {
  .reviews__box {
    width: 400px;
  }
}
.reviews__text {
  font-family: "Lora", serif;
  font-size: 14px;
  line-height: 1.7;
}
@media (min-width: 1150px) {
  .reviews__text {
    font-size: 16px;
  }
}
.reviews__text br {
  margin-bottom: 20px;
}
.reviews__name {
  border-top: 1px solid white;
  padding-top: 10px;
}

.footer {
  background-color: rgb(241, 234, 234); /*linear-gradient(#FFE7F7, #CD0046);*/
  height: auto;
  padding: 30px 30px 2px 30px;
  font-family: "Lora", serif;
  margin-top: 30px;
  font-size: 12px;
}
.footer__info {
  display: flex;
  justify-content: space-between;
}
.footer__buy-info {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(5, auto);
}
.footer__rigts {
  text-align: center;
  font-size: 12px;
  margin-top: 40px;
}
@media (min-width: 1150px) {
  .footer__rigts {
    font-size: 14px;
  }
}
.footer__file, .footer__instagram {
  color: black;
  text-decoration: none;
  margin-bottom: 5px;
}
.footer__instagram {
  background-image: url(/images/instagram-ikona.png);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: left;
  padding-left: 20px;
}
.footer__kontakt-info {
  margin-left: 25px;
}
.footer__kontakt-info p {
  margin: 5px;
}
.footer__email {
  color: black;
  text-decoration: none;
}
@media (min-width: 1150px) {
  .footer {
    font-size: 14px;
  }
}

.about-writer {
  background-color: #F9F9F9;
  margin: 40px 20px;
  padding: 20px 10px;
  border-radius: 5px;
}
.about-writer__header {
  margin-top: 0;
  border-bottom: 1px solid black;
}
@media (min-width: 901px) {
  .about-writer__grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1150px) {
  .about-writer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3 auto);
    gap: 5px;
    align-items: normal;
  }
}
.about-writer__text1, .about-writer__text3 {
  font-family: "Lora", serif;
  line-height: 1.5;
  font-size: 14px;
  padding: 10px;
  border-radius: 5px;
}
@media (min-width: 1150px) {
  .about-writer__text1, .about-writer__text3 {
    font-size: 18px;
  }
}
@media (min-width: 1500px) {
  .about-writer__text1, .about-writer__text3 {
    font-size: 18px;
  }
}
.about-writer__text2 {
  font-family: "Lora", serif;
  line-height: 1.5;
  font-size: 14px;
  padding: 10px;
  border-radius: 5px;
}
@media (min-width: 1150px) {
  .about-writer__text2 {
    font-size: 18px;
    grid-column: 2/3;
  }
}
@media (min-width: 1500px) {
  .about-writer__text2 {
    font-size: 18px;
  }
}
.about-writer__photo {
  width: 100%;
  border-radius: 5px;
  margin: 0;
}
.about-writer__photo-box1, .about-writer__photo-box2, .about-writer__photo-box3 {
  margin: 10px;
}
@media (min-width: 1150px) {
  .about-writer__photo-box2 {
    grid-column: 1/2;
    grid-row: 2;
  }
}

.blog {
  margin: 20px 20px;
  padding: 0px 10px;
  /* nefunguje, proč???
  &__articles:nth-child(odd) {
      background-color: $second-color;
  } */
}
.blog__name {
  font-weight: 500px;
  font-size: 18px;
  line-height: 1.8;
}
@media (min-width: 901px) {
  .blog__name {
    font-size: 22px;
  }
}
.blog__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Lora", serif;
  padding: 10px 5px;
  background-color: rgb(241, 234, 234);
  border-radius: 5px;
  max-width: 500px;
  max-height: 640px;
  margin: 0 auto 20px auto;
}
@media (min-width: 901px) {
  .blog__head {
    max-width: 320px;
    max-height: 620px;
    font-size: 16px;
  }
}
@media (min-width: 901px) {
  .blog {
    display: grid;
    grid-template-columns: 320px 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    align-items: normal;
  }
}
.blog__header {
  border-bottom: 1px solid black;
  text-transform: uppercase;
}
.blog__email {
  color: black;
}
.blog__head-text {
  flex-basis: calc(60% - 40px);
  margin: 0 20px;
}
.blog__photo {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0px;
  flex-shrink: 0;
  flex-basis: 40%;
  text-align: center;
  border-radius: 5px;
}
.blog__article {
  background-color: #F9F9F9;
  padding: 20px 20px;
  margin-bottom: 20px;
  font-size: 18px;
  font-family: "Lora", serif;
  line-height: 2;
  border-radius: 5px;
  color: black;
  min-height: 250px;
}
@media (min-width: 901px) {
  .blog__article {
    min-height: 280px;
    font-size: 20px;
  }
}
.blog__article-photo {
  max-width: 250px;
  float: left;
  border-radius: 5px;
  margin-right: 40px;
  margin-bottom: 30px;
}
@media (min-width: 901px) {
  .blog__article-photo {
    max-width: 500px;
  }
}
.blog__article2 {
  background-color: #F9F9F9;
}
.blog__header-small {
  font-size: 24px;
  border-bottom: 1px solid black;
  font-family: "Lora", serif;
  text-transform: uppercase;
}

@media (min-width: 1000px) {
  .contact-flex {
    display: flex;
    justify-content: space-around;
  }
}

.background-contact {
  background-color: #F9F9F9;
  opacity: 90%;
  margin: 20px 20px;
  padding: 10px 30px;
  border-radius: 5px;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: "Lora", serif;
  font-size: 14px;
  line-height: 2;
}
.contact__header {
  border-bottom: 1px solid black;
}
.contact__email {
  color: black;
  text-decoration: none;
}
.contact__form {
  max-width: 300px;
  position: relative;
  padding-bottom: 50px;
  margin-left: 20px;
}
.contact__input {
  width: 100%;
  font-family: "Lora", serif;
  background-color: rgb(196, 221, 245);
  border: 1px solid #232C57;
  border-radius: 5px;
  padding: 5px;
  font-size: 14px;
}
.contact__label {
  display: block;
  margin-top: 10px;
  font-family: "Lora", serif;
}
.contact__button {
  margin: 10px 0;
  position: absolute;
  bottom: 0px;
  right: 0;
  background-color: rgb(196, 221, 245);
  padding: 5px 30px;
  color: black;
  margin-top: 40px;
  font-family: "Lora", serif;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 1.7;
  font-weight: 600;
  box-shadow: 1px 1px 1px 1.5px rgb(227, 222, 222);
  border-radius: 5px;
  transition-property: transform;
  transition-duration: 0.3s;
  border: 1px solid #232C57;
}
.contact__button:hover, .contact__button:focus {
  transform: scale(1.1);
  background-color: #232C57;
  color: white;
}
.contact__button:active {
  transform: scale(1);
}
.contact__writer {
  max-width: 300px;
}
.contact__instagram {
  color: black;
  text-decoration: none;
  background-image: url(/images/instagram-ikona.png);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: left;
  padding-left: 20px;
}
@media (min-width: 650px) {
  .contact {
    flex-direction: row;
    justify-content: space-around;
  }
}
@media (min-width: 1150px) {
  .contact {
    min-width: 600px;
  }
}

.contact-tips {
  background-color: #a74561;
  font-family: "Lora", serif;
  color: white;
  margin: 20px 20px 10px 20px;
  padding: 20px;
  max-width: 780px;
  border-radius: 5px;
}
.contact-tips__header {
  border-bottom: 1px solid white;
  padding-bottom: 5px;
}
.contact-tips__link {
  color: black;
}
@media (min-width: 1000px) {
  .contact-tips {
    max-width: 300px;
  }
}
@media (min-width: 1150px) {
  .contact-tips {
    min-width: 400px;
  }
}

.calendar {
  margin: 20px;
  opacity: 90%;
  border-radius: 5px;
  color: black;
  font-family: "Lora", serif;
}
@media (min-width: 1000px) {
  .calendar {
    margin: 30px 100px;
  }
}
.calendar__header {
  background-color: #F9F9F9;
  opacity: 90%;
  max-width: 300px;
  padding: 10px;
  border-radius: 5px;
}
.calendar__data {
  max-width: 350px;
  max-height: 500px;
  border-radius: 5px;
}
@media (min-width: 550px) {
  .calendar__data {
    max-width: 500px;
    max-height: 700px;
  }
}
@media (min-width: 750px) {
  .calendar__data {
    max-width: 700px;
    max-height: 800px;
  }
}
@media (min-width: 1000px) {
  .calendar__data {
    max-width: 800px;
    max-height: 1000px;
  }
}

.book-abstract {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 40px;
}
@media (min-width: 901px) {
  .book-abstract {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
  }
}
@media (min-width: 901px) {
  .book-abstract {
    justify-content: center;
  }
}
.book-abstract__image {
  width: 280px;
  border: 0.5px solid rgb(147, 138, 138);
  box-shadow: 2px 3px 3px 2px rgb(218, 217, 217);
  border-radius: 5px 0 0 5px;
}
@media (min-width: 600px) {
  .book-abstract__image {
    width: 400px;
  }
}
@media (min-width: 901px) {
  .book-abstract__image {
    margin-left: 20px;
  }
}
.book-abstract__box {
  background-color: #F9F9F9;
  margin: 10px 20px;
  padding: 10px 20px;
  opacity: 90%;
  border-radius: 5px;
  font-family: "Lora", serif;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}
@media (min-width: 901px) {
  .book-abstract__box {
    margin-top: 0;
    max-width: 500px;
  }
}
@media (min-width: 1150px) {
  .book-abstract__box {
    max-width: 700px;
  }
}
.book-abstract__name1 {
  color: #a74561;
}
.book-abstract__name2 {
  color: #232C57;
}
.book-abstract__price {
  background-color: #F9F9F9;
  padding: 10px 20px;
  font-size: 16px;
  font-family: "Lora", serif;
  font-weight: bold;
  position: absolute;
  bottom: 0px;
  right: 40px;
}

.order {
  background-color: #F9F9F9;
  margin: 10px 20px 20px 20px;
  padding: 10px 20px 20px 20px;
  font-family: "Lora", serif;
  font-size: 14px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  /*
      &__second-address {
          color: rgb(52, 52, 135);
          border-bottom: 1px solid rgb(52, 52, 135);

          &__active {
             color: gray ;
             border: gray;
          }

      }

      &__second-address:active {
          &__active {
              display:block;
          }
      }

      */
}
@media (min-width: 901px) {
  .order {
    max-width: 800px;
  }
}
@media (min-width: 1150px) {
  .order {
    max-width: 1130px;
  }
}
.order__instruction {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.order__header {
  border-bottom: 1px solid black;
  margin-top: 30px;
}
.order__header-main {
  border-bottom: 1px solid black;
  text-align: center;
  margin-top: 40px;
}
.order__form {
  max-width: 400px;
  position: relative;
  padding-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1150px) {
  .order__form {
    margin: 0;
    max-width: 1000px;
  }
}
@media (min-width: 1150px) {
  .order__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
  }
}
.order__input {
  width: 100%;
  font-family: "Lora", serif;
  background-color: rgb(196, 221, 245);
  border: 1px solid #232C57;
  padding: 5px;
  border-radius: 5px;
}
.order__label {
  display: block;
  margin-top: 10px;
  font-family: "Lora", serif;
}
.order__label-radio {
  margin-left: 50px;
}
@media (min-width: 1150px) {
  .order__first-address {
    max-width: 600px;
    margin-left: 60px;
  }
}
.order__second-address {
  margin-top: 20px;
}
@media (min-width: 1150px) {
  .order__second-address {
    margin-left: 100px;
    margin-top: 0;
    max-width: 600px;
  }
  .order__second-address p {
    margin-bottom: 40px;
  }
}
.order__second-address-info1 {
  font-size: 16px;
  font-weight: bold;
}
.order__checked-box {
  margin-top: 20px;
}
.order__checked-box-link {
  color: black;
}
.order__second-address {
  color: gray;
}
.order__second-address input {
  background-color: rgb(245, 245, 245);
}
.order__choice {
  display: flex;
  align-items: first baseline;
  justify-content: space-between;
}
.order__price-info {
  margin-left: 10px;
}
.order__number-choice {
  display: flex;
  align-items: first baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}
.order__note {
  margin-top: 20px;
}
.order__button {
  margin: 10px 0;
  position: absolute;
  bottom: 0px;
  right: 0;
  background-color: rgb(196, 221, 245);
  padding: 5px 30px;
  color: black;
  margin-top: 40px;
  font-family: "Lora", serif;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 1.7;
  font-weight: 600;
  box-shadow: 1px 1px 1px 1.5px rgb(227, 222, 222);
  border-radius: 5px;
  transition-property: transform;
  transition-duration: 0.3s;
  border: 1px solid #232C57;
}
.order__button:hover {
  transform: scale(1.1);
  background-color: #232C57;
  color: white;
}
.order__button:active {
  transform: scale(1);
}
.order__grey-field {
  color: gray;
  font-weight: 300;
  font-size: 14px;
}
.order__final-info {
  text-align: center;
}

.hit-info {
  border: 1px solid black;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #520620;
  padding: 1px 20px;
  font-family: "Lora", serif;
  line-height: 1.5;
  color: white;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}
.hit-info__link {
  color: rgb(243, 199, 199);
}

.partial-mail {
  font-family: "Lora", serif;
  line-height: 1.5;
  color: white;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}/*# sourceMappingURL=style.css.map */