@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Rubik+Mono+One&display=swap");
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", Arial, sans-serif;
  background-color: #1a1b1c;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  display: block;
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
}

.img {
  max-width: 100%;
  height: auto;
  display: block;
}

.header {
  background-color: #ffffff;
  box-shadow: 3px 6px 15px rgba(0, 0, 0, 0.16);
  position: absolute;
  top: 0;
  z-index: 6;
  width: 100%;
}
.header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  height: 70px;
  justify-content: center;
}
@media (min-width: 768px) {
  .header .container {
    justify-content: space-between;
  }
}
.header__logo {
  font-family: "Rubik Mono One", sans-serif;
}
.header__language {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  font-weight: 700;
}
.header__language-option {
  margin-left: 20px;
  position: relative;
}
.header__language-option:before {
  content: "|";
  position: absolute;
  left: -11px;
}
.header__language-option:first-of-type {
  margin-left: 0;
}
.header__language-option:first-of-type:before {
  display: none;
}

.home {
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  margin-bottom: 45px;
  background-repeat: no-repeat;
  background-position: -9999999px -9999999px;
  background-size: 0;
}
.home .container {
  display: block;
  min-height: 100vh;
  max-height: 100vh;
  position: relative;
}
.home:before {
  content: "";
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}
@media (min-width: 768px) {
  .home:before {
    background-position: top right;
    transform: scaleX(-1);
  }
}
.home:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
}
.home__header {
  z-index: 3;
  position: absolute;
  color: #ffffff;
  max-width: 750px;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  bottom: 0;
  font-weight: 500;
  left: 15px;
  right: 15px;
  text-align: center;
  font-size: 20px;
  line-height: 25px;
}
@media (min-width: 768px) {
  .home__header {
    font-size: 24px;
    line-height: 32px;
    width: 100%;
    bottom: 100px;
    left: auto;
    right: auto;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .home__header {
    top: 250px;
    display: block;
  }
}
.home__header span {
  display: block;
  width: 100%;
  font-weight: 700;
  font-family: "Rubik Mono One", sans-serif;
  margin-bottom: 10px;
  font-size: 36px;
  line-height: 36px;
}
@media (min-width: 480px) {
  .home__header span {
    font-size: 50px;
    line-height: 50px;
  }
}
@media (min-width: 768px) {
  .home__header span {
    font-size: 70px;
    line-height: 70px;
  }
}
@media (min-width: 1200px) {
  .home__header span {
    top: 150px;
    bottom: auto;
    display: block;
  }
}
@media (min-width: 1440px) {
  .home__header span {
    top: 250px;
  }
}

.promo {
  margin-bottom: 45px;
}
.promo .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.promo__item {
  background-color: #ffffff;
  box-shadow: 3px 6px 15px rgb(0, 0, 0);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 1025px) {
  .promo__item {
    text-align: left;
    max-width: calc(33.3333333333% - 30px);
    display: block;
    margin-bottom: 0;
  }
}
.promo__item-image {
  width: 100%;
}
@media (min-width: 768px) {
  .promo__item-image {
    width: 50%;
  }
}
@media (min-width: 1025px) {
  .promo__item-image {
    width: 100%;
  }
}
.promo__item-text {
  padding: 20px 15px 30px;
  width: 100%;
}
@media (min-width: 768px) {
  .promo__item-text {
    width: 50%;
  }
}
@media (min-width: 1025px) {
  .promo__item-text {
    width: 100%;
  }
}
.promo__item-title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.promo__item-description {
  font-size: 17px;
  line-height: 22px;
}
.promo__item ul {
  text-align: left;
}

.about {
  display: flex;
  flex-wrap: wrap;
  background-color: #ffffff;
}
.about__image {
  width: 100%;
  background-image: url("../images/about.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 40vh;
  background-attachment: fixed;
  order: 2;
}
@media (min-width: 1025px) {
  .about__image {
    order: 1;
    background-attachment: local;
    max-width: 50%;
    min-height: none;
  }
}
.about__text {
  display: block;
  width: 100%;
  height: 100%;
  order: 1;
  padding: 30px 15px;
}
@media (min-width: 576px) {
  .about__text {
    padding: 30px 45px;
  }
}
@media (min-width: 1025px) {
  .about__text {
    order: 2;
    max-width: 50%;
  }
}
.about__header {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 30px;
}
.about__description {
  font-size: 19px;
  line-height: 23px;
}
.about__description ul, .about__description ol, .about__description p {
  margin-bottom: 15px;
}
.about__description li {
  margin-bottom: 10px;
}

.buy {
  color: #ffffff;
  margin-bottom: 45px;
  padding: 45px 0 15px;
}
@media (min-width: 1025px) {
  .buy {
    padding: 45px 45px 15px;
  }
}
.buy__header {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 45px;
}
.buy__options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.buy__option {
  display: block;
  text-align: center;
  max-width: 320px;
  width: 100%;
  padding: 30px;
  background-color: #ffffff;
  color: #000000;
  box-shadow: 3px 6px 15px rgb(0, 0, 0);
  margin: 0 0 30px;
}
@media (min-width: 576px) {
  .buy__option {
    margin: 0 15px 30px;
  }
}
.buy__option a {
  display: block;
}
.buy__option-image {
  width: 100%;
  min-height: 150px;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.buy__option-image img {
  width: 100%;
}
.buy__option-name {
  font-size: 30px;
  font-weight: 700;
}

.footer {
  background-color: #000000;
  color: #ffffff;
  padding: 30px 0;
}
.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer__contact {
  margin-bottom: 15px;
  padding-right: 30px;
}
.footer__contact-header {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.footer__contact-item {
  font-size: 17px;
  margin-bottom: 5px;
}
.footer__logo {
  font-family: "Rubik Mono One", sans-serif;
}
