@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
:root {
  --size-container: 1320px;
  --text-color-primary: #000;
  --text-color-secondary: #3D3D3D;
  --text-color-accent: #000;
  --text-color-additional: rgba(0, 0, 0, 0.76);
  --text-color-additional-2: #fff;
  --background-color-primary: #fff;
  --background-color-secondary: #86968D;
  --background-color-accent: #1E242A;
}

.button {
  position: relative;
  padding: 20px 44px;
  min-width: 277px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  border-radius: 0px;
  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: #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: 400;
  font-size: 82px;
  line-height: 87px;
}
.h1--white {
  color: var(--text-color-additional-2);
}

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

.description {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
}
.description p {
  margin-bottom: 24px;
}
.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: -7px;
  left: 18px;
  font-weight: 500;
  font-size: 14px;
  line-height: 15px;
  padding: 0 8px;
  color: var(--text-color-primary);
  z-index: 2;
  background: #fff;
}
.input input {
  position: relative;
  display: flex;
  background: #FFFFFF;
  padding: 20px 34px 20px;
  border-radius: 0;
  border: 1px solid #B2B2B2;
  width: 100%;
  font-size: 16px;
  outline: none;
  line-height: 100%;
  font-family: "Ubuntu", sans-serif;
}
.input input::placeholder {
  font-size: 16px;
  color: var(--text-color-secondary);
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  line-height: 18px;
  color: #B2B2B2;
}

.textarea {
  position: relative;
  display: flex;
  width: 100%;
}
.textarea__label {
  position: absolute;
  top: -7px;
  left: 18px;
  font-weight: 500;
  font-size: 14px;
  line-height: 15px;
  padding: 0 8px;
  color: var(--text-color-primary);
  z-index: 2;
  background: #fff;
}
.textarea textarea {
  position: relative;
  resize: vertical;
  min-height: 154px;
  display: flex;
  background: #FFFFFF;
  padding: 20px 34px 20px;
  border-radius: 0;
  border: 1px solid #B2B2B2;
  width: 100%;
  font-size: 16px;
  outline: none;
  line-height: 100%;
  font-family: "Ubuntu", sans-serif;
}
.textarea textarea::placeholder {
  font-size: 16px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  line-height: 18px;
  color: #B2B2B2;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: #3D3D3D;
  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 #1a8a32;
  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: #1a8a32;
}
.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(--text-color-additional-2);
}
.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: var(--size-container);
}

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

.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;
  border-bottom: 1px solid #fff;
}
.header__logo {
  display: flex;
}
.header__logo img {
  width: 302px;
}
.header__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 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-additional-2);
}
.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: var(--background-color-primary);
  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: #b2b2b2;
  transition: color 0.3s;
}
.header__lang-list a:hover {
  color: var(--text-color-primary);
}
.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 240px;
}
.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: 28px;
  margin-top: 100px;
}
.hero__header {
  max-width: 905px;
  width: 100%;
}
.hero__description {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #FFFFFF;
  max-width: 482px;
  width: 100%;
}

.offers {
  position: relative;
  padding: 66px 0;
}
.offers__decor {
  position: absolute;
  right: 0;
  top: 60%;
}
.offers__items {
  margin-top: 62px;
  display: flex;
  gap: 12px;
}
.offers__item {
  position: relative;
  width: 100%;
  height: 415px;
  overflow: hidden;
  font-weight: 500;
  font-size: 36px;
  line-height: 40px;
  color: #fff;
}
.offers__item span {
  display: block;
  padding: 25px 25px 40px;
}
.offers__item:nth-child(2) {
  display: flex;
  align-items: flex-end;
  background: var(--background-color-accent);
}
.offers__item:nth-child(2) .offers__item-decor {
  top: 0;
  left: 0;
}
.offers__item:nth-child(4) {
  background: var(--background-color-secondary);
}
.offers__item:nth-child(4) .offers__item-decor {
  bottom: -10px;
  left: 0;
}
.offers__item-decor {
  position: absolute;
}
.offers__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.offers__item img:hover {
  transform: scale(1.05);
}
.offers__description {
  max-width: 820px;
  width: 100%;
  margin-top: 100px;
}

