@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
.break {
  word-break: break-all;
}
a,
button {
  cursor: pointer;
  background: transparent;
  transition: all 0.2s linear;
  border: none;
}
textarea,
input {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  resize: none;
}

main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
:root {
  scroll-behavior: smooth;
}

.mob {
  display: none;
}
@media (max-width: 768px) {
  .mob {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
}
body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1110px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 15px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header {
  background: #001685;
  padding-block: 28px;
}
.header__inner {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: block;
  color: #fff;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav a {
  display: block;
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
}

.title {
  color: #000;
  font-family: Inter;
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}

.item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.label {
  color: #000;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.text {
  color: #000;

  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.home__title {
  text-align: center;
  margin-bottom: 40px;
}

.b1__img {
  height: 300px;
  margin-bottom: 40px;
}
.b1__text {
  margin-bottom: 20px;
}

.b1__btn {
  display: block;
  width: fit-content;
  background: #001685;
  padding: 16px 60px;
  color: #fff;

  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}
.b1__img img {
  object-fit: cover;
}

.b3__img img {
  object-fit: cover;
}
.b4__blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact {
  background: #001685;
  flex-grow: 1;
}
.contact__title {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.contact__text {
  color: #fff;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact__img {
  margin-bottom: 20px;
}

.form {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
}

.form__label {
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.form input::placeholder,
.form textarea::placeholder {
  color: #c9c9c9;
}
.form input,
.form textarea {
  display: block;
  width: 100%;

  padding: 20px 14px;
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: 1px solid #fff;
  background: #fff;
}
.form textarea {
  height: 100px;
}
.form button {
  margin-top: 20px;
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  background: #fff;
  color: #000;

  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 22.4px */
}
.footer {
  background: #001685;
  padding-block: 30px;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 20px 100px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__links a {
  display: block;
  color: #fff;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 116%; /* 18.56px */
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  .header__inner {
    justify-content: center;
  }
  .contact__title,
  .title {
    font-size: 32px;
  }
}
@media (max-width: 420px) {
}
@media (hover: hover) {
  a:hover {
    filter: brightness(80%);
  }
}

/* terms */
.terms {
  flex-grow: 1;
  padding-block: 50px;
}

.terms__title {
  color: #000;

  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}
.terms p {
  color: #000;

  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .terms__title {
    font-size: 32px;
  }
}
/* thank-page */
.th__title {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
  font-size: 34px;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 40px;
}
.th__btn {
  display: block;
  width: fit-content;
  background: #001685;
  padding: 16px 60px;
  color: #fff;

  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .th__title {
    font-size: 32px;
  }
}
