:root {
  --color-body: #fff5d8;
  --font-color: #070019;
}

.body {
  background-color: var(--color-body);
  color: var(--font-color);

  font-family: "Poppins", sans-serif;
}
.desktop {
    display: none;
}
.wrapper {
    overflow-x: hidden;
}
.container {
  display: flex;
  flex-direction: column;
  padding: 80px 20px 40px;
}
.intro {
  margin-bottom: 25px;
}

.intro__logo {
  margin-bottom: 28px;
}

.intro__description {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 42px;
}

.information {
  margin-bottom: 43px;
}
.information__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 194px;
  transform: scale(1);
  cursor: pointer;
  transition: 0.3s;
  color: var(--font-color);
  margin-bottom: 52px;
}

.information__btn-img {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-image: url(../assets/img/video.svg);
  background-position: center;
  background-size: cover;
}
.information__btn-img img {
    transition: 0.3s;
    transform: scale(1);
}

.information__btn-text {
  font-family: "Poppins", sans-serif;
  border: 1px solid var(--font-color);
  border-radius: 37px;
  padding: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  width: 138px;
  flex-shrink: 0;
  transition: 0.3s all;
}

.information__btn:hover img {
    transform: scale(1.4);
  }

.information__btn:hover .information__btn-text {
    color: #fff5d8;
    background-color: var(--font-color);
}

.line {
    width: 100%;
    border-bottom: 1px solid var(--font-color);
  }

.illustration {
  margin-bottom: 40px;
  position: relative;
}

.illustration__img-wrapper {
    position: relative;
    left: 90px;
    height: 400px;
    width: 640px;
    background: url(../assets/img/browser.gif);
    background-size: cover;
    background-repeat: no-repeat;
}
.illustartion-shadow {
  width: 280px;
  height: 320px;
  background-color: var(--font-color);
  border-radius: 14px;
  position: absolute;
  left: -86px;
  top: 46px;
}
.illustration__img {
    position: absolute;
    width: 340px;
    height: 324px;
    left: -120px;
    top:60px;
}

.illustration.desktop {
  display: none;
}

.actions {
display: flex;
flex-direction: column;
  margin-bottom: 40px;
}
.action {
  width: 100%;
  text-decoration: none;
  text-align: center;
  border-radius: 40px;
  padding: 14px 4px;
  font-size: 16px;
  line-height: 24px;
  color: var(--font-color);
  font-weight: 600;
  transition: 0.3s;
}

.action__gooogle {
  position: relative;
  margin-bottom: 18px;
  background-color: #ffc31e;
}

.action__gooogle img {
  position: absolute;
  top: 4px;
  left: 4px;
}

.action__mail {
  padding: 14px 8px;
  box-shadow: 0 0 0 1px var(--font-color);
}

.action:hover {
    box-shadow: 0 0 0 2px var(--font-color);
}
.action__mail:hover {
  background-color: #ffffff;
}

.information {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.information__list {
  display: flex;
}

.information__list-logo {
  margin-right: 16px;
}
.information__list-text {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

@media (min-width: 521px) {
    .desktop {
        display: block;
    }
  .container {
    max-width: 1440px;
    margin: 0 auto;
    flex-direction: row;
    padding: 36px;
  }
  .col {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
  }
  .col:first-of-type {
    flex: 0 0 55%;
  }
  .col:last-of-type {
    flex: 0 0 45%;
  }

  .illustration.desktop {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    align-self: flex-start;
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: column;
  }
  .illustartion-bg {
    position: absolute;
    height: 493px;
    width: 790px;
    background: url(../assets/img/browser.gif);
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 175px;
  }
  .illustartion-shadow {
    width: 340px;
    height: 324px;
    background-color: var(--font-color);
    border-radius: 14px;
    position: absolute;
    left: -110px;
    top: 70px;
  }
  .illustartion-bg img {
    position: absolute;
    left: -120px;
    top: 60px;
    box-shadow: 0 0 0 var(--font-color);
  }

  .information__btn {
    align-self: flex-end;
    margin-bottom: 104px;
  }
  .illustration.mobile {
    display: none;
  }

  .intro {
    margin-bottom: 40px;
  }

  .intro__logo {
    margin-bottom: 72px;
  }

  .intro__description {
    font-size: 72px;
    line-height: 92px;
  }

  .actions {
    flex-direction: row;
    gap: 20px;
    margin-bottom: 68px;
  }
  .action {
    font-size: 20px;
    line-height: 30px;
  }
  .action__gooogle {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 24px 8px 8px;
    width: unset;
    margin-bottom: 0;
  }

  .action__gooogle img{
    position: static;
    width: 48px;
    height: 48px;
  }
  .action__mail {
    padding: 16px 20px ;
    font-weight: 500;
    width: unset;
  }
  .information {
    gap: 24px;
    margin-bottom: 0;
  }

  .information__list-logo {
    margin-right: 20px;
  }
  .information__list-text {
    font-size: 20px;
    line-height: 30px;
    font-style: normal;
  }
  .information__btn-text  {
    line-height: 24px;
  }
}
