.contactBlock {
  width: 100%;
}
.cb__container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  padding: 115px 0;
}
.cb__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cb__top {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.cb__title {
  color: #0a2740;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin: 16px 0 24px 0;
}
.cb__text {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0 0 40px 0;
}
.cb__links {
  display: grid;
  gap: 18px;
  margin-top: 0px;
}
.cb__link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.cb__icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.cb__form-wrap {
}

/* CF7 alignment targets */
.cb__form-wrap .cb-form {
  display: grid;
  gap: 0px;
}
.cb__form-wrap .cb-form > p {
  margin: 0;
}
.cb-form label.cb__label,
.cb-form div.cb__label > p {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 8px;
}

.cb__form-wrap .cb-form input[type="text"],
.cb__form-wrap .cb-form input[type="email"],
.cb__form-wrap .cb-form input[type="tel"],
.cb__form-wrap .cb-form input[type="number"],
.cb__form-wrap .cb-form input[type="date"],
.cb__form-wrap .cb-form input[type="time"],
.cb__form-wrap .cb-form input[type="url"],
.cb__form-wrap .cb-form textarea {
  display: flex;
  padding: 12px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  box-sizing: border-box;
}
.cb__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cb__choices > p > br {
  display: none;
}
.cb__choices > p {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.cb__choice {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  padding: 0;
}
.cb__textarea textarea {
  min-height: 140px;
  width: 100%;
}
.cb__policy {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.cb__actions {
  display: flex;
  justify-content: flex-start;
}
.cb__submit {
  padding: 12px 18px;
  border-radius: 30px;
  background: #0a2740;
  color: #fff;
  border: none;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  cursor: pointer;
  border: 1px solid #0a2740;
}

.cb__submit:hover {
  background: #fff;
  color: #0a2740;
  border: 1px solid #0a2740;
}

@media (max-width: 900px) {
  .cb__container {
    width: 92%;
    padding: 90px 0;
  }
  .cb__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cb__title {
    font-size: 40px;
  }
  .cb__text {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .cb__links {
    gap: 14px;
  }
  .cb__choices {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cb__container {
    padding: 70px 0;
  }
  .cb__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cb__choices {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cb__icon {
    width: 20px;
    height: 20px;
  }
  .cb__title {
    font-size: 34px;
    margin: 12px 0 18px 0;
  }
  .cb__text {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .cb__actions {
    width: 100%;
  }
  .cb__submit {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .cb__title {
    font-size: 30px;
  }
  .cb__text {
    font-size: 14px;
  }
}
