html {
  font-size: 62.5%;
}

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

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
  color: #1a2b5f;
}

.wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.container {
  max-width: 1210px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.btn {
  cursor: pointer;
  display: inline-block;
  outline: none;
  text-decoration: none;
  border: 0;
  font-size: 1.6rem;
  text-align: center;
  padding: 0.6rem 3rem;
  color: #1a2b5f;
  background-color: transparent;
}
.btn--border {
  border: 1.2px solid currentColor;
}
.btn--rounded {
  border-radius: 5rem;
}
.btn--primary {
  background-color: #ffc87a;
}
.btn--primary.has-shadow {
  box-shadow: 0 10px 35px -5px #ffc87a;
}

.header {
  padding-top: 4rem;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
}
.header__menu-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
}
.header__menu-item {
  margin-left: 5rem;
}
.header__menu-item:last-child {
  margin-left: 7rem;
}
.header__menu-link {
  text-decoration: none;
  font-size: 1.6rem;
  color: #1a2b5f;
  transition: color 0.25s linear, border 0.25s linear;
}
.header__menu-link:hover {
  color: #ffc87a;
}

.logo {
  font-size: 2.5rem;
  text-decoration: none;
  font-weight: 600;
  color: #1a2b5f;
}
.logo__text {
  color: #ffc87a;
}

.banner {
  padding-top: 15rem;
  padding-bottom: 15rem;
  margin: 0 auto;
  max-width: 80rem;
  text-align: center;
}
.banner__heading {
  font-size: 6rem;
  font-weight: 600;
  margin-bottom: 3rem;
}
.banner__description {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
}
.banner__buttons {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}
.banner__buttons .btn {
  margin: 0 1rem;
}

.category__list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}
.category__item {
  width: calc((100% - 90px) / 4);
  padding: 2.5rem;
  background-color: white;
  border-radius: 25px;
  box-shadow: 0 20px 35px -5px rgba(235, 131, 174, 0.25);
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: column;
}
.category__image {
  width: 100%;
  height: 23rem;
  border-radius: inherit;
  object-fit: cover;
  margin-bottom: 4rem;
}
.category__name, .category__details {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.category__name {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}
.category__details {
  font-size: 1.4rem;
  color: #c6cad7;
  margin-top: auto;
}
.category__details i {
  margin-left: 1.5rem;
}

.feature {
  padding-top: 18rem;
}
.feature__item {
  display: flex;
  align-items: center;
  margin-bottom: 15rem;
}
.feature__item:nth-child(odd) .feature__info {
  padding-left: 10rem;
}
.feature__item:nth-child(even) {
  flex-direction: row-reverse;
}
.feature__item:nth-child(even) .feature__info {
  padding-right: 10rem;
}
.feature__image, .feature__info {
  width: 50%;
}
.feature__title {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}
.feature__description {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 4rem;
  line-height: 1.8;
}
.feature-intro__item {
  font-weight: 600;
  font-size: 1.8rem;
  text-decoration: underline;
  margin-bottom: 3rem;
}
.feature-intro__item--circle {
  position: relative;
  text-decoration: none;
  padding-left: 3rem;
}
.feature-intro__item--circle:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 2rem;
  height: 2rem;
  background-color: #00aefd;
  border-radius: 4rem;
  transform: translateY(-50%);
}
.feature-intro__item--circle:nth-child(2):before {
  background-color: #ffc87a;
}
.feature-intro__item--circle:nth-child(3):before {
  background-color: #347cbe;
}
.feature-intro__item--circle:nth-child(4):before {
  background-color: #cc92af;
}
.feature-best__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.feature-best__item {
  width: calc((100% - 30px) / 2);
  margin-bottom: 4rem;
}
.feature-best__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 5px;
  color: #00aefd;
  font-size: 2rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  margin-bottom: 1rem;
}
.feature-best__icon:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: currentColor;
  opacity: 0.1;
  z-index: -1;
  border-radius: inherit;
}
.feature-best__icon--purple {
  color: purple;
}
.feature-best__icon--green {
  color: #07a787;
}
.feature-best__icon--red {
  color: #ff7870;
}
.feature-best__title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.feature-best__description {
  font-size: 1.4rem;
}

