@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Russo+One&display=swap");
:root {
  --size-container: 1240px;
  --text-color-primary: #fff;
  --text-color-secondary: #000;
  --text-color-accent: #FFFF33;
  --text-color-additional: rgba(0, 0, 0, 0.76);
  --text-color-additional-2: #3D3D3D;
  --background-color-primary: #01040A;
  --background-color-secondary: #232323;
  --background-color-additional: #252626;
  --background-color-accent: #FFFF33;
}

.button {
  position: relative;
  padding: 20px 44px;
  min-width: 231px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.button:active {
  transform: scale(0.98);
}
.button--full {
  width: 100%;
}
.button--accent {
  background: var(--background-color-accent);
  color: var(--text-color-secondary);
  box-shadow: 0px 0px 8.4px rgba(255, 255, 51, 0.32);
}
.button--accent:hover {
  opacity: 0.8;
}
.button--white {
  border: 1px solid #fff;
  color: var(--text-color-primary);
  box-shadow: none;
}
.button--white:hover {
  color: var(--text-color-secondary);
  background: #fff;
}

.h1 {
  position: relative;
  font-weight: 400;
  font-size: 82px;
  line-height: 87px;
  font-family: "Russo One", sans-serif;
}
.h1:before {
  content: "";
  position: absolute;
  top: -36px;
  left: 0;
  width: 233px;
  height: 4px;
  background: var(--background-color-accent);
}
.h1--white {
  color: var(--text-color-primary);
}

.h2 {
  position: relative;
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 156%;
}
.h2:before {
  content: "";
  position: relative;
  display: flex;
  top: 0px;
  left: 0;
  width: 233px;
  height: 4px;
  margin-bottom: 30px;
  background: var(--background-color-accent);
}
.h2--white {
  color: var(--text-color-primary);
}

.description {
  font-weight: 500;
  font-size: 18px;
  line-height: 29px;
}
.description--white {
  color: var(--text-color-additional-2);
}

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

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

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

.checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  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: 16px;
}
.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: 14px;
  color: var(--text-color-primary);
  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-accent);
  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::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(--background-color-accent);
  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;
}
.form-status.error {
  display: block;
  background: #e74c3c;
  border: 1px solid #ffc1c1;
}

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

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

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

.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: 215px;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 48px 0;
}
.header__content {
  display: flex;
  align-items: center;
  gap: 44px;
}
.header__nav ul {
  list-style: none;
  display: flex;
  gap: 44px;
  font-weight: 300;
  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-secondary);
  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: 330px 0 325px;
}
.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;
  gap: 14px;
  margin-top: 42px;
}
.hero__header {
  max-width: 905px;
  width: 100%;
}
.hero__description {
  margin-top: 30px;
}

.services {
  position: relative;
  padding: 112px 0;
  background: var(--background-color-additional);
}
.services__items {
  display: flex;
  gap: 22px;
}
.services__item {
  position: relative;
  border-radius: 8px;
  padding: 24px;
  background: #363636;
  max-width: 398px;
  width: 100%;
}
.services__item-title {
  position: relative;
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
  margin-top: 20px;
}
.services__item-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-top: 10px;
}
.services__item-img {
  position: relative;
  width: 100%;
  height: 246px;
  border-radius: 8px;
  overflow: hidden;
}
.services__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.services__item-img img:hover {
  transform: scale(1.05);
}

.why {
  position: relative;
}
.why__wrapper {
  position: relative;
  padding: 112px 0;
}
.why__decor {
  position: absolute;
  left: 0;
  bottom: 0;
}
.why__line {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  gap: 242px;
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 60px;
  color: var(--text-color-additional-2);
  background: linear-gradient(90deg, #FFFF33 0%, #C1D526 52.4%, #8FDA27 100%);
}
.why__line span {
  position: relative;
  display: flex;
}
.why__line span:not(:last-child):before {
  content: "";
  position: absolute;
  right: -121px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background: #666565;
  z-index: 1;
}
.why__items {
  position: relative;
  display: flex;
  gap: 65px;
  margin-top: 130px;
}
.why__items:before {
  content: "";
  position: absolute;
  right: -15%;
  top: 0;
  width: 115%;
  height: 1px;
  background: var(--background-color-accent);
}
.why__item {
  position: relative;
  width: 370px;
  padding-top: 58px;
}
.why__item:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 100px;
  background: var(--background-color-accent);
}
.why__item-title {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
}
.why__item-content {
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  margin-top: 12px;
}
.why__image {
  position: relative;
  width: 100%;
  height: 448px;
  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);
}

