*,
*::before,
*::after {
  box-sizing: border-box;
}

:where(ul, ol):where([class]) {
  padding-left: 0;
}

body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl):where([class]) {
  margin-block: 0;
}

h1,
h2,
h3,
h4 {
  padding: 0;
  margin: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

p {
  margin-block: 0;
}

a {
  text-decoration: none;
}

img {
  display: block;
  object-fit: cover;
}

input,
textarea,
select,
button {
  font: inherit;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:target {
  padding-top: 170px;
  margin-top: -170px;
}

svg * {
  transition-property: fill, stroke;
}

ol[class]:not(.ol),
ul[class]:not(.ul) {
  list-style: none;
}

body {
  font-family: "SF Pro Display", "Arial", sans-serif;
  font-size: 16px;
  padding-top: 166px;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--color-black);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  -webkit-clip-path: inset(100%) !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

.hidden {
  display: none !important;
}

:root {
  --color-bacground: #192d2e;
  --color-bacground-dark: #1a282b;
  --color-bacground-light: #223b3c;
  --color-accent: #bca076;
  --color-accent-dark: #d9b57f;
  --color-btn: #d9b57f;
  --color-black: #1a282b;
  --color-white: #ffffff;

  --font-logo: "Bebas Neue Cyrillic";

  --transition: 0.3s ease-in;
}

@font-face {
  font-family: "SF Pro Display";
  src: url("../fonts/SF-Pro-Display-Regular.eot");
  src: url("../fonts/SF-Pro-Display-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/SF-Pro-Display-Regular.woff") format("woff"),
    url("../fonts/SF-Pro-Display-Regular.woff2") format("woff2"),
    url("../fonts/SF-Pro-Display-Regular.ttf") format("truetype"),
    url("../fonts/SF-Pro-Display-Regular.svg#SF Pro Display Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bebas Neue Cyrillic";
  src: url("../fonts/Bebas-Neue-Cyrillic.eot");
  src: url("../fonts/Bebas-Neue-Cyrillic.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Bebas-Neue-Cyrillic.woff") format("woff"),
    url("../fonts/Bebas-Neue-Cyrillic.woff2") format("woff2"),
    url("../fonts/Bebas-Neue-Cyrillic.ttf") format("truetype"),
    url("../fonts/Bebas-Neue-Cyrillic.svg#Bebas Neue Cyrillic") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeue.eot");
  src: url("../fonts/BebasNeue.eot?#iefix") format("embedded-opentype"),
    url("../fonts/BebasNeue.woff") format("woff"),
    url("../fonts/BebasNeue.woff2") format("woff2"),
    url("../fonts/BebasNeue.ttf") format("truetype"),
    url("../fonts/BebasNeue.svg#BebasNeue") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.btn {
  border-radius: 8px;
  background-color: var(--color-accent-dark);
  color: var(--color-white);
  font-size: 18px;
  padding: 28px 32px;
  font-weight: 500;
  transition: color var(--transition), background-color var(--transition);
  cursor: pointer;
  line-height: 0.8;

  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  /* white-space: nowrap; */
  border: transparent;
}

.btn:hover {
  background-color: var(--color-accent);
}

.btn--white {
  background-color: transparent;
  color: var(--color-accent);
  padding: 20px 24px;
  border: 1px solid var(--color-accent);
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.btn--white:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.marker-border {
  height: 1px;
  width: 100%;
  border-bottom: 1px solid #4073e0;
  opacity: 0.1;
}

.tittle-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.title {
  font-weight: 400;
  font-family: var(--font-logo);
  font-size: 60px;
  color: var(--color-black);
  text-transform: uppercase;
}

.title span {
  color: var(--color-accent);
}

.title--min {
  font-size: 32px;
  padding-left: 17px;
  position: relative;
  color: var(--color-white);
}

.title--no-border {
  padding-left: 0;
  color: var(--color-black);
}

.title--min::after {
  content: "";
  position: absolute;
  height: 70%;
  width: 5px;
  background-color: var(--color-accent);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.title--no-border::after {
  display: none;
}

.tittle-block p {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
}

.form {
  border-radius: 8px;
  padding: 24px;
  background-color: var(--color-white);
}

.consultation__form {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.consultation__form__h2 {
  color: var(--color-white);
  font-family: "Bebas Neue Cyrillic";
  font-size: 60px;
  font-weight: 400;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 0 0;
  background-color: var(--color-bacground);
  z-index: 10;
}

.header__wrapper {
  display: flex;
  flex-direction: column;
  padding: 24px 10px;
}

.header__content {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  font-size: 24px;
}

.logo {
  font-weight: 400;
  font-size: 36px;
  text-transform: uppercase;
  color: var(--color-white);
  font-family: var(--font-logo);
  letter-spacing: 0.02em;
}

.header__logo span {
  color: var(--color-accent);
}

.header__inner-wrapper {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
}

.header__inner {
  display: flex;
  flex-direction: row;
  gap: 43px;
}

.header__inner-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.header__inner-block span {
  opacity: 0.5;
  font-size: 14px;
  color: var(--color-white);
}

.header__nav-wrapper {
  background-color: var(--color-bacground-dark);
}

.header__nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 43px;
  padding: 12px 0;
}

.header__link {
  color: var(--color-white);
  padding: 8px;
  transition: color var(--transition), background-color var(--transition),
    border-top var(--transition);
  border-top: 2px solid transparent;
}

.header__link:hover {
  color: var(--color-accent);
  border-top: 2px solid #e5c698;
}

.form__text {
  opacity: 0.5;
  font-size: 12px;
  color: var(--color-white);
}

.error {
  color: #e9080c;
  font-size: 12px;
}

.hero {
  width: 100%;
  background-image: url(../img/index/photo.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 194px 0 40px;
}

.hero__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}

.hero__top-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 45%;
}

.hero__top-text .title {
  line-height: 1;
}

.hero__top-text p {
  font-size: 20px;
}

.customers {
  padding: 80px 0 60px;
  background-color: var(--color-bacground);
  border-top: 5px solid var(--color-accent);
}

.customers__wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.customers__list {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.customers__item {
  display: flex;
  flex-direction: row;
  min-height: 209px;
  width: 100%;
  justify-content: space-between;
}

.customers__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--color-bacground-light);
  padding: 20px 0 20px 20px;
  width: 55%;
}

.customers__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bacground);
}

.customers__text-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--color-white);
}

