@import url("https://fonts.googleapis.com/css2?family=Anonymous+Pro:wght@400;700&display=swap");
@font-face {
  font-family: 'CoFoPeshkaBold';
  src: url("fonts/CoFoPeshka1000-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'CoFoPeshkaBlack';
  src: url("fonts/CoFoPeshka1000-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'CoFoPeshka75Bold';
  src: url("fonts/CoFoPeshka75-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --fonts-maim-black: 'CoFoPeshkaBlack', sans-serif;
  --font-main-bold: 'CoFoPeshkaBold', sans-serif;
  --font-peshka75-bold: 'CoFoPeshka75Bold', sans-serif;
  --font-anonymous-regular: 'Anonymous Pro', monospace;
  --font-anonymous-bold: 'Anonymous Pro', monospace;
  --BG: #120F0F;
  --color-fonts: #F1F1F1;
  --add-color: #DA3C3F;
}

body {
  margin: 0 auto;
  padding: 0;
  background: var(--BG);
}

.header {
  position: fixed;
  max-width: 1320px;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  z-index: 1000;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 96px;
}

.header .menu a {
  color: var(--color-fonts);
  text-decoration: none;
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  -webkit-transition: color 0.3s, -webkit-text-decoration 0.3s;
  transition: color 0.3s, -webkit-text-decoration 0.3s;
  transition: color 0.3s, text-decoration 0.3s;
  transition: color 0.3s, text-decoration 0.3s, -webkit-text-decoration 0.3s;
  position: relative;
}

.header .menu a:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--color-fonts);
          text-decoration-color: var(--color-fonts);
  text-underline-offset: 4px;
}

.header .menu a.menu__format-link {
  position: relative;
}

.header .logo img {
  height: 40px;
  width: auto;
  display: block;
}

.header__burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.header__burger-line {
  width: 25px;
  height: 2px;
  background-color: var(--color-fonts);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.format-modal {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-280%);
          transform: translateX(-280%);
  margin-top: 5px;
  z-index: 2000;
  pointer-events: auto;
}

.format-modal__content {
  background-color: var(--BG);
  border: 1px solid var(--color-fonts);
  padding: 15px;
  min-width: 180px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.format-modal__close {
  display: none;
}

.format-modal__title {
  display: none;
}

.format-modal__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.format-modal__category {
  font-family: var(--font-anonymous-regular);
  font-size: 14px;
  color: var(--color-fonts);
  text-decoration: none;
  padding: 8px 0;
  text-align: left;
  -webkit-transition: -webkit-text-decoration 0.3s ease;
  transition: -webkit-text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
  white-space: nowrap;
  display: block;
}

.format-modal__category:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: #FFFFFF;
          text-decoration-color: #FFFFFF;
  text-underline-offset: 4px;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("photo/BG_1.svg");
  background-size: 73%;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0 20px 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.hero__content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.hero__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.hero__title {
  font-family: var(--font-main-bold);
  font-size: 64px;
  color: var(--color-fonts);
  margin: 0;
  line-height: 1.1;
}

.hero__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 400px;
}

.hero__text-top {
  font-family: var(--font-anonymous-regular);
  font-size: 32px;
  color: var(--color-fonts);
  margin: 0;
  line-height: 1.6;
}

.hero__text-bottom {
  font-family: var(--font-anonymous-regular);
  font-size: 24px;
  color: #494949;
  margin: 0;
  line-height: 1.6;
  text-align: right;
}

.about {
  padding: 100px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.about__content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 93px;
}

.about__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.about__title {
  font-family: var(--font-main-bold);
  font-size: 128px;
  color: var(--color-fonts);
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.about__text {
  font-family: var(--font-anonymous-regular);
  font-size: 32px;
  color: var(--color-fonts);
  margin: 0 0 0 232px;
  max-width: 670px;
  line-height: 1.1;
}

.about__text-secondary {
  font-family: var(--font-anonymous-regular);
  font-size: 18px;
  color: var(--color-fonts);
  margin: 0 0 0 400px;
  line-height: 1.6;
}

.about__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 400px;
  width: 303px;
  height: 303px;
  background-color: var(--color-fonts);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about__image {
  width: 70%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.features {
  padding: 100px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.features__content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

.features__title {
  font-family: var(--font-main-bold);
  font-size: 64px;
  color: var(--color-fonts);
  margin: 0 0 60px;
  line-height: 1.2;
}

.features__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.features__item-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.features__number {
  font-family: var(--font-peshka75-bold);
  font-size: 290px;
  color: var(--add-color);
  line-height: 1;
  text-align: center;
}

.features__item {
  width: 300px;
  height: 210px;
  border: 1px solid var(--color-fonts);
  padding: 20px 0 20px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.features__item-title {
  font-family: var(--font-anonymous-bold);
  font-size: 16px;
  color: var(--color-fonts);
  margin: 0;
  line-height: 1.3;
  max-width: 280px;
}

.features__item-text {
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  color: var(--color-fonts);
  margin: 0;
  line-height: 1.6;
  max-width: 280px;
}

.images {
  padding: 100px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.images__content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

.images__title {
  font-family: var(--font-main-bold);
  font-size: 128px;
  color: var(--color-fonts);
  margin: 0 0 60px;
  line-height: 1.2;
}

.images__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.images__item-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  position: relative;
}

.images__text {
  position: absolute;
  top: 0;
  left: 0;
  width: 313px;
  height: 330px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  color: var(--color-fonts);
  z-index: 1;
  pointer-events: none;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.images__item {
  width: 313px;
  height: 330px;
  background-color: #FFFFFF;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.images__image-1 {
  width: 75%;
  height: auto;
  display: block;
  margin: 0 auto;
  -webkit-filter: brightness(0.2);
          filter: brightness(0.2);
  -webkit-transition: -webkit-filter 0.6s ease;
  transition: -webkit-filter 0.6s ease;
  transition: filter 0.6s ease;
  transition: filter 0.6s ease, -webkit-filter 0.6s ease;
}

.images__image-4 {
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
  -webkit-filter: brightness(0.2);
          filter: brightness(0.2);
  -webkit-transition: -webkit-filter 0.6s ease;
  transition: -webkit-filter 0.6s ease;
  transition: filter 0.6s ease;
  transition: filter 0.6s ease, -webkit-filter 0.6s ease;
}

.images__image-3 {
  width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
  -webkit-filter: brightness(0.2);
          filter: brightness(0.2);
  -webkit-transition: -webkit-filter 0.6s ease;
  transition: -webkit-filter 0.6s ease;
  transition: filter 0.6s ease;
  transition: filter 0.6s ease, -webkit-filter 0.6s ease;
}

.images__image-2 {
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
  -webkit-filter: brightness(0.2);
          filter: brightness(0.2);
  -webkit-transition: -webkit-filter 0.6s ease;
  transition: -webkit-filter 0.6s ease;
  transition: filter 0.6s ease;
  transition: filter 0.6s ease, -webkit-filter 0.6s ease;
}

.images__caption {
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  color: var(--color-fonts);
  margin: 0;
  text-align: left;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.images__item-wrapper:hover .images__item {
  -webkit-transform: translateY(400px);
          transform: translateY(400px);
}

.images__item-wrapper:hover .images__caption {
  -webkit-transform: translateY(400px);
          transform: translateY(400px);
}

.images__item-wrapper:hover .images__image-1,
.images__item-wrapper:hover .images__image-2,
.images__item-wrapper:hover .images__image-3,
.images__item-wrapper:hover .images__image-4 {
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.new-section {
  padding: 400px 20px 0px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.new-section__content {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}

.new-section__title {
  font-family: var(--font-main-bold);
  font-size: 128px;
  color: var(--color-fonts);
  margin: 0 0 60px;
  line-height: 1.2;
}

.new-section__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
}

.new-section__block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px solid var(--add-color);
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.new-section__block--left {
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.new-section__block--right {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.new-section__left-top {
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  color: var(--color-fonts);
  margin: 0;
  text-align: center;
}

.new-section__left-title {
  font-family: var(--font-main-bold);
  font-size: 32px;
  color: var(--color-fonts);
  margin: 0;
  text-align: center;
}

.new-section__left-subtitle {
  font-family: var(--font-anonymous-regular);
  font-size: 14px;
  color: var(--color-fonts);
  margin: 0;
  text-align: center;
}

.new-section__left-image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 300px;
  height: 400px;
  background-color: var(--color-fonts);
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.new-section__left-image {
  width: 300px;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}

.new-section__left-description {
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  color: var(--color-fonts);
  margin: 0;
  text-align: center;
  max-width: 300px;
  line-height: 1.6;
}

.new-section__item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.new-section__item-wrapper--transparent {
  opacity: 0;
}

.new-section__item {
  width: 135px;
  height: 135px;
  background-color: var(--color-fonts);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.new-section__image {
  width: auto;
  max-width: 120%;
  max-height: 120%;
  height: auto;
  display: block;
}

.new-section__button {
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  color: var(--color-fonts);
  text-decoration: none;
  -webkit-transition: -webkit-text-decoration 0.3s;
  transition: -webkit-text-decoration 0.3s;
  transition: text-decoration 0.3s;
  transition: text-decoration 0.3s, -webkit-text-decoration 0.3s;
  text-align: left;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.new-section__button:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--color-fonts);
          text-decoration-color: var(--color-fonts);
  text-underline-offset: 4px;
}

.circle-section {
  padding: 200px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.circle-section__content {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr 1fr;
      grid-template-columns: 1fr 2fr 1fr;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  min-height: 600px;
}

.circle-section__left {
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
  padding-top: 60px;
}

.circle-section__title {
  font-family: var(--font-main-bold);
  font-size: 128px;
  color: var(--color-fonts);
  margin: 0;
  line-height: 1.2;
}

.circle-section__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-55%, 0%);
          transform: translate(-55%, 0%);
  width: 100%;
  max-width: calc(100% - 120px);
}

.circle-section__circle {
  position: relative;
  width: 700px;
  height: 700px;
  -webkit-animation: rotate 20s linear infinite;
          animation: rotate 20s linear infinite;
}

.circle-section__circle:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.circle-section__image-wrapper {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: #FFFFFF;
  border: 1px solid #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 50%;
  left: 50%;
  margin-left: -100px;
  margin-top: -100px;
  -webkit-animation: rotate-reverse 20s linear infinite;
          animation: rotate-reverse 20s linear infinite;
}

.circle-section__circle:hover .circle-section__image-wrapper {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.circle-section__image-wrapper--1 {
  -webkit-animation-name: rotate-reverse-1;
          animation-name: rotate-reverse-1;
}

.circle-section__image-wrapper--2 {
  -webkit-animation-name: rotate-reverse-2;
          animation-name: rotate-reverse-2;
}

.circle-section__image-wrapper--3 {
  -webkit-animation-name: rotate-reverse-3;
          animation-name: rotate-reverse-3;
}

.circle-section__image-wrapper--4 {
  -webkit-animation-name: rotate-reverse-4;
          animation-name: rotate-reverse-4;
}

.circle-section__image-wrapper--5 {
  -webkit-animation-name: rotate-reverse-5;
          animation-name: rotate-reverse-5;
}

.circle-section__image-wrapper--6 {
  -webkit-animation-name: rotate-reverse-6;
          animation-name: rotate-reverse-6;
}

.circle-section__image-wrapper--7 {
  -webkit-animation-name: rotate-reverse-7;
          animation-name: rotate-reverse-7;
}

.circle-section__image-wrapper--8 {
  -webkit-animation-name: rotate-reverse-8;
          animation-name: rotate-reverse-8;
}

@-webkit-keyframes rotate-reverse {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotate-reverse {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@-webkit-keyframes rotate-reverse-1 {
  from {
    -webkit-transform: translate(0, -250px) rotate(0deg);
            transform: translate(0, -250px) rotate(0deg);
  }
  to {
    -webkit-transform: translate(0, -250px) rotate(-360deg);
            transform: translate(0, -250px) rotate(-360deg);
  }
}

@keyframes rotate-reverse-1 {
  from {
    -webkit-transform: translate(0, -250px) rotate(0deg);
            transform: translate(0, -250px) rotate(0deg);
  }
  to {
    -webkit-transform: translate(0, -250px) rotate(-360deg);
            transform: translate(0, -250px) rotate(-360deg);
  }
}

@-webkit-keyframes rotate-reverse-2 {
  from {
    -webkit-transform: translate(177px, -177px) rotate(0deg);
            transform: translate(177px, -177px) rotate(0deg);
  }
  to {
    -webkit-transform: translate(177px, -177px) rotate(-360deg);
            transform: translate(177px, -177px) rotate(-360deg);
  }
}

@keyframes rotate-reverse-2 {
  from {
    -webkit-transform: translate(177px, -177px) rotate(0deg);
            transform: translate(177px, -177px) rotate(0deg);
  }
  to {
    -webkit-transform: translate(177px, -177px) rotate(-360deg);
            transform: translate(177px, -177px) rotate(-360deg);
  }
}

@-webkit-keyframes rotate-reverse-3 {
  from {
    -webkit-transform: translate(250px, 0) rotate(0deg);
            transform: translate(250px, 0) rotate(0deg);
  }
  to {
    -webkit-transform: translate(250px, 0) rotate(-360deg);
            transform: translate(250px, 0) rotate(-360deg);
  }
}

@keyframes rotate-reverse-3 {
  from {
    -webkit-transform: translate(250px, 0) rotate(0deg);
            transform: translate(250px, 0) rotate(0deg);
  }
  to {
    -webkit-transform: translate(250px, 0) rotate(-360deg);
            transform: translate(250px, 0) rotate(-360deg);
  }
}

@-webkit-keyframes rotate-reverse-4 {
  from {
    -webkit-transform: translate(177px, 177px) rotate(0deg);
            transform: translate(177px, 177px) rotate(0deg);
  }
  to {
    -webkit-transform: translate(177px, 177px) rotate(-360deg);
            transform: translate(177px, 177px) rotate(-360deg);
  }
}

@keyframes rotate-reverse-4 {
  from {
    -webkit-transform: translate(177px, 177px) rotate(0deg);
            transform: translate(177px, 177px) rotate(0deg);
  }
  to {
    -webkit-transform: translate(177px, 177px) rotate(-360deg);
            transform: translate(177px, 177px) rotate(-360deg);
  }
}

@-webkit-keyframes rotate-reverse-5 {
  from {
    -webkit-transform: translate(0, 250px) rotate(0deg);
            transform: translate(0, 250px) rotate(0deg);
  }
  to {
    -webkit-transform: translate(0, 250px) rotate(-360deg);
            transform: translate(0, 250px) rotate(-360deg);
  }
}

@keyframes rotate-reverse-5 {
  from {
    -webkit-transform: translate(0, 250px) rotate(0deg);
            transform: translate(0, 250px) rotate(0deg);
  }
  to {
    -webkit-transform: translate(0, 250px) rotate(-360deg);
            transform: translate(0, 250px) rotate(-360deg);
  }
}

@-webkit-keyframes rotate-reverse-6 {
  from {
    -webkit-transform: translate(-177px, 177px) rotate(0deg);
            transform: translate(-177px, 177px) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-177px, 177px) rotate(-360deg);
            transform: translate(-177px, 177px) rotate(-360deg);
  }
}

@keyframes rotate-reverse-6 {
  from {
    -webkit-transform: translate(-177px, 177px) rotate(0deg);
            transform: translate(-177px, 177px) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-177px, 177px) rotate(-360deg);
            transform: translate(-177px, 177px) rotate(-360deg);
  }
}

@-webkit-keyframes rotate-reverse-7 {
  from {
    -webkit-transform: translate(-250px, 0) rotate(0deg);
            transform: translate(-250px, 0) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-250px, 0) rotate(-360deg);
            transform: translate(-250px, 0) rotate(-360deg);
  }
}

@keyframes rotate-reverse-7 {
  from {
    -webkit-transform: translate(-250px, 0) rotate(0deg);
            transform: translate(-250px, 0) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-250px, 0) rotate(-360deg);
            transform: translate(-250px, 0) rotate(-360deg);
  }
}

@-webkit-keyframes rotate-reverse-8 {
  from {
    -webkit-transform: translate(-177px, -177px) rotate(0deg);
            transform: translate(-177px, -177px) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-177px, -177px) rotate(-360deg);
            transform: translate(-177px, -177px) rotate(-360deg);
  }
}

@keyframes rotate-reverse-8 {
  from {
    -webkit-transform: translate(-177px, -177px) rotate(0deg);
            transform: translate(-177px, -177px) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-177px, -177px) rotate(-360deg);
            transform: translate(-177px, -177px) rotate(-360deg);
  }
}

.circle-section__image {
  width: 70%;
  height: auto;
  display: block;
}

.circle-section__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -ms-flex-item-align: start;
      align-self: start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-top: 250px;
  position: relative;
  z-index: 10;
}

.circle-section__button {
  font-family: var(--font-anonymous-bold);
  font-size: 32px;
  color: var(--color-fonts);
  text-decoration: none;
  -webkit-transition: -webkit-text-decoration 0.3s ease, -webkit-text-decoration-color 0.3s ease;
  transition: -webkit-text-decoration 0.3s ease, -webkit-text-decoration-color 0.3s ease;
  transition: text-decoration 0.3s ease, text-decoration-color 0.3s ease;
  transition: text-decoration 0.3s ease, text-decoration-color 0.3s ease, -webkit-text-decoration 0.3s ease, -webkit-text-decoration-color 0.3s ease;
  position: relative;
  z-index: 11;
  white-space: nowrap;
  text-align: right;
}

.circle-section__button:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--color-fonts);
          text-decoration-color: var(--color-fonts);
  text-underline-offset: 4px;
}

.form-section {
  padding: 200px 20px 200px 20px;
  margin-top: 200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form-section__content {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}

.form-section__title {
  font-family: var(--font-anonymous-regular);
  font-size: 32px;
  color: var(--color-fonts);
  text-align: center;
  margin: 0 0 64px;
  line-height: 1.2;
}

.form-section__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-left: 735px;
}

.form-section__block {
  width: 473px;
  height: 173px;
  border: 1px solid var(--color-fonts);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--color-fonts);
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  line-height: 1.6;
  padding: 20px 25px 25px 20px;
  box-sizing: border-box;
}

.form-section__input {
  width: 473px;
  padding: 16px 0 16px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--color-fonts);
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  color: var(--color-fonts);
  outline: none;
}

.form-section__input::-webkit-input-placeholder {
  color: var(--color-fonts);
  opacity: 0.7;
}

.form-section__input:-ms-input-placeholder {
  color: var(--color-fonts);
  opacity: 0.7;
}

.form-section__input::-ms-input-placeholder {
  color: var(--color-fonts);
  opacity: 0.7;
}

.form-section__input::placeholder {
  color: var(--color-fonts);
  opacity: 0.7;
}

.form-section__button {
  width: 299px;
  padding: 16px;
  background-color: var(--color-fonts);
  border: none;
  font-family: var(--font-anonymous-bold);
  font-size: 16px;
  color: var(--BG);
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 0.3s, border 0.3s;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
}

.form-section__button:hover {
  background-color: var(--BG);
  color: var(--color-fonts);
  border: 1px solid var(--color-fonts);
}

.legend-images + .footer {
  margin-top: 50px;
}

.footer {
  max-width: 1310px;
  margin: 0 auto;
  padding: 30px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid var(--color-fonts);
}

.footer__content {
  max-width: 1310px;
  width: 100%;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.footer__address {
  font-family: var(--font-anonymous-bold);
  width: 425px;
  font-size: 16px;
  color: var(--color-fonts);
  margin: 0;
  line-height: 1.6;
}

.footer__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.footer__title {
  text-transform: uppercase;
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  color: var(--color-fonts);
  margin: 0;
  line-height: 1.2;
}

.footer__developers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0px;
}

.footer__developer {
  text-transform: uppercase;
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  color: var(--color-fonts);
  margin: 0;
  line-height: 1.6;
}

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 15%;
}