.cooperation {
  position: relative;
  padding: 112px 0;
}
.cooperation__description {
  max-width: 717px;
  width: 100%;
}
.cooperation__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 32px;
  gap: 18px;
}
.cooperation__item {
  position: relative;
  display: flex;
  padding: 58px 28px;
  height: 270px;
  justify-content: flex-end;
  background: var(--background-color-secondary);
  overflow: hidden;
  transition: all 0.3s ease;
}
.cooperation__item:hover {
  transform: scale(1.02);
}
.cooperation__item-icon {
  position: absolute;
  bottom: -5px;
  left: 0;
}
.cooperation__item-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 34px;
  max-width: 270px;
  width: 100%;
}

.candidate {
  position: relative;
  padding: 112px 0;
  background: var(--background-color-secondary);
}
.candidate__description {
  margin-top: 24px;
}
.candidate__items-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  margin-top: 24px;
}
.candidate__items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.candidate__item {
  font-weight: 500;
  font-size: 18px;
  line-height: 34px;
  padding: 14px 31px;
  background: #000000;
  border-radius: 52px;
  transition: all 0.3s ease;
}
.candidate__item:nth-child(3), .candidate__item:nth-child(4), .candidate__item:nth-child(8) {
  border: 1px solid #fff;
}
.candidate__item:hover {
  transform: scale(0.98);
}
.candidate__blocks {
  display: flex;
  margin-top: 54px;
  gap: 20px;
}
.candidate__block {
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.candidate__block-desc {
  margin-top: 34px;
  max-width: 550px;
  width: 100%;
}
.candidate__block-button {
  margin-top: 65px;
}
.candidate__block-button a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.candidate__block-button a svg {
  transition: all 0.3s ease;
}
.candidate__block-button a:hover {
  color: #fff;
}
.candidate__block-button a:hover svg {
  transform: translateX(5px);
}
.candidate__block-button a:hover svg path {
  fill: #fff;
}
.candidate__block:first-child a {
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  color: #A6A6A6;
}
.candidate__block:first-child a:hover {
  color: #fff;
}
.candidate__block:last-child a {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--text-color-accent);
}
.candidate__block:last-child a:hover {
  color: #fff;
}

.contact {
  position: relative;
  padding: 108px 0;
}
.contact__decor {
  position: absolute;
  left: 0;
  bottom: 0;
}
.contact__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 170px;
  margin-top: 32px;
}
.contact__form {
  position: relative;
  max-width: 502px;
  flex-shrink: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--background-color-additional);
  border-radius: 16px;
  gap: 24px;
}
.contact__form-decor-top {
  position: absolute;
  right: -30px;
  top: -32px;
}
.contact__form-decor-bottom {
  position: absolute;
  left: -40px;
  bottom: -32px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 376px;
  width: 100%;
}
.contact__info span {
  display: block;
  font-weight: 400;
  font-size: 20px;
  line-height: 33px;
}
.contact__info span:first-child {
  font-weight: 600;
  font-size: 24px;
}
.contact__radios {
  display: flex;
  gap: 12px;
}
.contact__radio {
  position: relative;
  display: flex;
  border-radius: 8px;
  padding: 16px 8px 16px 16px;
  width: 100%;
  font-size: 16px;
}
.contact__radio.active {
  border: 1px solid var(--background-color-accent);
}

.footer {
  position: relative;
  padding: 34px 0;
}
.footer__wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-weight: 500;
  font-size: 18px;
  line-height: 165%;
}
.footer__wrapper a {
  text-decoration: none;
  color: var(--text-color-primary);
}
.footer__nav ul {
  list-style: none;
}
.footer__nav ul li:last-child {
  margin-top: 24px;
}
.footer__info ul {
  list-style: none;
  text-align: right;
}
.footer__info ul li:last-child {
  margin-top: 24px;
}

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