.customers__text-block h3 {
  color: var(--color-accent);
  line-height: 1.3;
  font-weight: 600;
  font-size: 24px;
}

.customers__img-block {
  position: relative;
  overflow: hidden;
  width: 45%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.customers__img-block--1 {
  background-image: url(../img/index/customers/customers-1.webp);
}

.customers__img-block--2 {
  background-image: url(../img/index/customers/customers-2.webp);
}

.customers__img-block--3 {
  background-image: url(../img/index/customers/customers-3.webp);
}

.customers__img-block--4 {
  background-image: url(../img/index/customers/customers-4.webp);
}

.customers__img-block::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg,
      rgba(34, 59, 60, 0) 0.15%,
      rgba(34, 59, 60, 0.0086472) 6.8%,
      rgba(34, 59, 60, 0.03551) 13.46%,
      rgba(34, 59, 60, 0.0816599) 20.12%,
      rgba(34, 59, 60, 0.147411) 26.78%,
      rgba(34, 59, 60, 0.231775) 33.43%,
      rgba(34, 59, 60, 0.331884) 40.09%,
      rgba(34, 59, 60, 0.442691) 46.75%,
      rgba(34, 59, 60, 0.557309) 53.4%,
      rgba(34, 59, 60, 0.668116) 60.06%,
      rgba(34, 59, 60, 0.768225) 66.72%,
      rgba(34, 59, 60, 0.852589) 73.37%,
      rgba(34, 59, 60, 0.91834) 80.03%,
      rgba(34, 59, 60, 0.96449) 86.69%,
      rgba(34, 59, 60, 0.991353) 93.34%,
      #223b3c 100%);
  top: 0;
  right: 0;
}

