.container {
  margin: 0 auto;
  max-width: 1200px;
}

header {
  top: 0;
  z-index: 10;
  position: sticky;
  box-shadow: 0px 16px 20px rgba(0, 0, 0, 0.02);
}

.header__container {
  width: 100%;
  margin: 0 auto;
  max-width: 1380px;
}

.header__top {
  padding: 9px 0 10px;
  background: #323232;
}

.header__top_text {
  color: #c5c5c5;
  font-size: 12px;
  line-height: 16px;
}

.header__top_text_link {
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  text-decoration: underline !important;
}

.header__bottom {
  background: #fff;
  padding: 10px 0;
}

.header__bottom_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__bottom_right {
  display: flex;
  align-items: center;
}

.header__bottom_right_item {
  padding: 11px 20px 12px;
  background: unset;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #292929;
}

.header__bottom_right_item:last-child {
  color: #fff;
  background: #0d99d6;
  border-radius: 4px;
  margin-left: 10px;
}

.info {
  padding: 80px 0 45px;
  background: #20274d;
  position: relative;
}

.info__wrapper {
  color: #fff;
  width: 100%;
  max-width: 452px;
}

.info__title {
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  font-size: 36px;
  line-height: 48px;
}

.info__text {
  margin: 20px 0 35px;
  font-size: 16px;
  line-height: 22px;
}

.info__login {
  padding: 11px 20px 12px;
  margin-bottom: 71px;
  background: #0d99d6;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

.info__tags {
  display: flex;
  align-items: center;
}

.info__tags_item {
  background: rgba(239, 242, 247, 0.2);
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  line-height: 22px;
  color: #fff;
  padding: 4px 10px;
  margin-right: 10px;
}

.info__tags_item:last-child {
  background: unset;
  margin-right: 0;
}

.info_background {
  position: absolute;
  top: 0;
  right: 0;
  width: 57%;
  height: 100%;
  object-fit: cover;
}

.about {
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.about__info {
  color: #292929;
  margin-left: 80px;
}

.about__info_title {
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  font-size: 24px;
  line-height: 22px;
}

.about__info_text {
  font-size: 16px;
  line-height: 22px;
}

.about__info_text:first-of-type {
  margin: 20px 0;
}

.questions {
  padding: 80px 0 61px;
  background: #eff2f7;
}

.questions__wrapper {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.questions__title {
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  width: 100%;
  margin-bottom: 27px;
}

.questions_field {
  width: 100%;
  background: #fff;
  border: 1px solid #c5c5c5;
  border-radius: 2px;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.questions_field input,
.questions_field textarea {
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: #333333;
  border: none;
}

.questions_field input::placeholder,
.questions_field textarea::placeholder {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 22px;
  color: #666666;
}

.questions_field textarea {
  resize: none;
  min-height: 129px;
}

.questions_field_label {
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  color: #666;
  margin-bottom: 2px;
}

.questions_send {
  padding: 12px 30px 11px;
  background: #0d99d6;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  margin-top: 5px;
}

.footer {
  background: #292929;
}

.footer__text {
  color: #fff;
  padding: 31px 0;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  display: block;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: rgba(41, 41, 41, 0.2);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__wrapper {
  width: 100%;
  max-width: 490px;
  background: #ffffff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  padding: 30px 40px 40px;
  position: relative;
}

.modal__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

.modal__title {
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  font-size: 24px;
  line-height: 22px;
}

.modal__subtitle {
  font-size: 14px;
  line-height: 19px;
  color: #292929;
  margin: 15px 0 30px;
}

.modal__subtitle span {
  font-weight: bold;
}

.modal__login {
  margin-top: 25px;
}

.modal_field {
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
  background: #fff;
  border: 1px solid #c5c5c5;
  box-sizing: border-box;
  border-radius: 2px;
  margin-bottom: 20px;
}

.modal_field_label {
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  color: #666;
  margin-bottom: 2px;
}

.modal_field input {
  border: none;
  font-size: 15px;
  line-height: 22px;
}

.modal__routes {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal__routes_item {
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #0d99d6;
}

.modal__routes_item:last-child {
  padding: 12px 20px 11px;
  line-height: 22px;
  font-size: 16px;
  color: #fff;
  background: #0d99d6;
}

.modal_progress {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal_progress_icon {
  animation: spinner 1.6s linear infinite;
}

.modal_progress_title {
  margin: 40px 0 20px;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  font-size: 24px;
  line-height: 22px;
  color: #292929;
}

.modal_progress_text {
  font-size: 16px;
  line-height: 22px;
  color: #666666;
}

.modal__reminder {
  padding: 10px 0;
}

.modal__reminder_title {
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
}

.modal__reminder_captcha {
  margin: 15px 0 10px;
}

.modal__reminder_subtitle {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 20px;
}

.modal__reminder_subtitle span {
  color: #0d99d6;
  cursor: pointer;
}

.reminder_form .modal_field {
  margin-bottom: 30px;
}

.sent_title {
  margin: 25px 0 15px;
}

.sent_text {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 20px;
}

.sent_text span {
  font-weight: bold;
}



@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
