@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
:root {
  --size-container: 1320px;
  --text-color-primary: #fff;
  --text-color-secondary: #000;
  --text-color-accent: #FFD388;
  --background-color-primary: #070705;
  --background-color-secondary: #17140E;
  --background-color-additional: #7E6840;
  --background-color-accent: #fdd187;
}

.button {
  position: relative;
  padding: 18px 44px;
  min-width: 246px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  border-radius: 22px;
  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);
}
.button--accent:hover {
  opacity: 0.8;
}

.h1 {
  position: relative;
  font-weight: 600;
  font-size: 62px;
  line-height: 115%;
  font-family: "Rubik", sans-serif;
}

.h2 {
  position: relative;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 46px;
  line-height: 156%;
}

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

.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: #15110B;
  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: "Rubik", sans-serif;
}
.input input::placeholder {
  font-size: 16px;
  color: var(--text-color-secondary);
  font-family: "Rubik", 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: #15110B;
  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: "Rubik", sans-serif;
}
.textarea textarea::placeholder {
  font-size: 16px;
  color: var(--text-color-secondary);
  font-family: "Rubik", sans-serif;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  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: 8px;
}
.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: #0F0D09;
  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 #0F0D09;
  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: #0F0D09;
  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;
}

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

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

.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: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 400;
  min-width: calc(var(--size-container) - 100px);
  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;
}
.container-large {
  position: relative;
  max-width: 1565px;
  margin: 0 auto;
}

.header {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  min-width: calc(var(--size-container) - 100px);
  z-index: 100;
}
.header__logo {
  display: flex;
}
.header__logo img {
  width: 157px;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 29px 122px;
  background: rgba(0, 0, 0, 0.82);
  border-radius: 52px;
  margin-top: 22px;
}
.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: 300px 0 260px;
  overflow: hidden;
}
.hero__background {
  position: absolute;
  left: -8px;
  top: 0;
  width: calc(100% + 16px);
  height: 100%;
  border: 5px solid var(--background-color-accent);
  border-top: none;
  border-radius: 0px 0px 226px 226px;
  overflow: hidden;
}
.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__buttons {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  margin-top: 105px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid #FFFFFF;
  border-radius: 52px;
}
.hero__phone {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color-primary);
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  padding: 0 28px;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1100px;
  width: 100%;
}
.hero__description {
  max-width: 830px;
  width: 100%;
  margin-top: 30px;
}

.services {
  position: relative;
  padding: 124px 0 60px;
}
.services__decor {
  position: absolute;
  left: 0;
  bottom: -115%;
  z-index: -1;
}
.services__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.services__content {
  display: flex;
  gap: 32px;
  margin-top: 96px;
}
.services__image {
  position: relative;
  max-width: 659px;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 52px;
}
.services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.services__image img:hover {
  transform: scale(1.02);
}
.services__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.services__item {
  position: relative;
  padding: 30px;
  border-radius: 22px;
}
.services__item:first-child {
  background: rgba(49, 38, 26, 0.32);
  border: 1px solid #FFD388;
  box-shadow: 0px 0px 17.6px rgba(91, 77, 28, 0.28);
}
.services__item-title {
  font-weight: 300;
  font-size: 32px;
  line-height: 26px;
  color: var(--text-color-accent);
}
.services__item-desc {
  margin-top: 18px;
}

.work {
  position: relative;
  padding-top: 122px;
  padding-bottom: 183px;
}
.work__decor {
  position: absolute;
  right: 0;
  bottom: -155%;
  z-index: -1;
}
.work__decor img {
  transform: scaleX(-1);
}
.work__wrapper {
  background: #17140E;
  border-radius: 52px;
  padding: 36px 78px;
  text-align: center;
}
.work__description {
  margin-top: 15px;
}
.work__content {
  max-width: 1100px;
  width: 100%;
  margin: 65px auto 0;
  font-weight: 300;
  font-size: 24px;
  line-height: 33px;
}
.work__content span {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 14px;
}
.work__button {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.cooperation {
  position: relative;
  padding: 0 0 144px;
}
.cooperation__line {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 105%;
  height: 60px;
  gap: 290px;
  font-weight: 400;
  font-size: 24px;
  line-height: 60px;
  color: var(--text-color-primary);
  background: var(--background-color-additional);
  transform: rotate(-3deg);
}
.cooperation__line span {
  position: relative;
  display: flex;
}
.cooperation__line span:not(:last-child):before {
  content: "";
  position: absolute;
  right: -145px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 4px;
  height: 4px;
  border-radius: 100px;
  background: #fff;
  z-index: 1;
}
.cooperation__wrapper {
  margin-top: 85px;
}
.cooperation__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.cooperation__items {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 1025px;
  width: 100%;
  margin: 110px auto 0;
}
.cooperation__items:before {
  content: "";
  position: absolute;
  top: 68px;
  left: 50%;
  width: 1px;
  height: calc(100% - 136px);
  background: var(--background-color-accent);
}
.cooperation__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 91px;
}
.cooperation__item:nth-child(2n) {
  flex-direction: row-reverse;
}
.cooperation__item:nth-child(2n) .cooperation__item-content:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -91px;
  right: unset;
  width: 91px;
  height: 1px;
  background: #1A160F;
}
.cooperation__item-content {
  position: relative;
  width: 387px;
  padding: 41px 24px;
  background: #1A160F;
  border-radius: 22px;
  text-align: center;
}
.cooperation__item-content:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -91px;
  width: 91px;
  height: 1px;
  background: #1A160F;
}
.cooperation__item-number {
  position: relative;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: var(--background-color-accent);
}

.reviews {
  position: relative;
  padding: 70px 0 150px;
}
.reviews__decor {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.reviews__decor img {
  height: 100vw;
  min-height: var(--size-container);
  transform: rotate(270deg) translateX(-50%) translateY(20%);
}
.reviews__header {
  display: flex;
  justify-content: center;
}
.reviews__items {
  position: relative;
  display: flex;
  gap: 22px;
  margin-top: 52px;
}
.reviews__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
}

.contact {
  position: relative;
  padding: 120px 0 48px;
  background: var(--background-color-additional);
  border-radius: 226px 226px 0px 0px;
  overflow: hidden;
}
.contact__decor {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0px;
}
.contact__decor img {
  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: 48px 0 38px;
}
.footer__wrapper {
  background: rgba(0, 0, 0, 0.82);
  border-radius: 52px;
  padding: 52px 52px;
  max-width: 1703px;
  width: 100%;
  margin: 0 auto;
}
.footer__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
.footer__name {
  font-weight: 500;
  font-size: 22px;
  line-height: 43px;
}
.footer__nav {
  min-width: 351px;
}
.footer__nav-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--text-color-primary);
  margin-bottom: 28px;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.footer__nav ul li a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 18px;
  color: var(--text-color-primary);
  text-decoration: none;
}
.footer__nav ul li a svg {
  flex-shrink: 0;
}
.footer__nav ul li:last-child {
  font-weight: 400;
  font-size: 15px;
  margin-top: 20px;
}
.footer__nav ul li:last-child b {
  font-weight: 500;
}
.footer__info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  text-align: right;
}
.footer__info ul li {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  font-weight: 500;
  font-size: 18px;
  color: var(--text-color-primary);
  text-decoration: none;
  text-align: right;
}
.footer__info ul li svg {
  position: absolute;
  top: 8px;
  left: -36px;
  flex-shrink: 0;
}
.footer__info ul li span {
  color: var(--text-color-primary);
}

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