@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap");
:root {
  --size-container: 1320px;
  --text-color-primary: #fff;
  --text-color-secondary: #000;
  --text-color-accent: #d83341;
  --background-color-primary: #fdfdfd;
  --background-color-secondary: #1f1f1f;
  --background-color-accent: #d83341;
}

.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-primary);
  border: 1px solid var(--background-color-accent);
}
.button--accent:hover {
  background: var(--background-color-primary);
  color: var(--text-color-secondary);
}

.h1 {
  position: relative;
  font-weight: 600;
  font-size: 48px;
  line-height: 115%;
}
.h1--white {
  color: var(--text-color-primary);
}
.h1 span {
  color: var(--text-color-accent);
}

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

.description {
  font-weight: 300;
  font-size: 22px;
  line-height: 29px;
}
.description span {
  font-weight: 500;
}
.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__label {
  position: absolute;
  top: 8px;
  left: 12px;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: #5C5C5C;
  z-index: 2;
}
.input input {
  position: relative;
  display: flex;
  background: #F0F0F0;
  border: 1px solid #B2B2B2;
  padding: 31px 12px 12px;
  border-radius: 0px;
  width: 100%;
  font-size: 16px;
  outline: none;
  line-height: 100%;
  font-family: "Geologica", sans-serif;
}
.input input::placeholder {
  font-size: 16px;
  color: #5C5C5C;
  font-family: "Geologica", sans-serif;
}

.textarea {
  position: relative;
  display: flex;
  width: 100%;
}
.textarea__label {
  position: absolute;
  top: 8px;
  left: 12px;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: #15110B;
  z-index: 2;
}
.textarea textarea {
  position: relative;
  resize: vertical;
  min-height: 99px;
  display: flex;
  background: #F0F0F0;
  border: 1px solid #B2B2B2;
  padding: 14px 12px 12px;
  border-radius: 0px;
  width: 100%;
  font-size: 16px;
  outline: none;
  line-height: 100%;
  font-family: "Geologica", sans-serif;
}
.textarea textarea::placeholder {
  font-size: 16px;
  color: #5C5C5C;
  font-family: "Geologica", sans-serif;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  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: 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: 500;
  font-size: 14px;
  color: #000;
  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(--background-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-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: "Geologica", sans-serif;
  font-size: 20px;
  font-weight: 300;
  min-width: calc(var(--size-container) - 100px);
  color: var(--text-color-secondary);
  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: 1120px;
  z-index: 100;
}
.header__logo {
  display: flex;
}
.header__logo img {
  width: 211px;
}
.header__info {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header__phone a {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  text-decoration: none;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 21px 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0px 3px 5.5px rgba(0, 0, 0, 0.2);
  border-radius: 22px;
  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-secondary);
}
.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-secondary);
}
.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;
  padding: 320px 0 278px;
  overflow: hidden;
}
.hero__background {
  position: absolute;
  left: -8px;
  top: 0;
  width: calc(100% + 16px);
  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: 0px;
  margin-top: 60px;
}
.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: flex-start;
  text-align: left;
  padding-left: 135px;
}
.hero__decor {
  position: relative;
  left: -50px;
  margin-bottom: 40px;
}
.hero__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1100px;
  width: 100%;
}
.hero__description {
  max-width: 830px;
  width: 100%;
  margin-top: 30px;
}
.hero__description p {
  margin-top: 20px;
}

.services {
  position: relative;
  padding: 122px 0;
}
.services__decor {
  position: absolute;
  bottom: -70px;
  right: -120px;
  z-index: -1;
}
.services__items {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.services__image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}
.services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.services__image img:hover {
  transform: scale(1.02);
}
.services__item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #FFFFFF;
  box-shadow: 0px 0px 11.2px rgba(0, 0, 0, 0.15);
  min-height: 660px;
  padding: 32px;
}
.services__item-title {
  font-weight: 600;
  font-size: 28px;
  line-height: 60px;
  color: #717171;
  margin-top: 30px;
}
.services__item-content {
  margin-top: 60px;
  line-height: 33px;
}
.services__item-content p {
  margin-bottom: 10px;
}

