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

html,
body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
  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: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */

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

/* Main */

.main {
  text-align: center;
  padding: 30px 0 100px;
}
.title {
  text-transform: uppercase;
  font-size: 34px;
  font-weight: 700;
  color: #1e1e1e;
}

.image__wrapper {
  max-width: 500px;
  margin: 20px auto;
}
.image__wrapper__head-image {
  width: 34px;
  height: 34px;
}
.image__wrapper__head {
  font-family: 'Roboto', sans-serif;
  display: flex;
  align-items: center;
  padding: 10px 0 25px;
}
.image__wrapper__head-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-left: 10px;
}
.image__wrapper__head-content__title {
  font-weight: 600;
  font-size: 18px;
}
.image__wrapper__head-content__text {
  text-align: left;
  text-transform: capitalize;
  font-weight: 400;
  color: #797d7e;
  font-size: 14px;
}

.image {
  max-width: 100%;
  width: 100%;
}
.text {
  text-align: left;
  font-weight: 500;
}

.list__title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 45px;
}
.list {
  display: block;
  text-align: left;
  margin: 30px 0 50px;
}
.list-item {
  text-align: left;
  font-weight: 600;
  margin: 10px 0;
}
.quiz__main {
  background-color: #fff;
  padding: 30px 45px 45px;
  margin-top: 40px;
}
.question {
  font-size: 24px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 25px;
}

.buttons-box__links {
  display: none;
}
.button {
  text-decoration: none;
  display: block;
  cursor: pointer;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 700;
  border: none;
  color: #ffffff;
  background: #28619a;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 10px;
}
.button:last-child {
  margin-bottom: 0;
}
.button:hover {
  background: rgb(6, 43, 86);
}
.dot__box {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
.dot__item {
  width: 10px;
  height: 10px;

  background: #d9d9d9;
  margin: 0 6px;
  border-radius: 50%;
}
.show {
  display: block !important;
}
.dot__active {
  background-color: #28619a;
}

/* Footer */

.footer {
  width: 100%;
  background-color: #28619a;
}
.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: 700px) {
  .logo {
    width: 200px;
  }
  .main {
    padding: 30px 0 50px;
  }
  .title {
    font-size: 25px;
  }
  .list__title {
    text-align: left;
    font-size: 22px;
  }
  .quiz__main {
    margin-top: 30px;
  }
}
@media (max-width: 440px) {
  body {
    font-size: 16px;
  }
  .list__title {
    font-size: 18px;
  }
  .list {
    padding-left: 20px;
    margin: 20px 0 35px;
  }
  .title {
    font-size: 24px;
  }
  .list__title {
    margin-top: 30px;
  }
  .quiz__main {
    padding: 15px 0 30px;
  }
  .footer__links-item {
    font-size: 14px;
  }
}
@media (max-width: 380px) {
  .logo {
    margin-right: 10px;
  }
  .quiz__main {
    padding: 10px 0 25px;
  }
  .footer__text {
    margin-top: 15px;
  }
}
