.landing {
  background-color: #FFF;
  border: to-rem(1) solid #EAEBED;
  border-radius: to-rem(8);
  font: 400 to-rem(14) 'Sarabun', Arial, sans-serif;
  margin: 0 auto;
  max-width: to-rem(555);
  padding: to-rem(32) 0 to-rem(10);

  a, p, h1, h2, h3, h4, h5, h6, b, i, li {
    font: 400 to-rem(14) 'Sarabun', Arial, sans-serif;
    text-decoration: none;
    line-height: to-rem(15);
  }

  &--no-bottom-padding {
    padding-bottom: 0;
  }
}

.logo {
  display: block;
  margin-bottom: to-rem(10);

  &__image {
    max-width: to-rem(107);
  }
}

.features {
  margin: to-rem(16) 0 to-rem(30);
  padding: 0;

  &__box {
    padding-top: to-rem(10);
  }

  &--decorator {
    color: $pink;
    font-weight: 700;
  }

  h2 {
    font-weight: 600;
    line-height: to-rem(24);
    margin-bottom: to-rem(14);
    font-size: 1.375rem;
  }

  &__image {
    max-width: to-rem(220);
  }

  &__image-container {
    text-align: center;
  }

  &__buttons {
    max-width: to-rem(210);
  }
}

.partners {
  margin: to-rem(30) 0;

  ul {
    list-style: none;
    justify-content: center;
  }
  
  &__image {
    max-width: 100%;
  }
}

.list-with-bullets {
  padding-left: 0;
  list-style: inside;
}

.reviews {
  background-color: $gray;
  border-radius: to-rem(8);
  padding: to-rem(35);
  margin: 0 auto to-rem(30);

  &__rating {
    height: 100%;
    justify-content: center;
    margin: 0 auto;
    text-align: center;

    span {
      font-size: to-rem(12);
    }
  }

  &__box {
    max-width: to-rem(200);
    padding: 0 to-rem(20);
    flex: 1;
  }

  .stars-image {
    max-width: to-rem(94);
  }

  .awards-image {
    max-width: to-rem(83);
  }

  &__blockquote {
    display: flex;
    flex: 2;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    margin-left: to-rem(10);
  }

  &__item {
    margin-bottom: to-rem(20);
    font-size: to-rem(12);

    p, span {
      font-size: to-rem(12);
      margin: 0;
    }

    span {
      font-weight: 600;
      line-height: to-rem(20);
    }
  }
}

.get-start {
  background-image: linear-gradient(33deg, $orange 6%, #F5333F 100%);
  padding: to-rem(21) 0;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 0;

  &--with-rounded-bottom-borders {
    border-bottom-left-radius: to-rem(8);
    border-bottom-right-radius: to-rem(8);
  }

  h4 {
    color: white;
    font-weight: 600;
    line-height: to-rem(24);
    margin: 0 auto to-rem(12);
    max-width: to-rem(360);
  }

  &__buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .learn-more {
      color: white;
      transition: 0.2s;
      &:hover {
        color: white;
        text-decoration: underline;
      }
    }
  }

  .circle-bottom {
    position: absolute;
    height: 90px;
    width: 240px;
    background: linear-gradient(transparent, transparent) padding-box,
                linear-gradient(to right, rgba($orange, 0.6), rgba(#F5333F, 0.6)) border-box;
    border: 50px solid transparent;
    border-top-left-radius: 300px;
    border-top-right-radius: 300px;
    border-bottom: 0;
    bottom: 0;
    left: 2%;
    z-index: -1;
  }

  .circle-top {
    position: absolute;
    height: 90px;
    width: 240px;
    background: linear-gradient(transparent, transparent) padding-box,
                linear-gradient(to right, rgba($orange, 0.6) 10%, rgba(246, 60, 55, 0.6) 47%) border-box;
    border: 50px solid transparent;
    border-bottom-left-radius: 300px;
    border-bottom-right-radius: 300px;
    border-top: 0;
    top: 0;
    right: 5%;
    z-index: -1;
    height: 100px;
  }
}

.integration {
  font-size: to-rem(14);
  text-align: center;

  a {
    color: $blue;
  }

  &--bordered {
    border-radius: to-rem(8);
    border: 1px solid #F2F4F3;
    margin: 0 auto;

    p {
      margin-top: 1rem;
      margin-bottom: 1rem;
    }
  }
}

#reviews {
  border-color: #458CC2;
  border-radius: to-rem(16);
  border-width: medium;
  border-style: solid;
}