.firm {
  padding: 60px 0 0;
  background-color: var(--color-bacground-dark);
}

.firm__wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.firm__list {
  display: flex;
  padding: 0;
  margin: 0;
}

.firm__item {
  padding: 32px 32px 32px 24px;
  margin: 0;
  flex: 1 0 0;
  min-height: 270px;
  min-width: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.firm__top-block {
  width: 100%;
}

.firm__item p {
  width: 100%;
  text-align: right;
  color: var(--color-white);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}

.firm__item:nth-child(odd) {
  background-color: var(--color-bacground-light);
}

.firm__item:nth-child(even) {
  background-color: var(--color-bacground);
}

.firm__item span {
  color: var(--color-accent);
  font-family: "Bebas Neue";
  font-size: 120px;
}

.practice {
  padding: 80px 0 100px;
  background-color: var(--color-white);
}

.practice__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.practice__wrapper .title {
  color: var(--color-black);
}

.practice {
  padding: 80px 0 100px;
}

.practice__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.practice__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.practice__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
  position: relative;
}

.practice__item:hover {
  background-color: #f5f5f5;
}

.practice__item:hover .practice__img-block,
.practice__item:hover .practice__button {
  opacity: 1;
}

.practice__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 280px;
}

.practice__content span {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
}

.practice__content p {
  line-height: 1.3;
}

.practice__img-block {
  max-width: 480px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 40%;
  z-index: 2;
  display: block;
  opacity: 0;
  transition: opacity var(--transition);
}

.practice__img-block img {
  width: 100%;
}

.practice__button {
  display: block;
  opacity: 0;
  transition: opacity var(--transition);
}

.say {
  padding: 60px 0 80px;
  background-image: url(../img/index/photo2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.say::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: var(--color-bacground);
  opacity: 0.9;
  z-index: 1;
}

.say__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.say__list-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 13.3px;
  position: relative;
  padding: 0 57.3px;
  overflow: hidden;
  max-width: 1180px;
  width: 100%;
}

.say__button {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d9b57f33;
  color: var(--color-accent);
  border: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
  transition: background-color var(--transition);
}

.say__button:hover {
  background-color: #d9b57f66;
}

.say__button--left {
  left: 0;
}

.say__button--right {
  right: 0;
}

.say__list {
  display: flex;
  flex-direction: row;
  transition: transform 0.5s ease;
  will-change: transform;
}

.say__item {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-shrink: 0;
  padding-right: 114px;
}

.say__autor-block {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.say__img-block {
  overflow: hidden;
  border-radius: 50%;
  width: 160px;
  height: 160px;
}

.say__img-block img {
  width: 100%;
  height: 100%;
}

.say__autor-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.say__autor-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.say__name {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 24px;
  white-space: nowrap;
}

.say__item p {
  color: var(--color-white);
  max-width: 55%;
}

.say__text {
  font-weight: 500;
  font-size: 24px;
  max-width: 580px;
  line-height: 1.6;
}

.logos {
  padding: 90px 0 20px;
}

.logos__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.logos__wrapper h2 {
  color: var(--color-black);
}

.logos__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 280px;
  gap: 20px;
}

.logos__item img {
  width: 75%;
}

.speak {
  padding: 80px 0;
  padding: 60px 0 80px;
  background-image: url(../img/index/photo3.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.speak::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: var(--color-bacground);
  opacity: 0.9;
  z-index: 1;
}

.speak__wrapper {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
}

.speak__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 540px;
  color: var(--color-white);
}

.speak__content span {
  font-size: 60px;
  font-weight: 400;
  font-family: var(--font-logo);
  line-height: 1;
}

.speak__content p {
  font-size: 20px;
  line-height: 1.3;
}

