* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: #232323;
  color: #FFFFFF;
}

html,
body {
  margin: 0px;
  padding: 0px;
}

html {
  min-width: 350px;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #303030;
  font-weight: 400;
  background: #FFF1EB;
}

.container {
  position: relative;
  max-width: 1264px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.container--hero {
  height: 100%;
}

h1 {
  font-family: "Baloo 2", sans-serif;
  font-size: 32px;
  line-height: 46px;
  font-weight: 600;
  margin: 0px 0px 25px;
  text-align: center;
  text-transform: uppercase;
}

.h1-decor {
  font-size: 42px;
  line-height: 56px;
  color: #FFFFFF;
  text-align: left;
}
.h1-decor .orange {
  color: #F35941;
}

h2 {
  font-size: 16px;
  font-weight: 600;
  margin: 0px 0px 15px;
}

h3 {
  font-size: 32px;
  font-weight: 600;
  margin: 0px 0px 15px;
}

h4 {
  font-weight: 600;
  margin: 0px 0px 15px;
}

.heading__subtitle {
  color: #FF4672;
  margin: 0px 0px 15px;
}
.heading__title {
  font-family: "Baloo 2", sans-serif;
  font-size: 32px;
  line-height: 34px;
  font-weight: 600;
  margin: 0px 0px 25px;
}

a {
  color: #0040FF;
  text-decoration: none;
  transition: all 0.3s ease-in-out 0s;
}
a:hover {
  text-decoration: underline;
}

p {
  margin: 0px 0px 5px;
}

ul, ol {
  margin: 0px 0px 15px;
}

figure {
  margin: 0px;
  padding: 0px;
  text-align: center;
}

img {
  vertical-align: top;
  max-width: 100%;
}

.btn {
  display: inline-block;
  cursor: pointer;
  border: 0px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}
.btn--google-play {
  background: #A08EFE;
  box-shadow: inset 0px -4px 20px rgba(0, 0, 0, 0.2);
}
.btn--google-play:hover {
  background: #222222;
}
.btn--google-play img {
  max-width: 158px;
}

.block {
  position: relative;
  box-shadow: inset 0px -4px 20px rgba(0, 0, 0, 0.2);
}
.block:after {
  position: absolute;
  left: 20%;
  bottom: 0px;
  display: block;
  width: 60%;
  height: 10px;
  border-radius: 100%;
  content: "";
  z-index: -1;
}
.block--pink {
  background: #FF87B5;
}
.block--pink:after {
  box-shadow: 0px 10px 20px #FF87B5;
}
.block--purple {
  background: #AF9DFE;
}
.block--purple:after {
  box-shadow: 0px 10px 20px #AF9DFE;
}
.block--blue {
  background: #2F82F8;
}
.block--blue:after {
  box-shadow: 0px 10px 20px #2F82F8;
}
.block--orange {
  background: #FFCB93;
}
.block--orange:after {
  box-shadow: 0px 10px 20px #FFCB93;
}

.text--center {
  text-align: center;
}
.text--blue {
  color: #165AD2;
}
.text--orange {
  color: #F8AB54;
}
.text--pink {
  color: #F75B8B;
}

/*header*/
.header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  background: #232323;
  z-index: 1000;
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0px;
}
.header__logo {
  max-width: 40px;
  min-width: 40px;
}

.nav__list {
  display: flex;
  align-items: center;
  margin: 0px;
  padding: 0px;
}
.nav__item {
  margin: 0px 0px 0px 45px;
  list-style-type: none;
}
.nav__link {
  font-family: "Raleway", sans-serif;
  color: #FFFFFF;
  font-weight: 600;
  text-transform: uppercase;
}
.nav__link:hover {
  color: #FF9800;
  text-decoration: none;
}

