html {
  box-sizing: border-box;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: hsl(201deg, 11%, 66%);
  text-align: center;
  margin: 0;
}

h1,
h2,
h4 {
  font-weight: 600;
  color: hsl(210deg, 10%, 33%);
  margin: 0;
}

main {
  margin: 0 auto;
  width: 90vw;
}
@media (min-width: 1440px) {
  main {
    max-width: 1100px;
  }
}

p {
  margin: 0;
}

.section__button {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1440px) {
  .section__button {
    flex-direction: row;
  }
}

button {
  border: none;
  padding: 1rem 4rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  width: auto;
  cursor: pointer;
}

.btn__cyan {
  background-color: hsl(171deg, 66%, 44%);
  box-shadow: 0 3px 10px hsl(171deg, 66%, 44%);
  transition: filter 0.5s ease;
}
.btn__cyan:active, .btn__cyan:hover {
  filter: opacity(70%);
  transition: filter 0.5s ease;
}

.btn__blue {
  background-color: hsl(233deg, 100%, 69%);
  box-shadow: 0 3px 10px hsl(233deg, 100%, 69%);
  transition: filter 0.5s ease;
}
.btn__blue:active, .btn__blue:hover {
  filter: opacity(70%);
  transition: filter 0.5s ease;
}

ul {
  list-style-type: none;
  padding: 1rem;
}

li {
  display: block;
  margin-bottom: 1.5rem;
}

header {
  padding: 4rem 3rem;
  position: relative;
  background-image: url("../images/bg-header-mobile.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1440px) {
  header {
    background-image: url("../images/bg-header-desktop.png");
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
header .header__logo {
  width: 4rem;
}
header .header__container {
  margin-bottom: 2rem;
}
header .header__intro {
  margin: 2rem auto;
}
@media (min-width: 1440px) {
  header .header__intro {
    width: 65%;
  }
}

.section {
  margin: 4rem 0;
}
@media (min-width: 1440px) {
  .section__flex {
    display: flex;
  }
}
.section__intro {
  margin: 1.5rem 3rem;
}
.section__intro p {
  margin-top: 2rem;
}
.section__img {
  display: flex;
  margin: 4rem 0;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1440px) {
  .section__img--desktop {
    transform: translateX(-300px);
  }
}
.section__img--pc {
  width: 90vw;
}
@media (min-width: 1440px) {
  .section__img--pc {
    width: 50vw;
  }
}
.section__img--devices {
  width: 90vw;
}
@media (min-width: 1440px) {
  .section__img--devices {
    width: 50vw;
  }
}

.list {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1440px) {
  .list--pc {
    margin: 5rem 0 5rem 3rem;
  }
}
@media (min-width: 1440px) {
  .list--workflow {
    display: flex;
    flex-direction: row;
    align-items: baseline;
  }
}
.list__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.list__icon--img {
  height: 3rem;
}
.list__partners {
  justify-content: space-between;
  padding: 0;
}
@media (min-width: 1440px) {
  .list__partners {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.list__partners--logo {
  margin-top: 2rem;
  width: 35vw;
}
@media (min-width: 1440px) {
  .list__partners--logo {
    width: 10vw;
  }
}
.list__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1440px) {
  .list__item {
    flex-basis: 100%;
  }
  .list__item--left {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    width: 400px;
    transform: translateX(-290px);
  }
}
.list__desc {
  margin: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 2;
}
@media (min-width: 1440px) {
  .list__desc--left {
    align-items: normal;
    margin: 0;
    text-align: left;
  }
}

.footer {
  background-color: rgb(235, 235, 235);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  padding-top: 3rem;
}
.footer li {
  margin-bottom: 1rem;
}
@media (min-width: 1440px) {
  .footer {
    padding: 2rem 3rem;
    flex-direction: row;
    justify-content: space-around;
  }
  .footer__list {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 1rem;
  }
  .footer__list li {
    text-align: left;
  }
}
.footer img {
  height: 3rem;
}
.footer a {
  text-decoration: none;
  color: hsl(210deg, 10%, 33%);
}
.footer a:active, .footer a:hover {
  color: hsl(171deg, 66%, 44%);
}
.footer__socials {
  display: flex;
  gap: 2rem;
}
.footer__socials .icon {
  height: 60%;
}

.attribution {
  font-size: 11px;
  text-align: center;
}

.attribution a {
  color: hsl(228deg, 45%, 44%);
}/*# sourceMappingURL=style.css.map */