@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
html {
  font-size: 10px;
}

body {
  background-color: #fff;
  color: #656c7c;
  font-family: Inter, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
small,
strong {
  margin: 0;
  padding: 0;
  font-size: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.icon-font {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  position: relative;
  top: -0.3rem;
}
.icon-font > svg {
  width: 100%;
  height: 100%;
}

.container {
  max-width: 1180px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 520px;
  }
}
@media (max-width: 575px) {
  .container {
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 350px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.txt--lg {
  font-size: 3.2rem;
}
.txt--md {
  font-size: 2.4rem;
}
.txt--font700 {
  font-weight: 700;
}
.txt--font600 {
  font-weight: 600;
}
.txt--font500 {
  font-weight: 500;
}
.txt--font400 {
  font-weight: 400;
}

.section {
  padding: 10rem 0;
}

.section-top {
  margin-bottom: 7rem;
}
.section-top--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-top__title {
  color: #000000;
}
.section-top__desc {
  margin-top: 1rem;
}

.grid {
  display: grid;
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  max-width: 100%;
}
.grid-layout--third {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-template-rows: 1fr;
}

.price-card {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 1.6rem;
  padding: 3rem 2.4rem;
  display: flex;
  flex-direction: column;
  transition: 0.4s cubic-bezier(0.29, 0.13, 0.27, 0.74);
}
.price-card:hover:not(.price-card--featured) {
  border-color: transparent;
  box-shadow: 0px 14px 30px 0px rgba(204, 204, 204, 0.32);
}
.price-card--featured {
  background-color: #1769ff;
  border-color: transparent;
  color: #fff;
}
.price-card--featured .list__item-icon, .price-card--featured .list__item-text {
  color: #fff;
}
.price-card--featured .price-card__head-icon {
  color: #fff;
}
.price-card--featured .price-card__head-title {
  color: #fff;
}
.price-card__head {
  justify-content: space-between;
}
.price-card__head, .price-card__head-content {
  display: flex;
  align-items: center;
}
.price-card__head-content {
  width: 100%;
}
.price-card__head-icon {
  color: #1769ff;
  font-size: 3rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}
.price-card__head-title {
  color: #000000;
}
.price-card__content {
  margin-top: 3.2rem;
  margin-bottom: 4.4rem;
}
.price-card__content-desc {
  margin-bottom: 3.2rem;
}
.price-card__content-price {
  margin-bottom: 3.2rem;
  display: flex;
  align-items: center;
}
.price-card__content-price__money {
  color: #000000;
  margin-right: 1rem;
}
.price-card__foot {
  margin-top: auto;
}

.list__item {
  display: flex;
  align-items: center;
}
.list__item--wrong .list__item-icon {
  font-size: 1.4rem;
  top: -0.15rem;
}
.list__item--wrong .list__item-icon, .list__item--wrong .list__item-text {
  color: #b1b8c9;
}
.list__item:not(:last-child) {
  margin-bottom: 3.2rem;
}
.list__item-icon {
  flex-shrink: 0;
  top: -0.25rem;
  margin-right: 2rem;
  color: #ea455f;
}
.list__item-text {
  color: #000000;
}

.badge {
  padding: 0.8rem 1.8rem;
  flex-shrink: 0;
  border-radius: 4rem;
  text-align: center;
}
.badge--yellow {
  background: #fdb72e;
  color: #fff;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 0.8rem;
  transition: 0.4s cubic-bezier(0.29, 0.13, 0.27, 0.74);
  border: 2px solid transparent;
}
.button--primary {
  background-color: #ffecf0;
  color: #ea4c89;
}
.button--primary:hover {
  background-color: #ea4c89;
  color: #ffffff;
}
.button--white {
  background-color: #ffffff;
  color: #ea4c89;
}
.button--white:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}