.btn-burger {
  display: none;
  justify-content: flex-end;
  align-items: center;
  width: 30px;
  height: 20px;
  position: relative;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  border: none;
  padding: 0px;
}
.btn-burger__line {
  position: relative;
  display: block;
  width: 100%;
  height: 3px;
  background: #FFFFFF;
}
.btn-burger__line:before, .btn-burger__line:after {
  display: block;
  position: absolute;
  height: 100%;
  background: #FFFFFF;
  content: "";
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0;
}
.btn-burger__line:before {
  right: 0px;
  width: 100%;
  top: -10px;
}
.btn-burger__line:after {
  right: 0px;
  width: 100%;
  bottom: -10px;
}
.btn-burger--active {
  z-index: 2;
}
.btn-burger--active .btn-burger__line {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
}
.btn-burger--active .btn-burger__line:before {
  transform: translateY(10px) rotate(45deg);
}
.btn-burger--active .btn-burger__line:after {
  transform: translateY(-10px) rotate(-45deg);
}

/*main*/
.main {
  padding: 70px 0px 0px;
}
.main--policy {
  max-width: 1020px;
  margin: 0 auto;
  padding: 140px 0px 70px;
}
.main--policy h4 {
  margin: 25px 0px 15px;
}

section {
  padding: 90px 0px;
}

.hero {
  position: relative;
  padding: 0px;
  height: 800px;
}
.hero__bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero__img-big {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__img-decor {
  width: 26vw;
  position: absolute;
  top: 2vw;
  right: 0vw;
}
.hero__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
}
.hero__content {
  max-width: 615px;
  width: 50%;
  font-size: 18px;
  line-height: 28px;
}

.about__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about__content {
  width: 32%;
}
.about__img {
  position: relative;
  width: 57%;
}
.about__img-keep {
  position: absolute;
  top: -30px;
  left: -70px;
}
.about__img-suffering {
  position: absolute;
  top: 30px;
  right: -70px;
}

.features__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /*max-width: 256px;*/
  padding: 40px 20px;
  margin: 0px 0px 30px;
  border-radius: 20px;
  color: #FFFFFF;
}
.features__item:hover img {
  transform: scale(1.03);
}
.features__img {
  width: auto;
  height: 69px;
  margin: 0px 0px 15px;
  transition: all 0.3s ease-in-out 0s;
}

.clients__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.clients__img {
  width: 49%;
}
.clients__content {
  width: 49%;
}
.clients__item {
  background: #FFFFFF;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 0px 0px 15px;
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.1);
}
.clients__item-name {
  font-weight: 600;
}

.toolbox__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.toolbox__content {
  width: 49%;
}
.toolbox__img {
  width: 49%;
}

.balance__keep {
  position: absolute;
  top: -100px;
  right: -30px;
}
.balance__wrap {
  background: #F8F4FF;
  padding: 90px 130px;
  border-radius: 20px;
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.1);
}
.balance__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0px 0px 20px;
}
.balance__decor {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 400px;
}
.balance__smile {
  width: 60px;
}
.balance__detail {
  width: calc(100% - 80px);
}
.balance__name {
  display: block;
  font-weight: 600;
  text-transform: uppercase;
}
.balance__text {
  width: calc(100% - 440px);
  font-weight: 600;
}

.screenshots__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.screenshots__content {
  width: 42%;
}
.screenshots__text {
  margin: 0px 0px 15px;
}
.screenshots__item {
  display: flex;
  align-items: center;
  margin: 0px 0px 15px;
}
.screenshots__item-icon {
  width: 36px;
  margin: 0px 10px 0px 0px;
}
.screenshots__img {
  position: relative;
  width: 56%;
  text-align: right;
}
.screenshots__img-decor {
  position: absolute;
  left: 0px;
  top: 80px;
  width: 44%;
}
.screenshots__img-big {
  width: 65%;
}

.industry__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.industry__img {
  width: 49%;
}
.industry__content {
  width: 49%;
}

.journal__text {
  max-width: 616px;
  width: 100%;
  margin: 0 auto 40px;
}
.journal__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.journal__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 20px 60px;
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 20px;
}
.journal__item:hover img {
  transform: scale(1.03);
}
.journal__img {
  width: auto;
  height: 80px;
  margin: 0px 0px 15px;
  transition: all 0.3s ease-in-out 0s;
}

