@font-face {
  font-family: 'Heroic Condensed';
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/HeroicCondensed-Medium.otf") format("opentype"); }

@font-face {
  font-family: 'Gilroy';
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Radomir Tinkov - Gilroy-Regular.otf") format("opentype"); }

@font-face {
  font-family: 'Gilroy';
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/Radomir Tinkov - Gilroy-SemiBold.otf") format("opentype"); }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth; }

/**
  GLOBAL CLASSES
*/
.red-button {
  height: 48px;
  background-color: #BD1522;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  padding: 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .red-button span {
    color: #FFFFFF;
    font-family: Gilroy, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 48px;
    white-space: nowrap;
    margin-right: 10px; }
  .red-button img {
    height: 12.37px;
    width: 12.67px; }

.navigation-button {
  height: 90px;
  width: 90px;
  border-radius: 50%;
  background-color: #FFF;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 0 10px #fff; }
  .navigation-button__icon {
    height: 20px;
    width: 36.93px; }
    .navigation-button__icon--reverse {
      transform: rotate(180deg);
      margin-bottom: 10px; }
  .navigation-button--top {
    bottom: -35px; }
  .navigation-button--bottom {
    top: 0; }
    @media all and (max-width: 479px) {
      .navigation-button--bottom {
        top: unset;
        bottom: -30px; } }

.hamburger {
  width: 35px;
  height: 35px;
  padding: 9px 5px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center; }
  .hamburger__line {
    height: 2px;
    width: 100%;
    background: #FBCF77; }
    .hamburger__line:nth-child(2) {
      margin-left: 5px; }

/**
  HEADER
*/
.header {
  background-size: cover;
  height: 600px;
  position: relative; }
  @media all and (max-width: 769px) {
    .header {
      height: unset; } }

.topbar {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0; }
  @media all and (max-width: 1150px) {
    .topbar {
      padding: 15px; } }
  .topbar__book-logo {
    height: 72px; }
  .topbar__right {
    display: flex;
    align-items: center; }
  .topbar__button {
    color: #FBCF77;
    font-family: Gilroy, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 17px;
    text-align: center;
    margin-right: 15px;
    text-decoration: none;
    outline: none;
    border: none;
    cursor: pointer;
    background-color: transparent; }
    @media all and (max-width: 479px) {
      .topbar__button {
        display: none; } }
  .topbar__onepress-logo {
    height: 23.45px;
    margin-top: 5px; }
    .topbar__onepress-logo img {
      display: block;
      height: 100%; }

.mobile-nav {
  display: none;
  padding: 15px;
  background-color: #000; }
  @media all and (max-width: 479px) {
    .mobile-nav {
      display: flex;
      justify-content: space-between;
      align-items: center; } }
  .mobile-nav__button {
    color: #FBCF77;
    font-family: Gilroy, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 17px;
    text-align: center;
    margin-right: 15px;
    text-decoration: none;
    outline: none;
    border: none;
    cursor: pointer;
    background-color: transparent; }

.nav {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto; }
  @media all and (max-width: 479px) {
    .nav {
      display: none; } }
  @media all and (max-width: 479px) {
    .nav--visible {
      display: block; } }
  .nav__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    height: 57px; }
    @media all and (max-width: 479px) {
      .nav__list {
        grid-template-columns: 1fr;
        height: unset; } }
  .nav__item {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; }
    @media all and (max-width: 479px) {
      .nav__item {
        height: 57px; } }
  .nav__link {
    height: 100%;
    width: 100%;
    color: #FBCF77;
    font-family: Gilroy, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    text-align: center;
    background-color: #4C1118;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none; }
    .nav__link:hover {
      color: #FFF;
      background-color: #95121D; }
    .nav__link--active {
      color: #FFF;
      background-color: #95121D; }

.header-content {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  padding-top: 50px; }
  @media all and (max-width: 1150px) {
    .header-content {
      padding: 20px; } }
  @media all and (max-width: 769px) {
    .header-content {
      display: block; } }
  .header-content__headers {
    max-width: 518px;
    margin-bottom: 15px; }
  .header-content__header-1 {
    color: #FFFFFF;
    font-family: "Heroic Condensed", sans-serif;
    font-size: 100px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 112px;
    text-transform: uppercase; }
    @media all and (max-width: 1150px) {
      .header-content__header-1 {
        font-size: 80px;
        line-height: 90px; } }
    @media all and (max-width: 479px) {
      .header-content__header-1 {
        font-size: 50px;
        line-height: 60px; } }
  .header-content__header-2 {
    color: #FBCF77;
    font-family: "Heroic Condensed", sans-serif;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 7.27px;
    line-height: 48px;
    text-transform: uppercase; }
    .header-content__header-2 span {
      display: block; }
    @media all and (max-width: 1150px) {
      .header-content__header-2 {
        font-size: 34px;
        line-height: 40px; } }
    @media all and (max-width: 479px) {
      .header-content__header-2 {
        font-size: 26px;
        line-height: 30px; } }
  .header-content__book-wrapper {
    width: 527.25px;
    height: 400px;
    position: relative; }
    @media all and (max-width: 1150px) {
      .header-content__book-wrapper {
        width: 400px;
        height: 200px; } }
    @media all and (max-width: 769px) {
      .header-content__book-wrapper {
        height: unset;
        width: 70%;
        margin-bottom: 10px; } }
  .header-content__book {
    display: block;
    width: 527.25px;
    height: 472px;
    position: absolute;
    top: 0;
    left: 25px; }
    @media all and (max-width: 1150px) {
      .header-content__book {
        width: 400px;
        height: unset;
        left: -30px; } }
    @media all and (max-width: 769px) {
      .header-content__book {
        position: static;
        width: 100%; } }

/**
  ABOUT
*/
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 0; }
  @media all and (max-width: 1150px) {
    .about {
      padding: 80px 40px; } }
  @media all and (max-width: 769px) {
    .about {
      grid-template-columns: 1fr;
      padding: 40px 20px; } }
  @media all and (max-width: 479px) {
    .about {
      padding: 10px; } }
  .about__left {
    padding-right: 50px; }
    @media all and (max-width: 1150px) {
      .about__left {
        padding-right: 25px; } }
    @media all and (max-width: 769px) {
      .about__left {
        padding-right: 0; } }
  .about__book {
    width: 100%; }
  .about__right {
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .about__header {
    color: #BD1522;
    font-family: "Heroic Condensed", sans-serif;
    font-size: 72px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 96px;
    margin-bottom: 25px;
    text-transform: uppercase; }
    @media all and (max-width: 479px) {
      .about__header {
        font-size: 60px;
        line-height: 70px;
        margin-bottom: 15px; } }
  .about__preview {
    color: #000000;
    font-family: Gilroy, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 24px;
    margin-bottom: 9px; }
  .about__text {
    color: #000000;
    font-family: Gilroy, sans-serif;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px;
    margin-bottom: 11px; }
  .about__info {
    color: #000000;
    font-family: Gilroy, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 22px;
    margin-bottom: 22px; }
  .about__link {
    width: 132px; }

/**
  AUTHORS
*/
.authors {
  background: #000;
  padding: 80px 0; }
  @media all and (max-width: 1150px) {
    .authors {
      padding: 80px 40px; } }
  @media all and (max-width: 769px) {
    .authors {
      grid-template-columns: 1fr;
      padding: 40px 20px; } }
  @media all and (max-width: 479px) {
    .authors {
      padding: 10px; } }
  .authors__title {
    color: #FFFFFF;
    font-family: "Heroic Condensed", sans-serif;
    font-size: 72px;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase; }
  .authors__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    max-width: 1150px;
    margin: 0 auto; }
    @media all and (max-width: 769px) {
      .authors__columns {
        grid-gap: 25px; } }
    @media all and (max-width: 479px) {
      .authors__columns {
        grid-template-columns: 1fr; } }

.author {
  display: flex;
  width: 100%; }
  @media all and (max-width: 769px) {
    .author {
      display: block; } }
  .author__image {
    display: block;
    height: 167.2px;
    width: 120px;
    margin-right: 22px; }
    @media all and (max-width: 769px) {
      .author__image {
        margin: 0 auto 22px auto; } }
  .author__name {
    color: #FBCF77;
    font-family: Gilroy, sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 32px;
    margin-bottom: 8px;
    text-decoration: none; }
    .author__name:hover {
      text-decoration: underline; }
    @media all and (max-width: 769px) {
      .author__name {
        text-align: center; } }
  .author__description {
    color: #FFFFFF;
    font-family: Gilroy, sans-serif;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px; }
    .author__description a {
      color: #FFF; }

/**
  VIDEO
*/
.video {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media all and (max-width: 1150px) {
    .video {
      padding: 80px 40px; } }
  @media all and (max-width: 769px) {
    .video {
      padding: 40px 20px; } }
  @media all and (max-width: 479px) {
    .video {
      padding: 10px; } }

/**
  OPINIONS
*/
.opinions {
  background: #000;
  padding: 80px 0; }
  @media all and (max-width: 1150px) {
    .opinions {
      padding: 80px 40px; } }
  @media all and (max-width: 769px) {
    .opinions {
      padding: 40px 20px; } }
  @media all and (max-width: 479px) {
    .opinions {
      padding: 10px; } }
  .opinions__title {
    color: #FFFFFF;
    font-family: "Heroic Condensed", sans-serif;
    font-size: 72px;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase; }
  .opinions__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    max-width: 1150px;
    margin: 0 auto; }
    @media all and (max-width: 479px) {
      .opinions__columns {
        grid-template-columns: 1fr; } }

.opinion {
  margin-bottom: 19px; }
  .opinion:last-child {
    margin-bottom: 0; }
  .opinion__text {
    color: #FFFFFF;
    font-family: Gilroy, sans-serif;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px;
    text-align: center;
    margin-bottom: 8px; }
    .opinion__text span {
      display: block; }
  .opinion__signature, .opinion__link {
    color: #FBCF77;
    font-family: Gilroy, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 24px;
    text-align: center; }
    .opinion__signature span, .opinion__link span {
      display: block; }
    .opinion__signature a, .opinion__link a {
      color: #FBCF77;
      text-decoration: none; }
      .opinion__signature a:hover, .opinion__link a:hover {
        text-decoration: underline; }

/**
  PARTNERS
*/
.partners {
  padding: 80px 0;
  background-color: #F7F7F7; }
  @media all and (max-width: 1150px) {
    .partners {
      padding: 80px 40px; } }
  @media all and (max-width: 769px) {
    .partners {
      padding: 40px 20px; } }
  @media all and (max-width: 479px) {
    .partners {
      padding: 10px; } }
  .partners__title {
    color: #000;
    font-family: "Heroic Condensed", sans-serif;
    font-size: 72px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 80px;
    text-align: center;
    margin-bottom: 30px; }
  .partners__wrapper {
    display: flex;
    justify-content: center;
    align-items: center; }
    @media all and (max-width: 479px) {
      .partners__wrapper {
        flex-direction: column; } }

.partner {
  height: 120px;
  margin-right: 50px; }
  @media all and (max-width: 1150px) {
    .partner {
      height: 90px; } }
  @media all and (max-width: 769px) {
    .partner {
      height: 60px;
      margin-right: 30px; } }
  @media all and (max-width: 479px) {
    .partner {
      margin-right: 0;
      margin-bottom: 20px; } }
  .partner:last-child {
    margin-right: 0; }
  .partner img {
    display: block;
    height: 100%; }

/**
  SUMMARY
*/
.summary {
  background: #000;
  padding: 80px 0 40px 0; }
  @media all and (max-width: 1150px) {
    .summary {
      padding: 80px 40px; } }
  @media all and (max-width: 769px) {
    .summary {
      padding: 40px 20px; } }
  @media all and (max-width: 479px) {
    .summary {
      padding: 10px; } }
  .summary__image {
    display: block;
    margin: 0 auto 30px auto;
    height: 327px;
    width: 420px; }
    @media all and (max-width: 769px) {
      .summary__image {
        width: 70%;
        height: unset; } }
  .summary__title {
    max-width: 560px;
    color: #FBCF77;
    font-family: "Heroic Condensed", sans-serif;
    font-size: 50px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 56px;
    text-align: center;
    margin: 0 auto 25px auto; }
    .summary__title span {
      display: block; }
    @media all and (max-width: 769px) {
      .summary__title {
        font-size: 42px;
        line-height: 48px; } }
    @media all and (max-width: 479px) {
      .summary__title {
        font-size: 34px;
        line-height: 38px; } }
  .summary__link {
    width: 129px;
    margin: 0 auto 30px auto; }
  .summary__rows {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px; }
  .summary__row {
    max-width: 530px;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    color: #FFFFFF;
    font-family: Gilroy, sans-serif;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px; }
    .summary__row--column {
      flex-direction: column; }
    .summary__row span {
      font-weight: 600;
      margin: 0 4px;
      white-space: nowrap; }
  .summary__logo {
    display: inline-block;
    margin-top: 4px; }

.more {
  display: flex;
  justify-content: center;
  align-items: center; }
  .more__separator {
    height: 20px;
    width: 2px;
    background-color: #FFF;
    margin-left: 15px; }
  .more__onepress {
    height: 16.28px;
    margin-top: 7px; }
    .more__onepress img {
      display: block;
      height: 100%; }
  .more__facebook {
    width: 45px;
    height: 45px;
    padding-top: 7px; }
    .more__facebook img {
      display: block;
      width: 100%; }

/**
  FOOTER
*/
.footer {
  background-color: #000; }
  .footer__wrapper {
    max-width: 1150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 70px;
    color: #FFF;
    margin: 0 auto; }
    @media all and (max-width: 1150px) {
      .footer__wrapper {
        padding: 0 10px; } }
    @media all and (max-width: 479px) {
      .footer__wrapper {
        height: 130px;
        flex-direction: column;
        justify-content: flex-start; } }
  .footer__copyrights {
    height: 21px;
    color: #FFFFFF;
    font-family: Gilroy, sans-serif;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px; }
  .footer__realization {
    color: #FFFFFF;
    font-family: Gilroy, sans-serif;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 22px;
    text-align: right; }
    .footer__realization a {
      color: #FFFFFF;
      font-family: Gilroy, sans-serif;
      font-size: 14px;
      letter-spacing: 0;
      line-height: 22px;
      text-align: right;
      text-decoration: none; }
