@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;900&family=Roboto:wght@400;500;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: 610px;
  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: 40px 0 100px;
  background-color: #ffffff;
}
.title {
  text-align: center;
  font-size: 44px;
  font-weight: 900;
  color: #d8293a;
}
.subtitle {
  display: flex;
  justify-content: center;
  color: #1e1e1e;
  font-size: 24px;
  font-weight: 500;
  margin: 15px 0;
}
.subtitle__image {
  width: 38px;
  height: 39px;
  display: block;
  margin-left: 10px;
}

.bar__text {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #1e1e1e;
}
.bar__wrapper {
  overflow: hidden;
  text-align: center;
  width: 100%;
  max-width: 190px;
  height: 15px;
  box-shadow: 0 1px 5px rgb(0 0 0 / 70%);
  border-radius: 5px;
  font-size: 18px;
  color: #ffffff;
  padding: 7px 20px;
  position: relative;
  margin: 0 auto 10px;
  z-index: 5;
}
.bar {
  width: 87%;
  height: 100%;
  background-color: #5cb85c;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.bar__lines {
  width: 300%;
  height: 100%;
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-size: 40px 40px;
  animation: progress-bar 5s linear infinite reverse;
}

@keyframes progress-bar {
  100% {
    margin-left: -360px;
  }
}
@-webkit-keyframes progress-bar {
  100% {
    margin-left: -360px;
  }
}

.image-wrapper {
  display: block;
  width: 100%;
  margin: 20px 0 35px;
}
.image {
  width: 100%;
  max-width: 100%;
  display: block;
}
.select__title {
  text-transform: uppercase;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
}
.select__box {
  width: 100%;
  max-width: 400px;
  margin: 30px 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, #21cb12 0%, #17af08 100%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25),
    inset 0px -7px 23px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  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, #17a00a 0%, #108405 100%);
}
.select__box-button:last-child {
  margin-right: 0;
  background: linear-gradient(180deg, #e6303c 0%, #bb1a33 100%);
}
.select__box-button:last-child:hover {
  background: linear-gradient(180deg, #bc1f29 0%, #930c20 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: 500px) {
  .logo {
    max-width: 180px;
  }
  .footer__links-item {
    font-size: 14px;
  }
  .footer__text {
    margin-top: 15px;
  }

  .title {
    font-size: 36px;
  }
  .subtitle {
    font-size: 20px;
  }
  .subtitle__image {
    width: 32px;
    height: 32px;
  }
  .select__title {
    font-size: 22px;
  }
  .select__box {
    margin: 15px auto 0;
  }
  .select__box-button {
    width: calc(50% - 5px);
    margin-right: 10px;
    padding: 8px 2px;
    font-size: 23px;
  }
}
