html {
  font-size: 62.5%;
}

@media (min-width: 600px) {
  html {
    font-size: 80%;
  }
}

body {
  color: #000;
  background: #f6f6f6;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
}

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

@media (min-width: 600px) {
  .container {
    max-width: 800px;
  }
}

.logo {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  font-family: "Mali", cursive;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: normal;
  line-height: 1.3;
}

.logo__title {
  font-size: 2.6rem;
}

.logo__or {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.logo__subtitle {
  font-size: 1.9rem;
}

.logo__img {
  margin: 1.2rem 0 1.2rem;
  width: 94px;
  height: 90px;
  display: block;
}

.logo--contrast {
  color: #57336b;
}

.subtitle {
  border-bottom: 1px dotted #d7356e;
  color: #57336b;
  padding: 1rem 0 2px;
}

.subtitle::after {
  content: "";
  display: block;
  height: 1px;
  border-bottom: 1px dotted #d7356e;
  padding-top: 1rem;
}

.subtitle__1 {
  color: #d7356e;
  font-weight: bold;
}

.subtitle__2 {
  color: #d7356e;
}

.subtitle__3 {
  color: #57336b;
  font-weight: bold;
}

.subtitle__1, .subtitle__2, .subtitle__3 {
  font-size: 2rem;
}

.avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 3rem auto;
  mix-blend-mode: multiply;
  border-radius: 100%;
}

.section {
  padding: 4rem 0;
  /* BG */
  /* PADD */
  /* FX */
}

.section--bg-primary {
  background: #4d2663;
  background: linear-gradient(276deg, #4d2663 46%, #d7356e 100%);
}

.section--bg-secondary {
  background: #d7356e;
  background: linear-gradient(99deg, #d7356e 0%, #4d2663 45%);
}

.section--bg-white {
  background: #fff;
}

.section--padd-3rem {
  padding: 3rem 0;
}

.section--has-shadow {
  -webkit-box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.18);
          box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.18);
}

.section--contrast {
  color: #000;
}

.title {
  font-size: 2.1rem;
  text-align: center;
  font-family: "Mali", cursive;
  font-weight: normal;
  color: #fff;
  line-height: 1.4;
}

.title--size-4rem {
  font-size: 4rem;
}

.title--size-27rem {
  font-size: 2.7rem;
}

.title--contrast {
  color: #000;
}

.title--color-primary {
  color: #d7356e;
}

.text p {
  margin: 0 0 3rem;
}

.text p:last-child {
  margin: 0;
}

.list {
  margin: 3rem 0;
}

.list__item {
  margin: 0 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.list__item:last-child {
  margin: 0;
}

.list__icon {
  min-width: 3.5rem;
  min-height: 3.5rem;
  font-size: 1.6rem;
  background: #d7356e;
  color: #fff;
  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;
}

.list--stretch .list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.list--stretch .list__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.list--stretch .list__icon {
  min-height: 0;
}

.list-num {
  margin: 3rem 0;
  counter-reset: numbers;
}

.list-num__item {
  counter-increment: numbers;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5;
}

.list-num__item::before {
  content: counter(numbers) ".";
  font-weight: bold;
  color: #d7356e;
  min-width: 2rem;
}

.icon-title {
  border: 2px dashed #d7356e;
  font-family: "Mali", cursive;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 3rem;
}

.icon-title__icon {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  min-height: 4.5rem;
  min-width: 4.5rem;
  background: #d7356e;
  color: #fff;
  font-weight: normal;
  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;
}

.simple-title {
  margin: 3rem 0;
  font-size: 2rem;
  font-family: "Mali", cursive;
}

.simple-title__num {
  font-size: 3.4rem;
  color: #d7356e;
}

.price {
  background: #fff;
  font-size: 1.9rem;
  font-weight: bold;
  text-align: center;
  color: #d7356e;
  padding: 0.6rem 1rem;
  margin: 2.6rem auto 2rem;
  max-width: 414px;
}

.timer-head {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin: 3rem 0;
}

.block {
  color: #fff;
  background: #d7356e;
  padding: 2rem;
}

.block span {
  display: block;
  font-style: italic;
}

@media (min-width: 600px) {
  .block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.blocks-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 0.3rem;
}

@media (min-width: 600px) {
  .blocks-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem;
  }
}

.date {
  color: #fff;
  background: #d7356e;
  font-size: 1.6rem;
  font-weight: normal;
  padding: 0.4rem 1.5rem;
  display: inline-block;
  margin: 3rem 0;
}

.bt {
  color: #fff;
  text-align: center;
  display: block;
  font-size: 1.6rem;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #d7356e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  border: 2px solid #d7356e;
  max-width: 414px;
  margin-left: auto;
  margin-right: auto;
}

.bt::before {
  background: url(../img/calendar.svg) no-repeat 0 0;
  background-size: contain;
  content: " ";
  min-width: 2rem;
  min-height: 2rem;
}

.bt:hover {
  background: transparent;
  border-color: #fff;
}

.frame {
  color: #b9810c;
  border: 1px solid #b9810c;
  padding: 3rem;
}

.frame .title {
  color: #b9810c;
}

.quote {
  font-style: italic;
}

.quote__txt {
  margin: 0 0 3rem;
}

.quote__txt:last-child {
  margin-bottom: 0;
}

.quote::after {
  display: block;
  content: "";
  width: 10rem;
  height: 1px;
  background: #afafaf;
  margin: 1rem 0 0;
}

.image {
  margin: 4rem auto;
  display: block;
  width: 100%;
  max-width: 1200px;
  padding: 1rem;
  border: 1px solid #d7356e;
}

.countdown {
  text-align: center;
}

.countdown_row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #fff;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  text-align: center;
}

.countdown_section {
  background: #d7356e;
  min-width: 5rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  min-height: 5rem;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.3;
}

.countdown_section br {
  display: none;
}

footer {
  margin-top: 10rem;
  padding: 4rem 0;
}

.copy {
  color: #a1a1a1;
  font-size: 1.2rem;
}

.copy-link {
  color: #a1a1a1;
  text-decoration: none;
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.copy-link:hover {
  color: #000;
}

/* Classes */
.mb0 {
  margin-bottom: 0;
}

.pb4 {
  padding-bottom: 4rem;
}

.mb4 {
  margin-bottom: 4rem;
}

.mb3 {
  margin-bottom: 3rem;
}

.mb15 {
  margin-bottom: 1.5rem;
}

.pb0 {
  padding-bottom: 0;
}

.ctxt {
  color: #000;
}

.cwhite {
  color: #fff;
}

.s27 {
  font-size: 2.7rem;
  line-height: 1.1;
}

.italic {
  font-style: italic;
}

.center {
  text-align: center;
}

.space {
  padding-right: 1rem;
}
/*# sourceMappingURL=components.css.map */