@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  --size-container: 1320px;
  --text-color-primary: #fff;
  --text-color-secondary: #000;
  --text-color-accent: #293761;
  --background-color-primary: #fff;
  --background-color-secondary: #2C3343;
  --background-color-accent: #293761;
  --background-color-additional: #FFA400;
}

.button {
  position: relative;
  padding: 20px 36px;
  min-width: 277px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  gap: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  border-radius: 16px;
}
.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 {
  border: 1px solid var(--background-color-accent);
  background: var(--text-color-primary);
  color: var(--background-color-accent);
}
.button--accent:hover svg path {
  fill: var(--background-color-accent);
}
.button--outline {
  border: 1px solid #FFFFFF;
}
.h1 {
  position: relative;
  font-weight: 700;
  font-size: 56px;
  line-height: 125%;
  font-family: "Lato", sans-serif;
}
.h1--white {
  color: var(--text-color-primary);
}

.h2 {
  position: relative;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  color: var(--text-color-secondary);
}
.h2__decor {
  position: absolute;
  left: -30px;
  top: -20px;
}
.h2--white {
  color: var(--text-color-primary);
}

.description {
  font-weight: 400;
  font-size: 24px;
  line-height: 31px;
}
.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 20px;
  background: #FFFFFF;
  border: 1px solid #B2B2B2;
  border-radius: 8px;
  font-weight: 400;
  width: 100%;
  font-size: 16px;
  outline: none;
  line-height: 100%;
  font-family: "Lato", sans-serif;
  color: var(--text-color-secondary);
}
.input input::placeholder {
  font-size: 16px;
  color: #585858;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 18px;
}

.textarea {
  position: relative;
  display: flex;
  width: 100%;
}
.textarea textarea {
  position: relative;
  resize: vertical;
  min-height: 154px;
  display: flex;
  padding: 18px 20px;
  background: #FFFFFF;
  border: 1px solid #B2B2B2;
  border-radius: 8px;
  font-weight: 400;
  width: 100%;
  font-size: 16px;
  outline: none;
  line-height: 100%;
  font-family: "Lato", sans-serif;
  color: var(--text-color-secondary);
}
.textarea textarea::placeholder {
  font-size: 16px;
  font-family: "Lato", 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: 16px;
}
.checkbox__box {
  width: 100%;
  height: 100%;
  border: 2px solid #1A8B32;
  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: 20px;
  color: var(--text-color-secondary);
  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-secondary);
  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(--background-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-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: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 400;
  min-width: var(--size-container);
  color: var(--text-color-secondary);
  line-height: 125%;
  overflow-x: hidden;
  background: #fff;
}

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

.header {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  min-width: 1120px;
  z-index: 100;
}
.header__logo {
  display: flex;
}
.header__logo img {
  width: 210px;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}
.header__content {
  display: flex;
  align-items: center;
  gap: 44px;
}
.header__nav ul {
  list-style: none;
  display: flex;
  gap: 44px;
  font-size: 18px;
  line-height: 125%;
}
.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-current {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.header__lang-current a {
  font-weight: 600;
  font-size: 16px;
  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: 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: 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);
}
.header__info {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  display: flex;
  flex-direction: column;
  text-align: right;
  color: #FFFFFF;
  gap: 10px;
}
.header__info a {
  color: #FFFFFF;
  text-decoration: none;
}

.hero {
  position: relative;
  padding: 278px 0 210px;
  color: var(--text-color-primary);
}
.hero__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 46px;
}
.hero__header {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__header:before {
  content: "";
  position: absolute;
  top: 0;
  left: -31px;
  width: 4px;
  height: 100%;
  background: #fff;
}
.hero__subtitle {
  display: inline-flex;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  padding: 6px 16px;
  background: var(--background-color-additional);
  border-radius: 52px;
  margin-bottom: 20px;
}
.hero__description {
  font-size: 20px;
  margin-top: 30px;
  max-width: 560px;
  width: 100%;
}
.hero__wrapper {
  display: flex;
  gap: 110px;
}
.hero__header {
  width: 100%;
}
.hero__description {
  margin-top: 30px;
}
.hero__items {
  display: flex;
  flex-direction: column;
  gap: 68px;
}
.hero__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  width: 327px;
  height: 192px;
  background: rgba(20, 28, 46, 0.92);
  border: 1px solid #FFFFFF;
  box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  font-size: 18px;
  transition: all 0.3s ease;
}
.hero__item:hover {
  transform: scale(0.98);
}

