@import url("https://fonts.googleapis.com/css2?family=Fira+Sans: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&display=swap");
:root {
  --size-container: 1320px;
  --text-color-primary: #000000;
  --text-color-secondary: #fff;
  --text-color-accent: #fff;
  --background-color-primary: #ebeded;
  --background-color-secondary: #1f1f1f;
  --background-color-accent: #668c79;
}

.button {
  position: relative;
  padding: 18px 24px;
  min-width: 262px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #FFFFFF;
  border-radius: 52px;
  cursor: pointer;
  border: 1px solid transparent;
}
.button:active {
  transform: scale(0.98);
}
.button--full {
  width: 100%;
}
.button--accent {
  background: var(--background-color-accent);
  color: var(--text-color-secondary);
  border: 1px solid var(--background-color-accent);
}
.button--accent:hover {
  background: #fff;
  color: var(--text-color-primary);
}
.button--outline {
  border-color: #fff;
  background: transparent;
  color: #fff;
}
.button--outline:hover {
  background: var(--background-color-accent);
  color: #fff;
}
.button--white {
  background: #fff;
  color: var(--text-color-primary);
  border: 1px solid #FFFFFF;
}
.button--white:hover {
  background: var(--background-color-accent);
  color: #fff;
}

.h1 {
  position: relative;
  font-weight: 500;
  font-size: 64px;
  line-height: 125%;
}
.h1--white {
  color: var(--text-color-secondary);
}

.h2 {
  position: relative;
  font-weight: 500;
  font-size: 46px;
  line-height: 125%;
}
.h2--white {
  color: var(--text-color-secondary);
}
.h2 span {
  font-weight: 600;
}

.description {
  font-weight: 400;
  font-size: 22px;
  line-height: 34px;
}
.description--white {
  color: var(--text-color-secondary);
}
.description span {
  font-weight: 500;
}

.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: 500;
  font-size: 13px;
  line-height: 15px;
  color: #000;
  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: "Fira Sans", sans-serif;
}
.input input::placeholder {
  font-size: 16px;
  color: #3D3D3D;
  font-family: "Fira Sans", sans-serif;
}

.textarea {
  position: relative;
  display: flex;
  width: 100%;
}
.textarea__label {
  position: absolute;
  top: 8px;
  left: 24px;
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  color: #000;
  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: "Fira Sans", sans-serif;
}
.textarea textarea::placeholder {
  font-size: 16px;
  color: #3D3D3D;
  font-family: "Fira Sans", sans-serif;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color-primary);
  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: 1px solid #3D3D3D;
  border-radius: 0px;
  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: 4px;
  height: 9px;
  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: #3D3D3D;
}
.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: 600;
  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 #000;
  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-accent);
  opacity: 0;
  transition: opacity 0.1s ease;
}
.radio__input:checked + .radio__box {
  border: 2px solid var(--background-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(--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;
  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: calc(var(--size-container) - 100px);
}

body {
  font-family: "Fira Sans", sans-serif;
  font-size: 20px;
  font-weight: 300;
  min-width: calc(var(--size-container) - 100px);
  color: var(--text-color-primary);
  line-height: 125%;
  overflow-x: hidden;
  background: #f8f8f8;
}

.container {
  position: relative;
  max-width: var(--size-container);
  margin: 0 auto;
}
.container-large {
  position: relative;
  max-width: 1565px;
  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: 132px;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 33px 24px;
  margin-top: 38px;
}
.header__info {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header__content {
  display: flex;
  align-items: center;
  gap: 44px;
}
.header__nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
}
.header__nav ul a {
  text-decoration: none;
  color: var(--text-color-primary);
}
.header__nav ul a:hover {
  color: #fff;
}
.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);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 38px;
}
.hero__background {
  position: absolute;
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  border-top: none;
  overflow: hidden;
}
.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__buttons {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 74px;
}
.hero__phone {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color-primary);
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  padding: 0 30px;
  font-family: sans-serif !important;
}
.hero__wrapper {
  position: relative;
  display: flex;
  gap: 53px;
  padding: 276px 44px 330px;
  border-radius: 22px;
  overflow: hidden;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex-shrink: 0;
  width: 100%;
  margin-top: 40px;
}
.hero__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.hero__description {
  max-width: 625px;
  width: 100%;
  margin-top: 46px;
  font-size: 18px;
}
.hero__description p {
  margin-top: 30px;
}
.hero__description p:first-child {
  font-weight: 500;
}