.text-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.text-clamp--2 {
  -webkit-line-clamp: 2;
}

.partner {
  margin-bottom: 19rem;
}
.partner__container {
  max-width: 83rem;
}
.partner__title {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  padding-bottom: 7rem;
  margin-bottom: 7rem;
  border-bottom: 2px solid currentColor;
}
.partner__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
}

.connect {
  text-align: center;
  margin-bottom: 17rem;
}
.connect__title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 3.5rem;
}
.connect__notice {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 6rem;
}
.connect__notice span {
  color: #ffc87a;
}
.connect__list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
}
.connect__item {
  width: calc(25% - 22.5px);
}

.subscribe {
  margin-bottom: 5rem;
}
.subscribe__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  padding-bottom: 8rem;
  border-bottom: 2px solid;
}
.subscribe__title, .subscribe__info {
  width: 50%;
}
.subscribe__title {
  font-size: 3rem;
  font-weight: 600;
  max-width: 43rem;
}
.subscribe__form {
  background-color: #f2f1f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
  padding: 2rem;
  margin-bottom: 3.5rem;
}
.subscribe__input, .subscribe__button {
  padding: 0;
}
.subscribe__input {
  border: 0;
  outline: none;
  font-size: 1.6rem;
  flex-grow: 1;
  padding-right: 1.5rem;
  background-color: transparent;
}
.subscribe__button {
  background-color: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: currentColor;
}
.subscribe__social i {
  font-size: 2rem;
  margin-left: 4rem;
}
.subscribe__social i:hover {
  color: #ffc87a;
  cursor: pointer;
}

.footer__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: row;
}
.footer__item {
  width: 25%;
}
.footer__link {
  display: block;
  color: #1a2b5f;
  font-size: 1.4rem;
  margin-bottom: 3rem;
  width: fit-content;
}

@media screen and (max-width: 1023px) {
  .banner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .banner__heading {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
  .banner__description {
    font-size: 1.6rem;
  }
  .banner__buttons > .btn {
    font-size: 1.4rem;
  }

  .category__item {
    width: calc(50% - 15px);
    margin-bottom: 2.5rem;
  }

  .feature {
    padding-top: 10rem;
  }
  .feature__item {
    flex-direction: column;
    margin-bottom: 8rem;
  }
  .feature__item:nth-child(odd) .feature__info {
    padding: 0;
  }
  .feature__item:nth-child(even) {
    flex-direction: column;
  }
  .feature__item:nth-child(even) .feature__info {
    padding: 0;
  }
  .feature__image, .feature__info {
    width: 100%;
  }
  .feature__image {
    margin: 0 auto 5rem;
  }

  .partner {
    margin-bottom: 12rem;
  }
  .partner__title {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .header__menu {
    display: none;
  }

  .partner__list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .partner__item {
    width: 50%;
    margin-bottom: 2rem;
  }
  .partner__item img {
    margin: 0 auto;
  }

  .connect {
    margin-bottom: 10rem;
  }
  .connect__list {
    flex-wrap: wrap;
  }
  .connect__item {
    width: calc((100% - 1.5rem) / 2);
    margin-bottom: 1.5rem;
  }

  .subscribe__container {
    flex-wrap: wrap;
  }
  .subscribe__title, .subscribe__info {
    width: 100%;
  }
  .subscribe__title {
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
  .subscribe__social > i {
    margin-left: 0;
    margin-right: 4rem;
  }

  .footer__container {
    flex-wrap: wrap;
  }
  .footer__item {
    width: 100%;
    margin-bottom: 2rem;
  }
  .footer__link {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 479px) {
  .banner__heading {
    font-size: 3rem;
  }
  .banner__buttons > .btn {
    font-size: 1.2rem;
  }

  .category__item {
    width: 100%;
  }
  .category__image {
    height: 18rem;
  }
}

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