/**
 *
 * Color
 *
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
/**
 *
 * Button
 *
 */
.button {
  border: 0;
  outline: 0;
  padding: 7px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  color: #fff;
  transition: all 225ms;
  /**
   *
   * Responsive
   *
   */
}
.button:hover {
  cursor: pointer;
}
.button--primary {
  border-color: #5f6d70;
  background-color: #548996;
}
.button--primary:hover {
  background-color: #426d78;
}
.button--white {
  border-color: #e4e2de;
  background-color: #fff;
  color: #548996;
}
.button--white:hover {
  border-color: #cac8c4;
}
.button--brown {
  background-color: #966c6d;
  color: #fff;
}
.button--brown:hover {
  background-color: #815c5c;
}
.button--red {
  background-color: #e20613;
  color: #fff;
}
.button--red:hover {
  background-color: #ca0411;
}
.button--rounded {
  border-radius: 999px !important;
}
.button--square-medium {
  border-radius: 8px !important;
}
.button--xsmall {
  padding: 3px 13px;
  font-size: 11px;
  line-height: 21px;
}
.button--width-small {
  min-width: 150px;
  height: 42px;
}
.button--width-medium {
  min-width: 200px;
  height: 48px;
  font-size: 13px;
  line-height: 19px;
}
.button--left-right-effect {
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.button--left-right-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  bottom: 0;
  width: 4px;
  height: 13px;
  margin: auto;
  border-radius: 0 2px 2px 0;
  background-color: #e0e8f3;
}
.button--left-right-effect::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 4px;
  height: 13px;
  margin: auto;
  border-radius: 2px 0 0 2px;
  background-color: #e0e8f3;
}
.button__icon {
  min-width: 25px;
  max-width: 25px;
  margin-right: 9px;
}
.button__icon-img {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
@media (max-width: 992px) {
  .button {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .button {
    font-size: 14px;
    line-height: 24px;
  }
}

/**
 *
 * Input
 *
 */
.input {
  border: 0;
  outline: 0;
  width: 100%;
  height: 45px;
  padding: 15px;
  border: 1px solid rgba(191, 191, 191, 0.45);
  border-radius: 4px;
  background-color: #fff;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #272425;
  transition: all 225ms;
  /**
   *
   * Responsive
   *
   */
}
.input:focus {
  border-color: rgba(191, 191, 191, 0.75);
}
.input::-webkit-inner-spin-button, .input::-webkit-outer-spin-button {
  display: none;
}
.input--text-small {
  font-size: 13px;
  line-height: 23px;
}
.input--placeholder-uppercase::placeholder {
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .input {
    height: 40px;
    padding: 10px;
    font-size: 12px;
    line-height: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .input {
    height: 40px;
    padding: 10px;
    font-size: 12px;
    line-height: 22px;
  }
}

/**
 *
 * Textarea
 *
 */
.textarea {
  border: 0;
  outline: 0;
  resize: none;
  width: 100%;
  height: 350px;
  padding: 15px;
  border: 1px solid rgba(191, 191, 191, 0.45);
  border-radius: 4px;
  background-color: #fff;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #272425;
  transition: all 225ms;
  /**
   *
   * Responsive
   *
   */
}
.textarea:focus {
  border-color: rgba(191, 191, 191, 0.75);
}
.textarea--text-small {
  font-size: 13px;
  line-height: 23px;
}
.textarea--medium-height {
  height: 225px;
}
.textarea--placeholder-uppercase::placeholder {
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .textarea {
    height: 250px;
    padding: 10px;
    font-size: 12px;
    line-height: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .textarea {
    height: 250px;
    padding: 10px;
    font-size: 12px;
    line-height: 22px;
  }
}

/**
 *
 * Checkbox
 *
 */
.checkbox {
  position: relative;
  appearance: none;
  -webkit-apearance: none;
  border: 0;
  outline: 0;
  min-width: 20px;
  max-width: 20px;
  height: 22px;
  margin: 0;
  padding: 0;
  background-image: url("../assets/images/circle-checkbox.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 225ms;
}
.checkbox:checked {
  height: 21px;
  background-image: url("../assets/images/circle-checkbox-active.png");
}
.checkbox-container {
  display: flex;
  align-items: center;
}
.checkbox-container__checkbox {
  margin-right: 7px;
}
.checkbox-container__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #272425;
  transition: all 225ms;
  /**
  *
  * Responsive
  *
  */
}
@media (max-width: 992px) {
  .checkbox-container__text {
    font-size: 12px;
    line-height: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .checkbox-container__text {
    font-size: 12px;
    line-height: 22px;
  }
}

/**
 *
 * Radio
 *
 */
.radio {
  position: relative;
  appearance: none;
  -webkit-apearance: none;
  border: 0;
  outline: 0;
  min-width: 20px;
  max-width: 20px;
  height: 22px;
  margin: 0;
  padding: 0;
  background-image: url("../assets/images/circle-checkbox.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 225ms;
}
.radio:checked {
  height: 21px;
  background-image: url("../assets/images/circle-checkbox-active.png");
}
.radio-container {
  display: flex;
  align-items: center;
}
.radio-container__radio {
  margin-right: 7px;
}
.radio-container__radio:checked ~ .radio-container__text {
  font-weight: 700;
}
.radio-container__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #272425;
  transition: all 225ms;
  /**
  *
  * Responsive
  *
  */
}
@media (max-width: 992px) {
  .radio-container__text {
    font-size: 12px;
    line-height: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .radio-container__text {
    font-size: 12px;
    line-height: 22px;
  }
}

/**
 *
 * Form
 *
 */
.form {
  display: flex;
  flex-direction: column;
}
.form__group:not(:first-child) {
  margin-top: 35px;
}
.form__label {
  margin-bottom: 5px;
  font-family: "Raleway";
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  display: block;
  /**
   *
   * Responsive
   *
   */
}
@media (max-width: 992px) {
  .form__label {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .form__label {
    font-size: 14px;
    line-height: 24px;
  }
}
.form__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #272425;
  /**
   *
   * Responsive
   *
   */
}
@media (max-width: 992px) {
  .form__text {
    font-size: 12px;
    line-height: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .form__text {
    font-size: 12px;
    line-height: 22px;
  }
}
.form__text-editor {
  display: flex;
  flex-direction: column;
}
.form__text-editor-action {
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-end;
}
.form__text-editor-action-item {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: 1px solid rgba(191, 191, 191, 0.45);
  background-color: #fff;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  color: #272425;
  transition: all 225ms;
}
.form__text-editor-action-item:hover {
  cursor: pointer;
  border-color: rgba(191, 191, 191, 0.75);
}
.form__text-editor-action-item:not(:first-child) {
  margin-left: 5px;
}

/**
 *
 * Link
 *
 */
.link {
  transition: all 225ms;
}
.link--hover-underline:hover {
  text-decoration: underline;
}

@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/montserrat-regular.ttf");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/montserrat-medium.ttf");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/montserrat-semibold.ttf");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/montserrat-bold.ttf");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 800;
  font-display: swap;
  src: url("../assets/fonts/montserrat-extrabold.ttf");
}
@font-face {
  font-family: "Raleway";
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/raleway-regular.ttf");
}
@font-face {
  font-family: "Raleway";
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/raleway-medium.ttf");
}
@font-face {
  font-family: "Raleway";
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/raleway-bold.ttf");
}
body {
  min-height: 100vh;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat";
}

@media (min-width: 1400px) {
  .container {
    max-width: 1259px;
  }
}
.main {
  flex: 1;
}

.header {
  height: 90px;
  background-color: #191817;
  display: flex;
  align-items: center;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__menu {
  display: flex;
  align-items: center;
}
.header__menu-item {
  display: flex;
  align-items: center;
}
.header__menu-item:not(:first-child) {
  margin-left: 65px;
}
.header__menu-item.is-active .header__menu-link::before {
  transform: scaleX(100%);
}
.header__menu-link {
  position: relative;
  padding: 5px 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 23px;
  color: #fff;
  text-transform: uppercase;
}
.header__menu-link:hover::before {
  transform: scaleX(100%);
  color: #fff;
}
.header__menu-link:hover {
  transform: scaleX(100%);
  color: #fff;
}
.header__menu-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background-color: #fff;
  transform: scaleX(0);
  transition: all 425ms;
}
.header__mobile-menu-open {
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #fff;
  transition: all 225ms;
}
.header__mobile-menu-open:hover {
  cursor: pointer;
  border-color: rgba(255, 255, 255, 0.25);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
}
.mobile-menu.is-active {
  visibility: visible;
}
.mobile-menu.is-active .mobile-menu__inner {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu.is-active .mobile-menu__black-screen {
  opacity: 1;
  visibility: visible;
}
.mobile-menu__inner {
  width: 70%;
  height: 100%;
  background-color: #1d1d1b;
  display: flex;
  flex-direction: column;
  z-index: 15;
  transform: translateX(-100%);
  visibility: hidden;
  transition: all 500ms;
}
.mobile-menu__header {
  height: 90px;
  padding: 2rem;
  background-color: #30b3a9;
  display: flex;
  align-items: center;
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
}
.mobile-menu__list-item {
  width: 100%;
  display: flex;
  align-items: center;
}
.mobile-menu__list-link {
  width: 100%;
  padding: 10px 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  color: #fff;
  transition: all 225ms;
}
.mobile-menu__list-link:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.035);
}
.mobile-menu__black-screen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 350ms;
}

.book-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  background-color: rgba(69, 60, 88, 0.8);
  display: flex;
  justify-content: center;
  opacity: 0;
  overflow-y: auto;
  overflow-x: hidden;
  visibility: hidden;
  transition: all 350ms;
  z-index: 9999;
}
.book-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.book-modal.is-active .book-modal__inner {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.book-modal__inner {
  width: 1210px;
  height: max-content;
  margin: auto;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-7px);
  visibility: hidden;
  transition: all 500ms;
}
.book-modal__body {
  position: relative;
  width: 100%;
  min-height: 750px;
  padding: 115px 55px;
  background-color: rgba(0, 0, 0, 0.65);
}
.book-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 18px;
  font-weight: 400;
  color: #807d86;
  text-transform: uppercase;
  transition: all 225ms;
}
.book-modal__close:hover {
  cursor: pointer;
  color: rgb(235, 50, 0);
}
.book-modal__img {
  width: 100%;
}
.book-modal__text {
  font-family: "Raleway";
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
}
.book-modal__text:not(:first-child) {
  margin-top: 10px;
}
.book-modal__slider {
  display: flex;
  align-items: center;
}
.book-modal__slider-item {
  opacity: 0;
  display: none;
  transition: all 225ms;
}
.book-modal__slider-item.is-show {
  opacity: 1;
}
.book-modal__slider-item.is-active {
  display: block;
}
.book-modal__footer {
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.book-modal__navigation {
  display: flex;
  align-items: center;
}
.book-modal__navigation-item {
  font-size: 48px;
  color: #3e3650;
  transition: all 225ms;
}
.book-modal__navigation-item:hover {
  cursor: pointer;
  color: #fff;
}
.book-modal__navigation-item:not(:first-child) {
  margin-left: 70px;
}

.hero--home {
  min-height: calc(100vh - 90px);
}
.hero__slider {
  position: relative;
  height: 100%;
  display: block;
}
.hero__slider-item {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 90px);
  background-color: rgba(0, 0, 0, 0.1);
  background-image: var(--bg-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  z-index: 15;
}
.hero__slider-inner {
  width: 80%;
  padding-bottom: 275px;
}
.hero__slider-center-img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: max-content;
  margin: auto;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.hero__slider-center-img--one {
  min-width: 1830px;
  max-width: 1830px;
}
.hero__slider-navigation-item {
  position: absolute;
  top: 0;
  bottom: 0;
  height: max-content;
  margin: auto;
  font-size: 60px;
  color: #fff;
  transition: all 325ms;
  z-index: 999;
}
.hero__slider-navigation-item:hover {
  cursor: pointer;
}
.hero__slider-navigation-item.swiper-button-disabled {
  opacity: 0;
}
.hero__slider-navigation-item--prev {
  left: 50px;
}
.hero__slider-navigation-item--prev:hover {
  transform: translateX(-7px);
}
.hero__slider-navigation-item--next {
  right: 50px;
}
.hero__slider-navigation-item--next:hover {
  transform: translateX(7px);
}
.hero__slider-navigation-icon-img {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.hero__slider-item--dark-theme .hero__title {
  color: #372810;
}
.hero__slider-item--dark-theme .hero__text {
  color: #372810;
}
.hero__title {
  margin-bottom: 30px;
  font-family: "Raleway";
  font-size: 46px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}
.hero__text {
  font-family: "Raleway";
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #fff;
}

.info__slider-item {
  min-height: 750px;
  padding: 75px 0;
  background-color: #eee;
}
.info__slider-item--light-yellow-bg {
  background-color: #f9d975;
}
.info__slider-item--dark-blue-bg {
  background-color: #3c6f9d;
}
.info__slider-item--pink-bg {
  background-color: #bd4a7a;
}
.info__icon {
  margin-bottom: 10px;
}
.info__icon-img {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.info__text {
  font-size: 25px;
  font-weight: 400;
  line-height: 35px;
  color: #231f20;
}
.info__author {
  margin-top: 35px;
  margin-left: -48px;
  display: flex;
  align-items: center;
}
.info__author-icon {
  margin-right: 10px;
}
.info__author-icon-img {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.info__author-text {
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  color: #231f20;
}

.form-section {
  padding: 50px 0;
}
.form-section__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #272425;
}

.reviews {
  overflow: hidden;
}
.reviews--story-page .reviews__header {
  height: 530px;
  background-image: url("../assets/images/reviews-bg-image-two.png");
}
.reviews__header {
  width: 100%;
  height: 790px;
  padding-bottom: 132px;
  background-image: url("../assets/images/reviews-bg-image.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.reviews__main {
  padding: 40px 0;
}
.reviews__text {
  font-family: "Raleway";
  font-size: 35px;
  font-weight: 400;
  line-height: 45px;
  color: #fff;
}
.reviews__slider-container {
  position: relative;
  margin: 0 -25px;
}
.reviews__slider-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 25px;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.5), #fff);
  z-index: 15;
}
.reviews__slider-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 25px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5), #fff);
  z-index: 15;
}
.reviews__slider-item {
  padding: 0 25px;
  display: flex;
  flex-direction: column;
}
.reviews__slider-name {
  margin-bottom: 40px;
  font-family: "Raleway";
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #30b3a9;
}
.reviews__slider-text {
  font-family: "Raleway";
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  color: #414141;
}
.reviews__slider-label {
  margin-top: 85px;
  font-family: "Raleway";
  font-size: 11px;
  font-weight: 700;
  line-height: 21px;
  color: #414141;
}
.reviews__slider-pagination {
  margin-top: 25px;
  margin-left: 25px;
}
.reviews__slider-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 auto !important;
  background-color: #afb4b4;
  opacity: 1;
  transition: all 225ms;
}
.reviews__slider-pagination .swiper-pagination-bullet-active {
  background-color: #30b3a9;
}
.reviews__slider-pagination .swiper-pagination-bullet:not(:first-child) {
  margin-left: 4px !important;
}

