@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Noto+Sans:wght@700&display=swap");
html,
body {
  height: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

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

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

.container {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
/* Header */
.header {
  background: #1e1e1e;
  width: 100%;
}
.header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}
.logo {
  width: 250px;
  max-width: 80%;
  display: block;
}

/* Main */
.main {
  flex: 1 1 auto;
  margin: 30px 0 10px;
  background-color: #ffffff;
}
.title {
  text-transform: uppercase;
  text-align: center;
  font-size: 31px;
  line-height: 1.1;
  font-weight: 900;
  color: #e6303c;
}
/* List */

.list {
  text-align: center;
  list-style: none;
  margin: 20px 0 10px;
  padding-left: 10px;
}
.list-item {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 600;
  font-size: 17px;
  margin-bottom: 8px;
}
.list-item__icon {
  margin-right: 8px;
}
.countdown__title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.image-wrapper {
  display: block;
  width: 100%;
  margin: 20px 0 30px;
}
.image {
  width: 100%;
  max-width: 100%;
  display: block;
}

/* Timer */

.countdown {
  display: flex;
  justify-content: center;
  margin: 15px 0 40px;
}
.countdown-number {
  width: 54px;
  text-align: center;
  margin: 0 10px;
}
.countdown-time {
  font-family: "Noto Sans", sans-serif;
  padding: 10px 8px;
  background: #e32f3c;
  line-height: 1;
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
}
.countdown-text {
  font-weight: 600;
  margin-top: 5px;
  font-size: 11px;
}

.lable {
  text-transform: uppercase;
  background: linear-gradient(180deg, #e6303c 0%, #bb1a33 100%);
  border-bottom: 2px solid #700a24;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 8px;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  color: #ffffff;
}

.select__title {
  max-width: 400px;
  text-transform: uppercase;
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  margin-top: 30px;
  margin: 35px auto 0;
}
.select__box {
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  display: flex;
  justify-content: center;
}
.select__box-button {
  width: calc(50% - 10px);
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(180deg, #e6303c 0%, #bb1a33 100%);
  border-bottom: 2px solid #700a24;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: 20px;
  padding: 17px 8px;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  text-shadow: -0.5px 0.5px 1px rgb(0 0 0 / 50%);
  margin-right: 20px;
}
.select__box-button:hover {
  background: linear-gradient(180deg, #b61b25 0%, #840619 100%);
  border-bottom: 2px solid #700a24;
}
.select__box-button:last-child {
  margin-right: 0;
  background: linear-gradient(180deg, #09d809 0%, #2dab00 100%);
  border-bottom: 2px solid #0c630a;
}
.select__box-button:last-child:hover {
  background: linear-gradient(180deg, #0ab50a 0%, #247e04 100%);
}

/* Footer */

.footer {
  width: 100%;
  background: #1e1e1e;
}
.footer__inner {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}
.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.footer__text {
  font-size: 8px;
  line-height: 1.05;
  color: #fff;
  margin-top: 10px;
}
.footer__links {
  display: flex;
  flex-direction: column;
}
.footer__links-item {
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  text-align: end;
  margin-bottom: 5px;
}
.footer__links-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .logo {
    max-width: 180px;
  }
  .footer__links-item {
    font-size: 14px;
  }
  .footer__text {
    margin-top: 15px;
  }
  .select__box {
    margin: 15px auto 0;
  }
  .select__box-button {
    width: calc(50% - 5px);
    margin-right: 10px;
    padding: 15px 5px;
    font-size: 18px;
  }
}