.speak__content-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.speak__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.speak__item {
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.speak__content--contact {
  width: 100%;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.speak__item p {
  font-weight: 700;
  font-size: 16px;
}

.speak__item span {
  font-family: "SF Pro Display";
  color: var(--color-accent);
  font-weight: 600;
  font-size: 16px;
}

.footer {
  background-color: var(--color-bacground);
  padding: 48px 0 48px;
  color: var(--color-white);
}

/* about-us.html */

.hero2 {
  padding: 66px 0;
}

.hero2__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hero2__content {
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding: 0 0 21px;
}

.hero2__title-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero2__title-block p {
  font-size: 20px;
  line-height: 1.3;
}

.hero2__text-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 85%;
}

.hero2__text-block p {
  font-size: 14px;
  line-height: 1.6;
}

.hero2__img-block {
  overflow: hidden;
  border-radius: 8px;
}

.hero2__img-block img {
  width: 100%;
  height: 100%;
}

.journey {
  background-color: var(--color-bacground);
  padding: 52px 0 38px;
}

.journey__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.journey__list {
  padding: 0 35px;
  border-bottom: 1px solid var(--color-white);
  display: flex;
  position: relative;
  justify-content: space-between;
}

.journey__list::after {
  position: absolute;
  content: "▶";
  color: var(--color-white);
  font-size: 10px;
  bottom: 0;
  transform: translate(+50%, +50%);
  right: 0;
}

.journey__item {
  position: relative;
  padding-left: 12px;
  border-left: 1px solid var(--color-accent);
  min-height: 158px;
  max-width: 171px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.journey__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-accent);
  width: 5px;
  height: 22px;
}

.journey__item span {
  color: var(--color-accent);
  font-family: "Bebas Neue";
  font-size: 32px;
  line-height: 0.8;
}

.journey__item p {
  line-height: 1.3;
  color: var(--color-white);
}

.team {
  padding: 60px 0;
  background-color: var(--color-bacground-dark);
  overflow-x: hidden;
}

.team__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.team__top-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.team__btn-block {
  display: flex;
  flex-direction: row;
  display: none;
  gap: 20px;
}

.team__button {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background-color: #d9b57f33;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  display: grid;
  place-items: center;
  border: transparent;
  color: var(--color-accent);
  cursor: pointer;
  transition: background-color var(--transition);
  padding: 0;
}

.team__button svg {
  width: 9px;
  height: 15px;
}

.team__button:hover {
  background-color: #d9b57f66;
}

.team__list-wrapper {
  width: max-content;
  overflow: hidden;
}

.team__list {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.team__item-block {
  width: 100%;
  /* height: 100%; */
}

.team__item {
  border: 1px solid var(--color-accent);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-white);
  width: 100%;
  height: 100%;
}

.team__photo-block {
  position: relative;
  height: 316px;
  width: 100%;
}

.team__photo-block img {
  width: 100%;
  object-position: top;
  height: 100%;
}

.team__name-block {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  background-color: #1a282be5;
}

.team__name {
  color: var(--color-accent);
  font-size: 24px;
  font-weight: 600;
  line-height: 0.8;
}

.team__name-block p {
  color: var(--color-white);
  font-size: 16px;
  line-height: 1;
}

.team__text {
  padding: 24px 20px;
}

.team__text p {
  color: var(--color-black);
}

.values {
  padding: 52px 0 60px;
}

.values__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.values__wrapper h2 {
  color: var(--color-black);
}

.values__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.values__item {
  border-radius: 8px;
  border: 1px solid var(--color-accent);
  padding: 32px 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.values__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: #d9b57f33;
  padding: 16px;
}

.values__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 16px;
}

.values__content span {
  color: var(--color-accent);
  font-family: "Bebas Neue";
  font-size: 28px;
}

.values__content p {
  font-size: 14px;
}

.questions {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.questions__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.questions__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: var(--color-black);
  line-height: 1;
}

.questions__content span {
  font-family: "Bebas Neue Cyrillic";
  font-size: 60px;
}