.brands {
  position: relative;
  height: 110px;
  display: flex;
  align-items: center;
  z-index: 15;
}
.brands::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70px;
  background-image: url("../assets/images/brands-top-effect.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.brands__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.brands__logo {
  filter: grayscale(100%);
  transition: all 225ms;
}
.brands__logo:hover {
  filter: grayscale(0);
}
.brands__logo-img {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.footer {
  padding: 40px 0 55px 0;
  background-color: #1d1d1b;
}
.footer__menu {
  margin-top: -10px;
  margin-left: -30px;
  margin-right: -30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.footer__menu-item {
  margin-top: 10px;
  margin-left: 30px;
  margin-right: 30px;
  display: flex;
  align-items: center;
}
.footer__menu-link {
  font-size: 13px;
  font-weight: 400;
  line-height: 23px;
  color: #fff;
  text-transform: uppercase;
  transition: all 225ms;
}
.footer__menu-link:hover {
  cursor: pointer;
  color: #30b3a9;
}
.footer__text {
  font-size: 13px;
  font-weight: 400;
  line-height: 23px;
  color: #a59f9f;
}
.footer__text--small {
  font-size: 11px;
  line-height: 21px;
}
.footer__line {
  width: 100%;
  height: 2px;
  margin: 20px 0;
  background-color: #a79063;
}
.social-media {
  display: flex;
  align-items: center;
}
.social-media__item {
  min-width: 26px;
  max-width: 26px;
  height: 26px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #fff;
  transition: all 225ms;
}
.social-media__item:hover {
  cursor: pointer;
  background-color: #30b3a9;
}
.social-media__item:not(:first-child) {
  margin-left: 10px;
}

.scroll-to-top {
  display: flex;
  align-items: center;
}
.scroll-to-top:hover {
  cursor: pointer;
}
.scroll-to-top:hover .scroll-to-top__icon {
  transform: translateY(-3px);
}
.scroll-to-top__text {
  font-size: 11px;
  font-weight: 700;
  line-height: 21px;
  color: #fff;
  text-transform: uppercase;
}
.scroll-to-top__icon {
  margin-left: 7px;
  font-size: 14px;
  color: #927f58;
  transition: all 325ms;
}

.story-info {
  padding: 70px 0;
}
.story-info--bg-light-yellow {
  background-color: #f9d975;
}
.story-info--bg-turqouse {
  background-color: #d6f7e8;
}
.story-info--bg-light-turqouse {
  background-color: #d6f0f7;
}
.story-info--with-bottom-image {
  position: relative;
  height: 670px;
  z-index: 15;
}
.story-info--with-bottom-image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 378px;
  background-image: url("../assets/images/story-info-bottom-image.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.story-info--with-bottom-image-two {
  position: relative;
  height: 670px;
  z-index: 15;
}
.story-info--with-bottom-image-two::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 378px;
  background-image: url("../assets/images/story-info-bottom-image-two.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.story-info__inner {
  margin-top: 74px;
}
.story-info__icon {
  margin-bottom: 20px;
}
.story-info__icon-img {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.story-info__title {
  margin: 40px 0 20px 0;
  font-family: "Raleway";
  font-size: 33px;
  font-weight: 400;
  line-height: 42px;
  color: #f7bb04;
  display: block;
}
.story-info__text {
  font-family: "Raleway";
  font-size: 25px;
  font-weight: 400;
  line-height: 35px;
  color: #231f20;
}
.story-info__text:not(:first-child) {
  margin-top: 25px;
}
.story-info__text--small {
  font-size: 16px;
  line-height: 26px;
}
.story-info__text--small:not(:first-child) {
  margin-top: 15px;
}

.contact-page {
  position: relative;
  padding: 75px 0 175px 0;
  background-color: #d6bfbf;
  z-index: 15;
}
.contact-page::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 378px;
  /* background-image: url("../assets/images/contact-page-bottom-image.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; */
  z-index: -1;
}
.contact-page__inner {
  margin-top: 74px;
  margin-bottom: 80px;
}
.contact-page__icon {
  margin-bottom: 20px;
}
.contact-page__icon-img {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.contact-page__text {
  font-family: "Raleway";
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #231f20;
  display: block;
}
.contact-page__text--medium {
  font-size: 14px;
  line-height: 24px;
}
.contact-page__line {
  width: 15px;
  height: 3px;
  background-color: #69c6dd;
}
.contact-page__line--height-small {
  height: 2px;
}
.contact-page__line--bg-opacity {
  opacity: 0.4;
}
.contact-page__vertical-line {
  width: 1px;
  height: 22px;
  margin: 0 10px;
  background-color: #000000;
}

.sss-page {
  position: relative;
  min-height: 1300px;
  padding: 75px 0 500px 0;
  background-color: #f6ebf4;
  z-index: 15;
}
.sss-page::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 428px;
  background-image: url("../assets/images/sss-page-bottom-image.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.sss-page__inner {
  margin-top: 74px;
  margin-bottom: 80px;
}
.sss-page__icon {
  margin-bottom: 20px;
}
.sss-page__icon-img {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.sss-page__text {
  font-family: "Raleway";
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #231f20;
  display: block;
}
.sss-page__text--medium {
  font-size: 14px;
  line-height: 24px;
}

.faq-card:not(:first-child) {
  margin-top: 10px;
}
.faq-card.is-active .faq-card__arrow-icon {
  transform: rotate(90deg);
}
.faq-card__header {
  padding: 15px;
  border: 2px solid #c397a7;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  transition: all 225ms;
}
.faq-card__header:hover {
  cursor: pointer;
  border-color: rgba(0, 0, 0, 0.1);
}
.faq-card__title {
  font-family: "Raleway";
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #23293c;
}
.faq-card__arrow-icon {
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  margin-top: 4px;
  margin-left: 30px;
  font-size: 22px;
  color: #1d1d1b;
  display: flex;
  justify-content: center;
  transition: all 500ms;
}
.faq-card__icon {
  font-size: 24px;
  color: #c3291c;
  opacity: 0.5;
}
.faq-card__body {
  height: 0;
  overflow: hidden;
  transition: all 500ms;
}
.faq-card__body-inner {
  padding: 20px 10px;
}
.faq-card__text {
  font-family: "Raleway";
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #23293c;
}

.page {
  padding: 140px 0;
}
.page__title {
  font-family: "Raleway";
  font-size: 25px;
  font-weight: 400;
  line-height: 35px;
  color: #231f20;
}
.page__text {
  font-family: "Raleway";
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #231f20;
}
.page__text:not(:first-child) {
  margin-top: 15px;
}

.banner {
  padding: 30px 0;
  background-color: #d6f7e8;
}
.banner--legal-page .banner__inner {
  padding-left: calc(315px + 0.25rem);
}
.banner__inner {
  display: flex;
  flex-direction: column;
}
.banner__title {
  margin-bottom: 15px;
  font-family: "Raleway";
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: #231f20;
  display: block;
}
.banner__text {
  font-family: "Raleway";
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #000000;
}
.banner__button-container {
  margin-top: 35px;
  display: flex;
}

.books {
  padding: 115px 0;
}

.book-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.book-card__header {
  margin-bottom: 55px;
}
.book-card__image-container {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.book-card__image-container.is-hide .book-card__img--front {
  opacity: 0;
}
.book-card__image-container.is-show .book-card__img--front {
  display: none;
}
.book-card__image-container.is-show .book-card__img--back {
  opacity: 1;
}
.book-card__image-container.is-active .book-card__img--back {
  display: block;
}
.book-card__img {
  min-width: 381px;
  max-width: 381px;
  display: none;
  opacity: 0;
  transition: all 225ms;
}
.book-card__img--front {
  opacity: 1;
  display: block;
}
.book-card__text {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #231f20;
}
.book-card__footer {
  margin-top: 25px;
}
.book-card__button {
  transition: all 425ms;
}
.book-card__button:hover {
  cursor: pointer;
  transform: scale(1.025);
}
.book-card__button-img {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.information__quote-icon {
  margin-bottom: 15px;
}
.information__quote-icon-img {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.information__text {
  font-family: "Raleway";
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.w-100 {
  width: 100% !important;
}

.text-regular {
  font-weight: 400 !important;
}

.text-medium {
  font-weight: 500 !important;
}

.text-bold {
  font-weight: 700 !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-transform-default {
  text-transform: initial !important;
}

.text-italic {
  font-style: italic !important;
}

.text-primary {
  color: #548996 !important;
}

.text-white {
  color: #fff !important;
}

.text-black {
  color: #000000 !important;
}

.text-pink {
  color: #952381 !important;
}

.text-light-pink {
  color: #f29bc2 !important;
}

.text-light-orange {
  color: #d48234 !important;
}

.text-light-green {
  color: #8fad47 !important;
}

.section-space-top {
  margin-top: 50px;
}
.section-space-top-medium {
  margin-top: 110px;
}
.section-space-top-big {
  margin-top: 130px;
  /**
   *
   * Responsive
   *
   */
}
@media (max-width: 992px) {
  .section-space-top-big {
    margin-top: 30px;
  }
}
.section-space-bottom {
  margin-bottom: 50px;
}
.section-space-bottom-medium {
  margin-bottom: 110px;
}
.section-space-bottom-big {
  margin-bottom: 180px;
}

@media (max-width: 992px) {
  .hidden\@mobile-or-tablet {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .hidden\@desktop {
    display: none !important;
  }
}

.has-scroll-none {
  overflow: hidden !important;
}

@media (max-width: 992px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .book-modal {
    padding: 1rem;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .book-modal__inner {
    width: 100%;
  }
  .book-modal__body {
    height: 100%;
    padding: 75px 1rem;
  }
  .book-modal__footer {
    padding: 1rem 0 0 0;
  }
  .book-modal__navigation-item {
    font-size: 38px;
    color: #fff;
  }
  .hero__slider-item::before {
    width: 100%;
  }
  .hero__slider-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    opacity: 0.75;
    z-index: -1;
  }
  .hero__slider-inner {
    width: 100%;
    padding-bottom: 0;
  }
  .hero__slider-navigation {
    display: none;
  }
  .hero__slider-item--dark-theme .hero__title {
    color: #fff;
  }
  .hero__slider-item--dark-theme .hero__text {
    color: #fff;
  }
  .hero__title {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 42px;
  }
  .info__icon-img {
    min-width: 40px;
    max-width: 40px;
  }
  .info__text {
    font-size: 18px;
    line-height: 28px;
  }
  .info__author {
    margin-left: 0;
  }
  .info__author-icon-img {
    min-width: 24px;
    max-width: 24px;
  }
  .info__author-text {
    font-size: 16px;
    line-height: 26px;
  }
  .reviews--story-page {
    padding-bottom: 30px;
  }
  .reviews--story-page .reviews__header {
    height: 310px;
  }
  .reviews__header {
    height: 450px;
    padding-bottom: 75px;
  }
  .reviews__main {
    padding: 0;
  }
  .reviews__text {
    font-size: 20px;
    line-height: 30px;
  }
  .reviews__slider-name {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 25px;
  }
  .reviews__slider-text {
    font-size: 18px;
    line-height: 28px;
  }
  .reviews__slider-label {
    margin-top: 45px;
  }
  .brands {
    height: auto;
    padding: 50px 0;
  }
  .brands::before {
    height: 24px;
  }
  .footer__menu {
    margin-left: -10px;
    margin-right: -10px;
  }
  .footer__menu-item {
    margin-left: 10px;
    margin-right: 10px;
  }
  .story-info {
    padding: 45px 0;
  }
  .story-info__icon-img {
    min-width: 40px;
    max-width: 40px;
  }
  .story-info__title {
    margin: 20px 0;
    font-size: 24px;
    line-height: 34px;
  }
  .story-info__text {
    font-size: 16px;
    line-height: 26px;
  }
  .story-info__text--small {
    font-size: 14px;
    line-height: 24px;
  }
  .story-info__inner {
    margin-top: 0;
  }
  .contact-page::before {
    content: none;
  }
  .contact-page__icon-img {
    min-width: 40px;
    max-width: 40px;
  }
  .contact-page__text {
    font-size: 14px;
    line-height: 24px;
  }
  .contact-page__inner {
    margin-top: 0;
  }
  .sss-page {
    min-height: auto;
    padding: 75px 0;
  }
  .sss-page::before {
    content: none;
  }
  .sss-page__icon-img {
    min-width: 40px;
    max-width: 40px;
  }
  .sss-page__text {
    font-size: 14px;
    line-height: 24px;
  }
  .sss-page__inner {
    margin-top: 0;
  }
  .faq-card__title, .faq-card__text {
    font-size: 13px;
    line-height: 23px;
  }
  .faq-card__arrow-icon {
    font-size: 18px;
  }
  .page {
    padding: 75px 0;
  }
  .page__title {
    font-size: 20px;
    line-height: 30px;
  }
  .banner--legal-page .banner__inner {
    padding-left: 0;
  }
  .banner__title {
    font-size: 18px;
    line-height: 28px;
  }
  .banner__text {
    font-size: 14px;
    line-height: 24px;
  }
  .books {
    padding: 50px 0;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .header__menu-item:not(:first-child) {
    margin-left: 30px;
  }
  .hero__slider-item::before {
    width: 100%;
  }
  .hero__slider-navigation {
    display: none;
  }
  .hero__title {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 42px;
  }
  .info__icon-img {
    min-width: 40px;
    max-width: 40px;
  }
  .info__text {
    font-size: 18px;
    line-height: 28px;
  }
  .info__author {
    margin-left: 0;
  }
  .info__author-icon-img {
    min-width: 24px;
    max-width: 24px;
  }
  .info__author-text {
    font-size: 16px;
    line-height: 26px;
  }
  .reviews__header {
    height: 450px;
    padding-bottom: 75px;
  }
  .reviews__main {
    padding: 0;
  }
  .reviews__text {
    font-size: 20px;
    line-height: 30px;
  }
  .reviews__slider-name {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 25px;
  }
  .reviews__slider-text {
    font-size: 18px;
    line-height: 28px;
  }
  .reviews__slider-label {
    margin-top: 45px;
  }
  .brands {
    height: auto;
    padding: 50px 0;
  }
  .footer__menu {
    margin-left: -10px;
    margin-right: -10px;
  }
  .footer__menu-item {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .hero__slider-navigation-item--prev {
    left: 30px;
  }
  .hero__slider-navigation-item--next {
    right: 30px;
  }
  .hero__slider-inner {
    padding-bottom: 125px;
  }
  .hero__title {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 46px;
  }
  .hero__text {
    font-size: 14px;
    line-height: 24px;
  }
  .reviews__header {
    height: 590px;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */