html {
  scroll-behavior: smooth;
}

:root {
  --font-main: "Inter", sans-serif;
  --font-title: "Random Grotesque Spacious Book", sans-serif;
  --title-size-small: 26px;
  --title-size-big: 64px;
  --title-size-base: 40px;
  --title-size-tiny: 20px;
  --text-size-base: 16px;
  --color-accent: #E2051B;
  --color-text-white: #EBEBEB;
}

@media screen and (max-width: 767px) {
  :root {
    --title-size-base: 32px;
    --title-size-big: 32px;
    --title-size-small: 22px;
  }
}
body {
  font-family: var(--font-main);
  font-size: var(--text-size-base);
  line-height: 1.15;
  color: #3D3D3D;
  background-color: #D9D9D9;
}

body.no-scroll {
  overflow: hidden;
  touch-action: none;
  -ms-touch-action: none;
}

.title {
  font-family: var(--font-title);
  line-height: 0.8;
}
.title--tiny {
  font-size: var(--title-size-tiny);
  line-height: 1.5;
}
.title--small {
  font-size: var(--title-size-small);
}
.title--base {
  font-size: var(--title-size-base);
}
.title--big {
  font-size: var(--title-size-big);
}
.title--white {
  color: var(--color-text-white);
}
.title--white--clear {
  color: #fff;
}
.title--black {
  color: #333;
}
.title--accent {
  color: var(--color-accent);
}
.title--center {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .title--desktop--center {
    text-align: center;
  }
}

.text--base {
  font-size: var(--text-size-base);
  line-height: 1.15;
}
.text--white {
  color: #fff;
}
.text--white--grey {
  color: #EBEBEB;
}
.text--grey {
  color: #8F8F8F;
}
.text--black {
  color: #3D3D3D;
}
.text--black--clear {
  color: #000;
}
.text--black--grey {
  color: #0D0D0D;
}
.text--semibold {
  font-weight: 600;
}
.text--uppercase {
  text-transform: uppercase;
}
.text--link {
  text-decoration: underline;
  text-underline-position: under;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  text-align: center;
  -webkit-user-select: none;
  user-select: none;
}
.button:hover {
  cursor: pointer;
}
.button--base {
  height: 36px;
  font-size: 14px;
  border-radius: 5px;
  padding: 2px 18px;
  min-width: 140px;
}
.button--base--big {
  min-width: 190px;
}
.button--accent {
  background-color: var(--color-accent);
  color: #F5F5F5;
}
.button--accent:hover {
  background-color: #F5F5F5;
  color: var(--color-accent);
}
.button--black {
  background-color: #000;
  color: #F5F5F5;
}
.button--black:hover {
  background-color: #F5F5F5;
  color: #000;
}
.button--white {
  background-color: #EAEAEA;
  color: #333;
}
.button--white {
  background-color: #EAEAEA;
  color: #333;
  transition: 0.3s background-color, 0.3s color;
}
.button--center {
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 10px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header--active {
  position: fixed;
}
.header--active .header__menu {
  opacity: 1;
  visibility: visible;
}
.header::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
  z-index: 1;
}
.header__wrapper {
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .header__wrapper {
    padding: 15px 10px;
  }
}
.header__logo {
  width: 120px;
  height: 50px;

  transform: translateY(6px);
}
@media screen and (max-width: 1024px) {
  .header__logo {
    position: relative;
    z-index: 12;
  }
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__burger {
  position: relative;
  z-index: 12;
}
.header__row {
  display: flex;
  align-items: flex-end;
  gap: 60px;
  position: relative;
  z-index: 2;

  padding-bottom: 6px;
}
@media screen and (max-width: 1024px) {
  .header__row {
    gap: 30px;
  }
}
.header-contacts {
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .header-contacts {
    position: relative;
    z-index: 12;
  }
}
.header-contacts__row {
  display: flex;
  align-items: center;
  gap: 36px;
}
@media screen and (max-width: 1024px) {
  .header-contacts__button {
    display: none;
  }
}

.nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.nav__link {
  font-size: 16px;
  color: #F5F5F5;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__link--big {
  background-color: var(--color-accent);
  border-radius: 5px;
  padding: 2px 22px;
}
.nav__link--contact {
  padding: 2px 34px;
}

.contact-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
}
.contact-list--column {
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .contact-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.contact-link {
  --contact-color-text: #EBEBEB;
  --contact-color-icon: #EBEBEB;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  color: var(--contact-color-text);
}
.contact-link--grey {
  --contact-color-text: #EBEBEB;
  --contact-color-icon: #8F8F8F;
}
.contact-link__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--contact-color-icon);
}
@media screen and (max-width: 1240px) {
  .contact-link__text--desktop {
    display: none;
  }
}

.burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 20px;
  position: relative;
}
.burger--active .burger__item:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.burger--active .burger__item:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.burger--active .burger__item:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}
.burger__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: 0.3s top, 0.3s transform;
}
.burger__item:nth-child(2) {
  top: calc(50% - 1px);
  transition: 0.5s opacity, 0.3s visibility;
}
.burger__item:nth-child(3) {
  top: calc(100% - 2px);
}

.hero {
  position: relative;
}
.hero__wrapper {
  min-height: 50svh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 70px 0;
  position: relative;
  z-index: 2;
}
.hero__wrapper--home {
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__wrapper--small {
  padding: 50px;
  min-height: 320px;
}
@media screen and (max-width: 767px) {
  .hero__wrapper {
    padding: 35px 0;
    min-height: 60svh;
  }
  .hero__wrapper--small {
    min-height: 200px;
  }
}
.hero__column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
}
.hero__img img, .hero__img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}
.hero__img::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero__img--dark::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.hero__img--clear:before {
  display: none;
}

.menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100svh;
  z-index: 11;
  background-color: rgba(19, 19, 19, 0.95);
  padding: 80px 60px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s visibility, 0.5s opacity;
}
@media screen and (max-width: 1024px) {
  .menu {
    padding: 100px 10px 30px 10px;
  }
}
.menu__wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 140px;
  overflow: auto;
  scrollbar-width: none;
}
.menu__wrapper::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1024px) {
  .menu__wrapper {
    align-items: flex-start;
  }
}
.menu__decor {
  object-fit: contain;
  margin-left: auto;
  max-width: 100%;
  align-self: center;
}
@media screen and (max-width: 1024px) {
  .menu__decor {
    display: none;
  }
}
.menu__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.menu__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.menu__logo {
  width: 320px;
  height: 240px;
  align-self: center;
}
@media screen and (max-width: 1024px) {
  .menu__logo {
    display: none;
  }
}