.why {
  position: relative;
  padding: 124px 0 0;
}
.why__decor {
  position: absolute;
  right: -110px;
  bottom: 0px;
  z-index: -1;
}
.why__wrapper {
  position: relative;
  display: flex;
}
.why__items {
  position: relative;
  left: -120px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  grid-template-rows: auto auto;
  gap: 16px;
  max-width: 848px;
  width: 100%;
  height: 672px;
}
.why__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.why__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.why__item img:hover {
  transform: scale(1.05);
}
.why__item:nth-child(2) {
  grid-row: span 2;
}
.why__info {
  position: relative;
  font-weight: 700;
  font-size: 64px;
  line-height: 60px;
  color: #D7D7D7;
  padding: 42px;
  max-width: 1714px;
  width: 100%;
  margin-top: 124px;
}
.why__content {
  position: absolute;
  right: 0;
  top: 70px;
  padding: 46px 46px 46px 76px;
  background: rgba(20, 28, 46, 0.92);
  border: 1px solid #FFFFFF;
  border-radius: 16px;
  max-width: 703px;
  color: #fff;
  width: 100%;
}
.why__content-decor {
  position: absolute;
  right: -25px;
  top: -25px;
}
.why__content p {
  font-size: 18px;
  line-height: 125%;
  color: #D5D5D5;
}
.why__content p:not(:last-child) {
  margin-bottom: 20px;
}
.why__button {
  display: flex;
  justify-content: flex-start;
  margin-top: 50px;
}
.why__description {
  position: relative;
  margin-top: 40px;
}
.why__description:before {
  content: "";
  position: absolute;
  top: 0;
  left: -31px;
  width: 4px;
  height: 100%;
  background: #fff;
}
.why__description .description {
  margin-bottom: 20px;
  font-weight: 500;
}

.candidate {
  position: relative;
  padding: 90px 0;
}
.candidate__decor-left {
  position: absolute;
  left: 0;
  top: 135px;
}
.candidate__decor-right {
  position: absolute;
  right: 201px;
  bottom: 116px;
}
.candidate__items {
  display: flex;
  gap: 32px;
  margin-top: 54px;
}
.candidate__item {
  position: relative;
  max-width: 644px;
  width: 100%;
}
.candidate__item-image {
  position: relative;
  height: 218px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.candidate__item-icon {
  position: relative;
  z-index: 1;
}
.candidate__item-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.candidate__item-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.candidate__item-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 60px;
  margin-top: 20px;
}
.candidate__item-desc {
  font-weight: 500;
  font-size: 20px;
  line-height: 125%;
  color: #3D3D3D;
}
.candidate__item-button {
  display: flex;
  justify-content: flex-start;
  margin-top: 48px;
}

.cooperation {
  position: relative;
  padding: 118px 0 0;
  background: #2C3343;
}
.cooperation .container {
  position: relative;
  z-index: 1;
}
.cooperation__decor {
  position: absolute;
  right: 0;
  bottom: 46px;
  z-index: 0;
}
.cooperation__wrapper {
  display: flex;
  gap: 184px;
}
.cooperation__content {
  max-width: 590px;
  width: 100%;
  flex-shrink: 0;
}
.cooperation__header {
  position: relative;
}
.cooperation__header:before {
  content: "";
  position: absolute;
  top: 0;
  left: -31px;
  width: 4px;
  height: 100%;
  background: #fff;
}
.cooperation__image {
  position: relative;
  max-width: 491px;
  width: 100%;
}
.cooperation__image-wrapper {
  position: relative;
  left: -300px;
  width: 790px;
  height: 528px;
  overflow: hidden;
  border-radius: 0px 16px 0px 0px;
}
.cooperation__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.cooperation__image-wrapper img:hover {
  transform: scale(1.05);
}
.cooperation__subtitle {
  display: inline-flex;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  padding: 6px 16px;
  background: var(--background-color-additional);
  border-radius: 52px;
  margin-bottom: 20px;
  color: #fff;
}
.cooperation__description {
  margin-top: 15px;
}
.cooperation__list {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #FFFFFF;
  margin-top: 27px;
  max-width: 590px;
  width: 100%;
}
.cooperation__list span {
  font-weight: 700;
}
.cooperation__list ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact {
  position: relative;
  padding: 98px 0;
}
.contact__decor {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.contact__form {
  position: relative;
  max-width: 908px;
  width: 100%;
  margin: 62px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__form-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__form-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: -31px;
  width: 4px;
  height: 100%;
  background: var(--background-color-additional);
}
.contact__button {
  margin-top: 16px;
}
.contact__radios {
  display: flex;
  gap: 36px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.contact__radio {
  position: relative;
  display: flex;
}
.footer {
  position: relative;
  padding: 86px 0;
  background: #141C2E;
  color: #fff;
}
.footer__wrapper {
  display: flex;
  gap: 113px;
}
.footer__time {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
}
.footer__list {
  color: #fff;
}
.footer__list:nth-child(2) li:first-child {
  text-transform: uppercase;
}
.footer__list ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
}
.footer__list ul li {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__list ul li span {
  color: #B2B2B2;
}
.footer__list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

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