.footer__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.footer__social-link {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.footer__social-link:hover {
  opacity: 0.7;
}

.footer__social-icon {
  height: 32px;
  width: auto;
  display: block;
}

.footer__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.footer__logo {
  height: 40px !important;
  max-height: 25px;
  width: auto;
  max-width: 150px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__logo--large {
  height: 60px !important;
  max-height: 60px;
  max-width: 200px;
}

.legend-block {
  position: relative;
  padding: 100px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.legend-block__background {
  position: absolute;
  top: 0;
  right: 0;
  width: 1000px;
  height: 1000px;
  z-index: 0;
  overflow: visible;
}

.legend-block__bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right top;
     object-position: right top;
}

.legend-block__content {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 93px;
}

.legend-block__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 500px;
}

.legend-block__text {
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  color: var(--color-fonts);
  margin: 0;
  padding-left: 232px;
  line-height: 1.4;
  max-width: 300px;
}

.legend-block__title {
  font-family: var(--font-main-bold);
  font-size: 128px;
  color: var(--color-fonts);
  margin: 0;
  line-height: 1.2;
}

.legend-block__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 400px;
  width: 303px;
  height: 303px;
  background-color: var(--color-fonts);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.legend-block__image {
  width: 70%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.legend-images {
  padding: 0 20px 30px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.legend-images + .legend-images {
  margin-top: 30px;
}

.legend-images:last-of-type {
  margin-bottom: 50px;
}

.legend-images__content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

.legend-images__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.legend-images__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.legend-images__image {
  width: 645px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.legend-images__button {
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  color: var(--color-fonts);
  text-decoration: none;
  display: inline-block;
}

.legend-images__button:hover {
  text-decoration: underline;
}

.legend-images__load-more {
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  color: var(--color-fonts);
  background: transparent;
  border: none;
  cursor: pointer;
  display: block;
  margin: 30px auto 0;
  padding: 10px 20px;
  text-decoration: underline;
  -webkit-text-decoration-color: var(--color-fonts);
          text-decoration-color: var(--color-fonts);
  text-underline-offset: 4px;
}

.legend-images__load-more:hover {
  opacity: 0.8;
}

.legend-images--hidden {
  display: none;
}

.legend-images--hidden + .legend-images--hidden {
  margin-top: 100px;
}

.tengu-hero {
  position: relative;
  padding: 100px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 400px;
}

.tengu-hero__background {
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 800px;
  z-index: 0;
  overflow: visible;
}

.tengu-hero__bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right top;
     object-position: right top;
}

.tengu-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.tengu-hero__breadcrumbs {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: var(--font-anonymous-regular);
  font-size: 14px;
}

.tengu-hero__breadcrumb {
  color: var(--color-fonts);
  text-decoration: none;
}

.tengu-hero__breadcrumb:hover {
  text-decoration: underline;
}

.tengu-hero__breadcrumb--current {
  color: var(--color-fonts);
  opacity: 0.7;
  pointer-events: none;
}

.tengu-hero__separator {
  color: var(--color-fonts);
  opacity: 0.5;
}

.tengu-hero__title {
  padding-top: 400px;
  font-family: var(--font-main-bold);
  font-size: 64px;
  color: var(--color-fonts);
  margin: 0;
  line-height: 1.2;
  max-width: 1000px;
}

.tengu-content {
  padding: 0 20px 0px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.tengu-content__content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

.tengu-content__title {
  font-family: var(--font-anonymous-bold);
  font-size: 16px;
  text-transform: uppercase;
  color: var(--color-fonts);
  text-align: center;
  margin: 0 0 40px 0;
  line-height: 1.2;
}

.tengu-content__text {
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  color: var(--color-fonts);
  line-height: 1.2;
  margin: 0;
  padding-left: 272px;
  max-width: 809px;
}

.tengu-content__text p {
  gap: 14px;
}

.tengu-content__outlined-box {
  position: relative;
  width: 600px;
  height: 350px;
  margin-left: 733px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("photo/text.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: -50px center;
  overflow: visible;
}

.tengu-content__text--outlined {
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  color: var(--color-fonts);
  line-height: 1.2;
  margin: 0;
  max-width: 390px;
  -webkit-text-stroke: none;
  -webkit-text-fill-color: var(--color-fonts);
}

.tengu-image-text {
  padding: 0px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.tengu-image-text__content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.tengu-image-text__image-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.tengu-image-text__image {
  width: 217px;
  margin-left: 232px;
  margin-top: 220px;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.tengu-image-text__text-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.tengu-image-text__text {
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  color: var(--color-fonts);
  line-height: 1.6;
  margin: 0;
}

.tengu-image-text__text--1 {
  padding-left: 50px;
  width: 470px;
}

.tengu-image-text__text--2 {
  padding-left: 0px;
  color: #000000;
  max-width: 390px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: 1,2;
}

.tengu-image-text__text--3 {
  padding-left: 50px;
  width: 400px;
  margin-top: -100px;
}

.tengu-image-text__outlined-box {
  position: relative;
  width: 600px;
  height: 350px;
  margin-left: 220px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("photo/Group33896.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: -50px center;
  overflow: visible;
  margin-top: -120px;
}

.tengu-content-new {
  padding: 0 20px 64px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.tengu-content-new__content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.tengu-content-new__outlined-box {
  position: relative;
  width: 600px;
  height: 350px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-image: url("photo/Group23898.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: -30px center;
  overflow: visible;
  margin-left: 20px;
  margin-top: -50px;
}

.tengu-content-new__text--outlined {
  padding-left: 20px;
  position: relative;
  z-index: 1;
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  color: var(--color-fonts);
  line-height: 1.2;
  margin: 0;
  max-width: 390px;
  text-align: left;
  -webkit-text-stroke: none;
  -webkit-text-fill-color: var(--color-fonts);
}

.tengu-final {
  padding: 0px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: -100px;
}

.tengu-final__content {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.tengu-final__text {
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  color: var(--color-fonts);
  line-height: 1.6;
  margin: 0;
  padding-left: 232px;
  text-align: left;
  max-width: 800px;
}

.tengu-final__text-center {
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  color: var(--color-fonts);
  line-height: 1.6;
  margin: 0 auto;
  padding-top: 50px;
  max-width: 810px;
  text-align: center;
}

.tengu-final__image {
  width: 1311px;
  height: 319px;
  display: block;
  margin: 0 auto;
  padding-top: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.tengu-form-section {
  padding: 0px 20px 150px 20px;
  margin-top: 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.tengu-form-section__content {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}

.tengu-form-section__title {
  font-family: var(--font-anonymous-regular);
  font-size: 32px;
  color: var(--color-fonts);
  text-align: center;
  margin: 0 0 64px;
  line-height: 1.2;
}

.tengu-form-section__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-left: 735px;
}

.tengu-form-section__block {
  width: 473px;
  height: 173px;
  border: 1px solid var(--color-fonts);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--color-fonts);
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  line-height: 1.6;
  padding: 20px 25px 25px 20px;
  box-sizing: border-box;
}

.tengu-form-section__input {
  width: 473px;
  padding: 16px 0 16px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--color-fonts);
  font-family: var(--font-anonymous-regular);
  font-size: 16px;
  color: var(--color-fonts);
  outline: none;
}

.tengu-form-section__input::-webkit-input-placeholder {
  color: var(--color-fonts);
  opacity: 0.7;
}

.tengu-form-section__input:-ms-input-placeholder {
  color: var(--color-fonts);
  opacity: 0.7;
}

.tengu-form-section__input::-ms-input-placeholder {
  color: var(--color-fonts);
  opacity: 0.7;
}

.tengu-form-section__input::placeholder {
  color: var(--color-fonts);
  opacity: 0.7;
}

.tengu-form-section__button {
  width: 299px;
  padding: 16px;
  background-color: var(--color-fonts);
  border: none;
  font-family: var(--font-anonymous-bold);
  font-size: 16px;
  color: var(--BG);
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 0.3s, border 0.3s;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
}

.tengu-form-section__button:hover {
  background-color: var(--BG);
  color: var(--color-fonts);
  border: 1px solid var(--color-fonts);
}
/*# sourceMappingURL=style.css.map */