@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --size-container: 1360px;
  --text-color-primary: #000000;
  --text-color-secondary: #565656;
  --text-color-accent: #0051B4;
  --background-color-primary: #fff;
  --background-color-secondary: #E8EFF7;
  --background-color-accent: #A5CDFE;
  --background-color-additional: #E8EFF7;
}

.button {
  position: relative;
  padding: 20px 36px;
  min-width: 368px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  gap: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  border-radius: 0px;
}
.button:active {
  transform: scale(0.98);
}
.button svg {
  transition: all 0.3s ease;
}
.button:hover svg {
  transform: translateX(5px);
}
.button--full {
  width: 100%;
}
.button--accent {
  background: var(--background-color-accent);
  color: var(--text-color-primary);
}
.button--accent:hover {
  background: var(--text-color-primary);
  color: #fff;
}
.button--accent:hover svg path {
  fill: var(--background-color-accent);
}

.h1 {
  position: relative;
  font-weight: 800;
  font-size: 32px;
  line-height: 125%;
}
.h1--white {
  color: var(--text-color-primary);
}

.h2 {
  position: relative;
  font-weight: 700;
  font-size: 46px;
  line-height: 100%;
  color: var(--text-color-primary);
}
.h2::before {
  content: attr(data-text);
  position: absolute;
  top: -20px;
  left: -20px;
  color: rgba(0, 0, 0, 0.04);
  z-index: -1;
  font-size: 64px;
  font-weight: 900;
}
.h2--white {
  color: var(--text-color-primary);
}

.description {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
}
.description--white {
  color: var(--text-color-primary);
}

.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 input {
  position: relative;
  display: flex;
  padding: 18px 12px;
  background: #FFFFFF;
  border: none;
  border-bottom: 1px solid #B2B2B2;
  border-radius: 0px;
  font-weight: 400;
  width: 100%;
  font-size: 16px;
  outline: none;
  line-height: 100%;
  font-family: "Montserrat", sans-serif;
  color: var(--text-color-secondary);
}
.input input::placeholder {
  font-size: 16px;
  color: #585858;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 18px;
}

.textarea {
  position: relative;
  display: flex;
  width: 100%;
}
.textarea textarea {
  position: relative;
  resize: vertical;
  min-height: 100px;
  display: flex;
  padding: 18px 20px;
  background: #FFFFFF;
  border: 1px solid #B2B2B2;
  border-radius: 0px;
  font-weight: 400;
  width: 100%;
  font-size: 16px;
  outline: none;
  line-height: 100%;
  font-family: "Montserrat", sans-serif;
  color: var(--text-color-secondary);
}
.textarea textarea::placeholder {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 18px;
  color: #585858;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color-secondary);
  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: 19px;
}
.checkbox__box {
  width: 100%;
  height: 100%;
  border: 2px solid #3D3D3D;
  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: #1A8B32;
}
.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;
  line-height: 100%;
}
.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-primary);
  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-accent);
  opacity: 0;
  transition: opacity 0.1s ease;
}
.radio__input:checked + .radio__box {
  border: 2px solid var(--text-color-accent);
}
.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-primary);
  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(--background-color-accent);
  transition: transform 0.25s ease-out;
}
.link-line--reverse:hover {
  color: var(--background-color-accent);
}
.link-line--reverse:hover:before {
  background: var(--background-color-accent);
  transform: scaleX(0);
  transform-origin: bottom right;
}
.link-line:hover {
  color: var(--text-color-primary);
}
.link-line:hover:before {
  width: 100%;
  transform: scaleX(1);
  transform-origin: bottom left;
}

.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: #005a30;
  border: 1px solid #bfe7cb;
  color: #fff;
}
.form-status.error {
  display: block;
  background: #e74c3c;
  border: 1px solid #ffc1c1;
  color: #fff;
}

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

html {
  overflow-x: hidden;
  min-width: var(--size-container);
}

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

.container {
  position: relative;
  max-width: var(--size-container);
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  min-width: 1120px;
  z-index: 100;
  background: #fff;
}
.header__logo {
  display: flex;
}
.header__logo img {
  width: 210px;
}
.header__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 22px 0;
}
.header__nav ul {
  list-style: none;
  display: flex;
  gap: 48px;
  font-size: 16px;
  line-height: 125%;
  font-weight: 500;
}
.header__nav ul a {
  text-decoration: none;
  color: var(--text-color-primary);
}
.header__lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__lang svg path {
  stroke: #000;
}
.header__lang-current {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 18px;
}
.header__lang-current a {
  font-weight: 600;
  font-size: 18px;
  color: var(--text-color-primary);
}
.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: var(--background-color-accent);
  padding: 10px 14px;
  border-radius: 0px;
  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: var(--text-color-primary);
  transition: color 0.3s;
}
.header__lang-list a:hover {
  opacity: 0.6;
}
.header__lang:hover .header__lang-list {
  display: flex;
}
.header__lang:hover .header__lang-arrow {
  transform: rotate(180deg);
}

