ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

div {
  box-sizing: border-box;
}

@font-face {
  font-family: "MoonFlower";
  src: url("/assets/fonts/moonflower/Moon_Flower.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "MoonFlower";
  src: url("/assets/fonts/moonflower/Moon_Flower_Bold.ttf") format("truetype");
  font-weight: 600;
}
body {
  margin: 0;
  padding: 6.77vw 0 0 0;
  background: #fff;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
}
body.min {
  padding: 3.65vw 0 0 0;
}
body.modal {
  overflow: hidden;
}

.main-container {
  position: relative;
  width: 100vw;
  margin-bottom: 5vw;
}

.container {
  width: 90vw;
  max-width: 1710px;
  position: relative;
  display: block;
  margin: 0 auto;
}

section {
  position: relative;
}

.btn {
  display: inline-block;
  background: #F42525;
  color: white;
  cursor: pointer;
  border: none;
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  padding: 1.1vw 2.9vw;
  font-size: 1vw;
}
.btn:hover {
  background: #db0b0b;
}
.btn.green {
  background: #A1BE2C;
}
.btn.green:hover {
  background: #7e9522;
}

.flex {
  display: flex;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.wrap > * {
  flex-basis: 100%;
}
.flex.wrap .left-side {
  flex-basis: 33.3%;
}
.flex.wrap .right-side {
  flex-basis: 66.7%;
}
.flex.center {
  margin-left: auto;
  margin-right: auto;
  width: 80vw;
}

h2:not(.regular) {
  text-transform: uppercase;
  text-align: center;
  font-size: 3.125vw;
  font-family: "MoonFlower", serif;
}

.price {
  color: #4C4788;
  font-weight: 600;
}

.purple {
  color: #4C4788;
}

.mt-0 {
  margin-top: 0;
}

.space-between {
  justify-content: space-between;
}

.back-btn:before {
  content: "";
  display: inline-block;
  margin-right: 0.5vw;
  width: 1vw;
  height: 1vw;
  background-image: url("/assets/images/arrow-left-solid.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

#overlay {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, 0.65);
  z-index: 99;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
}
#overlay.opened {
  display: block;
}
#overlay .modal {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 3vw;
  background: white;
  z-index: 1;
  max-height: 90vh;
}
#overlay .modal .modal-text {
  max-height: 65vh;
  overflow-x: hidden;
  overflow-y: auto;
}
#overlay .modal .button-wrapper {
  display: flex;
  justify-content: flex-end;
}
#overlay .modal .button-wrapper .btn {
  margin-top: 3vh;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 9;
  background: white;
  height: 6.77vw;
}
header .main-menu {
  display: flex;
  height: 100%;
  align-items: center;
}
header .main-menu nav {
  display: flex;
}
header .main-menu nav > span,
header .main-menu nav > a {
  color: #5A6675;
  margin-right: 75px;
  font-size: 1.25vw;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
header .main-menu nav > span:visited, header .main-menu nav > span:active,
header .main-menu nav > a:visited,
header .main-menu nav > a:active {
  color: #5A6675;
}
header .main-menu nav > span:hover,
header .main-menu nav > a:hover {
  text-decoration: underline;
}
header.min {
  height: 3.65vw;
  box-shadow: 0 1px 5px #aaa;
}
header.min .main-menu nav > a {
  font-size: 1vw;
}
header.min .main-menu .btn {
  font-size: 0.75vw;
  padding: 0.8vw 2.6vw;
}

.first-screen {
  padding: 30px 0;
  background-color: #F3ECDB;
  background-image: url("/assets/images/fs_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.first-screen .left-side h1 {
  font-family: "MoonFlower", serif;
  color: #F42525;
  font-size: 5.2vw;
}
.first-screen .left-side .text {
  font-size: 1.6vw;
  margin-bottom: 3.5vw;
}
.first-screen .left-side .info {
  font-size: 1.875vw;
}
.first-screen .left-side .info li {
  margin-bottom: 2vw;
}
.first-screen .left-side .info li:before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  height: 1.875vw;
  width: 1.875vw;
  background-size: contain;
  background-repeat: no-repeat;
}
.first-screen .left-side .info li:first-of-type:before {
  background-image: url("/assets/images/book_ic.svg");
}
.first-screen .left-side .info li:last-of-type:before {
  background-image: url("/assets/images/tab_ic.svg");
}
.first-screen .right-side {
  background-image: url("/assets/images/openBook@2x.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.first-screen .bottom-button {
  flex-basis: 100%;
  padding: 30px;
  text-align: center;
}
.first-screen .bottom-button .btn {
  line-height: 3.875vw;
  font-size: 1.875vw;
  position: relative;
  margin: 0 auto;
  width: 30vw;
  height: 6vw;
}

.the-book .left-side {
  background-image: url("/assets/images/cover@2x.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 4vw;
  flex-basis: calc(33.3% - 4vw) !important;
}
.the-book .right-side {
  display: flex;
  flex-direction: column;
}
.the-book .right-side h3 {
  color: #F42525;
  font-size: 1.6vw;
}
.the-book .right-side p {
  font-size: 0.9vw;
}
.the-book .right-side .bottom-price {
  margin-top: 2vw;
  padding-right: 1vw;
  align-items: flex-end;
}
.the-book .right-side .bottom-price .big-price {
  font-size: 2vw;
}
.the-book .right-side .bottom-price .btn {
  margin-right: 20px;
}

.opinions {
  margin: 3.5vw 0;
  overflow: hidden;
}
.opinions .opinions-wrapper {
  background-color: #F3ECDB;
  position: relative;
  z-index: 0;
  height: 24.1vw;
}
.opinions .opinions-wrapper:before, .opinions .opinions-wrapper:after {
  background-image: url("/assets/images/wiz-one.svg");
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  width: 32.94vw;
  height: 21.57vw;
}
.opinions .opinions-wrapper:before {
  left: -16.47vw;
  background-position: center right;
}
.opinions .opinions-wrapper:after {
  right: -16.47vw;
  background-position: center left;
}
.opinions .opinions-wrapper .content {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  height: auto;
  width: 60vw;
  z-index: 3;
  padding: 0 4vw;
}
.opinions .opinions-wrapper .content .prev,
.opinions .opinions-wrapper .content .next {
  width: 2vw;
  height: 2vw;
  position: absolute;
  top: 0;
  cursor: pointer;
  fill: #4C4788;
  background-image: url("/assets/images/chev.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.opinions .opinions-wrapper .content .prev {
  left: 0;
  transform: rotate(90deg);
}
.opinions .opinions-wrapper .content .next {
  right: 0;
  transform: rotate(-90deg);
}
.opinions .opinions-wrapper .content .text {
  font-size: 1.25vw;
  font-style: italic;
  text-align: justify;
}
.opinions .opinions-wrapper .content .text .name {
  text-align: center;
  font-style: normal;
  font-weight: 600;
  font-size: 1.56vw;
  margin-top: 1.5vw;
}

.about .about-wrapper {
  background-color: #4C4788;
  position: relative;
}
.about .about-wrapper .content {
  display: flex;
  padding: 2.6vw 0;
}
.about .about-wrapper .content > div {
  flex-basis: 50%;
  display: flex;
  justify-content: flex-end;
}
.about .about-wrapper .content > div:first-of-type {
  border-right: 1px solid white;
  justify-content: flex-start;
}
.about .about-wrapper .content > div .ava {
  flex-basis: 10.4vw;
  min-width: 10.4vw;
  width: 10.4vw;
  height: 10.4vw;
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-right: 1.6vw;
}
.about .about-wrapper .content > div .ava.justyna {
  background-image: url("/assets/images/j@2x.png");
}
.about .about-wrapper .content > div .ava.alicja {
  background-image: url("/assets/images/a@2x.png");
}
.about .about-wrapper .content > div .cv {
  flex-basis: 29vw;
}
.about .about-wrapper .content > div .cv .title {
  color: #FFE731;
  font-family: "MoonFlower", serif;
  font-weight: 600;
  margin-bottom: 2vw;
  font-size: 1.56vw;
}
.about .about-wrapper .content > div .cv .text {
  color: white;
  font-size: 0.75vw;
}
.about .about-wrapper .content > div .cv a,
.about .about-wrapper .content > div .cv a:visited,
.about .about-wrapper .content > div .cv a:active {
  color: #FFE731;
  text-decoration: underline;
}

.footer .logos {
  margin: 2vw 0;
}
.footer .footer-text {
  font-size: 1vw;
}

.samples h1 {
  width: 100%;
  text-align: center;
}
.samples .records {
  flex-basis: 40vw;
}
.samples .records li {
  background: #4C4788;
  margin: 1vw 0 0 1vw;
  padding: 10px 14px;
  border-radius: 30px;
  color: white;
  display: flex;
  justify-content: flex-start;
}
.samples .records li.active .icon.play:before {
  background-image: url("/assets/images/pause-circle-regular.svg");
}
.samples .get-all {
  flex-basis: 40vw;
  margin-left: 5vw;
}

.icon {
  cursor: pointer;
}
.icon:before {
  content: "";
  display: inline-block;
  width: 1vw;
  height: 1vw;
  background-size: contain;
  background-repeat: no-repeat;
}
.icon.play {
  margin-right: 10px;
}
.icon.play:before {
  background-image: url("/assets/images/play-circle-regular.svg");
}
.icon.download {
  margin-left: auto;
  margin-right: 18px;
  color: white;
}
.icon.download:active, .icon.download:visited {
  color: white;
}
.icon.download:before {
  margin-right: 5px;
  background-image: url("/assets/images/arrow-circle-down-solid.svg");
}
.text-center {
  text-align: center;
}
.two-col {
  > * {
    flex-basis: 50%;
  }
}
/*# sourceMappingURL=styles.css.map */