.section--slider {
  overflow: hidden;
}
.section--white {
  background-color: #fff;
}
.section--black {
  background-color: #222121;
}
.section--black--dark {
  background-color: #161616;
}
.section--grey {
  background-color: #3D3D3D;
}
.section--grey--dark {
  background-color: #2D2D2D;
}
.section--grey--darker {
  background-color: #333;
}
.section--grey--light {
  background-color: #D9D9D9;
}
.section-map {
  height: 400px;
  position: relative;
}
.section-map__item {
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(100% + 140px);
  top: -140px;
  overflow: auto;
  scrollbar-width: none;
}
.section-map__item::-webkit-scrollbar {
  display: none;
}
.section-map__text {
  position: relative;
  z-index: 2;
}
.section-map__svg {
  position: absolute;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 900px;
  height: 100%;
  top: 0;
  z-index: 1;
}
.section__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section__wrapper {
  padding: 50px 0;
}
.section__wrapper--small {
  padding: 36px 0;
}
@media screen and (max-width: 767px) {
  .section__wrapper {
    padding: 30px 0;
  }
}
.section__text {
  max-width: 700px;
  width: 100%;
}
.section__text--small {
  max-width: 500px;
}
.section__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section__column--size--small {
  max-width: 725px;
  width: 100%;
}
.section__column--gap--big {
  gap: 50px;
}
.section__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.section__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section__header--center {
  align-items: center;
  text-align: center;
}
.section-grid__block {
  flex-grow: 1;
  flex: 50%;


}
.section-grid__info {
  max-width: 510px;
  width: 100%;
  align-self: center;
}
.section-grid__info--big {
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .section-grid__block--sticky{
    position: sticky;
    top: 100px;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .section-grid__info {
    order: 2;
  }
}
.section-grid__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.section-grid__row--gap--big {
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .section-grid__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.section-grid__title {
  max-width: 100%;
  width: 420px;
  flex-shrink: 0;
}
.section-grid__title--small {
  width: 330px;
}
@media screen and (max-width: 767px) {
  .section-grid__title {
    order: 1;
    width: 100%;
  }
}
.section-grid__text {
  max-width: 580px;
  width: 100%;
}
.section-grid__img {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-grid__img--small {
  height: 180px;
}
.section-grid__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-gallery {
  width: 100%;
}
.card-gallery__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-slider {
  width: 100%;
  overflow: visible;
}
.card-slider__item {
  width: 330px;
}
.card-slider__item--gallery {
  width: 380px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-slider__item--gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .card-slider__item {
    width: 80vw;
  }
}
.card-list__wrapper {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media screen and (max-width: 767px) {
  .card-list__wrapper {
    gap: 24px;
  }
}
.card-list__item--full {
  grid-column: 1/-1;
}
.card-list__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .card-list__content {
    gap: 24px;
  }
}
.card-list__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .card-list__row {
    grid-template-columns: minmax(0, 1fr);
  }
}
.card-item{
  display: block;
}
.card-item:hover .card-item__bg {
  transform: scale(1.06);
}

.card-item:hover .card-gallery__item.swiper-slide-next{
  transform: scale(1);
}

.card-item__bg, .card-gallery__item{
  transition: .3s transform;
}

.card-item:hover .card-item__wrapper::before {
  opacity: 0;
}
.card-item:hover .card-item__wrapper::after {
  opacity: 1;
}
.card-item__wrapper {
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  height: 310px;
  display: flex;
  flex-direction: column;

  transition: .3s transform;
}
.card-item__wrapper--big {
  height: 550px;
}
.card-item__wrapper--grey {
  background-color: #383838;
}
.card-item__wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(80, 80, 80, 0.7) 91.67%);
  z-index: 2;
  opacity: 0;
  transition: 0.3s opacity;
}
.card-item__wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 91.67%);
  z-index: 2;
  transition: 0.3s opacity;
}
.card-item__img {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  z-index: 3;
  padding: 20px 0;
}
.card-item__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom left;
  max-height: 50px;
}
.card-item__img--big img {
  max-height: 70px;
}
.card-item__img--right img {
  object-position: bottom right;
}
.card-item__bg {
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-item__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.card-item__content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 3;
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-end;
}
.card-item__content--small {
  height: auto;
  flex-grow: unset;
}
.card-item__header {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.card-item__title {
  max-width: 450px;
  width: 100%;

  color: #fff;
}

.documents-slider {
  max-width: 100%;
  width: 100%;
  overflow: visible;
}
.documents-slider__item {
  width: 210px;
  height: 300px;
}
.documents-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.documents-item:hover .documents-item__icon {
  opacity: 1;
}
.documents-item__icon {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: 0.3s opacity;
}
.documents-item__icon::before, .documents-item__icon::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 10px;
  background-color: #fff;
  left: calc(50% - 30px);
  top: calc(50% - 5px);
}
.documents-item__icon::before {
  transform: rotate(90deg);
}
.documents-item__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.documents-item__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.slider-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.slider-pagination__item {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--slider-nav-color);
  transition: 0.3s background-color;
}
.slider-pagination__item--active {
  background-color: var(--slider-nav-color);
}
.slider__controls {
  --slider-nav-color: #EBEBEB;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.slider__controls--documents {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .slider__controls--documents {
    margin-top: 24px;
  }
}
.slider__pagination {
  flex-grow: 1;
}
.slider__button {
  color: var(--slider-nav-color);
  display: flex;
  width: 120px;
  height: 36px;
  border-radius: 5px;
  border: 1px solid var(--slider-nav-color);
  padding: 5px 15px;
}
.slider__button.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .slider__button {
    display: none;
  }
}
.slider__button--next {
  justify-content: flex-end;
}
.slider__button--prev .icon {
  transform: rotate(180deg);
}
.slider__button .icon {
  width: 50px;
}