.questions__content p {
  font-size: 20px;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.questions__btn-block {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.questions__btn-block-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.questions__btn-block-inner button:hover {
  border: 1px solid var(--color-bacground);
  color: var(--color-bacground);
  background-color: transparent;
}

.questions__btn-block-inner span {
  font-family: "Bebas Neue";
  font-size: 28px;
}

.hero3 {
  background-color: #f5f5f5;
  position: relative;
}

.hero3__img-block {
  max-width: 540px;
  max-height: 358px;
  overflow: hidden;
}

.hero3__img-block img {
  width: 100%;
  height: 100%;
}

.hero3__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.services {
  padding: 36px 0 80px;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.services__item {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.services__photo-block .btn {
  text-align: center;
  line-height: 120%;
}

.services__top-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.services__top-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services__top-content span {
  color: var(--color-accent);
  font-size: 40px;
  font-family: "Bebas Neue Cyrillic";
  line-height: 1;
}

.services__top-content p {
  font-size: 20px;
}

.services__button {
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #d9b57f33;
  width: 44px;
  border: transparent;
  height: 44px;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  transition: background-color var(--transition);
}

.services__button:hover {
  background-color: #d9b57f66;
}

.services__inner {
  justify-content: space-between;
  gap: 40px;
  display: grid;
  grid-template-columns: 40% 1fr;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.services__item.active .services__inner {
  max-height: 2000px;
}

.services__button svg {
  transition: transform 0.4s ease;
  transform: rotate(180deg);
}

.services__item.active .services__button svg {
  transform: rotate(0deg);
}

.services__photo-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding-top: 7px;
}

.services__img-block {
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  height: 270px;
}

.services__img-block img {
  width: 100%;
  height: 100%;
}

.services__text-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  line-height: 1.6;
}

.services__text-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services__text-item {
  border-left: 4px solid var(--color-accent);
  padding-left: 17px;
}

.hero3__list {
  display: flex;
  flex-direction: column;
  width: 540px;
}

.hero3__item:nth-child(even) a {
  background-color: var(--color-bacground-dark);
}

.hero3__item:nth-child(odd) a {
  background-color: #223b3c;
}

.hero3__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--color-white);
  padding: 28px 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.hero3__link p {
  transition: opacity var(--transition);
}

.hero3__link:hover p {
  opacity: 0.5;
}

.hero3__link svg {
  opacity: 0.5;
  width: 12px;
  height: 13px;
  flex-shrink: 0;
}

.hero3__map-block {
  max-width: 55%;
  height: 372px;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
}

.hero3--map {
  min-height: 372px;
  display: flex;
  align-items: center;
}

.hero3--map .hero3__wrapper {
  width: 100%;
}

.hero3--map .hero3__wrapper .hero3__title-block {
  max-width: 45%;
}

.hero3__map-block img {
  width: 100%;
  height: 100%;
}

.hero3__map-content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 23px 20px;
  background-color: var(--color-bacground);
  display: flex;
  flex-direction: row;
  width: 70%;
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.6;
  justify-content: space-between;
  align-items: center;
}

.hero3__map-content svg {
  opacity: 0.5;
}

.hero3__marker-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.hero3__marker {
  position: relative;
  background-color: #f5f5f55e;
  border-radius: 50%;
  width: 16px;
  height: 16px;
}

.hero3__marker-block .logo {
  color: var(--color-black);
}

.hero3__marker-block .logo span {
  color: var(--color-accent);
}

.hero3__marker::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--color-accent);
  top: 50%;
  left: 50%;
  display: flex;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero3__map-text span {
  color: var(--color-accent);
  font-size: 24px;
  font-family: "Bebas Neue";
  line-height: 1;
}

.publications {
  padding: 60px 0 80px;
}

.publications__list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.publications__item {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.publications__top-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.publications__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease;
  opacity: 0;
}

.publications__inner--active {
  max-height: 2000px;
  opacity: 1;
}

.publications__button svg {
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}

.publications__button--rotated svg {
  transform: rotate(0deg);
}

.publications__img-block {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  height: 308px;
}

.publications__img-block img {
  width: 100%;
  height: 100%;
}

.publications__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.publications__text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  gap: 20px;
}

.publications__text-block span {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 16px;
}