.faq {
  position: relative;
}
.faq__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  place-items: start;
}
.faq__item {
  padding: 15px 20px;
  background: #F8F4FF;
  border: 1px solid #F8F4FF;
  border-radius: 20px;
  transition: all 0.3s ease-in-out 0s;
}
.faq__question {
  position: relative;
  display: block;
  width: 100%;
  padding: 0px 40px 0px 0px;
  font-weight: 600;
  cursor: pointer;
}
.faq__plus {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 1px solid #F7634C;
  border-radius: 50%;
  transition: all 0.3s ease-in-out 0s;
}
.faq__plus:before {
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 5px);
  width: 10px;
  height: 2px;
  background: #F7634C;
  content: "";
  transition: all 0.3s ease-in-out 0s;
}
.faq__plus:after {
  position: absolute;
  top: calc(50% - 5px);
  left: calc(50% - 1px);
  width: 2px;
  height: 10px;
  background: #F7634C;
  transition: all 0.3s ease-in-out 0s;
  content: "";
  transition: all 0.3s ease-in-out 0s;
}
.faq__answer {
  padding: 0px 40px 0px 0px;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.3s ease-in-out 0s;
}
.faq__item--opened {
  border-color: #F7634C;
}
.faq__item--opened .faq__answer {
  margin: 15px 0px 0px;
}
.faq__item--opened .faq__plus {
  background: linear-gradient(to bottom, #FF725C, #F45D46);
}
.faq__item--opened .faq__plus:before {
  background: #FFFFFF;
}
.faq__item--opened .faq__plus:after {
  background: #FFFFFF;
  height: 2px;
  top: calc(50% - 1px);
}

.contact__wrap {
  background: #F8F4FF;
  padding: 55px 45px;
  border: 1px solid #F7634C;
  border-radius: 20px;
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.1);
}
.contact__text {
  font-weight: 600;
  margin: 0px 0px 40px;
}

.social__list {
  display: flex;
  justify-content: space-around;
}
.social__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.social__item:hover {
  text-decoration: none;
}
.social__item:hover .social__icon {
  transform: scale(1.05);
}
.social__icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0px 0px 15px;
  transition: transform 0.3s ease-in-out 0s;
}
.social__icon--email {
  background-image: url(../images/social/icon_email.png);
  background-size: 100%;
}
.social__icon--instagram {
  background-image: url(../images/social/icon_instagram.png);
  background-size: 100%;
}
.social__icon--twitter {
  background-image: url(../images/social/icon_twitter.png);
  background-size: 100%;
}
.social__icon--itch {
  width: 46px;
  background-image: url(../images/social/icon_itch.png);
  background-size: 100%;
}
.social__name {
  font-weight: 600;
}
.social__name--email {
  color: #175BD3;
}
.social__name--instagram {
  color: #F75B8A;
}
.social__name--twitter {
  color: #937DFB;
}
.social__name--itch {
  color: #F45C44;
}

/*footer*/
.footer {
  background: #232323;
  padding: 60px 0px;
  color: #FFFFFF;
}
.footer__content {
  text-align: center;
}
.footer__copyright {
  margin: 0px 0px 10px;
}
.footer__text {
  color: rgba(255, 255, 255, 0.8);
}

.menu-policies {
  margin: 0px 0px 50px;
}
.menu-policies__list {
  display: flex;
  justify-content: flex-end;
  margin: 0px;
  padding: 0px;
}
.menu-policies__item {
  margin: 0px 0px 0px 35px;
  list-style-type: none;
}
.menu-policies__link {
  color: #FFFFFF;
  font-weight: 600;
}
.menu-policies__link:hover {
  color: #FF9800;
  text-decoration: none;
}

/*cookie*/
.cookie {
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
  padding: 40px 0px;
  background: #FDFAF6;
  font-weight: 600;
  z-index: 1001;
}
.cookie__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie__btns {
  display: flex;
}
.cookie__btn {
  width: 184px;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
  margin: 0px 0px 0px 20px;
}
.cookie .btn--accept {
  background: #3CA400;
  color: #FFFFFF;
  box-shadow: inset 0px -4px 20px rgba(0, 0, 0, 0.2);
}
.cookie .btn--accept:hover {
  background: #297100;
}
.cookie .btn--decline {
  background: transparent;
  border: 1px solid #303030;
}
.cookie .btn--decline:hover {
  color: #FFFFFF;
  background: #303030;
}

