@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
:root {
  --text-color-primary: #000;
  --text-color-secondary: #3D3D3D;
  --text-color-accent: #1A3A8B;
  --text-color-additional: #E67707;
  --text-color-additional-2: #fff;
  --background-color-primary: #F9FBFE;
  --background-color-secondary: #FBEBDA;
  --background-color-accent: #1A3A8B;
}

.button {
  position: relative;
  padding: 18px 48px;
  min-width: 269px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  border-radius: 0px 22px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.button:active {
  transform: scale(0.98);
}
.button--full {
  width: 100%;
}
.button--small {
  font-weight: 600;
  font-size: 16px;
}
.button--accent {
  background: var(--background-color-accent);
  color: #fff;
}
.button--accent:hover {
  opacity: 0.8;
}
.button--white {
  background: #fff;
  color: var(--text-color-primary);
}
.button--white:hover {
  opacity: 0.8;
}

.h1 {
  position: relative;
  font-weight: 600;
  font-size: 44px;
  line-height: 56px;
}
.h1--white {
  color: var(--text-color-additional-2);
}

.h2 {
  position: relative;
  font-weight: 600;
  font-size: 40px;
  line-height: 156%;
}
.h2--white {
  color: var(--text-color-additional-2);
}

.subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
}
.subtitle--white {
  color: var(--text-color-additional-2);
}
.subtitle--add {
  color: var(--text-color-additional);
}

.description {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}
.description--white {
  color: var(--text-color-additional-2);
}

.input input.error,
.textarea textarea.error {
  border: 1px solid #e74c3c;
  background: #fff5f5;
}

.input-error {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 4px;
}

.input {
  position: relative;
  display: flex;
  width: 100%;
}
.input__label {
  position: absolute;
  top: 8px;
  left: 24px;
  font-weight: 300;
  font-size: 13px;
  line-height: 15px;
  color: var(--text-color-primary);
  z-index: 2;
}
.input input {
  position: relative;
  display: flex;
  background: #FFFFFF;
  padding: 31px 24px 12px;
  border-radius: 8px;
  width: 100%;
  font-size: 16px;
  border: none;
  outline: none;
  line-height: 100%;
  font-family: "Rubik", sans-serif;
}
.input input::placeholder {
  font-size: 16px;
  color: var(--text-color-secondary);
  font-family: "Rubik", sans-serif;
}

.textarea {
  position: relative;
  display: flex;
  width: 100%;
}
.textarea__label {
  position: absolute;
  top: 8px;
  left: 24px;
  font-weight: 300;
  font-size: 13px;
  line-height: 15px;
  color: var(--text-color-primary);
  z-index: 2;
}
.textarea textarea {
  position: relative;
  resize: vertical;
  min-height: 154px;
  display: flex;
  background: #FFFFFF;
  padding: 31px 24px 12px;
  border-radius: 8px;
  width: 100%;
  font-size: 16px;
  border: none;
  outline: none;
  line-height: 100%;
  font-family: "Rubik", sans-serif;
}
.textarea textarea::placeholder {
  font-size: 16px;
  color: var(--text-color-secondary);
  font-family: "Rubik", sans-serif;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 100%;
}
.checkbox__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.checkbox__wrapper {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.checkbox__box {
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 3px;
  display: inline-block;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.checkbox__box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 3px;
  height: 8px;
  border: solid #1A8B32;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.1s ease;
}
.checkbox__input:checked + .checkbox__box {
  background-color: #fff;
  border-color: #fff;
}
.checkbox__input:checked + .checkbox__box::after {
  opacity: 1;
}
.checkbox__label {
  user-select: none;
}

.radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  color: #333;
  line-height: 100%;
  text-transform: uppercase;
}
.radio__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.radio__wrapper {
  position: relative;
  width: 22px;
  height: 22px;
  margin-right: 10px;
}
.radio__box {
  width: 100%;
  height: 100%;
  border: 2px solid var(--text-color-additional);
  display: inline-block;
  border-radius: 100px;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.radio__box::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 12px;
  height: 12px;
  border-radius: 100px;
  background: var(--text-color-additional);
  opacity: 0;
  transition: opacity 0.1s ease;
}
.radio__input:checked + .radio__box::after {
  opacity: 1;
}
.radio__label {
  user-select: none;
}