.clients-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.clients-list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  max-width: 160px;
}
@media screen and (max-width: 767px) {
  .clients-list__item {
    max-width: 140px;
  }
}
.clients-list__item img {
  height: 100%;
  object-fit: contain;
}

.form__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__file {
  padding: 10px 0;
}
.form__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .form__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.form__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.file-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
}
.file-input__item {
  position: absolute;
  opacity: 0;
  width: 0%;
  height: 0;
  left: 0;
  top: 0;
}
.file-input__label {
  min-width: unset;
  width: 100%;
  max-width: 110px;
}
.file-input__name {
  text-overflow: ellipsis;
}
.file-input__text {
  flex-grow: 1;
  width: 100%;
}

.input {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EBEBEB;
}
.input--mobile--small {
  max-width: 330px;
  width: 100%;
}
.input__item {
  width: 100%;
  height: 36px;
  border-radius: 5px;
  border: 1px solid #8F8F8F;
  padding: 10px;
  font-size: 16px;
  color: #EBEBEB;
  transition: 0.3s border-color;
}
.input__item::-webkit-contacts-auto-fill-button {
  background-color: #EBEBEB;
}
.input__item:hover, .input__item:focus {
  border-color: #EBEBEB;
}
.input__item::placeholder {
  color: #EBEBEB;
}
.input__item--textarea {
  height: 100%;
  min-height: 150px;
}

.checkbox {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.checkbox:hover {
  cursor: pointer;
}
.checkbox:hover .checkbox__checkmark {
  border-color: #EBEBEB;
}
.checkbox:has(:checked) .checkbox__checkmark {
  background-color: #EBEBEB;
  color: #2D2D2D;
}
.checkbox__input {
  opacity: 0;
  width: 2px;
  height: 2px;
  left: 0;
  top: 0;
  position: absolute;
}
.checkbox__checkmark {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid #8F8F8F;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: 0.3s border-color, 0.3s background-color, 0.3s color;
}
.checkbox__checkmark .icon {
  width: 12px;
  height: 12px;
}
.checkbox__text {
  font-size: 14px;
  color: #EBEBEB;
  align-self: center;
}
.checkbox__text a {
  text-decoration: underline;
  text-underline-position: under;
}

.map {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 310px;
}
.map__frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .file__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.file__text {
  color: #EBEBEB;
  font-size: 14px;
  max-width: 215px;
  width: 100%;
}

.tender-grid__wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .tender-grid__wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .tender-grid__item {
    min-height: 240px;
  }
}
.tender-grid__item--full {
  grid-column: 1/-1;
  min-height: auto;
}
.tender-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 20px;
}
.tender-list__item {
  list-style: disc;
}
.tender-item__wrapper {
  background-color: #3D3D3D;
  border-radius: 5px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}
.tender-item__wrapper--gap--big {
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .tender-item__wrapper {
    padding: 24px 16px;
    gap: 24px;
  }
}

.portfolio__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.portfolio-header__wrapper {
  padding: 30px;
  background-color: #E9E9E9;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.portfolio-header__row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.portfolio-radio {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #F5F5F5;
  height: 36px;
  background-color: #0D0D0D;
  border-radius: 5px;
  position: relative;
  padding: 0 19px;
  width: max-content;
  max-width: 100%;
  transition: 0.3s background-color;
}
.portfolio-radio:has(:checked) {
  background-color: rgba(13, 13, 13, 0.5);
}
.portfolio-radio:hover {
  cursor: pointer;
}
.portfolio-radio__input {
  opacity: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
}