.publications__text-block ul {
  list-style-type: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contant {
  padding: 52px 0 80px;
}

.contant__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contant__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contant__text-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contant__text-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contant__block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contant__text-top ul,
.contant__block ul {
  margin: 0;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contant ul span {
  color: var(--color-accent);
}

.contant {
  line-height: 1.6;
}

.footer__top-content {
  justify-content: space-between;
  gap: 40px;
  display: flex;
  flex-direction: column;
  padding: 0 0 0;
  position: relative;
}

.footer__logo-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo-block span {
  opacity: 0.5;
  font-weight: 500;
  padding-left: 12px;
}

.footer__logo span {
  color: var(--color-accent);
  opacity: 1;
  padding-left: 0;
}

.footer__link-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__link-item {
  padding: 8px;
}

.footer__link {
  color: var(--color-white);
}

.footer__link:hover {
  opacity: 0.5;
}

.footer__list {
  display: flex;
  position: relative;
  width: max-content;
  flex-direction: column;
  gap: 16px;
  padding: 0 0 36px;
}

.footer__list::after {
  content: "";
  position: absolute;
  width: 100%;
  opacity: 0.1;
  background-color: var(--color-white);
  height: 1px;
  bottom: 0;
  right: 0;
}

.footer__item {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

.footer__top-item-block {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer__top-item-block span {
  opacity: 0.5;
  font-weight: 500;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.footer__list-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__center-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 0 0;
  font-size: 14px;
}

.footer__center-content p {
  opacity: 0.2;
  font-weight: 500;
}

.footer__links {
  display: flex;
  gap: 20px;
}

.footer__link-bottom {
  color: var(--color-white);
  opacity: 0.5;
  transition: opacity 0.3s ease-in;
}

.footer__link-bottom:hover {
  opacity: 1;
}

.footer__top-item-text {
  opacity: 0.5;
  line-height: 1.2;
  font-size: 14px;
}

.footer__top-item-text br {
  display: none;
}

.burger {
  width: 20px;
  height: 20px;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  display: none;
}

.burger span {
  background: var(--color-white);
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  transition: 0.3s;
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 9px;
}

.burger span:nth-child(3) {
  bottom: 0;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

@media (max-width: 1200px) {
  .logos__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .logos__item {
    width: 100%;
  }

  .say__text {
    font-size: 16px;
  }

  .values__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .values__item {
    justify-content: flex-start;
  }
}

@media (max-width: 1024px) {
  .header__inner-wrapper {
    gap: 20px;
  }

  .footer__content {
    gap: 20px;
  }

  .customers__list {
    grid-template-columns: repeat(1, 1fr);
  }

  .practice__item .practice__img-block,
  .practice__item .practice__button {
    display: block;
    opacity: 1;
  }

  .practice__item .practice__img-block {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    max-width: 100%;
    width: 100%;
    height: 400px;
    border-radius: 8px;
  }

  .practice__img-block img {
    height: 100%;
  }

  .practice__item {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .say__item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .say__item p {
    max-width: 100%;
    text-align: center;
  }

  .speak__wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .speak__content {
    max-width: 100%;
  }

  .journey__list::after {
    position: absolute;
    content: "▼";
    color: var(--color-white);
    font-size: 10px;
    bottom: 0;
    right: unset;
    transform: translate(-50%, +50%);
    left: 0;
  }

  .journey__list {
    padding-left: 12px;
    flex-direction: column;
    gap: 20px;
    border-bottom: none;
    border-left: 1px solid var(--color-white);
  }

  .journey__item {
    max-width: 100%;
    min-height: unset;
  }

  .questions__wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .practice__list {
    gap: 0;
  }

  .title {
    font-size: 40px;
  }

  .speak__content--contact {
    flex-direction: row;
    justify-content: space-between;
  }

  .logos__item {
    height: auto;
  }

  .logos__list {
    gap: 60px;
    margin-bottom: 40px;
  }
}

@media (max-width: 850px) {
  body {
    padding-top: 79px;
  }

  .title {
    font-size: 40px;
  }

  .hero__top-text p {
    font-size: 18px;
  }

  .hero {
    padding: 234px 0 37px;
    position: relative;
  }

  .hero::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(221.74deg,
        rgba(255, 255, 255, 0) 18.06%,
        #ffffff 62.51%);
    z-index: 1;
  }

  .services__photo-block {
    padding-top: 0;
  }

  .hero__wrapper {
    position: relative;
    z-index: 2;
  }

  .header__nav {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    user-select: none;
    padding: 0;
  }

  .header__inner-wrapper {
    display: none;
  }

  .customers__img-block {
    display: none;
  }

  .customers__content {
    width: 100%;
    padding: 20px;
  }

  .burger {
    display: block;
  }

  .header__nav.active {
    padding: 20px 0 20px;
    max-height: 500px;
    opacity: 1;
    display: flex;
    pointer-events: unset;
    user-select: unset;
  }

  .footer__content {
    display: flex;
    flex-direction: column-reverse;
  }

  .footer__top-item-text br {
    display: block;
  }

  .footer__content {
    flex-direction: column-reverse;
  }

  .hero__top-text {
    width: 65%;
  }

  .hero2 {
    background-color: #f5f5f5;
    padding: 40px 0 80px;
  }

  .hero2__wrapper {
    display: flex;
    flex-direction: column-reverse;
  }

  .hero2__text-block {
    width: 100%;
  }

  .journey {
    border-top: 5px solid var(--color-accent);
  }

  .hero3__wrapper {
    flex-direction: column;
    padding-top: 40px;
    align-items: flex-start;
  }

  .hero3__img-block {
    max-width: 100%;
    width: 100%;
    height: 400px;
    max-height: unset;
  }

  .hero3__img-block img {
    object-position: 100% 28%;
  }

  .services__inner {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
  }

  .publications__top-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .publications__list {
    gap: 40px;
  }

  .publications__top-block .btn {
    width: 100%;
  }

  .services__photo-block .btn {
    width: 100%;
  }

  .hero3__list {
    width: 100%;
  }

  .publications {
    padding: 40px 0 60px;
  }

  .hero3__map-block {
    position: relative;
    width: 100%;
    max-width: 100%;
  }

  .hero3--map {
    flex-direction: column;
    gap: 40px;
  }

  .speak__content--contact {
    flex-direction: column;
  }

  .speak__item {
    flex-direction: row;
    align-items: center;
  }

  .hero3--map .hero3__wrapper .hero3__title-block {
    max-width: 100%;
  }

  .contant__inner {
    gap: 24px;
  }

  .contant__text-top {
    gap: 16px;
  }

  .contant__text-top ul,
  .contant__block ul {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .team__btn-block {
    display: flex;
  }

  .team__list-outer {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
  }

  .team__list {
    display: inline-flex;
    flex-direction: row;
    overflow-y: auto;
    width: fit-content;
    gap: 0;
    flex-wrap: nowrap;
  }

  .team__item-block {
    padding-right: 10px;
    width: calc(100vw - 10px);
  }

}

@media (max-width: 600px) {
  .logos__list {
    grid-template-columns: repeat(1, 1fr);
  }

  .say__name {
    white-space: break-spaces;
  }

  .say__autor-block {
    flex-direction: column;
  }

  .say__img-block {
    width: 100%;
    height: 100%;
  }

  .say__autor-text {
    align-items: center;
  }

  .hero__top-text {
    width: 90%;
    gap: 15px;
  }

  .hero {
    background-position: 68% 100%;
  }

  .hero .btn {
    width: 100%;
  }

  .values__list {
    grid-template-columns: repeat(1, 1fr);
  }

  .questions__btn-block {
    flex-direction: column;
  }

  .questions__content span {
    font-size: 40px;
  }

  .questions__content p {
    font-size: 18px;
  }

  .footer__link-bottom {
    white-space: nowrap;
  }

  .footer__links {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .speak__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 400px) {
  .consultation__form {
    width: 100%;
  }
}