@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

body,
html,
main {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: #171717;
}

.container {
  max-width: 1260px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

main {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100dvh;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 83px;
}

.content {
  background: #044eb0;
  padding: 48px 0 0;
}

.content > .container {
  max-width: 930px;
}

.content-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  padding: 50px 0;
  border-bottom: solid 1px #b5b5b5;
  width: 100%;
}

.content-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  /* margin-top: 51px; */
  background: #fff;
  /* padding: 30px 40px; */
  border-radius: 20px;
  box-sizing: border-box;
  align-items: center;
  padding-bottom: 75px;
}

.content-block {
  gap: 9px;
  width: 100%;
  max-width: 760px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.content-block > div {
  padding: 0 20px;
}

.content-block .title {
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
}

.content-block .title > span {
  font-weight: 400;
  opacity: 40%;
}

.content-block .description {
  margin-top: 10px;
  display: flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  gap: 20px;
}

.content-block .balloon {
  min-width: 193px;
  position: relative;
  display: flex;
}

.content-block .balloon > div {
  position: absolute;
  left: 0;
  bottom: 0;
  background: url("/static/images/balloon.svg") no-repeat;
  background-size: contain;
  font-weight: 700;
  font-size: 18px;
  width: 193px;
  height: 119px;
  padding: 26px 0 0 47px;
  box-sizing: border-box;
}

.content-block .button {
  display: flex;
  margin-top: 20px;
}

.content-block .button > a {
  cursor: pointer;
  color: #fff;
  background: #2986fe;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 20px;
  border-radius: 4px;
}

.content-block .button > a:active {
  transform: translate(1px, 1px);
}

footer {
  background: #000f23;
  color: #fff;
}

.footer-wrapper {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 400;
  font-size: 14px;
}

.content-email {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  color: #fff;
  margin: 100px 0;
}

.content-email > div:first-child {
  font-weight: 700;
  font-size: 22px;
}

.content-email a {
  color: #fff;

  font-weight: 400;
  font-size: 22px;
}

@media (max-width: 1024px) {
  .content {
    padding: 20px 0;
  }

  .content-list {
    margin-top: 20px;
  }

  .content-block .balloon {
    display: none;
  }
}
