.price-card {
  width: 380px;
  background-color: #334247;
  margin: 115px 0;
  position: relative;
}
.price-card__title {
  height: 133px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.price-card__title_rate, .price-card__title_website {
  margin: 0;
  text-align: center;
}
.price-card__title_rate {
  line-height: 43px;
  font-size: 35px;
  font-weight: 700;
}
.price-card__title_website {
  line-height: 24px;
  font-size: 20px;
  font-weight: 300;
}
.price-card__price {
  height: 105px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.price-card__price_sum {
  font-size: 55px;
  font-weight: 700;
}
.price-card__description {
  height: 116px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.price-card__description_text {
  width: 328px;
  height: 36px;
  font-size: 15px;
  font-weight: 300;
  line-height: 100%;
  text-align: center;
}
.price-card__options-list_element {
  display: flex;
}
.price-card__options-list_element:nth-child(odd) {
  background-color: #2a3438;
}
.price-card__options-list_element-check {
  width: 15px;
  height: 13px;
  margin-left: 22px;
  margin-top: 18px;
}
.price-card__options-list_element-text {
  height: 18px;
  margin-left: 22px;
  margin-top: 16px;
  margin-bottom: 16px;
  font-weight: 300;
  font-size: 15px;
}
.price-card__order {
  height: 119px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.price-card__order_button {
  width: 156px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
}

.price-card:nth-child(1) {
  margin-left: 132px;
  margin-right: 18px;
}
.price-card:nth-child(1) .price-card__price,
.price-card:nth-child(1) .price-card__order_button {
  background-color: #5bb189;
}
.price-card:nth-child(1) .price-card__options-list_element-check {
  background-image: url(https://gromcode.s3.eu-central-1.amazonaws.com/front-end/html-css/lesson+25/verification-checkmark-symbol_green.png);
}

.price-card:nth-child(2) {
  margin-right: 18px;
  overflow: hidden;
}
.price-card:nth-child(2) .price-card__badge {
  width: 122px;
  height: 123px;
  position: absolute;
  top: -18px;
  right: -18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.price-card:nth-child(2) .price-card__badge_rectangle {
  width: 25px;
  height: 147px;
  transform: rotate(-45deg);
  background: #dc3f45;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.price-card:nth-child(2) .price-card__badge_rectangle-content {
  font-size: 14px;
  font-weight: 700;
  transform: rotate(90deg);
  list-style: none;
}
.price-card:nth-child(2) .price-card__price,
.price-card:nth-child(2) .price-card__order_button {
  background-color: #3a6ba5;
}
.price-card:nth-child(2) .price-card__options-list_element-check {
  background-image: url(https://gromcode.s3.eu-central-1.amazonaws.com/front-end/html-css/lesson+25/verification-checkmark-symbol_blue.png);
}

.price-card:nth-child(3) {
  margin-right: 132px;
}
.price-card:nth-child(3) .price-card__price,
.price-card:nth-child(3) .price-card__order_button {
  background-color: #ec632a;
}
.price-card:nth-child(3) .price-card__options-list_element-check {
  background-image: url(https://gromcode.s3.eu-central-1.amazonaws.com/front-end/html-css/lesson+25/verification-checkmark-symbol_orange.png);
}

* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #141b1c;
}

.price-tables {
  height: 1000px;
  display: flex;
}

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