.page__content {
  padding: 30px;
  background-color: #EBEBEB;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .page__content {
    padding: 30px 10px;
  }
}
.page-grid__wrapper {
  display: flex;
  flex-direction: column;
}
.page-grid__row {
  padding: 20px 0;
  border-bottom: 1px solid #8F8F8F;
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 380px);
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .page-grid__row {
    grid-template-columns: minmax(0, 380px);
    gap: 20px;
  }
}

.footer {
  padding-bottom: 40px;
  background-color: #3D3D3D;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1240px) {
  .footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 30px;
    width: 145px;
    height: 470px;
    background: url("../../images/footer/footer-decor-left.svg") left top/contain no-repeat;
    z-index: 1;
  }
}
.footer::after {
  content: "";
  position: absolute;
  right: 0;
  top: 30px;
  width: 730px;
  height: 485px;
  background: url("../../images/footer/footer-decor-right.svg") right top/contain no-repeat;
  z-index: 1;
}
@media screen and (max-width: 1240px) {
  .footer::after {
    background: url("../../images/footer/footer-decor-right-m.svg") right top/contain no-repeat;
    width: 200px;
    height: 200px;
    top: 10px;
  }
}
.footer__logo {
  max-width: 330px;
  width: 100%;
}
.footer__wrapper {
  padding: 60px 0 80px 0;
  background-color: #131313;
}
@media screen and (max-width: 767px) {
  .footer__wrapper {
    padding: 16px 0 40px 0;
  }
}
.footer__copyright {
  font-size: 14px;
  color: #5C6066;
}
.footer__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .footer__row {
    flex-direction: column;
  }
}
.footer__content {
  position: relative;
  z-index: 3;
}
.footer-decor {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer-decor {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1241px) {
  .footer-decor__copyright {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.footer-decor__first {
  width: 280px;
  height: 75px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .footer-decor__first {
    display: none;
  }
}
.footer-decor__second {
  margin-left: auto;
  max-width: 370px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer-decor__second {
    display: none;
  }
}
.footer-main__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .footer-main__wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.footer-main__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nav-list__link {
  font-size: 16px;
  color: #D2D2D2;
}
.nav-list__link--small {
  font-size: 14px;
}
.nav-list__link--grey {
  color: #8F8F8F;
}

.hero-logo {
  width: 100%;
  height: 100%;
  min-width: 700px;
}

.hero-logo__letter .hero-logo__item:nth-child(1) {
  animation-delay: 3.1s;
}
.hero-logo__letter .hero-logo__item:nth-child(2) {
  animation-delay: 3.2s;
}
.hero-logo__letter .hero-logo__item:nth-child(3) {
  animation-delay: 3.3s;
}
.hero-logo__letter .hero-logo__item:nth-child(4) {
  animation-delay: 3.4s;
}
.hero-logo__letter .hero-logo__item:nth-child(5) {
  animation-delay: 3.5s;
}
.hero-logo__letter .hero-logo__item:nth-child(6) {
  animation-delay: 3.6s;
}
.hero-logo__letter .hero-logo__item:nth-child(7) {
  animation-delay: 3.7s;
}
.hero-logo__letter .hero-logo__item:nth-child(8) {
  animation-delay: 3.8s;
}
.hero-logo__letter .hero-logo__item:nth-child(9) {
  animation-delay: 3.9s;
}
.hero-logo__letter .hero-logo__item:nth-child(10) {
  animation-delay: 4s;
}
.hero-logo__letter .hero-logo__item:nth-child(11) {
  animation-delay: 4.1s;
}
.hero-logo__letter .hero-logo__item:nth-child(12) {
  animation-delay: 4.2s;
}
.hero-logo__letter .hero-logo__item:nth-child(13) {
  animation-delay: 4.3s;
}
.hero-logo__letter .hero-logo__item:nth-child(14) {
  animation-delay: 4.4s;
}

.animated .hero-logo__arrows--right .hero-logo__arrow {
  animation: arrowAnimation 1s forwards;
  opacity: 0;
}
.animated .hero-logo__arrows--left .hero-logo__arrow {
  animation: arrowAnimationLeft 1s forwards;
  opacity: 0;
}
.animated .hero-logo__dot {
  opacity: 0;
  animation: rotateAnimation 1s forwards;
}
.animated .hero-logo__width {
  opacity: 0;
  animation: widthAnimation 1s forwards;
}
.animated .hero-logo__height {
  opacity: 0;
  animation: heightAnimation 1s forwards;
}
.animated .hero-logo__circle {
  opacity: 0;
  animation: circleAnimation 2s 3s forwards;
}
.animated .hero-logo__main {
  opacity: 0;
  animation: circleMainAnimation 2s 2s forwards;
}

@keyframes arrowAnimation {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes arrowAnimationLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rotateAnimation {
  0% {
    opacity: 0;
    transform: scale(0) rotate(180deg);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
@keyframes widthAnimation {
  0% {
    opacity: 0;
    transform: scale(0, 1);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes heightAnimation {
  0% {
    opacity: 0;
    transform: scale(1, 0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes circleAnimation {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: rotate(360deg);
  }
}
@keyframes circleMainAnimation {
  0% {
    opacity: 0;
    transform: rotate(360deg);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: rotate(0);
  }
}
.numbers__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 900px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .numbers-item {
    flex: calc(50% - 12px);
  }
}
.numbers-item__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.animated .map-svg__item {
  opacity: 0;
  animation: mapOpacityAnimation 0.5s linear forwards;
}

@keyframes mapOpacityAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: #222121;
  transition: 0.3s visibility, 0.5s opacity;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-decor {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.preloader-decor__item {
  position: absolute;
  animation: preloaderLogoAnimation 2s linear infinite;
  opacity: 0;
  max-width: 40%;
}
.preloader-decor__item:nth-child(1) {
  left: 0;
  top: 0;
}
.preloader-decor__item:nth-child(2) {
  bottom: 0;
  right: 0;
}
.preloader-decor__item:nth-child(3) {
  right: 0;
  top: 0;
}
.preloader-logo {
  width: 220px;
  position: relative;
  opacity: 0;
  animation: preloaderLogoAnimation 2s linear infinite;
}
.preloader-logo::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #222121;
  animation: preloaderLogoImgAnimation 2s linear infinite;
}

@keyframes preloaderLogoImgAnimation {
  0% {
    width: 100%;
  }
  75% {
    width: 0;
  }
  100% {
    width: 0%;
  }
}
@keyframes preloaderLogoAnimation {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.parallax-wrapper-element{
  position: relative;
}

.parallax-wrapper {
  position: relative;
  overflow: hidden;
}
.parallax-wrapper--absolute{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.parallax-wrapper__content {
  position: relative;
  z-index: 2;
}
.parallax-wrapper__item {
  position: absolute;
  left: calc((100vw - 1060px) / 2 - 60px);
  bottom: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media screen and (max-width: 1240px) {
  .parallax-wrapper__item {
    display: none;
  }
}
.parallax-wrapper__item--offset--left {
  left: calc((100vw - 1060px) / 2 - 20px);
}
.parallax-wrapper__item--offset--left--big {
  left: calc((100vw - 1060px) / 2 - 120px);
}
.parallax-wrapper__item--offset--left--biggest {
  left: calc((100vw - 1060px) / 2 - 200px);
}
.parallax-wrapper__item--offset--top {
  bottom: 40%;
}
.parallax-wrapper__item--offset--bottom {
  bottom: -50%;
}
.parallax-wrapper__item--offset--bottom--positive {
  bottom: 25%;
}
.parallax-wrapper__item--top {
  bottom: unset;
  top: 10%;
}
.parallax-wrapper__item img {
  width: 100%;
  height: 100%;
  display: block;
  transform: translateX(-100%);
}
.parallax-wrapper__item--right {
  left: unset;
  right: calc((100vw - 1060px) / 2 - 60px);
}
.parallax-wrapper__item--right img {
  transform: translateX(100%);
}
.parallax-wrapper__item--big {
  max-width: unset;
}
.parallax-wrapper__item--big img {
  transform: translateX(0);
}

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