html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, pre,
a, abbr, address, big, blockquote, cite, code,
del, dfn, em, img, ins, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li, form, label, input, fieldset, legend, caption,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, main, nav, output, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  border: none;
  outline: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
       text-size-adjust: none;
}

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

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

ol, ul, nav, menu {
  list-style: none;
}

img, video, canvas {
  max-width: 100%;
  height: auto;
}

img {
  vertical-align: bottom;
}

a, button {
  cursor: pointer;
  margin: 0;
  padding: 0;
}

a:hover, button:hover {
  cursor: pointer;
}

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

button {
  border: none;
  background: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th, td {
  vertical-align: middle;
}

iframe {
  width: 100%;
}

/* inter  variable */
@font-face {
  font-family: "Inter Variable";
  src: url("../fonts/Inter-VariableFont_slnt,wght.woff2") format("woff2 supports variations"), url("../fonts/Inter-VariableFont_slnt,wght.woff2") format("woff2-variations");
  font-display: swap;
  font-weight: 100 900;
  font-stretch: 85% 100%;
}
/* =========================== all */
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Inter Variable", sans-serif;
  color: #1D1B1B;
  background: #F6F6F6;
  line-height: 1.5;
}

/* heading */
h1, .h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  h1, .h1 {
    font-size: 26px;
    line-height: 32px;
  }
}

/* content */
a, p, ol:not([class]) li, ul:not([class]) li {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

p {
  color: #3F3F3F;
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: underline;
}

b, strong {
  font-weight: bold;
}

i, em {
  font-style: italic;
}

/* list */
ul:not([class]) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 20px;
  margin-bottom: 30px;
}
ul:not([class]) li {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  padding-left: 28px;
}
ul:not([class]) li::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: center center/cover no-repeat;
  background-image: url("../img/sprite.svg#sprite--check");
  left: 0;
  top: 2px;
}
@media screen and (max-width: 650px) {
  ul:not([class]) li {
    min-width: 100%;
  }
}

/* img */
img {
  display: block;
  margin: 0 auto;
}

.img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  padding: 5px;
}

figure {
  margin-bottom: 20px;
}