.about {
  position: relative;
  padding: 120px 0;
}
.about__background {
  position: absolute;
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  border-top: none;
  overflow: hidden;
}
.about__background svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}
.about__header span {
  display: block;
  font-size: 18px;
  font-weight: 400;
}
.about__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 42px;
  margin-top: 102px;
}
.about__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  width: 410px;
  flex-shrink: 0;
  font-weight: 400;
  font-size: 28px;
  line-height: 34px;
}
.about__item svg {
  transition: all 0.3s ease;
}
.about__item:hover svg {
  transform: translateY(-5px);
}
.about__item-title {
  text-align: center;
}

.candidate {
  position: relative;
  padding: 38px 38px 167px;
}
.candidate__background {
  position: absolute;
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  border-top: none;
  border-radius: 22px;
  overflow: hidden;
}
.candidate__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.candidate__wrapper {
  position: relative;
  padding: 88px 44px 0px;
}
.candidate__description {
  max-width: 620px;
  width: 100%;
  margin-top: 30px;
}
.candidate__description p:not(:last-child) {
  margin-bottom: 20px;
}
.candidate__button {
  display: flex;
  justify-content: flex-start;
  margin-top: 45px;
}
.candidate__items {
  position: relative;
  display: flex;
  gap: 32px;
  bottom: -70px;
}
.candidate__item {
  background: #FFFFFF;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.11);
  border-radius: 22px;
  max-width: 287px;
  width: 100%;
  padding: 40px 32px;
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;
}

.cooperation {
  position: relative;
  padding: 80px 0;
}
.cooperation__background {
  position: absolute;
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  border-top: none;
  overflow: hidden;
}
.cooperation__background svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cooperation__button {
  display: flex;
  justify-content: flex-start;
  margin-top: 45px;
}
.cooperation__description {
  margin-top: 25px;
  max-width: 1150px;
  width: 100%;
}

.reviews {
  position: relative;
  padding: 38px;
}
.reviews__wrapper {
  padding: 88px 44px;
  background: #DAE4E3;
  border-radius: 22px;
}
.reviews__items {
  max-width: 1545px;
  width: 100%;
  margin: 45px auto 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.reviews__item {
  padding: 24px 24px 54px;
  background: #FFFFFF;
  border-radius: 8px;
  grid-column: span 2;
}
.reviews__item:nth-child(4n), .reviews__item:nth-child(5n) {
  grid-column: span 3;
}
.reviews__item-title {
  color: #6E6E6E;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  text-align: right;
}
.reviews__item-decor {
  margin-top: 16px;
}
.reviews__item-content {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #3D3D3D;
}

.contact {
  position: relative;
  padding: 60px 0 95px;
}
.contact__background {
  position: absolute;
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  border-top: none;
  overflow: hidden;
}
.contact__background svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact__buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 25px;
}
.contact__header {
  position: relative;
  z-index: 10;
  max-width: 710px;
  width: 100%;
  text-align: center;
}
.contact__h2 {
  font-size: 40px;
  font-weight: 600;
}
.contact__description {
  position: relative;
  font-size: 20px;
}
.contact__form {
  position: relative;
  z-index: 10;
  max-width: 912px;
  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;
}

.footer {
  position: relative;
  padding: 112px 0;
  background: var(--background-color-accent);
  color: #fff;
}
.footer__wrapper {
  width: 100%;
}
.footer__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
.footer__name {
  font-weight: 500;
  font-size: 22px;
  line-height: 43px;
  min-width: 450px;
}
.footer__nav {
  min-width: 151px;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
  list-style: none;
}
.footer__nav ul li a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}
.footer__nav ul li a svg {
  flex-shrink: 0;
}
.footer__info {
  color: #fff;
}
.footer__info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  text-align: right;
}
.footer__info ul:not(:first-child) {
  margin-top: 40px;
}
.footer__info ul li {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  text-align: left;
}
.footer__info ul li:first-child {
  display: inline-flex;
  justify-content: flex-start;
  gap: 49px;
}
.footer__info ul li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}
.footer__info ul li a svg {
  flex-shrink: 0;
}
.footer__info ul li svg {
  position: relative;
  top: 0px;
  left: 0px;
  flex-shrink: 0;
}
.footer__info ul li span {
  color: #fff;
}
.footer__time {
  display: block;
  font-weight: 400 !important;
  font-size: 15px !important;
}
.footer__time b {
  font-weight: 500;
}
.footer__add-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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