* {
  margin: 0;
  padding: 0;
}

.montserrat-<uniquifier > {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  background-color: #1c1c1c;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

a {
  color: #fff;
  text-decoration: none;
}

a,
a:hover {
  transition: 0.3s;
}

a:hover {
  color: #006dff;
}

p {
  margin-bottom: 0;
}

ul {
  margin-bottom: 0;
  padding-left: 0;
}

ul > li {
  list-style: none;
}

/* custom-container instead bootstrap-container */
.custom-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;

  @media (min-width: 768px) {
    padding: 0 24px;
  }

  @media (min-width: 1024px) {
    max-width: 1360px;
    padding: 0 32px;
  }

  @media (min-width: 1440px) {
    max-width: 1440px;
    padding: 0 72px;
  }
}

/* .first-section - доп класс для первой секции на странице */
.first-section {
  padding: 128px 0px 64px;

  @media (min-width: 1440px) {
    padding: 168px 0px 64px;
  }
}

/* from laptop */
header {
  display: none;

  @media (min-width: 993px) {
    width: 100%;
    display: block;
    position: absolute;
    z-index: 100;
  }
}

.header-laptop-container {
  @media (min-width: 993px) {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.title {
  margin-bottom: 2rem;
}

.title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #595959;
  letter-spacing: 3%;
  margin-bottom: 0;
}

.title span {
  font-weight: 500;
  color: #595959;
  font-size: 18px;
  display: block;
  margin-top: 8px;
}

.title-more {
  display: flex;
  align-items: center;
}

.title-more:hover img {
  padding-left: 8px;
  transition: 0.3s;
}

.title-more img {
  transition: 0.3s;
}

.title-more a {
  width: max-content;
  display: flex;
  font-size: 18px;
  font-weight: 500;
}

.title-more a:hover {
  color: #fff;
}

.mt-64 {
  margin-top: 64px;
}

.mb-64 {
  margin-bottom: 64px;
}

.mt-128 {
  margin-top: 128px;
}

.mb-128 {
  margin-bottom: 128px;
}

.pt-64 {
  padding-top: 64px;
}

.pb-64 {
  padding-bottom: 64px;
}

header nav,
footer nav {
  font-weight: 600;
}

header nav ul li {
  display: inline-block;
}

.header-right {
  display: flex;
  align-items: center;
  align-content: center;
}

header nav ul li a {
  margin-right: 2rem;
}

.std-btn {
  width: fit-content;
  font-weight: 600;
  padding: 10px 1rem;
  background-color: #006dff;
  border-radius: 0.5rem;
}

.std-btn:hover {
  background-color: #0061e3;
  color: #fff;
}

.title {
  display: flex;
  justify-content: space-between;
}

.red {
  color: #ff0000;
}

.title-more img {
  margin-left: 8px;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.new-page {
  /* margin-top: 64px; */
  padding-top: 64px;
  flex: 1;
}

.footer-social {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 12px;

  @media (min-width: 768px) {
    column-gap: 16px;
  }

  @media (min-width: 1440px) {
    margin-top: 0px;
    justify-content: flex-end;
  }
}

.footer-social a {
  font-weight: 600;
  padding: 10px 24px;
  background-color: #5b6c84;
  border-radius: 100px;
}

.footer-social a:hover {
  background-color: #006dff;
  color: #fff;
}

footer {
  padding: 32px 0px;
}

.footer-line, .footer-line-right{
  font-weight: 600;
  color: #595959;
}

.footer-line-right{
  float: right;
}

.main-footer {
  margin: 32px 0;
}

.main-footer .links-wrapper {
  @media (min-width: 1024px) {
    display: flex;
  }
}

.main-footer ul {
  display: inline-block;
}

/* .main-footer ul:nth-child(n + 2) {
  margin-left: 80px;

  @media (min-width: 1024px) {
    margin-left: 80px;
  }
} */

.main-footer li {
  margin-top: 1rem;
}

/* Mobile header */
.mobile-header-wrapper {
  position: absolute;
  z-index: 100;

  @media (min-width: 993px) {
    display: none;
  }
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 16px 0px;

  @media (min-width: 768px) {
    padding: 24px 0px;
  }
}

.mobile-header img {
  width: 43px;
  height: 32px;
}

.burger-btn:focus {
  outline: none; /* Убираем синюю обводку */
}

/* Бургер-кнопка */
.burger-btn {
  position: relative;
  /* width: 24px;
  height: 18px; */
  width: 36px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  /* height: 3px; */
  height: 4px;
  background-color: white;
  /* border-radius: 2px; */
  border-radius: 20px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Расположение трёх линий */
.burger-btn span:nth-child(1) {
  top: 0;
}

.burger-btn span:nth-child(2) {
  /* top: 7.5px */
  top: 12px;
}

.burger-btn span:nth-child(3) {
  /* top: 15px; */
  top: 24px;
}

/* Состояние "крестик" */
.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  /* top: 7.5px; */
  top: 12px;
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  /* top: 7.5px; */
  top: 12px;
}

/* Меню */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #1c1c1c;
  /* padding: 64px 32px 32px 32px; */
  padding-top: 128px;
  height: 100vh;
  color: white;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu li:not(:last-child) {
  margin-bottom: 32px;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.mobile-menu .std-btn {
  width: fit-content;
}

select {
  appearance: none; /* Убирает системную стрелку */
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 10px 32px 10px 24px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: transparent;
  border: 1px solid #fff;
  background-image: url("../img/icons/selectarrow.svg"); /* своя стрелка */
  background-repeat: no-repeat;
  background-position: right 10px center;

  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

select:focus-visible {
  outline: none;
}

.custom-select-wrapper {
  position: relative;
  width: 200px;
  user-select: none;
}

.custom-select-trigger {
  background-color: transparent;
  border: 1px solid #ccc;
  color: #ccc;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-radius: 12px;
  margin-top: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 10;
}

.custom-option {
  padding: 16px;
  cursor: pointer;
  font-weight: bold;
  color: #000;
}

.custom-option:hover {
  background-color: #f0f0f0;
}

.custom-select-wrapper.open .custom-options {
  display: block;
}

.arrow {
  margin-left: auto;
}

/* First Block */
.home-hero-section {
  position: relative;
  /* width: 100%;
  height: 100vh;
  padding-top: 320px; */
  box-sizing: border-box;

  /* @media (min-width: 768px) {
    padding-top: 285px;
  } */

  /* @media (min-width: 993px) {
    padding-top: 338px;
  } */

  /* @media (min-width: 1024px) {
    padding-top: 322px;
  } */

  @media (min-width: 1440px) {
    /* padding-top: 368px; */
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-bg-letter {
  position: absolute;
  inset: 210px 20px 0px auto;
  background-image: url(/img/icons/m.svg);
  background-size: contain;
  background-position: right top;
  width: 90%;
  height: 40%;
  background-repeat: no-repeat;
  z-index: 1;

  @media (min-width: 768px) {
    position: absolute;
    inset: 130px 40px 0px auto;
    width: 80%;
    height: 60%;
    max-width: 800px;
  }

  @media (min-width: 1024px) {
    inset: 130px 36px 0px auto;
    height: 80%;
    max-width: 900px;
  }

  @media (min-width: 1440px) {
    inset: 113px 134px 0px auto;
    width: 100%;
    max-width: 1000px;
  }
}

.hero-text {
  position: relative;
  z-index: 1;
  /* max-width: 850px; */
}

.hero-text h1 {
  /* font-size: 2.5rem; */
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-text h1 {
    font-size: 4rem;
  }
}

.nubmers .row .info-block:nth-child(n + 3) {
  margin-top: 32px;

  @media (min-width: 768px) {
    margin-top: 0;
  }
}

.nubmers .row .info-block:nth-child(n + 5) {
  @media (min-width: 768px) {
    margin-top: 32px;
  }

  @media (min-width: 1024px) {
    margin-top: 32px;
  }

  @media (min-width: 1440px) {
    margin-top: 32px;
  }
}

.info-block p {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 8px;

  @media (min-width: 1024px) {
    font-size: 53px;
    margin-bottom: 16px;
  }

  @media (min-width: 1440px) {
    font-size: 64px;
  }
}

.info-block span {
  font-weight: 500;
  font-size: 14px;
  color: #595959;
  /* width: 400px; */

  @media (min-width: 1024px) {
    font-size: 16px;
  }
}

/* contacts page */

/* .contacts {
  padding: 64px 0;
} */

.contacts-content p {
  font-size: 20px;
  font-weight: 600;
  color: #595959;
  margin-bottom: 16px;
  letter-spacing: 2%;
}

.contacts-content ul li {
  margin-bottom: 8px;
  font-weight: 500;
}

#mySelect option {
  color: #000000;
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  margin-bottom: 32px;
}

.breadcrumb li + li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 8px;
  background-image: url("../img/icons/breadarrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.breadcrumb li {
  font-weight: 500;
  color: #595959;
}

.breadcrumb li a {
  text-decoration: none;
  color: #fff;
}

.breadcrumb li a:hover {
  color: #006dff;
}

.breadcrumb li[aria-current="page"] {
  color: #555;
  font-weight: bold;
}

/* .marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  height: 40px;
  padding: 10px 0;
  position: relative;
} */

/* .marquee-track img {
  height: 40px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.3s;
  flex-shrink: 0;
} */

/* .marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: scroll-linear 20s linear infinite;
} */

/* Анимация будет переопределяться через JS (переменная скорости) */
/* @keyframes scroll-linear {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
} */

/* .marquee-track {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
} */

/* from next */
.media-track {
  display: flex;
  align-items: center;
  width: max-content;
  /* чем больше значение в секундах, тем медленнее строка */
  animation: scroll-media 40s linear infinite;
}

@keyframes scroll-media {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.media-track .icon {
  flex: 0 0 auto;
  margin-right: 40px;
}

.media-track img {
  height: 40px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.3s;
  flex-shrink: 0;
}

/* Services */
.services .title {
  display: flex;
  flex-direction: column;
  row-gap: 16px;

  @media (min-width: 768px) {
    flex-direction: row;
  }
}

.services-block {
  background-color: #191919;
  padding: 32px;
  border-radius: 1rem;
  height: 100%;
}

.services-block img {
  height: 100px;
  width: auto;
  margin-bottom: 32px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  transition: 0.3s;
}

.services-block:hover img {
  filter: grayscale(0%);
  transition: 0.3s;
}

.services-block p {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.services-block li {
  margin-bottom: 8px;
  font-weight: 500;
  transition: 0.3s;
}

.services-block li:hover {
  list-style: disc;
  color: #006dff;
  margin-left: 20px;
  transition: 0.3s;
}

.services-block li:hover a {
  color: #006dff;
}

.services .row .col-6:nth-child(n + 3) {
  margin-top: 24px;
}

/* Раздел услуги, Стек технологий */

.tech-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  box-sizing: border-box;
}
.tech-block {
  background-color: #000;
  padding: 16px;
  width: 190px;
  height: 240px;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.tech-container .row .col-2:nth-child(n + 7) {
  margin-top: 24px; /* или сколько нужно */
}

.tech-block-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.tech-block img {
  height: 64px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.3s;
}
.tech-block p {
  background-color: #1c1c1c;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  padding: 10px 0;
}

.tech-block:hover p {
  background-color: #006dff;
  transition: 0.3s;
}
.tech-block:hover img {
  transform: scale(1.06); /* увеличивает на 10% */
  opacity: 1;
  transition: 0.3s;
}

.hidden {
  display: none;
}

.technology {
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.technology button {
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  border: 1px solid #c4c4c4;
  color: #c4c4c4;
  cursor: pointer;
  font-weight: 600;
  background-color: transparent;
}

.technology button.active {
  background: #333;
  color: white;
  background-color: #006dff;
  border: 1px solid #006dff;
}

/* Cases New */
.cases-container img{
  width: 100%;
}


/* cases-incoming-data */
.cases-incoming-data {
  /* margin-bottom: 32px; */
  margin-bottom: 128px;
}

.cases-incoming-data p {
  font-weight: 500;
  font-size: 16px;
  color: #d9d9d9;
}

.cases-incoming-data > p:not(:last-of-type) {
  margin-bottom: 16px;
}

.cases-incoming-data > p:last-of-type {
  margin-bottom: 32px;
}

.working-principle {
  padding: 32px;
  border-radius: 16px;
  background-color: #d9d9d9;
}

.working-principle h3 {
  font-weight: 700;
  font-size: 32px;
  color: #2c2c2c;
  margin-bottom: 32px;
}

.working-principle p {
  color: #2c2c2c;
}

/* cases-solutions */
.cases-solutions {
  /* margin-bottom: 32px; */
  margin-bottom: 128px;
}

.cases-solutions p,
.cases-solutions ul {
  font-weight: 500;
  font-size: 16px;
  color: #d9d9d9;
}

body .cases-solutions ul {
  margin-bottom: 16px;
}

.cases-solutions ul > li {
  list-style: inside;
  padding-left: 8px;
}

.cases-solutions p:not(:last-of-type) {
  margin-bottom: 16px;
}

/* cases-creatives */
.cases-creatives {
  /* margin-bottom: 32px; */
  margin-bottom: 128px;
}

.cases-creatives .overflow-container {
  overflow-x: scroll;

  @media (min-width: 993px) {
    overflow-x: hidden;
  }
}

.cases-creatives .pictures-wrapper {
  width: 980px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;

  @media (min-width: 768px) {
    width: 980px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
  }

  @media (min-width: 993px) {
    width: 100%;
  }

  @media (min-width: 1024px) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 52px;
    margin-bottom: 32px;
  }

  @media (min-width: 1440px) {
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* justify-content: center; */
    gap: 64px;
    /* margin-bottom: 32px; */
  }
}

.cases-creatives .text-wrapper {
  width: 980px;
  display: flex;
  gap: 12px;
  border-top: 1px solid #ffffff;

  @media (min-width: 768px) {
    width: 980px;
  }

  @media (min-width: 993px) {
    width: 100%;
  }

  @media (min-width: 1024px) {
    display: flex;
    gap: 12px;
    border-top: 1px solid #ffffff;
  }

  @media (min-width: 1440px) {
    /* display: flex; */
    gap: 16px;
    /* border-top: 1px solid #ffffff; */
  }
}

.cases-creatives .text-wrapper li {
  position: relative;
  width: calc((100% - 72px) / 7);
  padding: 24px 10px 10px;

  @media (min-width: 1024px) {
    position: relative;
    width: calc((100% - 72px) / 7);
    padding: 24px 10px 10px;
  }

  @media (min-width: 1440px) {
    /* position: relative; */
    width: calc((100% - 96px) / 7);
    /* padding: 24px 10px 10px; */
  }
}

.cases-creatives .text-wrapper li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 38%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #d9d9d9;
}
/* если делать точку конкретно под каждій елемент */
/* 
.cases-creatives .text-wrapper li:nth-child(1):before {
  left: 50%;
}

.cases-creatives .text-wrapper li:nth-child(2):before {
  left: 50%;
}

.cases-creatives .text-wrapper li:nth-child(3):before {
  left: 50%;
}

.cases-creatives .text-wrapper li:nth-child(4):before {
  left: 50%;
}

.cases-creatives .text-wrapper li:nth-child(5):before {
  left: 50%;
}

.cases-creatives .text-wrapper li:nth-child(6):before {
  left: 50%;
}

.cases-creatives .text-wrapper li:nth-child(7):before {
  left: 50%;
} */

/* cases-key-words */
.cases-key-words {
  /* margin-bottom: 32px; */
  margin-bottom: 128px;
  overflow-x: scroll;

  @media (min-width: 768px) {
    overflow-x: hidden;
  }
}

.cases-key-words table {
  width: 520px;
  border-collapse: collapse;
  text-align: left;
  border: 2px solid #d9d9d9;
  margin-bottom: 8px;

  @media (min-width: 768px) {
    width: 100%;
  }
}

.cases-key-words table thead {
  background-color: #d9d9d9;
  color: #2c2c2c;
}

.cases-key-words table th,
.cases-key-words table td {
  width: 50%;
  padding: 16px 32px;
  font-weight: 500;
  font-size: 24px;
  border: 2px solid #d9d9d9;
}
.cases-key-words table th:last-child,
.cases-key-words table td:last-child {
  text-align: center;
}

.cases-key-words > p {
  font-weight: 400;
  font-size: 16px;
  color: #595959;
}

/* cases-visual-content */
.cases-visual-content {
  /* margin-bottom: 32px; */
  margin-bottom: 128px;
}

.cases-visual-content .pictures-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;

  @media (min-width: 768px) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  @media (min-width: 1024px) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  @media (min-width: 1440px) {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }
}

/* cases-worked-with */
.cases-worked-with {
  /* margin-bottom: 32px; */
  margin-bottom: 128px;
  overflow-x: scroll;

  @media (min-width: 768px) {
    overflow-x: hidden;
  }
}

.cases-worked-with .partners-list {
  margin-bottom: 32px;
}

.cases-worked-with .partners-list p {
  padding: 32px 0px;
  font-weight: 600;
  font-size: 24px;
  text-align: center;
}

.cases-worked-with table {
  width: 650px;
  border-collapse: collapse;
  text-align: left;
  border: 1px solid #d9d9d9;

  @media (min-width: 768px) {
    width: 100%;
  }
}

.cases-worked-with table thead {
  background-color: #d9d9d9;
  color: #2c2c2c;
}

.cases-worked-with table th,
.cases-worked-with table td {
  width: 33.33%;
  border: 1px solid #d9d9d9;
}

.cases-worked-with table th {
  padding: 15px 32px;
  font-weight: 700;
  font-size: 18px;
}

.cases-worked-with table td {
  padding: 18px 32px;
  font-weight: 500;
  font-size: 18px;
}

.cases-worked-with table tr.note {
  background-color: #d9d9d9;
  color: #2c2c2c;
}

.cases-worked-with table tr.note p {
  max-width: 763px;
}

.cases-worked-with table .result-row td {
  padding: 65px 32px;
}

/* cases-results */
.cases-results {
  /* margin-bottom: 32px; */
  margin-bottom: 128px;
}

/* cases-future-goals */
.cases-future-goals {
  /* margin-bottom: 32px; */
  margin-bottom: 128px;
}

.cases-future-goals p {
  font-weight: 500;
  font-size: 16px;
  color: #d9d9d9;
}

/* Cases */
/* .cases {
  margin-bottom: 128px;
} */

.case-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 3%;
}

.case-card-image {
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.case-card-image img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  transition: 0.3s;
}

.case-card-image:hover img {
  transform: scale(1.05);
  transition: 0.3s;
}

.cases .row .case-card:nth-child(n + 3) {
  margin-top: 24px; /* или сколько нужно */
}

/* Pagination */
.page-content {
  display: none;
  margin-top: 30px;
  color: white;
  font-family: sans-serif;
}

.page-content.active {
  display: block;
}

.pagination {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.page {
  padding: 6px 12px;
  border-radius: 6px;
  background-color: transparent;
  color: white;
  cursor: pointer;
  border: none;
  font-size: 18px;
}

.page.active {
  background-color: white;
  color: black;
  font-weight: bold;
}

/* Contact Form Main */
.contact-form {
  margin: 128px 0;
  display: flex;
  justify-content: center;
}

.contact-form-container {
  padding: 86px 128px;
  background-color: #191919;
  border-radius: 24px;
  max-width: 1076px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-form .contact-form-info {
  margin-bottom: 32px;
  max-width: 487px;

  @media (min-width: 1024px) {
    margin-bottom: 0px;
  }
}

.contact-form .info-block-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-form .info-block-text {
  font-size: 18px;
  font-weight: 500;
  color: #595959;
}

/* Services */

.services .row .col-lg-6:nth-child(n + 3) {
  margin-top: 24px;
}

.services-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;

  @media (min-width: 768px) {
    gap: 60px;
  }
  @media (min-width: 1024px) {
    gap: 100px;
  }
  @media (min-width: 1440px) {
    gap: 132px;
  }
}

.services-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  /* width: 50%; */
  width: 40%;

  /* @media (min-width: 1440px) {
    width: 526px;
  } */
}

.services-menu li {
  padding: 24px 0;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #333;
  transition: 0.3s;
}

.services-menu li:hover {
  border-bottom: 1px solid #fff;
  transition: 0.3s;
}

.services-menu li.active {
  font-weight: bold;
}

.services-menu li span {
  font-size: 18px;
}

.services-content {
  /* width: 50%; */
  width: 60%;

  /* @media (min-width: 1440px) {
    width: 636px;
  } */
}

.services-content h3 {
  padding: 24px 0;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #333;
  transition: 0.3s;
}

.content-item {
  display: none;
}

.content-item.active {
  display: block;
}

.content-item h3 {
  margin-bottom: 15px;
}

.content-item ol {
  color: #595959;
}

.content-item ol li {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 0;
}

/* Docs */
.doc-container li {
  margin: 10px 0;
}

.docs-title {
  font-size: 24px;
  font-weight: 600;
  margin: 2rem 0;
}

.doc-container ul {
  margin-left: 2rem;
}

.doc-container ul li ul {
  margin-left: 4rem;
}

.doc-container span {
  margin-right: 1rem;
}

/* Brief */
/* .fill-brief{
} */

.brief-title {
  margin-bottom: 4rem;
}

.brief-title h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;

  @media (min-width: 768px) {
    font-size: 4rem;
    /* font-weight: 800; */
    /* margin-bottom: 8px; */
  }
}

.brief-title span {
  font-weight: 500;
}

.indicator-block {
  margin-top: 2rem;
}

.step-indicator {
  background: #5b6c84;
  display: inline-block;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
}

.form-step {
  display: none;
}

.form-step.active {
  display: grid;
}

.form-step .inputs-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 24px;

  @media (min-width: 768px) {
    flex-direction: row;
    row-gap: 0px;
    column-gap: 24px;
  }
}

.form-step .inputs-wrapper > div {
  @media (min-width: 768px) {
    width: calc((100% - 24px) / 2);
  }

  @media (min-width: 1024px) {
    width: 40%;
  }

  @media (min-width: 1440px) {
    width: 25%;
  }
}

.form-step-button {
  color: #fff;
  box-shadow: none;
  outline: none;
  border: none;
  padding: 16px 24px;
  font-weight: 600;
  background-color: #006dff;
  border-radius: 100px;
  transition: 0.3s;
  margin-top: 2rem;
}

.form-step-button:hover {
  background-color: #0061e3;
  transition: 0.3s;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid #595959;
  color: white;
  font-size: 16px;
  border-radius: 8px;
}

input:focus,
textarea:focus {
  border: 1px solid #0061e3;
  box-shadow: none;
  outline: none;
}

.task-description,
.additional-information {
  max-width: 635px;
  height: 140px;
}

.success-message {
  text-align: center;
  font-size: 20px;
  color: lightgreen;
  margin-top: 40px;
  display: none;
}

.form-group {
  margin-bottom: 32px;
}

.option-group {
  display: flex;
  flex-wrap: wrap;
  /* gap: 10px; */
  gap: 16px;
  /* margin-top: 10px; */
  margin-top: 16px;
}

.option {
  position: relative;
}
/* для валидации лучше єто, чем display: none  */
.option input[type="radio"] {
  position: absolute;
  top: -20px;
  left: 50px;
  opacity: 0;
  pointer-events: none;
}

.option input[type="checkbox"] {
  display: none;
}

.option label {
  display: inline-block;
  border: 1px solid #595959;
  padding: 10px 24px;
  border-radius: 1000px;
  background: transparent;
  color: #595959;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.option label:hover {
  color: #006dff;
  border-color: #006dff;
}

.option input[type="checkbox"]:checked + label,
.option input[type="radio"]:checked + label {
  background-color: #006dff;
  color: #fff;
  border-color: #006dff;
  transition: 0.3s;
}

/* Page services */

/* .services-title {
  height: 100vh;
  padding-top: 271px;

  @media (min-width: 1440px) {
    padding-top: 321px;
  }
} */

.services-title .breadcrumb {
  margin-bottom: 0;
}

.services-title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 32px;

  @media (min-width: 768px) {
    font-size: 4rem;
  }
}

.services-title .std-btn {
  padding: 16px 30px;
}

.services-attention {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.accordion {
  width: 100%;
  border-top: 1px solid #444;
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
}

.accordion-item {
  border-bottom: 1px solid #444;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  padding: 32px 0;
}

.accordion-header h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding-bottom: 32px;
}

.accordion-item .arrow {
  transition: transform 0.3s ease;
}

.accordion-item.active .arrow {
  transform: rotate(180deg);
}

.services-faq {
  margin: 128px 0;
}

/* creating-stages */
.creating-stages {
  margin: 128px 0;
  position: relative;
}

.creating-stages .title {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-bottom: 32px;

  @media (min-width: 768px) {
    flex-direction: row;
  }
}

.quadrates-wrapper {
  display: flex;
  gap: 8px;
}

.quadrate {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background-color: #595959;
  cursor: pointer;
}

.quadrate:hover {
  opacity: 0.8;
}

.quadrate.active {
  background-color: #006dff;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.creating-stages .number::before {
  display: none;

  @media (min-width: 768px) {
    display: inline-block;
    font-size: 900px;
    font-weight: 700;
    line-height: 0.7;
    color: #595959;
    pointer-events: none;
  }
}

.creating-stages .first.number::before {
  content: "1";
}

.creating-stages .second.number::before {
  content: "2";
}

.creating-stages .third.number::before {
  content: "3";
}

.creating-stages .fourth.number::before {
  content: "4";
}

.creating-stages .fifth.number::before {
  content: "5";
}

.creating-stages .sixth.number::before {
  content: "6";
}

.creating-stages .seventh.number::before {
  content: "7";
}

.creating-stages .eighth.number::before {
  content: "8";
}

.creating-stages .text-block-wrapper {
  width: 100%;

  @media (min-width: 768px) {
    position: absolute;
    width: 87%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  @media (min-width: 1024px) {
    width: 75%;
  }

  @media (min-width: 1440px) {
    top: 50%;
    width: 964px;
  }
}

.creating-stages .subtitle {
  font-weight: 700;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 16px;

  @media (min-width: 768px) {
    margin-bottom: 24px;
  }
}

.creating-stages .text-wrapper {
  padding: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  border-radius: 16px;
  background-color: #ffffff;
  color: #000000;
  font-weight: 500;
  font-size: 14px;

  @media (min-width: 768px) {
    padding: 32px;
    font-size: 16px;
  }

  @media (min-width: 1024px) {
    padding: 32px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    border-radius: 16px;
    background-color: #ffffff;
    color: #000000;
    font-weight: 500;
    font-size: 18px;
  }
}

/* services-platform */
.services-platform {
  display: flex;
  flex-wrap: wrap;
}

.services-platform-item:not(:nth-last-child(-n + 2)) {
  border-bottom: 1px solid #595959;
}

.services-platform-item {
  width: 50%;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  padding: 32px;
}

.services-platform-item:nth(2n + 1) {
  border-right: 1px solid #595959;
}

.what-we-do table {
  width: 100%;
  border-collapse: collapse;
}

.services-platform-item {
  width: 50%;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  padding: 32px;
}

/*scroll-container*/
.scroll-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  padding-right: 16px;
  color: #ffffff;
  margin: 0 auto 128px;
  scrollbar-gutter: stable;

  @media (min-width: 768px) {
    width: 600px;
  }

  @media (min-width: 1024px) {
    width: 856px;
  }
}

.scroll-content {
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  padding-right: 20px;
  /* прячем дефолт скролбар */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll-content::-webkit-scrollbar {
  display: none;
}

.scroll-container h3 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 16px;
}

.scroll-container p {
  font-weight: 500;
  font-size: 16px;
}

.scroll-container p:not(:last-child) {
  margin-bottom: 16px;
}

.scroll-container ul {
  margin-bottom: 16px;
}

.scroll-container ul > li {
  list-style: inside;
  padding-left: 12px;
}

.scroll-container .bold-text {
  font-weight: 600;
}

.scrollbar {
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  padding: 2px;
  background-color: #cccccc;
  border-radius: 16px;
}

.thumb {
  position: absolute;
  top: 0;
  width: 6px;
  background-color: #1c1c1c;
  border-radius: 16px;
  height: 50px;
  cursor: pointer;
}

/* Page cases */

/* cases-hero */
.cases-hero {
  position: relative;
  height: 100vh;
/*  background-image: url("/img/cases/hero.png");*/
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cases-hero .title-wrapper {
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;

  @media (min-width: 768px) {
    padding: 0;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
  }

  @media (min-width: 1024px) {
    max-width: 856px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
  }

  /* @media (min-width: 1440px) {
    max-width: 856px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
  } */
}

.cases-hero .name {
  font-weight: 700;
  font-size: 64px;
  margin-bottom: 32px;
}

.cases-hero .text {
  font-weight: 600;
  font-size: 32px;

  @media (min-width: 768px) {
    font-weight: 600;
    font-size: 48px;
  }
}

/* cases-info */
.cases-info-container {
  position: relative;
  margin-top: -104px;

  @media (min-width: 768px) {
    margin-top: -165px;
  }
}

.cases-info {
  background-color: #d9d9d9;
  border-radius: 30px;
  padding: 24px 32px;
  color: #2c2c2c;
  /* margin-bottom: 32px; */
  margin-bottom: 128px;

  @media (min-width: 768px) {
    background-color: #d9d9d9;
    border-radius: 30px;
    padding: 48px 64px;
    color: #2c2c2c;
    /* margin-bottom: 32px; */
  }
}

.cases-info a {
  color: #2c2c2c;
  transition: 0.3s;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cases-info a:hover {
  color: #006dff;
  transition: 0.3s;
}

.cases-info p {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cases-info li {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

/* cases-description */
.cases-description {
  /* margin-bottom: 32px; */
  margin-bottom: 128px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;

  @media (min-width: 768px) {
    /* margin-bottom: 32px; */
    margin-bottom: 128px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
  }

  @media (min-width: 993px) {
    /* margin-bottom: 32px; */
    margin-bottom: 128px;
    display: flex;
    flex-direction: row;
    row-gap: 0px;
    column-gap: 24px;
  }
}

.cases-description-block {
  padding: 32px;
  border-radius: 30px;
  background-color: #191919;

  @media (min-width: 993px) {
    padding: 64px;
    border-radius: 30px;
    background-color: #191919;
  }
}

.cases-description-block.client-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;

  @media (min-width: 993px) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(50% - 12px);
  }
}

.cases-description-block .subtitle {
  font-weight: 700;
  font-size: 32px;
  color: #d9d9d9;
  margin-bottom: 16px;
}

.cases-description-block .text {
  font-weight: 500;
  font-size: 16px;
  color: #d9d9d9;
}

.cases-description .task-limitation-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 16px;
  width: 100%;

  @media (min-width: 768px) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 16px;
    width: 100%;
  }

  @media (min-width: 993px) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 24px;
    width: calc(50% - 12px);
  }
}

