@import '../webfonts/Lora/style.css';
@import '../webfonts/Libre_Baskerville/style.css';
@import '../webfonts/fontawesome-free-6.7.2-web/css/all.css';
html {
  font-size: 62.5%;
}

body {
  font-family: "Lora-Regular";
  font-size: 1.5rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 10px;
  font-family: "LibreBaskerville-Regular";
  color: #2f4858;
}

h1,
.h1 {
  font-size: 3.5rem;
}

h2,
.h2 {
  font-size: 2.5rem;
}

h3,
.h3 {
  font-size: 2.5rem;
}

h4,
.h4 {
  font-size: 2rem;
}

h5,
.h5 {
  font-size: 2rem;
}

.section-title h2 {
  font-size: 3rem;
}

.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6 {
  margin-top: 40px;
}

p {
  margin-bottom: 15px;
  font-size: 1.8rem;
  color: #3e3e3e;
  line-height: 35px;
}

a {
  color: #c80000;
}

.text-center {
  text-align: center !important;
}

figcaption {
  font-style: italic;
  color: grey;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 13px;
  border: 0;
  text-decoration: none;
  font-size: 1.8rem;
  border-radius: 3px;
}
.btn--primary {
  color: white;
  background-color: #ad7a7a;
}
.btn--primary:hover {
  background-color: #8f4d63;
}
.btn--sm {
  padding: 10px;
  font-size: 1.6rem;
}