.work {
  position: relative;
  padding: 129px 0;
}
.work .container {
  z-index: 2;
}
.work__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.work__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work__wrapper {
  position: relative;
  z-index: 2;
  padding: 32px 32px 56px;
  background: #FFFFFF;
  box-shadow: 0px 0px 11.2px rgba(0, 0, 0, 0.15);
  border-radius: 22px;
  max-width: 891px;
  width: 100%;
  font-weight: 300;
  font-size: 22px;
  line-height: 33px;
}
.work__wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 22px;
  background: linear-gradient(180deg, #DA3342 0%, rgba(218, 51, 66, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.work__description {
  margin-top: 22px;
}
.work__content {
  margin-top: 38px;
}
.work__content p {
  margin-bottom: 25px;
}
.work__content p span {
  font-weight: 500;
}
.work__button {
  display: flex;
  justify-content: flex-start;
  margin-top: 60px;
}

.reviews {
  position: relative;
  padding: 122px 0 459px;
}
.reviews__decor {
  position: absolute;
  bottom: -100px;
  left: -350px;
  z-index: -1;
}
.reviews__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.reviews__item {
  position: relative;
  background: #fff;
  box-shadow: 0 0 11.2px rgba(0, 0, 0, 0.15);
  min-height: 323px;
  padding: 32px;
  border-radius: 22px;
  overflow: hidden;
  z-index: 0;
  line-height: 33px;
}
.reviews__item::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 22px;
  background: linear-gradient(180deg, #DA3342 0%, rgba(218, 51, 66, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.reviews__item-icon {
  position: absolute;
  right: 49px;
  top: 32px;
}
.reviews__item-title {
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  color: #2f2f2f;
  margin-top: 6px;
}
.reviews__item-content {
  margin-top: 65px;
}

.cooperation {
  position: relative;
  padding: 122px 0 122px;
  overflow: hidden;
}
.cooperation__background {
  position: absolute;
  left: -8px;
  top: 0;
  width: calc(100% + 16px);
  height: 100%;
  border-top: none;
  overflow: hidden;
}
.cooperation__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cooperation__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.cooperation__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1120px;
  width: 100%;
}
.cooperation__description {
  max-width: 1120px;
  width: 100%;
  margin-top: 30px;
  font-weight: 400;
}
.cooperation__description span {
  font-size: 22px;
}
.cooperation__description p {
  font-size: 20px;
  margin-top: 20px;
}

.contact {
  position: relative;
  padding: 112px 0;
  background: var(--background-color-primary);
  overflow: hidden;
}
.contact__decor {
  position: absolute;
  bottom: -70px;
  right: 140px;
  z-index: -1;
}
.contact__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}
.contact__inner {
  display: flex;
  align-items: flex-start;
  margin-top: 77px;
}
.contact__button {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 34px;
}
.contact__header {
  position: relative;
  width: 100%;
  z-index: 10;
  text-align: left;
}
.contact__h2 {
  font-size: 40px;
  font-weight: 600;
}
.contact__description {
  position: relative;
  font-size: 20px;
}
.contact__form {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  max-width: 894px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 57px;
  background: #fff;
  box-shadow: 0px 0px 10.3px rgba(0, 0, 0, 0.14);
  border-radius: 22px;
  margin-top: 48px;
}
.contact__image {
  position: relative;
  z-index: 1;
  left: -100px;
  top: -30px;
}
.contact__image-wrapper {
  position: relative;
  width: 660px;
  height: 575px;
  overflow: hidden;
}
.contact__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.contact__image-wrapper img:hover {
  transform: scale(1.02);
}
.contact__radios {
  position: relative;
  display: flex;
  justify-content: flex-start;
  gap: 34px;
}
.contact__radio {
  position: relative;
  display: flex;
  padding: 19px 22px;
  font-size: 16px;
  opacity: 0.8;
}
.contact__radio.active {
  opacity: 1;
}

.footer {
  position: relative;
  padding: 112px 0 118px;
  background: #1F1F1F;
}
.footer__wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 100px;
  color: var(--text-color-primary);
}
.footer__name {
  max-width: 475px;
  width: 100%;
  min-width: 460px;
  line-height: 36px;
}
.footer__name ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin-top: 44px;
}
.footer__name ul li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
  color: var(--text-color-primary);
  text-decoration: none;
}
.footer__name ul li svg {
  flex-shrink: 0;
}
.footer__name span {
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  min-width: 351px;
}
.footer__nav ul li:first-child {
  display: inline-flex;
  justify-content: flex-start;
  gap: 50px;
}
.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: 44px;
}
.footer__nav ul li:last-child b {
  font-weight: 500;
}
.footer__info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.footer__info ul li {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 18px;
  color: var(--text-color-primary);
  text-decoration: none;
}
.footer__info ul li span {
  color: #fff;
}

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