.projects {
  position: relative;
  padding: 112px 0;
}
.projects__items {
  display: flex;
  gap: 24px;
  margin-top: 62px;
}
.projects__item {
  position: relative;
  width: 347px;
  padding-top: 24px;
}
.projects__item span {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  margin-top: 10px;
}
.projects__item-img {
  width: 100%;
  height: 440px;
  overflow: hidden;
}
.projects__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.projects__item img:hover {
  transform: scale(1.05);
}
.projects__item:nth-child(2) {
  padding-top: 0px;
  width: 538px;
  height: 522px;
}
.projects__item:nth-child(2) .projects__item-img {
  height: 100%;
}

.why {
  position: relative;
  padding: 66px 0;
}
.why:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 446px;
  height: 1px;
  background: #B2B2B2;
}
.why__items {
  display: flex;
  flex-direction: column;
  margin-top: 62px;
}
.why__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 14px 22px 82px;
  border-top: 1px solid #D4D4D4;
}
.why__item:last-child {
  border-bottom: 1px solid #D4D4D4;
}
.why__item svg {
  transition: all 0.3s ease;
}
.why__item:hover svg {
  transform: translateX(5px) translateY(-5px);
}
.why__item-title {
  display: flex;
  align-items: flex-start;
  gap: 27px;
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  text-transform: uppercase;
}
.why__item-title svg {
  margin-top: 10px;
}
.why__item-content {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  max-width: 345px;
  width: 100%;
}

.cooperation {
  position: relative;
  padding: 112px 0;
}
.cooperation__wrapper {
  display: flex;
  gap: 62px;
}
.cooperation__image {
  position: relative;
  width: 430px;
  height: 470px;
  overflow: hidden;
  flex-shrink: 0;
}
.cooperation__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.cooperation__image img:hover {
  transform: scale(1.05);
}
.cooperation__description {
  margin-top: 40px;
}
.cooperation__button {
  display: flex;
  justify-content: flex-start;
  margin-top: 115px;
}

.join {
  position: relative;
  padding: 66px 0;
}
.join__wrapper:before {
  content: "";
  position: absolute;
  left: -200px;
  top: -100px;
  width: 1px;
  height: 1111px;
  background: #B2B2B2;
}
.join__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 62px;
}
.join__item {
  position: relative;
  padding: 32px 36px;
}
.join__item:first-child {
  background: rgba(134, 150, 141, 0.35);
}
.join__item:last-child {
  background: #F2F2F2;
}
.join__item-title {
  font-weight: 400;
  font-size: 36px;
  line-height: 60px;
}
.join__item-content {
  font-weight: 400;
  font-size: 24px;
  line-height: 146%;
  color: rgba(0, 0, 0, 0.76);
  margin-top: 20px;
  padding: 12px 31px;
  border-left: 2px solid var(--background-color-secondary);
  max-width: 805px;
  width: 100%;
}
.join__item-icon {
  position: absolute;
  right: 36px;
  top: 32px;
}

.contact {
  position: relative;
  padding: 112px 0;
}
.contact:before {
  content: "";
  position: absolute;
  right: 0;
  top: 132px;
  width: 846px;
  height: 1px;
  background: #B2B2B2;
}
.contact__form {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 62px;
}
.contact__radios {
  display: flex;
  gap: 36px;
}

.footer {
  position: relative;
  padding: 44px 0 76px;
  overflow: hidden;
}
.footer__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.footer__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.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;
  max-width: 351px;
  width: 100%;
}
.footer__nav ul li a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 18px;
  color: var(--text-color-additional-2);
  text-decoration: none;
}
.footer__nav ul li a svg {
  flex-shrink: 0;
}
.footer__nav ul li:last-child {
  font-weight: 400;
  font-size: 15px;
  color: var(--text-color-additional-2);
}
.footer__nav ul li:last-child b {
  font-weight: 500;
}
.footer__info {
  max-width: 351px;
  width: 100%;
}
.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-additional-2);
  text-decoration: none;
}
.footer__info ul li span {
  color: #B2B2B2;
}

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