.container {
  width: 100%;
  margin: auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    max-width: 990px;
  }
}
@media screen and (min-width: 1280px) {
  .container {
    max-width: 1240px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.row {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  .row {
    flex-direction: row;
  }
}

.row-grid {
  display: grid;
  grid-template-rows: auto;
  column-gap: 60px;
  row-gap: 30px;
}
.row-grid--three-columns {
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .row-grid--three-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .row-grid--three-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

.col-1 {
  width: 10%;
}

@media screen and (max-width: 1280px) {
  .col-md-1 {
    width: 10%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-1 {
    width: 10%;
  }
}

.col-2 {
  width: 20%;
}

@media screen and (max-width: 1280px) {
  .col-md-2 {
    width: 20%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-2 {
    width: 20%;
  }
}

.col-3 {
  width: 30%;
}

@media screen and (max-width: 1280px) {
  .col-md-3 {
    width: 30%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-3 {
    width: 30%;
  }
}

.col-4 {
  width: 40%;
}

@media screen and (max-width: 1280px) {
  .col-md-4 {
    width: 40%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-4 {
    width: 40%;
  }
}

.col-5 {
  width: 50%;
}

@media screen and (max-width: 1280px) {
  .col-md-5 {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-5 {
    width: 50%;
  }
}

.col-6 {
  width: 60%;
}

@media screen and (max-width: 1280px) {
  .col-md-6 {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-6 {
    width: 60%;
  }
}

.col-7 {
  width: 70%;
}

@media screen and (max-width: 1280px) {
  .col-md-7 {
    width: 70%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-7 {
    width: 70%;
  }
}

.col-8 {
  width: 80%;
}

@media screen and (max-width: 1280px) {
  .col-md-8 {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-8 {
    width: 80%;
  }
}

.col-9 {
  width: 90%;
}

@media screen and (max-width: 1280px) {
  .col-md-9 {
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-9 {
    width: 90%;
  }
}

.col-10 {
  width: 100%;
}

@media screen and (max-width: 1280px) {
  .col-md-10 {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .col-sm-10 {
    width: 100%;
  }
}

#page-header {
  padding: 50px 0;
  background-color: #F5EBE6;
}

.page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-header__logo {
  display: block;
  margin-bottom: 50px;
}
.page-header__navigation {
  width: 100%;
  background-color: white;
}

.page-navigation {
  width: fit-content;
  margin: auto;
}
.page-navigation__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-left: 0;
  background-color: white;
}
.page-navigation__item {
  position: relative;
  display: inline-block;
  padding: 20px 15px;
  border-bottom: 2px solid transparent;
}
.page-navigation__item:hover .page-navigation__submenu {
  display: block;
}
.page-navigation__item a {
  font-size: 1.8rem;
  color: #696969;
  text-decoration: none;
  white-space: nowrap;
}
.page-navigation__item a:hover {
  color: #bdb699;
  border-color: #bdb699;
}

main > section,
footer > section {
  padding: 50px 0;
}
main > section.even,
footer > section.even {
  background-color: white;
}
main > section.odd,
footer > section.odd {
  background-color: #F5EBE6;
}
@media screen and (min-width: 1280px) {
  main > section,
  footer > section {
    padding: 100px 0;
  }
}

.book-banner {
  gap: 50px;
  width: 100%;
}
.book-banner .row {
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1280px) {
  .book-banner .row {
    flex-direction: row;
    gap: 100px;
  }
}
.book-banner__text {
  align-self: center;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .book-banner__text {
    text-align: right;
  }
}
.book-banner__text-heading {
  font-family: "LibreBaskerville-Italic";
  font-size: 5.2rem;
}
.book-banner__text p {
  font-size: 2rem;
}
.section-title {
  margin-bottom: 50px;
  text-align: center;
}
.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h5,
.section-title h6 {
  margin-bottom: 0;
}
.section-title--left {
  text-align: left;
}
.section-title__subtitle {
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #c5754d;
}
.section-title .separator {
  margin-top: 20px;
}

.separator {
  display: inline-block;
  text-align: center;
  letter-spacing: 4px;
  line-height: 0;
  color: #c5754d;
}

.panel {
  padding: 20px;
  box-shadow: rgba(1, 6, 33, 0.06) 2px 0px 15px 5px;
  background-color: white;
}
.panel__header {
  margin-bottom: 10px;
}
.panel__header__subtitle {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 1.7rem;
  color: #747474;
}
.panel p {
  font-size: 1.6rem;
  line-height: 30px;
}
.panel--white {
  background-color: white;
}

.section-about-the-author .row {
  gap: 100px;
}
.section-about-the-author__text {
  align-self: center;
}

details {
  width: 100%;
  border-radius: 10px;
}
details[open] summary {
  background-color: #cf9999;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
details summary {
  padding: 15px;
  font-size: 2rem;
  color: white;
  background-color: #ad7a7a;
  cursor: pointer;
  border-radius: 10px;
}
details .details__body {
  padding: 20px;
  background-color: white;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
details .details__body p {
  font-size: 1.6rem;
  line-height: 30px;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 2.5rem;
  color: white;
  background-color: #ad7a7a;
  box-shadow: 3px 3px #724023;
}

.breadcrumbs {
  padding: 20px 0;
  background-color: #F5EBE6;
}

.HomePage .section-about-the-author h1 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
@media screen and (min-width: 1280px) {
  .HomePage .section-tales-list .accordion {
    margin-top: 100px;
  }
}
.HomePage .section-what-tale-teach .row-grid {
  row-gap: 15px;
}
.HomePage .section-testimonials .row-grid {
  row-gap: 15px;
}
.HomePage .section-social-media .social-media-list {
  margin: auto;
}

.PoemsHolderPage .section-poems .row-grid {
  row-gap: 15px;
}

.BooksHolderPage .book-category-item__text-heading {
  font-size: 4rem;
}

.book-list__item {
  margin-bottom: 100px;
}
.book-list__item .row {
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1280px) {
  .book-list__item .row {
    flex-direction: row;
    gap: 100px;
  }
}

.book-item__text {
  align-self: center;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .book-item__text {
    text-align: right;
  }
}
.book-item__text-heading {
  font-family: "LibreBaskerville-Italic";
  font-size: 4rem;
}

.book-category-list .row {
  gap: 100px;
}
.book-category__item {
  margin-bottom: 100px;
}
.book-category__item .row {
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1280px) {
  .book-category__item .row {
    flex-direction: row;
    gap: 100px;
  }
}

.book-category-item__text {
  align-self: center;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .book-category-item__text {
    text-align: right;
  }
}
.book-category-item__text-heading {
  font-family: "LibreBaskerville-Italic";
  font-size: 5.2rem;
}

.BookPage .book-details__cover {
  display: none;
}
@media screen and (min-width: 1280px) {
  .BookPage .book-details__cover {
    display: flex;
    justify-content: center;
  }
}
.BookPage .book-details__item {
  display: flex;
  gap: 20px;
}
.BookPage .section-buy-book__content {
  text-align: center;
}
.BookPage .section-buy-book__content .buttons-wrapper {
  margin-top: 60px;
}
.BookPage .book-stories-list__cover {
  display: none;
}
@media screen and (min-width: 1280px) {
  .BookPage .book-stories-list__cover {
    display: flex;
    justify-content: center;
  }
}
.BookPage .book-stories-list__list {
  flex: 1;
}
.BookPage .book-stories-list__list details {
  margin-bottom: 10px;
}

.accordion .row {
  gap: 50px;
}
@media screen and (min-width: 1280px) {
  .accordion .row {
    gap: 100px;
  }
}
.accordion__panels, .accordion__items {
  flex: 1;
}
.accordion__panel {
  display: none;
}
.accordion__panel.open {
  display: block;
}
.accordion__item {
  padding: 15px;
  color: white;
  margin-bottom: 15px;
  font-size: 1.8rem;
  background-color: #ad7a7a;
  border-radius: 11px;
  box-shadow: 2px 2px 0px 1px #724023;
  cursor: pointer;
}
.accordion__item.active {
  background-color: #cf9999;
}

.social-media-list {
  width: fit-content;
}
.social-media-list__item {
  display: inline-block;
  background-color: #9b4b66;
  padding: 15px 20px;
  line-height: 0;
}

#pageFooter .footer-logo {
  text-transform: uppercase;
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 10px;
}
#pageFooter .footer-logo .name {
  display: inline-block;
  text-align: center;
  font-size: 2.5rem;
  padding-bottom: 2px;
  margin-bottom: 2px;
  border-bottom: 1px solid #a5a5a5;
  text-transform: none;
}
#pageFooter .section-contact p {
  text-align: center;
}
#pageFooter .footer-links {
  width: fit-content;
  margin: auto;
  margin-top: 80px;
  text-align: center;
}
#pageFooter .footer-links a {
  color: #8f4d63;
}

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