/* Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Roboto:wght@700&display=swap');

html,
body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  background-color: #fff;
  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: 540px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */

.header {
  width: 100%;
  background: #ffc700;
}
.header__inner {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.logo {
  width: 250px;
  max-width: 80%;
  display: block;
}

.header__text {
  text-transform: capitalize;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
  padding: 0 35px;
  position: relative;
}
.header__text:after {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  background: url(images/pum.png) center no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: calc(50% - 14px);
}
.header__text:before {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  background: url(images/pum.png) center no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: calc(50% - 14px);
}
/* Main */

.main {
  background-color: #ff7b00;
}
.main__inner {
  width: 100%;
  max-width: 500px;
  background: url(images/main_bg.png) no-repeat #ff7b00;
  background-size: cover;
  background-position: center -60px;
  padding: 70px 20px 400px;
  margin: 0 auto;
}
.main__image {
  display: block;
  width: 100%;
  max-width: 100%;
}
.main__image-wrapper {
  display: block;
  max-width: 100%;
  padding: 0 10px;
}
.title {
  max-width: 364px;
  text-transform: capitalize;
  text-align: center;
  font-weight: 700;
  font-size: 35px;
  color: #ffffff;
  margin: 0 auto 20px;
}
.main__box {
  background-color: #ffffff;
  padding: 26px 22px;
  margin-top: 28px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 9px;
}
.main__box__title {
  text-transform: capitalize;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.main__box__button {
  display: block;
  width: 100%;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  color: #ffffff;
  background: #2e0a36;
  border-radius: 8px;
  margin-top: 8px;
  font-size: 20px;
  font-weight: 700;
  padding: 16px;
}
.main__box__button:hover {
  background: #600e72;
}

.description {
  color: #ffffff;
  background-color: #1a1a2c;
  padding: 40px 0;
}
.deacription__text {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 12px;
}
.deacription__text:last-child {
  margin-bottom: 0;
}
/* Footer */

.footer {
  width: 100%;
  background: #1a1a2c;
}
.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-family: 'Roboto', sans-serif;
  font-size: 9px;
  line-height: 1.2;
  color: #b5b5c3;
  margin-top: 14px;
}
.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: 440px) {
  .main__inner {
    width: 100%;
    max-width: 500px;
    background: url(images/main_bg.png) no-repeat #ff7b00;
    background-size: 100% calc(100% + 50px);
    background-position: center -50px;
    padding: 70px 20px 400px;
    margin: 0 auto;
  }
  .logo {
    max-width: 170px;
  }
  .footer__links-item {
    font-size: 14px;
  }
}