.link-line {
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}
.link-line:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  left: 0;
  bottom: -2px;
  background: var(--text-color-additional-2);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.link-line--reverse {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.link-line--reverse:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  transform: scaleX(1);
  transform-origin: bottom left;
  left: 0;
  bottom: -2px;
  background: var(--text-color-additional-2);
  transition: transform 0.25s ease-out;
}
.link-line--reverse:hover {
  color: var(--background-color-accent);
}
.link-line--reverse:hover:before {
  background: var(--text-color-additional-2);
  transform: scaleX(0);
  transform-origin: bottom right;
}
.link-line:hover {
  color: var(--text-color-additional-2);
}
.link-line:hover:before {
  width: 100%;
  transform: scaleX(1);
  transform-origin: bottom left;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  min-width: 1120px;
}

body {
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  min-width: 1120px;
  color: var(--text-color-primary);
  line-height: 125%;
  overflow-x: hidden;
  background: #F9FBFE;
}

.container {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  min-width: 1120px;
  z-index: 100;
  background: rgba(26, 58, 139, 0.82);
}
.header__logo {
  display: flex;
}
.header__logo img {
  width: 226px;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 53px;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  border-radius: 52px;
  padding: 26px 57px;
}
.header__nav ul {
  list-style: none;
  display: flex;
  gap: 56px;
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
}
.header__nav ul a {
  text-decoration: none;
  color: var(--text-color-additional-2);
  /*        &.active{
            color:var(--text-color-additional);
          }*/
}
.header__lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__lang-current {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.header__lang-current a {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-color-additional-2);
}
.header__lang-current a.active {
  text-decoration: none;
}
.header__lang-current .header__lang-arrow {
  transition: transform 0.3s;
  display: flex;
  align-items: center;
}
.header__lang-list {
  list-style: none;
  position: absolute;
  top: 100%;
  left: -11px;
  background: #415c9f;
  padding: 10px 14px;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  z-index: 10;
}
.header__lang-list a {
  text-decoration: none;
  color: #b2b2b2;
  transition: color 0.3s;
}
.header__lang-list a:hover {
  color: var(--text-color-additional-2);
}
.header__lang:hover .header__lang-list {
  display: flex;
}
.header__lang:hover .header__lang-arrow {
  transform: rotate(180deg);
}

.hero {
  position: relative;
  padding: 256px 0 140px;
}
.hero__decor-left {
  position: absolute;
  left: 0;
  top: 256px;
}
.hero__decor-left img {
  height: 549px;
}
.hero__image {
  position: relative;
  width: 821px;
  height: 885px;
  flex-shrink: 0;
  margin-top: -255px;
}
.hero__image img {
  width: 100%;
  height: 100%;
}
.hero__header {
  text-align: left;
}
.hero__button {
  display: flex;
  justify-content: flex-start;
  margin-top: 44px;
}
.hero__buttons {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  margin-top: 156px;
}
.hero__buttons a {
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  line-height: 100%;
  font-weight: 400;
  text-decoration: none;
  min-width: 241px;
  background: #FFFFFF;
  color: var(--text-color-primary);
  box-shadow: 0px 2px 14px 1px rgba(0, 0, 0, 0.13);
  border-radius: 52px;
}
.hero__wrapper {
  display: flex;
}
.hero__content {
  max-width: 725px;
  width: 100%;
  flex-shrink: 0;
}

.approach {
  position: relative;
  padding: 60px 0;
  background: var(--background-color-accent);
}
.approach__header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 750px;
  width: 100%;
}

.benefits {
  position: relative;
  padding: 122px;
}
.benefits__items {
  display: flex;
  gap: 16px;
}
.benefits__item {
  width: 362px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.benefits__item:hover .benefits__item-icon {
  transform: translateY(-10px);
}
.benefits__item-icon {
  margin-bottom: 44px;
  transition: all 0.3s ease;
}
.benefits__item-icon img {
  width: 68px;
  height: 68px;
}
.benefits__item-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
}
.benefits__item-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin-top: 22px;
}