.hero {
  position: relative;
  padding: 186px 0 0px;
  color: var(--text-color-primary);
}
.hero__background {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 546px;
  margin-top: 27px;
}
.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__wrapper {
  display: flex;
  gap: 28px;
}
.hero__header {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.why {
  position: relative;
  padding: 120px 0 0px;
  z-index: 2;
}
.why__wrapper {
  display: flex;
  gap: 95px;
}
.why__image {
  position: relative;
}
.why__image-wrapper {
  position: relative;
  top: 50px;
  width: 752px;
  height: 405px;
  overflow: hidden;
}
.why__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.why__image img:hover {
  transform: scale(1.05);
}
.why__header {
  position: relative;
  max-width: 803px;
  width: 100%;
  flex-shrink: 0;
}
.why__content {
  max-width: 603px;
  width: 100%;
  flex-shrink: 0;
}
.why__description {
  margin-top: 65px;
}
.why__info {
  margin-top: 10px;
  font-size: 16px;
}
.why__button {
  margin-top: 34px;
}

.reviews {
  position: relative;
}
.reviews__decor {
  position: absolute;
  left: 0;
  top: 0;
}
.reviews__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.reviews__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
  height: 124px;
  background: linear-gradient(180deg, #E8EFF7 0%, rgba(232, 239, 247, 0) 100%);
}
.reviews:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 224px;
  z-index: 1;
  background: linear-gradient(180deg, #E8EFF7 0%, rgba(232, 239, 247, 0) 100%);
  transform: matrix(1, 0, 0, -1, 0, 0);
}
.reviews__wrapper {
  display: flex;
  gap: 119px;
}
.reviews__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 766px;
  width: 100%;
  height: 812px;
  overflow: hidden;
}
.reviews__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 370px;
  height: 248px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #A5CDFE;
}
.reviews__item:nth-child(odd) {
  top: -120px;
}
.reviews__item:nth-child(2n) {
  top: 30px;
}
.reviews__item-desc {
  font-weight: 500;
  font-size: 18px;
  line-height: 29px;
  color: #000000;
}
.reviews__item-name {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  color: rgba(0, 0, 0, 0.22);
}
.reviews__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partners {
  position: relative;
  padding: 120px 0 90px;
}
.partners__wrapper {
  display: flex;
  gap: 95px;
}
.partners__image {
  position: relative;
  width: 50%;
}
.partners__image-wrapper {
  position: relative;
  top: 0px;
  left: -300px;
  width: 903px;
  height: 451px;
  overflow: hidden;
}
.partners__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.partners__image img:hover {
  transform: scale(1.05);
}
.partners__header {
  position: relative;
  max-width: 560px;
  width: 100%;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 125%;
  margin-right: 100px;
}
.partners__description {
  margin-top: 20px;
  font-weight: 600;
}
.partners__list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.partners__list b {
  color: var(--text-color-primary);
}
.partners__button {
  margin-top: 34px;
}

.direction {
  position: relative;
  padding: 115px 0;
  background: linear-gradient(270deg, #E8EFF7 0%, #FFFFFF 100%);
}
.direction__items {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 22px;
  margin-top: 92px;
}
.direction__item {
  width: 438.67px;
  height: 294px;
  padding: 24px;
  background: linear-gradient(360deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
  border: 1px solid transparent;
  border-image: linear-gradient(180deg, #A5CDFE 0%, transparent 100%) 1;
  border-bottom: none;
}
.direction__item-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  color: #565656;
  margin-top: 22px;
}
.direction__item-desc {
  font-weight: 500;
  font-size: 18px;
  line-height: 29px;
  margin-top: 34px;
}

.candidate {
  position: relative;
  padding: 120px 0 90px;
}
.candidate__wrapper {
  display: flex;
  gap: 95px;
}
.candidate__image {
  position: relative;
}
.candidate__image-wrapper {
  position: relative;
  top: 50px;
  width: 752px;
  height: 405px;
  overflow: hidden;
}
.candidate__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.candidate__image img:hover {
  transform: scale(1.05);
}
.candidate__header {
  position: relative;
  max-width: 803px;
  width: 100%;
  flex-shrink: 0;
}
.candidate__content {
  max-width: 603px;
  width: 100%;
  flex-shrink: 0;
}
.candidate__description {
  margin-top: 65px;
}
.candidate__info {
  margin-top: 10px;
}
.candidate__button {
  margin-top: 34px;
}

.contact {
  position: relative;
  padding: 108px 0;
}
.contact__inner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 114px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 300px;
  width: 100%;
  line-height: 155%;
}
.contact__info span {
  font-size: 24px;
}
.contact__info span:first-child {
  font-weight: 600;
  font-size: 28px;
  line-height: 33px;
}
.contact__form {
  position: relative;
  max-width: 608px;
  width: 100%;
  margin-left: 80px;
  margin-top: 100px;
}
.contact__form-wrapper {
  position: relative;
  width: 100%;
  padding: 36px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__form-decor {
  position: absolute;
  left: -160px;
  top: 5px;
  z-index: 0;
}
.contact__radios {
  display: flex;
  gap: 12px;
}
.contact__radio {
  position: relative;
  display: flex;
  padding: 16px 8px 16px 16px;
  width: 100%;
  font-size: 16px;
  color: #3D3D3D;
}
.contact__radio.active {
  color: var(--text-color-accent);
}
.contact__button {
  margin-top: 34px;
}

.footer {
  position: relative;
  padding: 73px 0;
  background: var(--background-color-secondary);
}
.footer__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__list:first-child {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
}
.footer__list:first-child ul {
  margin-top: 24px;
}
.footer__list ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
}
.footer__list ul li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: right;
}
.footer__list ul li a {
  text-decoration: none;
  color: var(--text-color-primary);
}
.footer__time span {
  color: #505050;
}

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