/* transition */
* {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* btn */
.btn {
  display: block;
  width: 100%;
  height: 48px;
  line-height: 48px;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  background: #FF2F31;
  margin: 0 auto;
}
.btn:hover {
  background: #C80002;
}

button {
  font-family: "Inter Variable";
}

/* flexbox */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* container */
.container {
  max-width: 700px;
  padding: 0 20px;
  margin: 0 auto;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px 0;
}

.copy {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #797979;
  text-align: center;
  margin-bottom: 0;
}

.accepts {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #797979;
}
.accepts-img {
  width: 18px;
  height: 18px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}

.bonus {
  border-radius: 10px;
  background: #F6F6F6;
  padding: 20px;
}
.bonus-title {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #797979;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bonus-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.bonus-text:not(:last-of-type) {
  margin-bottom: 18px;
}

.card {
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 4px 4px 40px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 40px 0px rgba(0, 0, 0, 0.1);
  padding: 25px;
}
.card:not(:last-child) {
  margin-bottom: 20px;
}
.card_top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px 20px;
  margin-bottom: 20px;
}
.card_top .img {
  position: relative;
  width: 200px;
  min-width: 200px;
  height: 120px;
}
.card_top .img::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  width: 30px;
  height: 30px;
  border-radius: 100%;
  text-align: center;
  line-height: 30px;
  background: #FFD000;
  font-size: 14px;
  font-weight: 700;
  top: -10px;
  left: -10px;
}
.card-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.card-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  margin-bottom: 4px;
}
.card-name:hover {
  text-decoration: underline;
}
.card .feature {
  width: 190px;
  min-width: 190px;
}
.card .bonus {
  margin-bottom: 20px;
}
.card .btn {
  margin-bottom: 12px;
}
@media screen and (max-width: 690px) {
  .card:not(:last-child) {
    margin-bottom: 15px;
  }
  .card_top {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 15px;
  }
  .card_top .accepts {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .card-info {
    min-width: 100%;
    text-align: center;
  }
  .card .feature {
    min-width: 100%;
    max-width: 100%;
  }
  .card .bonus, .card .payment {
    margin-bottom: 15px;
  }
  .card .btn {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 500px) {
  .card_top .img {
    width: 100%;
  }
}

.feature {
  border-radius: 10px;
  background: #F6F6F6;
  padding: 15px 20px;
}
.feature__item {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.feature__item.disabled {
  opacity: 0.5;
}
.feature__item:not(:last-child) {
  margin-bottom: 10px;
}
.feature-img {
  min-width: 16px;
  width: 16px;
  margin: 0;
}

/* footer */
.footer {
  background: #E2E2E2;
  padding: 30px 0;
}

/* header */
.header {
  position: relative;
  z-index: 101;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.08);
  background: #fff;
  text-align: center;
  padding: 20px 0;
}
.header .logo {
  display: inline-block;
}

/* offer */
.offer {
  counter-reset: number;
  margin: 35px 0;
}
@media screen and (max-width: 690px) {
  .offer {
    margin: 30px 0;
  }
}

.payment {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.payment__item {
  width: 60px;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 7px;
  background: #F6F6F6;
  padding: 5px;
}

/* rating */
.rating {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 10px;
}
.rating-rating {
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  -ms-flex-item-align: end;
      align-self: end;
}
.rating-number {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
.rating-star {
  position: relative;
  height: 16.6px;
  width: 83px;
}
.rating-star::before {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='14' viewBox='0 0 17 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_476_10449)'%3E%3Cpath d='M9.20557 4.55176L9.31885 4.79297L9.58252 4.83301L13.7651 5.47266L10.7241 8.59082L10.5483 8.77148L10.5884 9.02051L11.3062 13.4238L7.57568 11.3613L7.3335 11.2275L7.09131 11.3613L3.35986 13.4229L4.07861 9.01953L4.11963 8.77051L3.94287 8.58984L0.900879 5.47266L5.08447 4.83301L5.34814 4.79297L5.46143 4.55176L7.3335 0.5625L9.20557 4.55176Z' stroke='%23FFD000'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_476_10449'%3E%3Crect width='16' height='14' fill='white' transform='translate(0.333496)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 16.6px;
  bottom: 0;
  display: block;
  height: 16.6px;
  left: 0;
  right: 0;
  top: 0;
  width: 83px;
}
.rating-span {
  display: block;
  text-indent: -10000px;
  width: 83px;
  height: 16.6px;
  position: absolute;
  overflow: hidden;
}
.rating-span:before {
  display: block;
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='14' viewBox='0 0 16 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6285 5.00733L9.32467 4.34991L7.39559 0.240913C7.2515 -0.0659204 6.74809 -0.0659204 6.604 0.240913L4.6755 4.34991L0.37167 5.00733C0.0181704 5.06158 -0.122996 5.4915 0.12492 5.74525L3.25159 8.95008L2.5125 13.4808C2.45359 13.8407 2.838 14.1108 3.15592 13.9341L7.00009 11.8096L10.8443 13.9347C11.1593 14.1097 11.5472 13.8448 11.4877 13.4814L10.7486 8.95066L13.8753 5.74583C14.1232 5.4915 13.9814 5.06158 13.6285 5.00733Z' fill='%23FFD000'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 16.6px;
  bottom: 0;
  height: 16.6px;
  left: 0;
  right: 0;
  text-indent: 10000px;
  top: 0;
}

.remark {
  display: inline-block;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 6px;
  margin-bottom: 10px;
}
.remark_red {
  background: #FF2F31;
  color: #fff;
}
.remark_yellow {
  background: #FFD000;
  color: #1D1B1B;
}
/*# sourceMappingURL=../sourcemaps/style.css.map */
