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

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

/* Header */

.header {
  width: 100%;
  background: rgba(40, 97, 154, 1);
}
.header__inner {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.logo {
  width: 250px;
  max-width: 80%;
  display: block;
}

/* Main */
.main {
  margin: 40px 0 80px;
}

.title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.main__image__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #cedfef;
  border-bottom: 1px solid #cedfef;

  padding: 10px;
}
.main__image__box__text {
  font-size: 14px;
  font-weight: 400;
}
.main__image__box-icon {
  display: block;
  width: 227px;
  height: 34px;
}

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

.big__text {
  text-align: center;
  margin-bottom: 25px;
  font-size: 22px;
}
.text {
  text-align: center;
  margin-bottom: 25px;
}

.text-title {
  text-align: center;
  font-weight: 700;
  font-size: 28px;
}

.image {
  display: block;
  max-width: 170px;
  width: 100%;
  margin: 30px auto;
}

.main__button {
  display: block;
  text-decoration: none;
  text-align: center;
  width: 100%;
  max-width: 600px;
  padding: 20px;
  color: #ffffff;
  border-radius: 10px;
  background-color: #1b4e81;
  box-shadow: 1px 1px 20px 1px rgb(0 0 0 / 35%);
  font-weight: 700;
  font-size: 24px;
  margin: 0 auto;
}

.main__button:hover {
  background-color: #357abf;
}
/* Footer */

.footer {
  width: 100%;
  background: rgba(40, 97, 154, 1);
}
.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: 550px) {
  .logo {
    width: 180px;
  }
  .footer__links-item {
    font-size: 14px;
  }
  .footer__text {
    margin-top: 15px;
  }
}
@media (max-width: 360px) {
  .title {
    font-size: 32px;
  }
  .text-title {
    font-size: 26px;
  }
}