@media (max-width: 1440px) {
  .about__img-suffering {
    right: 0px;
  }
  .balance__keep {
    top: -100px;
    right: 0px;
  }
}
@media (max-width: 1264px) {
  .keep {
    width: 180px;
  }
  .nav__item {
    margin: 0px 0px 0px 20px;
  }
  .nav__link {
    font-size: 14px;
  }
  .balance__wrap {
    padding: 90px 20px;
  }
  .contact__wrap {
    padding: 55px 20px;
  }
}
@media (max-width: 992px) {
  .keep {
    width: 100px;
  }
  /*header*/
  .header__wrap {
    padding: 9px 0px;
  }
  .nav {
    display: none;
  }
  .nav--open {
    display: block;
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    padding: 70px 0px;
    background: rgba(35, 35, 35, 0.8);
  }
  .nav__list {
    flex-direction: column;
    align-items: center;
  }
  .nav__item {
    margin: 5px 0px;
  }
  .btn-burger {
    display: flex;
  }
  /*main*/
  .main {
    padding: 60px 0px 0px;
  }
  section {
    padding: 30px 0px;
  }
  .hero__img-decor {
    display: none;
  }
  .about__wrap {
    flex-direction: column;
  }
  .about__content {
    width: 100%;
    margin: 0px 0px 20px;
  }
  .about__img {
    width: 100%;
    text-align: center;
  }
  .about__img-big {
    max-width: 80%;
  }
  .about__img-keep {
    top: -20px;
    left: 3vw;
  }
  .clients__wrap {
    flex-direction: column-reverse;
  }
  .clients__content {
    width: 100%;
    margin: 0px 0px 20px;
  }
  .clients__img {
    width: 100%;
    text-align: center;
  }
  .toolbox__wrap {
    flex-direction: column;
  }
  .toolbox__content {
    width: 100%;
    margin: 0px 0px 20px;
  }
  .toolbox__img {
    width: 100%;
    text-align: center;
  }
  .balance__keep {
    top: -40px;
  }
  .balance__item {
    flex-direction: column;
  }
  .balance__decor {
    width: 100%;
  }
  .balance__text {
    width: 100%;
  }
  .screenshots__wrap {
    flex-direction: column;
  }
  .screenshots__content {
    width: 100%;
    margin: 0px 0px 20px;
  }
  .screenshots__img {
    width: 100%;
    text-align: center;
  }
  .screenshots__img-decor {
    position: relative;
    top: auto;
    left: auto;
  }
  .industry__wrap {
    flex-direction: column-reverse;
  }
  .industry__content {
    width: 100%;
    margin: 0px 0px 20px;
  }
  .industry__img {
    width: 100%;
    text-align: center;
  }
  .faq__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .social__list {
    flex-direction: column;
  }
  .social__item {
    margin: 0px 0px 20px;
  }
  .social__item:last-child {
    margin: 0px;
  }
  .social__icon {
    margin: 0px 0px 5px;
  }
  /*footer*/
  .menu-policies__list {
    flex-direction: column;
    align-items: center;
  }
  .menu-policies__item {
    margin: 0px 0px 15px;
  }
  .menu-policies__item:last-child {
    margin: 0px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 22px;
  }
  .h1-decor {
    font-size: 28px;
    line-height: 40px;
  }
  .heading__title {
    font-size: 22px;
    line-height: 24px;
  }
  .hero__content {
    max-width: none;
    width: 100%;
    font-size: 14px;
    line-height: 22px;
  }
  .hero__bg:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(147, 220, 213));
    content: "";
  }
  .hero__img-big {
    object-position: 68% 0px;
  }
  .balance__wrap {
    padding: 30px 20px;
  }
  .journal__list {
    grid-template-columns: repeat(1, 1fr);
  }
  /*cookie*/
  .cookie__wrap {
    flex-direction: column;
  }
  .cookie__btns {
    flex-direction: column;
  }
  .cookie__text {
    text-align: center;
    margin: 0px 0px 15px;
  }
  .cookie .btn {
    margin: 0px;
  }
  .cookie .btn--accept {
    margin: 0px 0px 15px;
  }
}/*# sourceMappingURL=style.css.map */