/* thank-you page */

.thank-you {
  padding: 192px 0px 128px;
}

.thank-you-content {
  @media (min-width: 768px) {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.thank-you img {
  width: 112px;
  margin-bottom: 64px;

  @media (min-width: 768px) {
    margin-bottom: 16px;
  }
}

.thank-you h2 {
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 16px;
}

.thank-you p {
  font-weight: 500;
  font-size: 16px;
}

/* ecли мало контента для всей вісоті екрана (минус хедер, минус футер). как анлог можно использовать flex: 1; */
.not-enoght-info-in-height {
  min-height: calc(100vh - 460px);

  @media (min-width: 550px) {
    min-height: calc(100vh - 404px);
  }

  @media (min-width: 768px) {
    min-height: calc(100vh - 404px);
  }

  @media (min-width: 993px) {
    min-height: calc(100vh - 404px);
  }

  @media (min-width: 1200px) {
    min-height: calc(100vh - 328px);
  }
}

/*page: /services/ux-ui-design*/
.ux-ui-design.what-we-do .inner-list {
  padding-top: 16px;
  padding-left: 48px;
}

.ux-ui-design.what-we-do .inner-list > li {
  list-style: circle;
  padding-left: 8px;
}

/*page: /services/mobile-app-design */
.dizajn-mob-app.what-we-do ul > li {
  list-style: inside;
  padding-left: 12px;
}

.dizajn-mob-app.what-we-do p {
  margin-bottom: 16px;
}

/*page: /services/website-redesign */
.work-with h3 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 16px;
}

/*page: /services/website-development */
.complicated-decisions .type-list {
  display: flex;
  flex-direction: column;
  row-gap: 24px;

  @media (min-width: 768px) {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 20px;
  }
}

.complicated-decisions .type-list li {
  width: 100%;
  padding: 45px 30px;
  background-color: #191919;
  border-radius: 16px;

  @media (min-width: 768px) {
    width: calc((100% - 20px) / 2);
    padding: 45px 30px;
    background-color: #191919;
    border-radius: 16px;
  }

  @media (min-width: 1200px) {
    width: calc((100% - 40px) / 3);
  }
}

.complicated-decisions img {
  margin-bottom: 32px;
}

.complicated-decisions h3 {
  font-weight: 600;
  font-size: 24px;
  color: #8a8a8a;
  margin-bottom: 16px;
}

.complicated-decisions p {
  font-weight: 500;
  font-size: 16px;
  color: #8a8a8a;
}

/*page: /services/targeted-advertising*/
.work-with table {
  width: 100%;
  border-collapse: collapse;
}

.work-with tr:not(:last-child) {
  border-bottom: 1px solid #595959;
}

.work-with td {
  width: 50%;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  padding: 32px;
}

.work-with td:first-child {
  border-right: 1px solid #595959;
}

/* for all hero sections */
.hero-section {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 64px;

  @media (min-width: 768px) {
    padding-top: 80px;
  }

  @media (min-width: 993px) {
    padding-top: 108px;
  }
}



.sub-list {
  margin-left: 20px;
  padding: 8px;
}

.sitemap li{
  padding: 4px 0;
  font-weight: 500;
}