@import url(reset.css);
@import url(common.css);
@import url("https://fonts.googleapis.com/css?family=Play:regular,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Inter:regular,500,600,700&display=swap");
body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 2%;
  background-color: #ffffff;
  color: #000000;
}
[class*="__container"] {
  max-width: 400px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.wrapper > main {
  flex-grow: 1;
}
/* .container {
  padding-top: 30px 0px;
} */
/* -------- header ---------------- */
.header {
  text-align: center;
  padding-bottom: 25px;
  padding-top: 40px;
}
.header--bg,
.thanks {
  background: #003380;
  margin: 0px -120px -1px -120px;
}
.header img {
  max-width: 100px;
}

/* --------  content ------------- */

.content {
}

.content__title {
  margin: 0px 0px 30px 0px;
  padding: 15px;
  font-size: 28px;
  background: #003380;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}

.title-border {
  /* flex: 0 0 auto; */
}
.border {
  background: linear-gradient(90deg, #003380 0%, #ffffff 100%);
  height: 1px;
  width: 55%;
}

.content-title__left,
.content-title__right {

  padding-bottom: 5px;
  max-width: 375px;
  margin: 0 auto;
}
.border--reverse {
  justify-content: space-between;
  flex: 0 0 16%;
  background: linear-gradient(-90deg, #003380 0%, #ffffff 100%);
}
@media (max-width: 400px) {
  .content-title__left,
  .content-title__right {
    max-width: 275px;
  }
  .border--reverse {
    flex: 0 0 0px;
  }
}

/* content__body */
.content__body {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
}

.content__avatar {
  flex: 0 0 112px;
  position: relative;
  margin: 0 auto;
}
.content__avatar::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 30%;
  width: 40px;
  height: 40px;
  background: url("../img/logo-white.png") center / contain no-repeat;
  object-fit: contain;
}
@media (max-width: 383px) {
  .content__avatar::after {
    content: "";
    bottom: 25%;
  }
}
@media (max-width: 350px) {
  .content__avatar::after {
    content: "";
    bottom: 10%;
  }
}
.content__avatar img {
  max-width: 100%;
}
.content__item {
}
.content__text {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 2%;
  text-align: start;
  margin-bottom: 20px;
}
.content__subtitle {
  font-family: "Play", sans-serif;
  max-width: 288px;
  margin: 0 auto;
  margin-bottom: 12px;
}
@media (max-width: 350px) {
  .content__body {
    flex-wrap: wrap;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 25px;
  }
  .content__text,
  .content__subtitle {
    text-align: center;
  }
}
/* --------  Form --------------- */
.form {
  display: grid;
  gap: 25px;
  text-align: start;
}
label {
  display: grid;
}
label p {
  margin-bottom: 5px;
  color: #002647;
}
.input {
  font-size: 15px;
  border: 1px solid #767676 !important;
  color: #767676;
  padding: 7px;
  width: 100%;
}
/* --------- footer ------------- */
.footer {
  background: #003380;
  text-align: center;
  display: grid;
  gap: 25px;
  color: #555;
  padding: 30px 20px 10px 20px;
}
.footer__logo {
  max-width: 73px;

  margin: 0 auto;
}
.footer__logo img {
  max-width: 100%;
}
.footer__border {
  border-bottom: 1px solid #ffffff;
  margin-left: -20px;
  margin-right: -20px;
}
.footer__text {
  line-height: 1.42; /* 20/14 */
  color: #ffffff;
  max-width: 420px;
  margin: 0 auto;
  font-size: 18px;
}
.footer__all {
  line-height: 1.42; /* 20/14 */
  color: #bfbfbf;
  border-bottom: 1px solid #7c7c7c;
  max-width: 320px;
  margin: 0 auto;
  white-space: nowrap;
  font-size: 16px;
}
@media (max-width: 350px) {
  .footer__all {
    font-size: 12px;
    max-width: 275px;
  }
  .footer__text {
    font-size: 16px;
  }
}
.footer--white {
  background: #ffffff;
  margin: 2px;
}

/* ----------------- */
.text {
  color: #000000;
}

.thanks__content {
  text-align: center;
  max-width: 310px;
  margin: 0 auto;
  color: #ffffff;
  display: grid;
  gap: 40px;
  padding-bottom: 40px;
}

.thanks__title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -5.5%;
  line-height: 1.45; /* 32/22 */
}

.thanks__text {
  font-size: 20px;

  line-height: 1.45; /* 29/20 */
  letter-spacing: -0.055em;
}

.thanks__text--strong {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.055em;
  margin-bottom: 20px;
}
