@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box;
  font-family: Montserrat, sans-serif;
  margin: 0;
  padding: 0;
}

.content {
  background-color: #141b1c;
  height: 100vh;
  width: 100vw;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

.price-card {
  width: 380px;
  height: 770px;
  background-color: #334247;
  flex-shrink: 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.price-card__title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 132px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
}
.price-card__title_main-text {
  font-size: 35px;
  line-height: 43px;
  font-weight: 700;
  margin-top: 32px;
}
.price-card__title_sub-text {
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
}
.price-card__price {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 105px;
  width: 100%;
  font-weight: 700;
  font-size: 55px;
}
.price-card__description {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 300;
  height: 116px;
  margin: 0 26px;
  text-align: center;
}
.price-card__options-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.price-card__options-list_item {
  height: 50px;
  font-size: 15px;
  font-weight: 300;
  padding: 16px 22px;
  position: relative;
}
.price-card__options-list_item-text {
  padding-left: 20px;
}
.price-card__options-list_item:nth-child(odd) {
  background-color: #2a3438;
}
.price-card__options-list > .basic__check::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 13px;
  margin-right: 22px;
  background-image: url("https://gromcode.s3.eu-central-1.amazonaws.com/front-end/html-css/lesson+25/verification-checkmark-symbol_green.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.price-card__options-list > .business__check::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 13px;
  margin-right: 22px;
  background-image: url("https://gromcode.s3.eu-central-1.amazonaws.com/front-end/html-css/lesson+25/verification-checkmark-symbol_blue.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.price-card__options-list > .webshop__check::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 13px;
  margin-right: 22px;
  background-image: url("https://gromcode.s3.eu-central-1.amazonaws.com/front-end/html-css/lesson+25/verification-checkmark-symbol_orange.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.price-card__button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 39px;
}
.price-card__button_text {
  text-transform: uppercase;
  border: none;
  width: 156px;
  height: 40px;
  border-radius: 20px;
  color: #fff;
}
.price-card__button_text:hover {
  cursor: pointer;
}
.price-card__business::before {
  content: "popular";
  position: absolute;
  top: 30px;
  right: -35px;
  height: 25px;
  width: 147px;
  background-color: #dc3f45;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  line-height: 25px;
  rotate: 45deg;
}

.basic {
  background-color: #5bb189;
}

.business {
  background-color: #3a6ba5;
}

.webshop {
  background-color: #ec632a;
}

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