html {
  margin: 0;
  padding: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: 'wdth' 100;
  color: #ffffff;
  background-color: #724dd1;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-image: url('../images/bg.jpg');
  background-repeat: repeat;
}

.container {
  position: relative;
  flex: 1;
  padding: 48px 0 80px 82px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}

.logo {
  width: auto;
  height: 155px;
}

.title {
  max-width: 600px;
  margin-top: 36px;
  margin-bottom: 25px;
  font-weight: 800;
  font-size: 88px;
  line-height: 100%;
}

.description {
  max-width: 540px;
  font-size: 20px;
  line-height: 152%;
}

.buttons {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 36px;
}

.button {
  position: relative;
  margin-bottom: 6px;
  display: flex;
  background-color: #61dbfa;
  border: 1px solid #111213;
  border-radius: 22px;
  color: #000000;
  z-index: 0;
  text-decoration: none;
}
.button:active .button__content,
.button:active::before,
.button:active::after {
  transform: translateY(6px);
}
.button::before {
  content: ' ';
  position: absolute;
  right: -1px;
  top: -7px;
  left: -1px;
  height: 100%;
  background-color: #61dbfa;
  border: 1px solid #111213;
  border-radius: 22px;
  z-index: -1;
}
.button_apple .button__content {
  padding-right: 37px;
  padding-left: 74px;
}
.button_apple::after {
  content: ' ';
  position: absolute;
  top: 1px;
  left: calc(50% - 79px);
  width: 38px;
  height: 38px;
  background-image: url('../images/apple.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.button_google .button__content {
  padding-left: 64px;
}
.button_google::after {
  content: ' ';
  position: absolute;
  top: 4px;
  left: calc(50% - 85px);
  width: 32px;
  height: 32px;
  background-image: url('../images/googleplay.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.button__content {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 29px;
}
.button__top {
  margin-top: -8px;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
}
.button__bottom {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 22px;
  line-height: 16px;
}

.image-desktop {
  display: none;
  width: auto;
  height: 98%;
  max-width: 750px;
  object-fit: cover;
  object-position: left;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.image-tablet {
  display: none;
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  object-position: top;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.image-mobile {
  display: none;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: top;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

@media (min-width: 1200px) {
  .image-desktop {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .container {
    padding: 32px 40px;
  }
  .logo {
    height: 99px;
  }
  .title {
    margin-top: 24px;
    margin-bottom: 28px;
    font-size: 74px;
  }
  .description {
    max-width: 445px;
    font-size: 24px;
    line-height: 152%;
  }
  .buttons {
    margin-top: auto;
    flex-direction: column;
    gap: 16px;
  }
  .button_apple .button__content {
    padding-right: 67px;
    padding-left: 104px;
  }
  .button_google .button__content {
    padding-right: 59px;
    padding-left: 94px;
  }
  .image-tablet {
    display: block;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 40px 20px 20px 20px;
  }
  .logo {
    height: 86px;
  }
  .title {
    max-width: 330px;
    margin-top: 20px;
    margin-bottom: 24px;
    font-size: 48px;
  }
  .description {
    max-width: 325px;
    font-size: 18px;
    line-height: 152%;
    margin-bottom: 240px;
  }
  .buttons {
    width: 100%;
    margin-top: auto;
    flex-direction: column;
    gap: 16px;
  }
  .button {
    width: 100%;
  }
  .image-mobile {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