.join {
  position: relative;
  padding: 92px 0;
}
.join .container {
  position: relative;
  z-index: 10;
}
.join__decor-left {
  position: absolute;
  left: -300px;
  bottom: -50px;
}
.join__decor-right {
  position: absolute;
  right: 0;
  top: -200px;
}
.join__wrapper {
  position: relative;
  z-index: 1;
}
.join__items {
  display: flex;
  gap: 30px;
  margin-top: 52px;
}
.join__item {
  width: 545px;
  padding: 32px 28px;
  box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.08);
}
.join__item:first-child {
  background: var(--background-color-accent);
  border-radius: 8px 8px 8px 52px;
  color: var(--text-color-additional-2);
}
.join__item:first-child .join__item-list li svg path {
  stroke: var(--text-color-additional-2);
}
.join__item:last-child {
  background: #fff;
  border-radius: 8px 52px 8px 8px;
  color: var(--text-color-primary);
}
.join__item:last-child .join__item-list li svg path {
  stroke: var(--text-color-primary);
}
.join__item-title {
  font-size: 32px;
  font-weight: 600;
}
.join__item-desc {
  margin-top: 18px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
.join__item-list {
  margin-top: 28px;
}
.join__item-list ul {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.join__item-list ul li {
  font-size: 18px;
  line-height: 100%;
  font-weight: 500;
  display: flex;
  gap: 12px;
  align-items: center;
}
.join__item-button {
  margin-top: 78px;
}

.result {
  position: relative;
  padding: 60px 0;
  background: #fff;
}
.result__header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 750px;
  width: 100%;
}

.contact {
  position: relative;
  padding-top: 122px;
  padding-bottom: 14px;
}
.contact__wrapper {
  position: relative;
  max-width: 1436px;
  width: 100%;
  padding: 90px 160px;
  background: var(--background-color-accent);
  border-radius: 52px;
  margin: 0 auto;
  overflow: hidden;
}
.contact__header {
  position: relative;
  z-index: 10;
  max-width: 710px;
  width: 100%;
}
.contact__form {
  position: relative;
  z-index: 10;
  max-width: 618px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.contact__radios {
  position: relative;
  display: flex;
  gap: 34px;
}
.contact__radio {
  position: relative;
  display: flex;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 19px 22px;
  width: 100%;
  font-size: 16px;
  opacity: 0.8;
}
.contact__radio.active {
  opacity: 1;
}
.contact__decor {
  position: absolute;
  top: 194px;
  left: 0;
}
.contact__image {
  position: absolute;
  bottom: -7px;
  right: 0;
}
.contact_button {
  margin-top: 32px;
}

.footer {
  position: relative;
  padding: 44px 0 76px;
}
.footer__logo {
  max-width: 368px;
  width: 100%;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}
.footer__nav-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #3D3D3D;
  margin-bottom: 18px;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.footer__nav ul li a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 18px;
  color: var(--text-color-accent);
  text-decoration: none;
}
.footer__nav ul li a svg {
  flex-shrink: 0;
}
.footer__nav ul li:last-child {
  font-weight: 400;
  font-size: 15px;
}
.footer__nav ul li:last-child b {
  font-weight: 500;
}
.footer__info ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.footer__info ul li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 18px;
  color: var(--text-color-primary);
  text-decoration: none;
}
.footer__info ul li svg {
  position: absolute;
  top: 8px;
  left: -36px;
  flex-shrink: 0;
}
.footer__info ul li span {
  color: #3D3D3D;
}

.form-status {
  display: none;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
}
.form-status.success {
  display: block;
  background: #e8f7ee;
  border: 1px solid #bfe7cb;
}
.form-status.error {
  display: block;
  background: #ffecec;
  border: 1px solid #ffc1c1;
}

/*# sourceMappingURL=style.css.map */
