:root {
  --color-primary: #0c47a0;
  --color-primary-hover: #223aa6;
  --color-secondary: #a5c6f6;
  --color-text-primary: #393939;
  --color-text-secondary: #939393;
  --color-white: #ffffff;
  --color-background: #f4f4f4;
  --color-gradient-start: #0c47a0;
  --color-gradient-end: #8fecfc;

  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-sm: 0.875rem;

  --radius-sm: 14px;
  --radius-md: 9px;
  --radius-lg: 30px;
  --radius-xl: 33px;

  --transition-fast: 0.22s;
  --transition-base: 0.3s;

  --shadow-inset: inset 0px 0px 34px rgba(255, 255, 255, 0.05);
  --shadow-inset-sm: inset 0px 1px 2px rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--color-secondary) var(--color-background);
}

@font-face {
  font-family: 'Segoe UI';
  src: url('/assets/fonts/SegoeUI-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Segoe UI';
  src: url('/assets/fonts/SegoeUI-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Segoe UI';
  src: url('/assets/fonts/SegoeUI.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/Roboto.woff2') format('woff2');
  font-style: normal;
}

@font-face {
  font-family: 'Nunito';
  src: url('/assets/fonts/Nunito.woff2') format('woff2');
  font-style: normal;
}

body {
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  color: var(--color-text-primary);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}

input,
textarea,
button,
a {
  outline: none;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--color-background);
  border-radius: 10px;
  margin: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 10px;
  border: 2px solid var(--color-background);
  transition: background var(--transition-base) ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

::-webkit-scrollbar-thumb:active {
  background: var(--color-primary-hover);
}

::-webkit-scrollbar-corner {
  background: var(--color-background);
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
}

body {
  padding-top: 72px;
}

/* index.php */

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 0;
  background: var(--color-white);
  z-index: 1000;
}

.header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-link-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  min-width: 220px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
  transform: translateX(-50%) translateY(-8px);
  padding: 8px;
  z-index: 100;
}

.nav-link-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 14px;
  color: var(--color-text-primary);
  text-decoration: none;
  font-size: 14px;
  border-radius: 8px;
  transition: background var(--transition-base);
  white-space: nowrap;
  border-bottom: 1px solid var(--color-background);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: var(--color-background);
  color: var(--color-primary);
}

.dropdown-item-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-bottom: none;
}

.dropdown-item-all::after {
  content: '→';
  font-size: 16px;
  transition: transform var(--transition-base);
  display: inline-block;
}

.dropdown-item-all:hover::after {
  transform: translateX(4px);
}

.primary-nav {
  width: 100%;
  max-width: 1245px;
  padding: 0.781rem 0 1rem 0;
  margin: 0 auto;
}

.primary-nav-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 36px;
}

.brand-logo span {
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.1px;
  font-size: 16px;
  -webkit-text-stroke: 0.3px #393939;
  white-space: nowrap;
  line-height: 1;
  font-weight: 590;
  color: #393939;
}

.brand-logo {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  gap: 7px;
}

.brand-logo img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.main-navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
  height: 33px;
  background: var(--color-background);
  border-radius: var(--radius-md);
}

.nav-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.375rem 0.625rem;
  height: 33px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
  transition: background var(--transition-base);
  position: relative;
}

.nav-link.active {
  background: linear-gradient(90deg, #434343 0%, #4258be 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link:hover:not(.active) {
  background: rgba(12, 71, 160, 0.1);
}

.header-contacts {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.938rem;
  height: 36px;
}

.phone-number {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.375rem 0.625rem;
  gap: 0.375rem;
  height: 36px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
  line-height: 150%;
  white-space: nowrap;
}

.phone-number svg {
  margin-bottom: 1px;
}

.cta-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.375rem 0.625rem;
  width: 154px;
  gap: 5px;
  height: 36px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-size: var(--font-size-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition-base);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  background: #223aa6;
}

.cta-button:focus {
  background: #0c47a0;
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.cta-button:focus:hover {
  background: #223aa6;
}

.cta-button:active {
  background: #7a8ad1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.4s,
    height 0.4s,
    opacity 0.4s;
  opacity: 0;
}

.cta-button:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.category-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.category-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.375rem 0.625rem;
  height: 33px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
  transition: background var(--transition-base);
}

.category-link:hover {
  background: rgba(12, 71, 160, 0.1);
}

/* hero section */
.hero {
  position: relative;
  padding: 3.281rem 0 0 0;
}

.hero-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 1.25rem;
}

.hero-title-block {
  flex: 1;
  max-width: 880px;
  position: relative;
}

.hero-title-block h1 {
  font-size: 1.9rem;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  transform-origin: left center;
  letter-spacing: 0.12rem;
  line-height: 1;
  margin: 0;
}

.hero-title-block .big-letter,
.hero-title-block .big-a-letter {
  font-size: 2.6rem !important;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  transform-origin: left center;
  letter-spacing: 0.12rem;
  line-height: 1;
  margin: 0;
}

.hero-description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 290px;
}

.hero-description p {
  font-size: var(--font-size-md);
}

/* services */
.services-preview {
  position: relative;
  margin-bottom: 1.25rem;
}

.services-preview-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  position: relative;
  height: 348px;
}

.preview-card {
  position: relative;
  height: 348px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.preview-card-large {
  flex: 1;
  min-width: 0;
}

.card-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.preview-card-narrow {
  width: 69px;
  background: var(--color-primary);
  transition: all var(--transition-base) ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.preview-card-narrow.light {
  background: var(--color-secondary);
}

.narrow-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--transition-base) ease;
  z-index: 0;
  pointer-events: none;
}

.preview-card-narrow.expanded {
  width: 252px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.preview-card-narrow.expanded .narrow-card-bg {
  opacity: 1;
}

.preview-card-narrow.expanded::after {
  content: '';
  position: absolute;
  right: -300px;
  top: 0;
  width: 300px;
  height: 100%;
  pointer-events: none;
}

.preview-card-content-main {
  position: absolute;
  left: 1.45%;
  bottom: 3.16%;
  right: 1.91%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.card-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
}

.info-text {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 500;
  -webkit-text-stroke: 0.3px white;
  font-size: 1.25rem;
  color: var(--color-white);
}

.card-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: var(--color-white);
  border-radius: 54px;
  font-weight: 500;
  -webkit-text-stroke: 0.2px #393939;
  font-size: var(--font-size-md);
  color: var(--color-text-primary);
}

.narrow-number {
  position: absolute;
  top: 294px;
  left: 50%;
  transform: translateX(-50%);
}

.vertical-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(180deg);
  font-weight: 500;
  font-size: var(--font-size-md);
  line-height: 100%;
  color: var(--color-white);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: center;
}

.preview-card-content-medium {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: left;
  gap: 1.125rem;
  max-width: 220px;
  border-top: 2px solid rgba(255, 255, 255, 0.09);
  padding: 0.875rem;
  background: rgba(2, 75, 186, 0.26);
  box-shadow: var(--shadow-inset);
  backdrop-filter: blur(36px);
  border-radius: var(--radius-xl);
  height: 317px;
  box-shadow: var(--shadow-inset-sm);
}

.medium-card-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.large-icon {
  width: 73px;
  height: 73px;
  background: var(--color-white);
  border-radius: 36.5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.medium-card-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: auto;
}

.medium-card-text p:nth-child(1) {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 100%;
  color: var(--color-white);
  text-align: left;
}

.medium-card-text p:nth-child(2) {
  font-size: var(--font-size-base);
  line-height: 100%;
  color: var(--color-white);
  text-align: left;
}

.details-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  width: 117px;
  height: 36px;
  margin-top: auto;
  gap: 4px;
  background: #ffffff;
  border-radius: 16px;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #393939;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.details-button:hover {
  background: #f0efef;
}

.details-button:focus {
  background: #ffffff;
  outline: none;
}

.details-button:focus:hover {
  background: #edecec;
}

.details-button:active {
  background: #f4f4f4;
}

.details-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(159, 159, 159, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s,
    opacity 0.6s;
  opacity: 0;
}

.details-button:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

/* features section */
.features-list-desktop {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4.188rem;
  margin: 1.25rem 0;
}

.features-list-mobile {
  display: none;
}

.features-list-mobile-top {
  display: none;
}

.feature-item {
  font-weight: 500;
  font-size: var(--font-size-sm);
  line-height: 150%;
}

/* statistics section */
.statistics {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  gap: 4.188rem;
  margin-top: 2.5rem;
}

.statistics-header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 285px;
  flex-shrink: 0;
}

.statistics-header p {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 100%;
}

.show-more-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.375rem 0.625rem;
  width: 152px;
  gap: 4px;
  height: 36px;
  background: var(--color-primary);
  border-radius: 9px;
  color: var(--color-white);
  font-size: var(--font-size-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition-base);
  position: relative;
  overflow: hidden;
}

.show-more-button:hover {
  background: #223aa6;
}

.show-more-button:focus {
  background: #0c47a0;
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.show-more-button:focus:hover {
  background: #223aa6;
}

.show-more-button:active {
  background: #7a8ad1;
}

.show-more-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.4s,
    height 0.4s,
    opacity 0.4s;
  opacity: 0;
}

.show-more-button:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.25rem;
  background: var(--color-background);
  border-radius: var(--radius-lg);
}

.stat-mobile {
  display: none;
}

.stat-desktop {
  display: inline;
}

.stat-icon svg.stat-mobile {
  display: none;
}

.stat-icon svg.stat-desktop {
  display: block;
}

.stat-card-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
}

.stat-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 59px;
  height: 59px;
  background: var(--color-background);
  border: 1px solid var(--color-white);
  border-radius: 33px;
}

.stat-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--color-primary);
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: var(--font-size-sm);
  line-height: 150%;
}

.stat-value {
  font-size: 1.5rem;
  line-height: 150%;
}

/* advantages section */
.advantages {
  position: relative;
  padding: 3.125rem 0 0 0;
}

.advantages-intro {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3.75rem;
  margin-bottom: 3.75rem;
}

.advantages-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  flex: 1;
}

.section-title {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 4.625rem;
  line-height: 100%;
}

.advantages-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 408px;
}

.advantage-point {
  font-size: var(--font-size-md);
  line-height: 100%;
}

.advantages-cards {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 29px;
}

.advantage-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 2.563rem;
  flex: 1;
  height: 637px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-fast) ease;
}

.advantage-card .card-bg-image {
  z-index: 0;
}

.advantage-card:hover .card-bg-image {
  opacity: 0;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  transition: opacity var(--transition-fast) ease;
}

.advantage-card-dark::before {
  box-shadow:
    inset -70px 0 50px rgba(0, 0, 0, 0.25),
    inset 70px 0 50px rgba(0, 0, 0, 0.25),
    inset 0 -140px 50px rgba(0, 0, 0, 0.55);
}

.advantage-card-blue::before {
  box-shadow:
    inset -70px 0 50px rgba(0, 0, 0, 0.25),
    inset 70px 0 50px rgba(0, 0, 0, 0.25),
    inset 0 -140px 50px rgba(0, 0, 0, 0.55);
}

.advantage-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-background);
  opacity: 0;
  transition: opacity var(--transition-fast) ease;
  z-index: 1;
  pointer-events: none;
}

.advantage-card:hover {
  background: var(--color-background);
  box-shadow: none;
}

.advantage-card:nth-child(3) .card-bg-image {
  object-position: 69% center;
}

.advantage-card:hover::after {
  opacity: 1;
}

.advantage-card:hover .number-badge {
  border: 1px solid var(--color-text-secondary);
}

.advantage-card:hover .number-text {
  color: var(--color-text-primary);
}

.card-top,
.card-bottom {
  transition:
    transform var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1),
    opacity var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.card-title {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 2.25rem;
  z-index: 10;
  line-height: 101%;
  color: var(--color-white);
  transition: color var(--transition-fast) ease;
  position: relative;
}

.advantage-card:hover .card-title {
  color: var(--color-text-primary);
}

.advantage-card-dark .card-title,
.advantage-card-blue .card-title {
  margin-top: auto;
}

.card-hover-content {
  position: relative;
  z-index: 3;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1.563rem;
}

.card-hover-text {
  font-size: var(--font-size-md);
  line-height: 100%;
  color: var(--color-text-secondary);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1),
    transform var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover .card-hover-text {
  opacity: 1;
  transform: translateY(0);
}

.card-hover-footer {
  display: flex;
  flex-direction: column;
  gap: 1.563rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1),
    transform var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover .card-hover-footer {
  opacity: 1;
  transform: translateY(0);
}

.card-hover-divider {
  width: 100%;
  height: 0;
  border: 1px solid var(--color-text-secondary);
}

.card-hover-divider-grey {
  width: 100%;
  height: 0;
  border: 1px solid var(--color-text-secondary);
  margin-bottom: 1.563rem;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition:
    transform var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1),
    opacity var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 3;
}

.advantage-card:hover .card-hover-divider-grey {
  transform: scaleX(1);
  opacity: 1;
}

.advantage-card-gray::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle 320px at center center,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.7) 60%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 1) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 45%,
    transparent 50%,
    transparent 100%
  );
  transition: all var(--transition-fast) ease;
  z-index: 1;
}

.advantage-card-gray:hover::before {
  opacity: 0;
}

.advantage-card-gray .card-hover-content {
  margin-bottom: auto;
}

.card-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4.75rem;
  width: 100%;
}

.number-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.188rem 1rem;
  width: 76px;
  height: 76px;
  border-radius: 38px;
  transition: border var(--transition-fast) ease;
}

.advantage-card-dark .number-badge,
.advantage-card-blue .number-badge {
  border: 1px solid var(--color-white);
}

.advantage-card-gray .number-badge {
  border: 1px solid var(--color-text-secondary);
}

.number-text {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 100%;
  transition: color var(--transition-fast) ease;
}

.advantage-card-dark .number-text,
.advantage-card-blue .number-text {
  color: var(--color-white);
}

.advantage-card-gray .number-text {
  color: var(--color-text-primary);
}

.card-bottom {
  width: 100%;
  margin-top: auto;
  position: absolute;
  bottom: 2.563rem;
  left: 2.563rem;
}

/* services section */
.services {
  position: relative;
}

.services-intro {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3.75rem;
  margin-bottom: 2.125rem;
}

.services-title {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 5.5rem;
  line-height: 100%;
  color: var(--color-text-primary);
}

.services-description {
  font-weight: 500;
  font-size: var(--font-size-md);
  margin-top: 0.625rem;
  line-height: 100%;
  color: var(--color-text-primary);
}

.services-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 46px;
}

.service-card {
  position: relative;
  flex: 1;
  height: 444px;
  background: var(--color-background);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.service-card-wrapper {
  position: absolute;
  width: calc(100% - 62px);
  height: 370px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.875rem;
  position: absolute;
  left: 0;
  top: 0;
}

.service-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.25rem 0.625rem 0.188rem 0.625rem;
  height: 29px;
  border: 1px solid var(--color-text-primary);
  border-radius: 16px;
  font-size: var(--font-size-sm);
  line-height: 150%;
}

.service-card-title {
  max-width: 242px;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 100%;
  color: var(--color-text-primary);
}

.service-card-title.smaller {
  font-size: 1.95rem;
  margin-bottom: 0.375rem;
}

.service-card-number {
  max-width: 242px;
  font-size: 9.875rem;
  line-height: 100%;
  color: var(--color-text-primary);
}

.service-card-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}

.footer-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.25rem 0.625rem;
  height: 29px;
  border: 1px solid var(--color-text-primary);
  border-radius: 16px;
  font-size: var(--font-size-sm);
  line-height: 150%;
}

.icon-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  width: 31px;
  height: 30px;
  border: 1px solid var(--color-text-primary);
  border-radius: 63px;
}

.icon-circle svg {
  width: 23px;
  height: 24px;
  fill: var(--color-text-primary);
}

.rocket-icon svg {
  width: 26px;
  height: 27px;
  padding-top: 3px;
  fill: var(--color-text-primary);
}

.gradient-dot {
  position: absolute;
  right: 7.67%;
  top: 8.75%;
  cursor: pointer;
  display: inline-block;
  line-height: 0;
  z-index: 100;
}

.gradient-dot svg {
  display: block;
  pointer-events: none;
}

/* promo section */
.promo {
  position: relative;
  padding: 110px 0;
}

.promo-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 2.5rem;
  background: #000;
}

.promo-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.promo-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.688rem;
  max-width: 811px;
}

.promo-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.promo-title {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 2.75rem;
  line-height: 113%;
  color: var(--color-white);
}

.countdown-wrapper {
  width: 100%;
  max-width: 694px;
  position: relative;
}

.countdown-label {
  font-weight: 500;
  font-size: var(--font-size-base);
  line-height: 100%;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
}

.countdown-display {
  position: relative;
  width: 98%;
  height: 135px;
  margin-bottom: 8px;
}

.countdown-block {
  position: absolute;
  width: calc((100% - 70px) / 4);
  height: 135px;
  background: #252b38;
  border-radius: var(--radius-xl);
}

.countdown-block:nth-child(1) {
  left: 0;
}

.countdown-block:nth-child(2) {
  left: calc((100% - 63px) / 4 + 21px);
}

.countdown-block:nth-child(3) {
  left: calc((100% - 63px) / 2 + 42px);
}

.countdown-block:nth-child(4) {
  left: calc((100% - 63px) * 3 / 4 + 63px);
}

.countdown-timer {
  position: absolute;
  width: calc(100% - 6px);
  height: 110px;
  left: 14px;
  top: 15px;
  font-size: 7.5rem;
  line-height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-gradient-start) 0%,
    var(--color-gradient-end) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-labels {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7.813rem;
  position: relative;
  left: 59px;
}

.countdown-unit {
  font-weight: 500;
  font-size: var(--font-size-md);
  line-height: 100%;
  color: var(--color-text-secondary);
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.timer-group {
  display: inline-block;
}

.timer-separator {
  margin: 0 1px;
}

.promo-text {
  max-width: 401px;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 108%;
  color: var(--color-white);
}

.promo-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  width: 156px;
  height: 36px;
  background: #ffffff;
  border-radius: 9px;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #393939;
  gap: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promo-button:hover {
  background: #f0efef;
}

.promo-button:focus {
  background: #ffffff;
  outline: none;
}

.promo-button:focus:hover {
  background: #edecec;
}

.promo-button:active {
  background: #f4f4f4;
}

.promo-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(159, 159, 159, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s,
    opacity 0.6s;
  opacity: 0;
}

.promo-button:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.promo-info-card {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 1.438rem 1.313rem;
  gap: 1.25rem;
  height: 256px;
  position: absolute;
  right: 40px;
  top: 152px;
  border-top: 2px solid rgba(255, 255, 255, 0.09);
  width: 340px;
  box-shadow: var(--shadow-inset-sm);
  background: rgba(255, 255, 255, 0.21);
  backdrop-filter: blur(36px);
  border-radius: var(--radius-xl);
}

.info-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.563rem;
  width: 100%;
}

.info-card-label {
  font-size: 0.75rem;
  line-height: 100%;
  color: var(--color-white);
}

.info-card-title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 100%;
  color: var(--color-white);
  max-width: 204px;
}

.info-card-description {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 100%;
  color: var(--color-white);
  max-width: 170px;
}

.big-letter {
  font-size: 3rem;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
}

.big-a-letter {
  font-size: 3rem;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
}

.service-card-title .desktop-title {
  display: block;
}

.service-card-title .mobile-title {
  display: none;
}

/* burger menu */
.burger-menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger-menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-primary);
  transition: all 0.3s ease;
}

@media (max-width: 1028px) {
  body {
    padding-top: 64px;
  }
}

@media (max-width: 690px) {
  .burger-menu-icon {
    display: flex;
    margin-left: 0.875rem;
  }

  .main-navigation {
    display: none;
  }

  .primary-nav {
    padding: 0.938rem 0;
  }

  .primary-nav-inner {
    padding: 0 1.25rem;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .header-contacts .numbers {
    display: none;
  }

  body {
    padding-top: 58px;
  }
}

.burger-menu-icon.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.burger-menu-icon.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.burger-menu-icon span:nth-child(3) {
  width: 60%;
  transform: rotate(-180deg);
}

.burger-menu-icon.active {
  opacity: 0;
  pointer-events: none;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition-base) ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--color-white);
  z-index: 1001;
  transition: left var(--transition-base) ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.065rem 1.25rem;
  border-bottom: 1px solid var(--color-background);
  min-height: 58px;
  position: relative;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-primary);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  position: absolute;
  left: 1.25rem;
  margin-top: 8px;
}

.mobile-menu-section {
  position: relative;
}

.mobile-menu-section.has-submenu > .mobile-menu-link {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-submenu-toggle {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--color-text-primary);
}

.mobile-menu-section.has-submenu.open
  > .mobile-menu-link
  .mobile-submenu-toggle {
  transform: rotate(45deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-submenu.open {
  max-height: 500px;
  border-top: 1px solid var(--color-background);
}

.mobile-submenu-link {
  display: block;
  padding: 0.75rem 0 0.75rem 1.5rem;
  font-size: 0.875rem;
  text-decoration: none;
  color: #393939;
  border-bottom: 1px solid var(--color-background);
  transition: color var(--transition-base) ease;
}

.mobile-submenu-link:hover {
  color: var(--color-primary);
}

.mobile-submenu-all {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-submenu-all::after {
  content: '→';
  font-size: 16px;
  margin-bottom: 2px;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-content {
  flex: 1;
  padding: 0 1.25rem 0 1.25rem;
  display: flex;
  flex-direction: column;
}

.mobile-menu-link {
  display: block;
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-base) ease;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--color-background);
}

.mobile-menu-link.active {
  color: var(--color-primary);
  font-weight: 400;
}

.mobile-menu-link:hover {
  color: var(--color-primary);
}

.mobile-menu-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--color-background);
}

.mobile-cta-button {
  width: 100%;
  padding: 0.75rem;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition-base) ease;
}

.mobile-cta-button:hover {
  background: var(--color-primary-hover);
}

body.menu-open {
  overflow: hidden;
}

#header-icon {
  vertical-align: middle;
  position: relative;
  left: -2px;
  bottom: 6px;
  padding-bottom: 0;
}

@media (max-width: 1616px) {
  #header-icon {
    vertical-align: middle;
    position: relative;
    width: 36px;
    left: -2px;
    bottom: 4px;
    padding-bottom: 0;
  }
}

.narrow-cards-scroll-wrapper {
  display: flex;
  flex-direction: row;
  gap: 11px;
}

.slider-dots {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.938rem;
  height: 20px;
  margin-top: 1.25rem;
  order: 4;
}

.slider-dot {
  width: 20px;
  height: 20px;
  background: #d9d9d9;
  border-radius: 50%;
  transition: background var(--transition-base) ease;
  cursor: pointer;
  outline: none;
  border: none;
}

.slider-dot.active {
  background: var(--color-primary);
}

.preview-card-narrow .preview-card-content-medium {
  opacity: 0;
  pointer-events: none;
  margin: 0 auto;
  transition: opacity 0.2s ease 0s;
}

.preview-card-narrow.expanded .preview-card-content-medium {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.2s ease 0.2s;
  transform: translateZ(0);
}

.preview-card-narrow .vertical-text,
.preview-card-narrow > .card-number {
  opacity: 1;
  transition: opacity 0.2s ease 0.15s;
}

.preview-card-narrow.expanded .vertical-text,
.preview-card-narrow.expanded > .card-number {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease 0s;
}

/* why us section */
.why-us-section {
  overflow: hidden;
}

.why-us-section .container {
  overflow: visible;
}

.section-header {
  margin-bottom: 40px;
}

.why-us-section-title {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 100%;
  color: #393939;
  margin-bottom: 24px;
  font-size: 42px;
  max-width: 600px;
}

.why-us-section-subtitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  background: linear-gradient(90deg, #434343 0%, #4258be 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 500px;
  margin-left: 51%;
}

.advantages-grid {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-top: 40px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 1.875rem 0 0;
  margin-left: -1.875rem;
  margin-right: -1.875rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 1.875rem;
}

.advantages-grid::-webkit-scrollbar {
  display: none;
}

.card-advantage:first-child {
  margin-left: 1.875rem;
}

.card-advantage:last-child {
  margin-right: 1.875rem;
}

.card-advantage {
  min-width: 300px;
  width: 300px;
  height: 359px;
  border-radius: 30px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.card-advantage:nth-child(1),
.card-advantage:nth-child(3) {
  margin-top: 31px;
}

.card-advantage-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.card-advantage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    106.85% 106.85% at 50% -16.43%,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.11) 67.58%,
    #000000 100%
  );
  z-index: 1;
}

.advantage-content {
  position: relative;
  z-index: 2;
  width: 235px;
}

.advantage-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #ffffff;
  margin-bottom: 16px;
}

.advantage-text {
  font-size: 16px;
  line-height: 100%;
  color: #ffffff;
}

@media (min-width: 1180px) {
  .advantages-grid {
    overflow-x: visible;
    overflow-y: visible;
    padding: 0;
    gap: 21px;
    margin-top: 40px;
    margin-left: 0;
    margin-right: 0;
    flex-wrap: nowrap;
  }

  .card-advantage:first-child {
    margin-left: 0;
  }

  .card-advantage:last-child {
    margin-right: 0;
  }

  .card-advantage {
    min-width: 0;
    width: calc((100% - 63px) / 4);
    flex: 1 1 calc((100% - 63px) / 4);
    height: 359px;
    min-height: 359px;
  }
}

@media (min-width: 980px) and (max-width: 1080px) {
  .why-us-section-title {
    font-size: 2.4rem;
    max-width: 70%;
  }

  .why-us-section-subtitle {
    font-size: 1.1rem;
    max-width: 330px;
    margin-left: 40%;
  }

  .card-advantage {
    min-width: 280px;
    width: 280px;
    height: 320px;
    padding: 20px 16px;
  }

  .advantage-content {
    width: 100%;
  }

  .advantage-title {
    font-size: 19px;
    margin-bottom: 14px;
  }

  .advantage-text {
    font-size: 15px;
  }

  .card-advantage:nth-child(1),
  .card-advantage:nth-child(3) {
    margin-top: 0;
  }
}

@media (min-width: 720px) and (max-width: 980px) {
  .section-header {
    margin-bottom: 32px;
  }

  .why-us-section-title {
    font-size: 2.5rem;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .why-us-section-subtitle {
    font-size: 0.938rem;
    max-width: 290px;
    margin-left: 0;
    text-align: left;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
  }

  .card-advantage {
    height: 280px;
    padding: 18px 14px;
  }

  .card-advantage:nth-child(1),
  .card-advantage:nth-child(3) {
    margin-top: 0;
  }

  .advantage-content {
    width: 100%;
  }

  .advantage-title {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .advantage-text {
    font-size: 13px;
    line-height: 110%;
  }
}

@media (min-width: 480px) and (max-width: 720px) {
  .section-header {
    margin-bottom: 28px;
  }

  .why-us-section-title {
    font-size: 2.2rem;
    max-width: 100%;
    margin-bottom: 18px;
  }

  .why-us-section-subtitle {
    max-width: 100%;
    margin-left: 0;
    line-height: 110%;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
  }

  .card-advantage {
    height: 240px;
    padding: 16px 12px;
    border-radius: 24px;
  }

  .card-advantage:nth-child(1),
  .card-advantage:nth-child(3) {
    margin-top: 0;
  }

  .advantage-content {
    width: 100%;
  }

  .advantage-title {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 110%;
  }

  .advantage-text {
    font-size: 16px;
    line-height: 110%;
  }
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  transition: opacity var(--transition-fast) ease;
}

.advantage-card-dark::before {
  box-shadow:
    inset -70px 0 50px rgba(0, 0, 0, 0.25),
    inset 70px 0 50px rgba(0, 0, 0, 0.25),
    inset 0 -140px 50px rgba(0, 0, 0, 0.55);
  opacity: 1;
}

.advantage-card-blue::before {
  box-shadow:
    inset -70px 0 50px rgba(0, 0, 0, 0.25),
    inset 70px 0 50px rgba(0, 0, 0, 0.25),
    inset 0 -140px 50px rgba(0, 0, 0, 0.55);
  opacity: 1;
}

.advantage-card-dark:hover::before,
.advantage-card-blue:hover::before {
  opacity: 0;
}

.card-hover-footer {
  display: flex;
  flex-direction: column;
  gap: 1.563rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1),
    transform var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover .card-hover-footer {
  opacity: 1;
  transform: translateY(0);
}

.card-hover-divider {
  width: 100%;
  height: 0;
  border: 1px solid var(--color-text-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition:
    transform var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1),
    opacity var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover .card-hover-divider {
  transform: scaleX(1);
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: 24px;
  }

  .why-us-section-title {
    font-size: 2.2rem;
    max-width: 90%;
    margin-bottom: 16px;
    line-height: 110%;
  }

  .why-us-section-subtitle {
    font-size: 1rem;
    max-width: 100%;
    margin-left: 0;
    line-height: 120%;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .card-advantage {
    height: 204px;
    width: 204px;
    min-width: 204px;
    padding: 6px 0;
    border-radius: 20px;
  }

  .card-advantage:nth-child(1),
  .card-advantage:nth-child(3) {
    margin-top: 0;
  }

  .advantage-content {
    width: 100%;
    padding: 12px 18px;
  }

  .advantage-title {
    font-size: 19px;
    max-width: 200px;
    margin-bottom: 8px;
    line-height: 110%;
  }

  .card-advantage:nth-child(1) .advantage-title,
  .card-advantage:nth-child(2) .advantage-title {
    max-width: 140px;
  }

  .card-advantage:nth-child(3) .advantage-title {
    max-width: 200px;
  }

  .advantage-text {
    font-size: 14px;
    line-height: 115%;
    max-width: 180px;
  }
}

@media (min-width: 1616px) {
  .why-us-section-title,
  .mobile-dev-heading {
    font-size: 50px;
    max-width: 700px;
  }

  .why-us-section-subtitle {
    font-size: 20.2px;
  }

  .card-advantage {
    height: 402.384px;
    border-radius: 33.6128px;
    padding: 26.8256px 22.2848px;
  }

  .card-advantage:nth-child(1),
  .card-advantage:nth-child(3) {
    margin-top: 34.744px;
  }

  .advantage-content {
    width: 263.408px;
  }

  .advantage-title {
    font-size: 22.2848px;
    margin-bottom: 17.9376px;
  }

  .advantage-text {
    font-size: 17.9376px;
  }
}

/* test drive section */
.test-drive-section {
  padding: 110px 0;
}

.test-drive-section-title,
.section-title {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 100%;
  color: #393939;
  margin-bottom: 40px;
}

.blue-highlight {
  color: #0c47a0;
  font-weight: 500;
  -webkit-text-stroke: 0.3px #0c47a0;
}

.test-drive-columns {
  display: flex;
  gap: 12px;
}

.left-column {
  width: 616px;
  flex-shrink: 0;
}

.offer-card {
  background: #f4f4f4;
  border-radius: 30px;
  padding: 32px 48px;
  margin-bottom: 12px;
  height: 228px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #939393;
  margin-bottom: 20px;
}

.offer-title {
  font-size: 38px;
  line-height: 100%;
  color: #393939;
  margin-bottom: 20px;
}

.offer-brand {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #939393;
  text-align: right;
}

.contact-form {
  background: #f4f4f4;
  border-radius: 30px;
  padding: 32px 48px;
  height: 329px;
}

.form-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #939393;
  margin-bottom: 17px;
}

.form-title {
  font-size: 32px;
  line-height: 100%;
  color: #212121;
  margin-bottom: 17px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  height: 36px;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 8px;
  padding: 0 21px;
  font-weight: 500;
  font-size: 14px;
  color: #393939;
  box-shadow:
    inset 0px 0px 34px rgba(255, 255, 255, 0.05),
    inset 0px 2px 2px rgba(255, 255, 255, 0.15);
}

.form-input::placeholder {
  color: #939393;
}

.button-submit {
  width: 100%;
  height: 36px;
  background: linear-gradient(90deg, #005bc6 0%, #7ed6ff 100%);
  border-radius: 8px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.button-submit:hover {
  opacity: 0.85;
}

.button-text {
  font-size: 20px;
  color: #ffffff;
}

.send-icon {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.right-column {
  flex: 1;
  min-width: 0;
}

.portfolio-container {
  position: relative;
  height: 480px;
  background: #ffffff;
  border: 1.5px solid #0c47a0;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 12px;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  position: absolute;
  cursor: zoom-in;
  top: 0;
  left: 0;
  opacity: 1;
  transition: transform 0.3s ease;
}

.portfolio-image:hover {
  transform: scale(1.05);
}

.portfolio-image.active {
  display: block;
  position: absolute;
}

.portfolio-image.slide-out-left {
  display: block;
  animation: slideOutLeft 0.3s ease forwards;
}
.portfolio-image.slide-out-right {
  display: block;
  animation: slideOutRight 0.3s ease forwards;
}
.portfolio-image.slide-in-right {
  display: block;
  animation: slideInRight 0.3s ease forwards;
}
.portfolio-image.slide-in-left {
  display: block;
  animation: slideInLeft 0.3s ease forwards;
}

@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-30%);
  }
}
@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(30%);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.zoom-button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 58px;
  height: 58px;
  background: #f4f4f4;
  border: 1px solid #ffffff;
  border-radius: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
}

.zoom-button:hover {
  background: #e4e4e4;
  transform: scale(1.05);
}

.zoom-icon {
  width: 32px;
  height: 32px;
}

.control-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 44px;
  justify-content: center;
}

.button-slider {
  width: 77px;
  height: 77px;
  background: #f4f4f4;
  border: 1px solid #ffffff;
  border-radius: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.button-slider:hover {
  background: #e4e4e4;
}

.button-slider.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.arrow-icon {
  width: 41px;
  height: 41px;
}

.arrow-left {
  transform: rotate(180deg);
}

.status-circles {
  display: flex;
  gap: 15px;
}

.status-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d9d9d9;
  transition: background 0.3s;
}

.status-circle.active {
  background: #0c47a0;
}

@media (min-width: 980px) and (max-width: 1616px) {
  .test-drive-section {
    padding: 90px 0;
  }

  .test-drive-section-title,
  .section-title {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }

  .test-drive-columns {
    gap: 16px;
  }

  .left-column {
    width: 520px;
  }

  .offer-card {
    padding: 28px 40px;
    height: 200px;
  }

  .offer-title {
    font-size: 30px;
  }

  .contact-form {
    padding: 28px 40px;
    height: 314px;
  }

  .form-title {
    font-size: 26px;
  }

  .portfolio-container {
    height: 446px;
  }

  .zoom-button {
    width: 52px;
    height: 52px;
  }

  .zoom-icon {
    width: 28px;
    height: 28px;
  }

  .button-slider {
    width: 70px;
    height: 70px;
  }

  .control-slider {
    gap: 36px;
  }
}

@media (max-width: 1028px) {
  .test-drive-section {
    padding: 70px 0 !important;
  }
}

@media (min-width: 720px) and (max-width: 980px) {
  .test-drive-section-title,
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 28px;
  }

  .test-drive-columns {
    flex-direction: column;
    gap: 20px;
  }

  .left-column {
    width: 100%;
  }

  .offer-card {
    padding: 24px 32px;
    height: auto;
    min-height: 180px;
  }

  .offer-title {
    font-size: 29px;
    margin-bottom: 16px;
  }

  .contact-form {
    padding: 24px 32px;
    height: auto;
  }

  .form-title {
    font-size: 24px;
  }

  .right-column {
    width: 100%;
  }

  .portfolio-container {
    height: 380px;
  }

  .zoom-button {
    width: 48px;
    height: 48px;
  }

  .zoom-icon {
    width: 26px;
    height: 26px;
  }

  .button-slider {
    width: 65px;
    height: 65px;
  }

  .control-slider {
    gap: 32px;
  }

  .status-circle {
    width: 18px;
    height: 18px;
  }

  .status-circles {
    gap: 12px;
  }
}

@media (min-width: 480px) and (max-width: 720px) {
  .test-drive-section-title,
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }

  .test-drive-columns {
    flex-direction: column;
    gap: 16px;
  }

  .left-column {
    width: 100%;
  }

  .offer-card {
    padding: 20px 24px;
    height: auto;
    min-height: 180px;
    border-radius: 24px;
  }

  .offer-label {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .offer-title {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .offer-brand {
    font-size: 15px;
  }

  .contact-form {
    padding: 20px 24px;
    height: auto;
    border-radius: 24px;
  }

  .form-label {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .form-title {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .form-fields {
    gap: 10px;
    margin-bottom: 16px;
  }

  .form-input {
    height: 34px;
    font-size: 13px;
    padding: 0 16px;
  }

  .button-submit {
    height: 34px;
  }

  .button-text {
    font-size: 16px;
  }

  .right-column {
    width: 100%;
  }

  .portfolio-container {
    height: 350px;
    border-radius: 24px;
  }

  .zoom-button {
    width: 44px;
    height: 44px;
    top: 6px;
    right: 6px;
  }

  .zoom-icon {
    width: 24px;
    height: 24px;
  }

  .button-slider {
    width: 58px;
    height: 58px;
  }

  .control-slider {
    gap: 28px;
  }

  .status-circle {
    width: 16px;
    height: 16px;
  }

  .status-circles {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .test-drive-section-title,
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 110%;
  }

  .test-drive-columns {
    flex-direction: column;
    gap: 14px;
  }

  .left-column {
    width: 100%;
  }

  .offer-card {
    padding: 18px 20px;
    height: auto;
    min-height: 220px;
    border-radius: 20px;
  }

  .offer-label {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .offer-title {
    font-size: 27px;
    margin-bottom: 12px;
    line-height: 110%;
  }

  .offer-brand {
    font-size: 14px;
  }

  .contact-form {
    padding: 18px 20px;
    height: auto;
    border-radius: 20px;
  }

  .form-label {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .form-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 110%;
  }

  .form-fields {
    gap: 8px;
    margin-bottom: 14px;
  }

  .form-input {
    height: 32px;
    font-size: 12px;
    padding: 0 14px;
    border-radius: 6px;
  }

  .button-submit {
    height: 32px;
    border-radius: 6px;
  }

  .button-text {
    font-size: 18px;
  }

  .button-submit svg {
    width: 18px;
    height: 18px;
  }

  .right-column {
    width: 100%;
  }

  .portfolio-container {
    height: 320px;
    border-radius: 20px;
  }

  .zoom-button {
    width: 40px;
    height: 40px;
    top: 6px;
    right: 6px;
    border-radius: 20px;
  }

  .zoom-icon {
    width: 22px;
    height: 22px;
  }

  .button-slider {
    width: 52px;
    height: 52px;
    border-radius: 26px;
  }

  .button-slider svg {
    width: 20px;
    height: 18px;
  }

  .control-slider {
    gap: 24px;
  }

  .status-circle {
    width: 14px;
    height: 14px;
  }

  .status-circles {
    gap: 8px;
  }
}

@media (max-width: 370px) {
  .test-drive-section-title {
    font-size: 2.2rem;
  }

  .offer-card {
    padding: 16px 18px;
    min-height: 200px;
  }

  .offer-title {
    font-size: 24px;
  }

  .contact-form {
    padding: 16px 18px;
  }

  .form-title {
    font-size: 18px;
  }

  .button-text {
    font-size: 16px;
  }

  .portfolio-container {
    height: 280px;
  }

  .button-slider {
    width: 48px;
    height: 48px;
  }

  .control-slider {
    gap: 20px;
  }
}

.categories-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  padding: 0px;
  gap: 6px 8px;
  margin-bottom: 12px;
}

.category-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.category-item:hover .category-number,
.category-item:hover .category-text {
  color: #0c47a0;
}

.category-number {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  color: #939393;
  transition: color 0.3s;
}

.category-text {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #939393;
  transition: color 0.3s;
}

.category-item.active .category-number,
.category-item.active .category-text {
  color: #0c47a0;
}

@media (max-width: 630px) {
  .categories-wrapper {
    display: flex;
    margin-top: 5px;
  }
}

@media (min-width: 981px) and (max-width: 1170px) {
  .categories-wrapper {
    position: relative;
    top: -48px;
    margin-bottom: -34px;
  }
}

@media (min-width: 1170px) and (max-width: 1280px) {
  .categories-wrapper {
    position: relative;
    top: -44px;
    margin-bottom: -14px;
  }
}

@media (min-width: 1280px) and (max-width: 1660px) {
  .categories-wrapper {
    position: relative;
    top: -44px;
    margin-bottom: -14px;
  }

  .category-item {
    gap: 3px;
  }

  .categories-wrapper .category-item .category-text {
    font-size: 17.2px;
  }

  .categories-wrapper .category-item .category-number {
    margin-top: 0.9px;
    font-size: 12px;
  }
}

@media (min-width: 1660px) {
  .categories-wrapper {
    position: relative;
    top: -62px;
    margin-bottom: -21px;
    gap: 20px;
  }

  .category-item {
    gap: 5px;
  }

  .categories-wrapper .category-item .category-text {
    font-size: 22px;
  }

  .categories-wrapper .category-item .category-number {
    margin-top: -0.7px;
    font-size: 16px;
  }
}

.button-slider.active svg path {
  fill: #0c47a0;
}

.button-slider:not(.active) svg path {
  fill: #939393;
}

/* competitive niches section */
.competitive-niches-section {
  background-color: #ffffff;
  overflow: hidden;
}

.niches-header {
  margin-bottom: 60px;
  max-width: 800px;
}

.niches-main-title {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 1;
  color: #393939;
}

.niches-highlight {
  color: #0c47a0;
}

.niches-content {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  justify-content: space-between;
}

.niches-left {
  display: flex;
  flex-direction: column;
  gap: 250px;
}

.niches-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.niches-badge {
  font-size: 24px;
  max-width: 340px;
  font-weight: 500;
  color: #393939;
}

.niches-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 30px;
  gap: 18px;
  min-width: 370px;
}

.niches-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.niches-right {
  flex: 1;
  position: relative;
  min-height: 280px;
}

.niche-showcase {
  position: relative;
  width: 100%;
  height: 100%;
}

.niche-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0s 0.5s;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 21px;
}

.niche-content.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0s 0s;
  position: relative;
  z-index: 2;
}

.niche-content.leaving {
  opacity: 0;
  visibility: visible;
  transform: translateY(100%);
  position: absolute;
  z-index: 1;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0s 0s;
}

.niche-content.entering {
  transform: translateY(-100%);
  opacity: 0;
}

.niche-description {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #393939;
  max-width: 460px;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.niche-image-container {
  position: relative;
  width: 460px;
  height: 256px;
  overflow: hidden;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}

.niche-content.active .niche-image-container {
  transform: translateY(0);
  opacity: 1;
}

.niche-content:not(.active) .niche-image-container {
  transform: translateY(0);
  opacity: 1;
}

.niche-item {
  font-size: 18px;
  font-weight: 500;
  color: #939393;
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
  user-select: none;
}

.niche-item.active {
  color: #393939;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
}

.niche-image-back,
.niche-image-front {
  position: absolute;
  width: 434px;
  height: 229px;
  border-radius: 30px;
  object-fit: cover;
}

.niche-image-back {
  left: 26px;
  top: 27px;
  filter: brightness(0.65);
}

.niche-image-front {
  left: 0;
  top: 0;
}

@media (min-width: 980px) and (max-width: 1616px) {
  .niches-header {
    margin-bottom: 50px;
  }

  .niches-main-title {
    font-size: 2.4rem !important;
    max-width: 80%;
  }

  .niches-badge {
    font-size: 1.2rem;
    max-width: 280px;
  }

  .niches-content {
    gap: 60px;
  }

  .niches-left {
    gap: 190px;
  }

  .niches-list {
    min-width: 310px;
    margin-top: 10px;
  }

  .niche-item {
    font-size: 1rem;
  }

  .niche-item.active {
    font-size: 2rem;
  }

  .niche-description {
    font-size: 1rem;
    max-width: 380px;
  }

  .niche-image-container {
    width: 360px;
    height: 200px;
  }

  .niche-image-back,
  .niche-image-front {
    width: 340px;
    height: 180px;
    border-radius: 24px;
  }

  .niche-image-back {
    left: 20px;
    top: 20px;
  }
}

@media (min-width: 720px) and (max-width: 1150px) {
  .niches-header {
    margin-bottom: 40px;
  }

  .niches-main-title {
    font-size: 2.5rem;
  }

  .niches-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .niche-content {
    align-items: flex-start;
  }

  .niches-left {
    gap: 0;
    width: 100%;
  }

  .niches-badge {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .niches-list {
    align-items: flex-start;
    min-width: auto;
    width: 100%;
    margin-top: 10px;
  }

  .main-title-h1 {
    font-size: 40px !important;
  }

  .niches-items {
    align-items: flex-start;
    gap: 14px;
  }

  .niche-item {
    font-size: 0.95rem;
  }

  .niche-item.active {
    font-size: 2rem;
  }

  .niches-right {
    width: 100%;
    min-height: 320px;
  }

  .niche-description {
    font-size: 1rem;
  }

  .niche-image-container {
    width: 100%;
    max-width: 480px;
    height: 270px;
  }

  .niche-image-back,
  .niche-image-front {
    width: 100%;
    max-width: 460px;
    height: 245px;
    border-radius: 24px;
  }

  .niche-image-back {
    left: 20px;
    top: 25px;
  }
}

@media (min-width: 480px) and (max-width: 720px) {
  .niches-header {
    margin-bottom: 32px;
  }

  .niches-main-title {
    font-size: 2.2rem;
  }

  .niches-content {
    flex-direction: column;
    gap: 26px;
  }

  .niche-content {
    align-items: flex-start;
  }

  .niches-left {
    gap: 0;
  }

  .niches-badge {
    font-size: 1.1rem;
    max-width: 100%;
  }

  .niches-list {
    align-items: flex-start;
    min-width: auto;
    width: 100%;
    margin-top: 20px;
  }

  .niches-items {
    align-items: flex-start;
    gap: 10px;
  }

  .niche-item {
    font-size: 0.98rem;
  }

  .niche-item.active {
    font-size: 1.9rem;
  }

  .niches-right {
    width: 100%;
    min-height: 280px;
  }

  .niche-description {
    font-size: 1.1rem;
  }

  .niche-image-container {
    width: 100%;
    max-width: 100%;
    height: 240px;
  }

  .niche-image-back,
  .niche-image-front {
    width: calc(100% - 20px);
    height: 210px;
    border-radius: 20px;
  }

  .niche-image-back {
    left: 16px;
    top: 20px;
  }

  .niche-image-front {
    left: 0;
  }
}

@media (max-width: 480px) {
  .niches-header {
    margin-bottom: 28px;
  }

  .niches-main-title {
    font-size: 2.2rem;
    line-height: 110%;
  }

  .niches-content {
    flex-direction: column;
    gap: 28px;
  }

  .niches-left {
    gap: 0;
  }

  .niches-badge {
    font-size: 1rem;
    max-width: 100%;
    line-height: 120%;
    margin-bottom: 4px;
  }

  .niches-list {
    align-items: flex-end;
    min-width: auto;
    width: calc(100% - 100px);
    margin-top: 16px;
  }

  .niches-items {
    align-items: flex-end;
    gap: 10px;
  }

  .niche-item {
    font-size: 0.9rem;
  }

  .niche-item.active {
    font-size: 1.5rem;
    line-height: 110%;
  }

  .niches-right {
    width: 100%;
    min-height: 250px;
  }

  .niche-description {
    font-size: 0.9rem;
    max-width: 100%;
    line-height: 120%;
  }

  .niche-image-container {
    width: 100%;
    max-width: 100%;
    height: 200px;
  }

  .niche-image-back,
  .niche-image-front {
    width: calc(100% - 16px);
    height: 175px;
    border-radius: 18px;
  }

  .niche-image-back {
    left: 12px;
    top: 16px;
  }

  .niche-image-front {
    left: 0;
  }
}

@media (min-width: 1616px) {
  .niches-main-title {
    font-size: 50px;
    max-width: 800px;
  }

  .niches-header {
    max-width: 1200px;
    margin-bottom: 100px;
  }

  .niches-left {
    gap: 260px;
  }

  .niches-badge {
    font-size: 24px;
    max-width: 280px;
  }

  .niche-item {
    font-size: 20.2px;
  }

  .niche-item.active {
    font-size: 42.016px;
  }

  .niche-description {
    font-size: 20.2px;
    max-width: 515.504px;
  }

  .niche-image-container {
    width: 515.504px;
    height: 287.2448px;
  }

  .niche-image-back,
  .niche-image-front {
    width: 486.416px;
    height: 256.944px;
    border-radius: 26px;
  }

  .team-members-row {
    gap: 23px !important;
  }

  .category-links {
    gap: 6.4px;
  }

  .niches-content {
    gap: 80px;
  }

  .niches-list {
    min-width: 444px;
    min-height: 400px;
    margin-top: 15px;
  }

  .niche-image-back {
    left: 22px;
    top: 25px;
  }
}

/* business improvement section */
.business-improvement-section {
  overflow: hidden;
}

.business-improvement-frame {
  position: relative;
  width: 100%;
  min-width: 1312px;
  height: 543px;
  margin: 0 auto;
}

.business-improvement-frame .divider-line {
  position: absolute;
  width: 1298px;
  height: 0px;
  left: 13px;
  top: 431px;
  border: 2px solid #dcdcdc;
}

.process-header-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 20px;
  position: absolute;
  width: 1312px;
  height: 264px;
  left: 0px;
  top: 0px;
}

.main-title-h1 {
  width: 1312px;
  height: 148px;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 100%;
  color: #393939;
}

.header-text-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 434px;
  width: 1312px;
  height: 96px;
  order: 1;
}

.blue-badge {
  display: flex;
}

.blue-badge svg:nth-child(1) {
  margin-right: -9px;
}

.description-text-large {
  width: 677px;
  height: 96px;
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  color: #393939;
  order: 1;
}

.steps-container-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 107px;
  position: absolute;
  width: 1312px;
  left: 0px;
  top: 312px;
}

.step-card-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 255px;
}

.step-card-item.card-02 {
  order: 1;
}

.step-card-item.card-03 {
  order: 2;
}

.step-card-item.card-04 {
  order: 3;
}

.step-heading-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 255px;
  height: 76px;
}

.number-badge-circle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 19px 16px;
  gap: 10px;
  width: 77.21px;
  height: 76px;
  border: 1px solid #939393;
  border-radius: 38px;
}

.badge-number-text {
  width: 23px;
  height: 20px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #393939;
}

.step-title-h5 {
  width: 158px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #393939;
}

.step-title-h5.title-01 {
  height: 20px;
}

.step-title-h5.title-02,
.step-title-h5.title-03,
.step-title-h5.title-04 {
  height: 40px;
}

.step-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
  width: 255px;
  order: 1;
  flex-grow: 0;
}

.ellipse-indicator-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 5px;
  gap: 10px;
  margin-top: 2px;
  width: 26px;
  height: 26px;
  border-radius: 13px;
}

.ellipse-dot {
  width: 16px;
  height: 16px;
  background: #0c47a0;
  border-radius: 50%;
}

.step-description-text {
  width: 255px;
  font-size: 16px;
  line-height: 100%;
  color: #393939;
}

.step-description-text.desc-01 {
  background: linear-gradient(90deg, #434343 0%, #0d61de 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 980px) and (max-width: 1616px) {
  .main-title-h1 {
    font-size: 2.4rem !important;
  }
}

@media (max-width: 768px) {
  .business-improvement-frame {
    position: relative;
    width: 100%;
    min-width: auto;
    height: auto;
    margin: 0;
  }

  .business-improvement-frame .divider-line {
    display: none;
  }

  .steps-container-grid::before {
    content: '';
    position: absolute;
    width: calc(230px * 4 + 24px * 2);
    height: 0px;
    left: 2.1rem;
    bottom: 125px;
    border: 1.5px solid #dcdcdc;
    pointer-events: none;
    z-index: 0;
  }

  .steps-container-grid {
    position: relative;
    padding-bottom: 32px;
  }

  .process-header-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    gap: 24px;
    align-items: flex-start;
  }

  .main-title-h1 {
    width: 100%;
    height: auto;
    font-size: clamp(2.08rem, 2.08rem, 48px);
    line-height: 110%;
  }

  .header-text-container {
    flex-direction: column-reverse;
    gap: 20px;
    width: 100%;
    height: auto;
    align-items: flex-start;
  }

  .header-text-container:nth-child(2) {
    align-items: flex-end;
  }

  .blue-badge svg:nth-child(1) {
    margin-right: -7px;
  }

  .description-text-large {
    width: 100%;
    height: auto;
    font-size: clamp(13.3px, 4.1vw, 22px);
    line-height: 130%;
    order: 1;
  }

  .steps-container-grid {
    position: relative;
    width: calc(100% + 3.75rem);
    height: auto;
    left: 0;
    top: 0;
    scrollbar-width: none;
    margin-top: 32px;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0 1.875rem 16px 1.875rem;
    margin-left: -1.875rem;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
  }

  .steps-container-grid::-webkit-scrollbar {
    display: none;
  }

  .step-card-item {
    min-width: 240px;
    width: 240px;
    height: auto;
    gap: 20px;
    flex-shrink: 0;
  }

  .step-card-item.card-01,
  .step-card-item.card-02,
  .step-card-item.card-03,
  .step-card-item.card-04 {
    height: auto;
  }

  .business-improvement-section {
    padding: 70px 0;
  }

  .step-heading-wrapper {
    width: 100%;
    height: auto;
    gap: 12px;
  }

  .number-badge-circle {
    width: 56px;
    height: 56px;
    min-width: 56px;
    padding: 14px 12px;
    border-radius: 28px;
  }

  .badge-number-text {
    width: auto;
    height: auto;
    font-size: 16px;
  }

  .step-title-h5 {
    width: auto;
    flex: 1;
    font-size: 18px;
    line-height: 120%;
  }

  .step-title-h5.title-01,
  .step-title-h5.title-02,
  .step-title-h5.title-03,
  .step-title-h5.title-04 {
    height: auto;
  }

  .step-content-wrapper {
    width: 100%;
    height: auto;
    gap: 16px;
  }

  .step-content-wrapper.content-01,
  .step-content-wrapper.content-02,
  .step-content-wrapper.content-03,
  .step-content-wrapper.content-04 {
    height: auto;
  }

  .ellipse-indicator-container {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    padding: 3px;
    border-radius: 10px;
    margin-top: 0;
  }

  .ellipse-dot {
    width: 12px;
    height: 12px;
    z-index: 10;
  }

  .step-description-text {
    width: 100%;
    height: auto;
    font-size: 15px;
    line-height: 140%;
  }

  .step-description-text.desc-01,
  .step-description-text.desc-02,
  .step-description-text.desc-03,
  .step-description-text.desc-04 {
    height: auto;
  }
}

@media (min-width: 768px) and (max-width: 1120px) {
  .business-improvement-frame {
    position: relative;
    width: 100%;
    min-width: auto;
    height: auto;
    margin: 0;
  }

  .business-improvement-frame .divider-line {
    display: none;
  }

  .business-improvement-section {
    padding: 70px 0;
  }

  .steps-container-grid::before {
    content: '';
    position: absolute;
    width: calc(280px * 4 + 24px * 1.5);
    height: 0px;
    left: 2.1rem;
    bottom: 146px;
    border: 1.5px solid #dcdcdc;
    pointer-events: none;
    z-index: 0;
  }

  .steps-container-grid {
    position: relative;
    width: calc(100% + 3.75rem);
    height: auto;
    left: 0;
    top: 0;
    margin-top: 48px;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 1.875rem 16px 1.875rem;
    margin-left: -1.875rem;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
  }

  .process-header-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    gap: 32px;
    align-items: flex-start;
  }

  .main-title-h1 {
    width: 100%;
    height: auto;
    font-size: clamp(48px, 6vw, 64px);
    line-height: 110%;
  }

  .header-text-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    height: auto;
    align-items: flex-end;
  }

  .blue-badge svg:nth-child(1) {
    margin-right: -8px;
  }

  .description-text-large {
    width: 100%;
    max-width: 600px;
    height: auto;
    font-size: clamp(20px, 1.8vw, 28px);
    line-height: 120%;
    order: 0;
  }

  .steps-container-grid {
    position: relative;
    height: auto;
    left: 0;
    top: 0;
    margin-top: 48px;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 16px;
    flex-wrap: nowrap;
  }

  .steps-container-grid::-webkit-scrollbar {
    display: none;
  }

  .step-card-item {
    min-width: 280px;
    width: 280px;
    height: auto;
    gap: 24px;
    flex-shrink: 0;
  }

  .step-card-item.card-01,
  .step-card-item.card-02,
  .step-card-item.card-03,
  .step-card-item.card-04 {
    height: auto;
  }

  .step-heading-wrapper {
    width: 100%;
    height: auto;
    gap: 16px;
  }

  .number-badge-circle {
    width: 64px;
    height: 64px;
    min-width: 64px;
    padding: 16px 14px;
    border-radius: 32px;
  }

  .badge-number-text {
    width: auto;
    height: auto;
    font-size: 18px;
  }

  .step-title-h5 {
    width: auto;
    flex: 1;
    font-size: 18px;
    line-height: 120%;
  }

  .step-content-wrapper.content-01,
  .step-content-wrapper.content-02,
  .step-content-wrapper.content-03,
  .step-content-wrapper.content-04 {
    height: auto;
  }

  .ellipse-indicator-container {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    padding: 4px;
    border-radius: 12px;
    margin-top: 0;
  }

  .ellipse-dot {
    width: 14px;
    height: 14px;
    z-index: 10;
  }

  .step-description-text {
    width: 100%;
    height: auto;
    font-size: 15px;
    line-height: 140%;
  }

  .step-description-text.desc-01,
  .step-description-text.desc-02,
  .step-description-text.desc-03,
  .step-description-text.desc-04 {
    height: auto;
  }
}

@media (min-width: 1120px) {
  .header-text-container {
    justify-content: flex-end;
  }
}

@media (min-width: 1120px) and (max-width: 1616px) {
  .business-improvement-frame {
    min-width: 1100px;
    height: 475px;
  }

  .business-improvement-frame .divider-line {
    width: 1160px;
    left: 11px;
    top: 361px;
  }

  .process-header-wrapper {
    gap: 17px;
    width: 1100px;
    height: 221px;
  }

  .main-title-h1 {
    width: 1100px;
    height: 124px;
  }

  .business-improvement-section {
    padding: 90px 0;
  }

  .header-text-container {
    gap: 364px;
    width: 1100px;
    height: 80px;
  }

  .blue-badge svg:nth-child(1) {
    margin-right: -8px;
  }

  .description-text-large {
    width: 567px;
    height: 80px;
    font-size: 22px;
  }

  .steps-container-grid {
    gap: 110px;
    width: 1200px;
    top: 261px;
  }

  .step-card-item {
    gap: 25px;
    width: 214px;
  }

  .step-heading-wrapper {
    gap: 17px;
    width: 214px;
    height: 64px;
  }

  .number-badge-circle {
    padding: 16px 13px;
    width: 65px;
    height: 64px;
    border-radius: 32px;
  }

  .badge-number-text {
    width: 19px;
    height: 17px;
    font-size: 17px;
  }

  .step-title-h5 {
    width: 136px;
    font-size: 18px;
  }

  .step-title-h5.title-01 {
    height: 17px;
  }

  .step-title-h5.title-02,
  .step-title-h5.title-03,
  .step-title-h5.title-04 {
    height: 34px;
  }

  .step-content-wrapper {
    gap: 29px;
    width: 214px;
  }

  .ellipse-indicator-container {
    width: 22px;
    height: 22px;
    border-radius: 11px;
    margin-top: 2px;
  }

  .ellipse-dot {
    width: 13px;
    height: 13px;
  }

  .step-description-text {
    width: 214px;
    font-size: 14px;
  }
}

@media (min-width: 1616px) {
  .business-improvement-section {
    padding: 110px 0;
  }
}

/* pricing tarrifs section */
.pricing-tariffs-section {
  position: relative;
  width: 100%;
}

.pricing-section-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 65px;
}

.pricing-main-heading {
  font-family: 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  color: #393939;
  margin: 0;
}

.pricing-subtitle-text {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #393939;
  white-space: nowrap;
}

.pricing-cards-container-wrapper {
  position: relative;
  width: 100%;
  height: 676px;
}

.pricing-background-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 21px 25px 21px 37px;
  border-radius: 30px;
  isolation: isolate;
  overflow: hidden;
}

.pricing-background-image-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  z-index: 0;
}

.pricing-glassmorphism-card {
  position: absolute;
  left: 2.29%;
  top: 3.25%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 43px 120px 43px 21px;
  gap: 22px;
  background: rgba(88, 88, 88, 0.18);
  box-shadow:
    inset 0px 0px 34.0148px rgba(255, 255, 255, 0.05),
    inset 0px 2.26765px 2.26765px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(36.3611px);
  border-radius: 30px;
  z-index: 10;
}

.pricing-white-background {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 890px;
  height: 624px;
  margin: 22px 32px 0 22px;
  background: #ffffff;
  border-radius: 30px;
  z-index: 100;
}

.pricing-cards-flex-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  z-index: 200;
  margin-right: 30px;
}

.pricing-individual-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 264px;
  height: 538px;
}

.pricing-card-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 26px;
  width: 264px;
}

.pricing-card-header-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 25px;
  width: 264px;
}

.pricing-plan-name-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 12px;
}

.pricing-plan-icon-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 3px 6px;
  width: 37px;
  height: 37px;
  background: linear-gradient(90deg, #0c47a0 0%, #8fecfc 100%);
  border-radius: 11px;
  flex-shrink: 0;
}

.pricing-plan-icon-container.white-border {
  border: 1px solid #ffffff;
}

.pricing-plan-icon-image {
  width: 24px;
  height: 24px;
}

.pricing-plan-name-label {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #ffffff;
}

.pricing-plan-name-label.dark-text {
  color: #393939;
}

.pricing-card-details-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 12px;
  width: 264px;
}

.pricing-amount-display {
  width: 264px;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.pricing-amount-display.gray-text {
  color: #939393;
}

.pricing-description-paragraph {
  width: 264px;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.pricing-description-paragraph.dark-text {
  color: #393939;
}

.pricing-features-list-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 12px;
  width: 264px;
}

.pricing-feature-item-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 14px;
  width: 264px;
}

.pricing-feature-item-row svg {
  flex-shrink: 0;
}

.pricing-feature-text-label {
  flex: 1;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #ffffff;
}

.pricing-feature-text-label.dark-text {
  color: #393939;
}

.pricing-order-button-element {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  height: 36px;
  gap: 4px;
  background: #ffffff;
  border: 1px solid #393939;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-order-button-element:hover {
  background: #f5f5f5;
}

.pricing-order-button-element:focus {
  background: #ffffff;
  outline: none;
}

.pricing-order-button-element:focus:hover {
  background: #edecec;
}

.pricing-order-button-element:active {
  background: #f4f4f4;
}

.pricing-order-button-element::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(159, 159, 159, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s,
    opacity 0.6s;
  opacity: 0;
  z-index: 0;
}

.pricing-order-button-element:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.pricing-button-text-label {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #393939;
  text-align: center;
}

.pricing-order-button-element svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

@media (min-width: 1312px) {
  .pricing-tariffs-section {
    max-width: 100%;
  }

  .pricing-section-header {
    margin-bottom: 39px;
    align-items: flex-start;
  }

  .pricing-subtitle-text {
    font-size: 17.81px;
  }

  .pricing-cards-container-wrapper {
    height: 538.2px;
  }

  .pricing-background-container {
    padding: 20.8px 24.7px 20.8px 36.4px;
    border-radius: 29.9px;
  }

  .team-members-row {
    gap: 26px !important;
  }

  .pricing-background-image-element {
    border-radius: 29.9px;
    height: 538px;
  }

  .pricing-glassmorphism-card {
    padding: 29.9px 118.3px 28.08px 20.8px;
    gap: 22.1px;
    border-radius: 29.9px;
    top: 4%;
  }

  .pricing-white-background {
    width: 832px;
    height: 494px;
    margin: 22.1px 31.2px 0 22.1px;
    border-radius: 29.9px;
  }

  .pricing-cards-flex-container {
    gap: 2.6px;
    margin-right: 29.9px;
  }

  .pricing-individual-card {
    width: 261.3px;
    height: 438.1px;
  }

  .pricing-card-content-wrapper,
  .pricing-card-header-section,
  .pricing-card-details-section,
  .pricing-features-list-container,
  .pricing-feature-item-row {
    width: 100%;
  }

  .pricing-card-content-wrapper {
    gap: 26px;
  }

  .pricing-card-header-section {
    gap: 24.7px;
    min-height: 205px;
  }

  .pricing-plan-name-wrapper {
    gap: 11.7px;
  }

  .pricing-plan-icon-container {
    width: 36.4px;
    height: 36.4px;
    border-radius: 10.92px;
  }

  .pricing-plan-icon-image,
  .pricing-plan-icon-container svg {
    width: 23.4px;
    height: 23.4px;
  }

  .pricing-plan-name-label {
    font-size: 13.91px;
  }

  .pricing-card-details-section {
    gap: 11.7px;
  }

  .pricing-amount-display {
    font-size: 31.72px;
    line-height: 37.7px;
    width: 100%;
  }

  .pricing-description-paragraph {
    font-size: 13.91px;
    line-height: 15.86px;
    width: 100%;
  }

  .pricing-features-list-container {
    gap: 11.7px;
  }

  .pricing-feature-item-row {
    gap: 13.91px;
  }

  .pricing-feature-item-row svg {
    width: 10.92px;
    height: 10.92px;
  }

  .pricing-feature-text-label {
    font-size: 12.22px;
  }

  .pricing-order-button-element {
    padding: 5.98px 9.88px;
    height: 35.62px;
    gap: 3.9px;
    border-radius: 9px;
  }

  .pricing-button-text-label {
    font-size: 13.91px;
  }

  .pricing-order-button-element svg {
    width: 16.9px;
    height: 16.9px;
  }
}

@media (min-width: 968px) and (max-width: 1616px) {
  .pricing-card-header-section {
    min-height: 160px;
  }
}

@media (min-width: 968px) and (max-width: 1312px) {
  .pricing-tariffs-section {
    max-width: 100%;
  }

  .pricing-section-header {
    margin-bottom: 3vw;
    align-items: flex-start;
  }

  .pricing-main-heading {
    font-size: 38px;
  }

  .pricing-subtitle-text {
    font-size: 1.37vw;
  }

  .pricing-cards-container-wrapper {
    height: 41.4vw;
  }

  .pricing-background-container {
    padding: 1.6vw 1.9vw 1.6vw 2.8vw;
    border-radius: 2.3vw;
  }

  .pricing-background-image-element {
    border-radius: 2.3vw;
    height: 100vh;
  }

  .pricing-glassmorphism-card {
    padding: 2.3vw 9.1vw 2.16vw 1.6vw;
    gap: 1.7vw;
    border-radius: 2.3vw;
    top: 4%;
  }

  .pricing-white-background {
    width: 64vw;
    height: 38vw;
    margin: 1.7vw 2.4vw 0 1.7vw;
    border-radius: 2.3vw;
  }

  .pricing-cards-flex-container {
    gap: 0.2vw;
    margin-right: 2.3vw;
  }

  .pricing-individual-card {
    width: 20.1vw;
    height: 33.7vw;
  }

  .pricing-card-content-wrapper,
  .pricing-card-header-section,
  .pricing-card-details-section,
  .pricing-features-list-container,
  .pricing-feature-item-row {
    width: 100%;
  }

  .pricing-card-content-wrapper {
    gap: 2vw;
  }

  .pricing-card-header-section {
    gap: 1.9vw;
    min-height: 150px;
  }

  .pricing-plan-name-wrapper {
    gap: 0.9vw;
  }

  .pricing-plan-icon-container {
    width: 2.8vw;
    height: 2.8vw;
    border-radius: 0.84vw;
  }

  .pricing-plan-icon-image,
  .pricing-plan-icon-container svg {
    width: 1.8vw;
    height: 1.8vw;
  }

  .pricing-plan-name-label {
    font-size: 1.07vw;
  }

  .pricing-card-details-section {
    gap: 0.9vw;
  }

  .pricing-amount-display {
    font-size: 2.44vw;
    line-height: 2.9vw;
    width: 100%;
  }

  .pricing-description-paragraph {
    font-size: 1.07vw;
    line-height: 1.22vw;
    width: 100%;
  }

  .pricing-features-list-container {
    gap: 0.9vw;
  }

  .pricing-feature-item-row {
    gap: 1.07vw;
  }

  .pricing-feature-item-row svg {
    width: 0.84vw;
    height: 0.84vw;
  }

  .pricing-feature-text-label {
    font-size: 0.94vw;
  }

  .pricing-order-button-element {
    padding: 0.46vw 0.76vw;
    height: 2.74vw;
    gap: 0.3vw;
    border-radius: 9px;
  }

  .pricing-button-text-label {
    font-size: 1.07vw;
  }

  .pricing-order-button-element svg {
    width: 1.3vw;
    height: 1.3vw;
  }
}

@media (max-width: 968px) {
  .pricing-tariffs-section {
    overflow: hidden;
    padding: 0 0 70px 0;
  }

  .pricing-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
  }

  .pricing-main-heading {
    font-size: 28px;
  }

  .pricing-subtitle-text {
    font-size: 13px;
  }

  .pricing-cards-container-wrapper {
    height: auto;
    overflow-x: scroll;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0 calc(50vw - 50%);
  }

  .pricing-cards-container-wrapper::-webkit-scrollbar {
    display: none;
  }

  .pricing-background-container {
    position: relative;
    width: fit-content;
    height: auto;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background: transparent;
    gap: 15px;
    min-width: calc(100% + 100px);
  }

  .pricing-background-image-element {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 460px;
    object-fit: cover;
    border-radius: 33px;
    z-index: 0;
  }

  .pricing-glassmorphism-card {
    position: relative;
    left: auto;
    top: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 21px 25px;
    gap: 10px;
    flex-shrink: 0;
    width: 300px;
    height: 430px;
    border-radius: 33px;
    box-shadow: none;
    backdrop-filter: none;
    background: transparent;
    isolation: isolate;
    overflow: hidden;
  }

  .pricing-glassmorphism-card .pricing-individual-card {
    width: 284px;
    height: 517px;
    background: rgba(88, 88, 88, 0.18);
    box-shadow:
      inset 0px 0px 34.0148px rgba(255, 255, 255, 0.05),
      inset 0px 2.26765px 2.26765px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(36.3611px);
    border-radius: 30px;
    padding: 23px 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 10;
    position: relative;
  }

  .pricing-white-background {
    display: none;
  }

  .pricing-cards-flex-container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 24px;
    margin-right: 0;
    flex-wrap: nowrap;
    z-index: 200;
  }

  .pricing-cards-flex-container .pricing-individual-card {
    flex-shrink: 0;
    width: 284px;
    height: 595px;
    background: #efefef;
    box-shadow:
      inset 0px 0px 34.0148px rgba(255, 255, 255, 0.05),
      inset 0px 2.26765px 2.26765px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(36.3611px);
    border-radius: 30px;
    padding: 64px 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
  }

  .pricing-individual-card .pricing-card-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 242px;
    min-height: 335px;
  }

  .pricing-glassmorphism-card
    .pricing-individual-card
    .pricing-card-content-wrapper {
    width: 239px;
  }

  .pricing-card-content-wrapper {
    gap: 26px;
    padding: 0 18px 18px 18px;
  }

  .pricing-card-header-section {
    gap: 15px;
    width: 100%;
    min-height: 146px;
  }

  .pricing-card-details-section {
    gap: 12px;
    width: 100%;
  }

  .pricing-features-list-container {
    gap: 12px;
    width: 100%;
  }

  .pricing-feature-item-row {
    width: 100%;
  }

  .pricing-amount-display {
    width: 100%;
    font-size: 27px;
    line-height: 34px;
  }

  .pricing-description-paragraph {
    width: 100%;
    font-size: 12px;
    line-height: 15px;
  }

  .pricing-feature-text-label {
    font-size: 11px;
  }

  .pricing-order-button-element {
    width: 170px;
    height: 36px;
    padding: 16px 10px;
    border-radius: 9px;
  }

  .pricing-button-text-label {
    font-size: 11px;
  }

  .pricing-glassmorphism-card .pricing-individual-card,
  .pricing-cards-flex-container .pricing-individual-card {
    width: 240px;
    min-height: 416px;
  }

  .pricing-individual-card {
    max-height: 460px;
  }
}

@media (max-width: 768px) {
  .pricing-subtitle-text {
    font-size: 14px;
  }

  .pricing-glassmorphism-card {
    width: 300px;
  }

  .pricing-background-image-element {
    width: 300px;
  }

  .pricing-glassmorphism-card .pricing-individual-card,
  .pricing-cards-flex-container .pricing-individual-card {
    width: 260px;
  }

  .pricing-background-container {
    padding-right: 30px;
  }
}

@media (max-width: 768px) {
  .pricing-main-heading {
    width: 100%;
    height: auto;
    font-size: clamp(2.08rem, 2.08rem, 48px);
    line-height: 110%;
  }
}

@media (max-width: 1028px) {
  .pricing-subtitle-text {
    font-size: var(--font-size-sm);
  }
}

@media (min-width: 1028px) {
  .pricing-subtitle-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 1616px) {
  .test-drive-section {
    padding: 90px 0;
  }
}

@media (max-width: 630px) {
  .pricing-main-heading {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    max-width: 400px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .pricing-main-heading::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }
}

@media (min-width: 1280px) {
  .pricing-main-heading {
    font-size: 2.4rem;
  }

  .pricing-section-header {
    margin-bottom: 45px;
  }
}

@media (max-width: 1616px) {
  .pricing-tariffs-section {
    max-width: 100%;
    padding: 0 0 90px 0;
  }

  .servicecard-title-heading {
    font-size: 22px !important;
  }
}

@media (max-width: 1028px) {
  .pricing-tariffs-section {
    max-width: 100%;
  }
}

@media (min-width: 1616px) {
  .pricing-tariffs-section {
    max-width: 100%;
    padding: 0 0 110px 0;
  }

  .medium-card-text p:nth-child(2) {
    font-size: 14.72px;
  }

  .pricing-section-header {
    margin-bottom: 50px;
    align-items: flex-start;
    margin-top: 20px;
  }

  .pricing-main-heading {
    font-size: 50px;
    line-height: 100%;
  }

  .pricing-subtitle-text {
    font-size: 22px;
  }

  .pricing-cards-container-wrapper {
    height: 720px;
  }

  .pricing-background-container {
    padding: 27px 32px 27px 48px;
    border-radius: 38px;
  }

  .pricing-background-image-element {
    border-radius: 38px;
    height: 730px;
  }

  .pricing-glassmorphism-card {
    padding: 55px 150px 61px 27px;
    gap: 28px;
    border-radius: 38px;
    top: 4%;
    left: 2.29%;
  }

  .pricing-white-background {
    width: 1080px;
    height: 670px;
    margin: 28px 40px 0 28px;
    border-radius: 38px;
  }

  .pricing-cards-flex-container {
    gap: 15px;
    margin-right: 38px;
  }

  .pricing-individual-card {
    width: 328px;
    height: 552px;
  }

  .pricing-card-content-wrapper,
  .pricing-card-header-section,
  .pricing-card-details-section,
  .pricing-features-list-container,
  .pricing-feature-item-row {
    width: 100%;
  }

  .pricing-card-content-wrapper {
    gap: 33px;
  }

  .pricing-card-header-section {
    gap: 32px;
  }

  .pricing-plan-name-wrapper {
    gap: 15px;
  }

  .pricing-plan-icon-container {
    width: 47px;
    height: 47px;
    border-radius: 14px;
    padding: 4px 8px;
  }

  .pricing-plan-icon-image,
  .pricing-plan-icon-container svg {
    width: 30px;
    height: 30px;
  }

  .pricing-plan-name-label {
    font-size: 18px;
    line-height: 100%;
  }

  .pricing-card-details-section {
    gap: 15px;
  }

  .pricing-amount-display {
    font-size: 40px;
    line-height: 48px;
  }

  .pricing-description-paragraph {
    font-size: 18px;
    line-height: 20px;
  }

  .pricing-features-list-container {
    gap: 15px;
  }

  .pricing-feature-item-row {
    gap: 18px;
  }

  .pricing-feature-item-row svg {
    width: 14px;
    height: 14px;
  }

  .pricing-feature-text-label {
    font-size: 18px;
    line-height: 100%;
  }

  .pricing-order-button-element {
    padding: 8px 13px;
    height: 45px;
    gap: 5px;
    border-radius: 11px;
  }

  .pricing-button-text-label {
    font-size: 18px;
    line-height: 150%;
  }

  .pricing-order-button-element svg {
    width: 21px;
    height: 19px;
  }
}

.servicecard-content-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 20px;
}

.servicecard-textblock-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 15px;
}

@media (min-width: 1400px) and (max-width: 1616px) {
  .servicecard-title-heading {
    white-space: normal;
    word-wrap: break-word;
    max-width: 175px !important;
    line-height: 1.3;
  }
}

.servicecard-body-info-wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 20px;
}

.servicecard-price-text {
  margin-top: auto;
}

.servicecard-cta-button {
  margin-top: auto;
}

/* contact form section */
.contact-engagement-form {
  position: relative;
  width: 100%;
  height: 839px;
  overflow: hidden;
}

.background-image {
  position: absolute;
  width: 120%;
  height: 120%;
  object-fit: cover;
  top: 0;
  left: -7%;
  transform: scaleX(-1) scaleY(-1);
  object-position: 10% 40%;
}

.dark-overlay {
  position: absolute;
  width: 561px;
  height: 100%;
  left: 0;
  top: 0;
  background: #13233b;
  z-index: 1;
}

.form-container-wrapper {
  position: relative;
  z-index: 2;
}

.form-header-section {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 388px;
  left: 73px;
  top: 178px;
}

.form-main-title {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  color: #ffffff;
}

.form-description-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #ffffff;
}

.form-fields-section {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 412px;
  left: 73px;
  top: 373px;
}

.contact-inputs-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-field-wrapper.phone,
.input-field-wrapper.email {
  gap: 5px;
}

.field-label {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #ffffff;
}

.text-input {
  width: 100%;
  height: 36px;
  padding: 23px 21px;
  background: #ffffff;
  box-shadow:
    inset 0px 0px 34px rgba(255, 255, 255, 0.05),
    inset 0px 2px 2px rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  border: none;
  font-size: 16px;
}

.text-input:focus {
  outline: none;
  box-shadow:
    inset 0px 0px 34px rgba(255, 255, 255, 0.08),
    inset 0px 2px 2px rgba(255, 255, 255, 0.2);
}

.submit-action-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 36px;
  padding: 6px 10px;
  background: linear-gradient(90deg, #005bc6 0%, #7ed6ff 100%);
  border-radius: 8px;
  border: none;
  transition: opacity 0.3s;
  cursor: pointer;
}

.submit-action-btn:hover {
  opacity: 0.85;
}

.submit-btn-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
}

.submit-btn-icon {
  width: 30px;
  height: 30px;
}

.btn-secondary {
  text-decoration: none;
  color: #393939;
}

@media (min-width: 980px) and (max-width: 1616px) {
  .contact-engagement-form {
    height: 600px;
  }

  .background-image {
    object-position: 15% 40%;
  }

  .dark-overlay {
    width: 480px;
  }

  .form-header-section {
    width: 340px;
    left: 60px;
    top: 90px;
    gap: 20px;
  }

  .form-main-title {
    font-size: 36px;
  }

  .form-description-text {
    font-size: 16px;
    line-height: 110%;
  }

  .form-fields-section {
    width: 360px;
    left: 60px;
    top: 240px;
    gap: 20px;
  }

  .field-label {
    font-size: 16px;
  }

  .text-input {
    height: 34px;
    font-size: 14px;
    padding: 20px 18px;
  }

  .submit-action-btn {
    height: 34px;
  }

  .submit-btn-text {
    font-size: 18px;
  }

  .submit-btn-icon {
    width: 26px;
    height: 26px;
  }
}

@media (min-width: 720px) and (max-width: 980px) {
  .contact-engagement-form {
    height: 600px;
  }

  .background-image {
    object-position: 20% 40%;
  }

  .dark-overlay {
    width: 420px;
  }

  .form-header-section {
    width: 310px;
    left: 50px;
    top: 120px;
    gap: 18px;
  }

  .form-main-title {
    font-size: 38px;
  }

  .form-description-text {
    font-size: 15px;
    line-height: 110%;
  }

  .form-fields-section {
    width: 320px;
    left: 50px;
    top: 260px;
    gap: 18px;
  }

  .header-container .slider-controls {
    display: none;
  }

  .testimonials-frame::after {
    display: none;
  }

  .contact-inputs-group {
    gap: 10px;
  }

  .field-label {
    font-size: 15px;
  }

  .text-input {
    height: 32px;
    font-size: 13px;
    padding: 18px 16px;
    border-radius: 6px;
  }

  .submit-action-btn {
    height: 32px;
    border-radius: 6px;
  }

  .submit-btn-text {
    font-size: 16px;
  }

  .submit-btn-icon {
    width: 22px;
    height: 22px;
  }
}

@media (min-width: 480px) and (max-width: 720px) {
  .contact-engagement-form {
    height: auto;
    min-height: 500px;
    padding: 40px 0;
    overflow: visible;
    margin-bottom: 50px;
  }

  .background-image {
    width: 100%;
    height: 130%;
    left: 0;
    top: -20%;
    object-fit: cover;
    object-position: center center;
    transform: scaleX(-1) scaleY(-1);
  }

  .dark-overlay {
    width: 100%;
    height: 90%;
    background: #13233b;
  }

  .form-header-section {
    position: relative;
    width: 100%;
    max-width: 400px;
    left: 0;
    top: 0;
    margin: 0 auto 30px;
    padding: 0 30px;
    gap: 16px;
  }

  .header-container .slider-controls {
    display: none;
  }

  .form-main-title {
    font-size: 34px;
    line-height: 110%;
  }

  .form-description-text {
    font-size: 15px;
    line-height: 120%;
  }

  .form-description-text br {
    display: none;
  }

  .form-fields-section {
    position: relative;
    width: 100%;
    max-width: 400px;
    left: 0;
    top: 0;
    margin: 0 auto;
    padding: 0 30px;
    gap: 16px;
  }

  .contact-inputs-group {
    gap: 10px;
  }

  .input-field-wrapper {
    gap: 6px;
  }

  .field-label {
    font-size: 15px;
  }

  .text-input {
    height: 32px;
    font-size: 13px;
    padding: 16px 14px;
    border-radius: 6px;
  }

  .submit-action-btn {
    height: 32px;
    border-radius: 6px;
  }

  .submit-btn-text {
    font-size: 16px;
  }

  .submit-btn-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .contact-engagement-form {
    height: auto;
    min-height: 480px;
    padding: 32px 0;
    overflow: visible;
  }

  .background-image {
    width: 100%;
    height: 120%;
    left: 0;
    top: -22%;
    object-fit: cover;
    object-position: center center;
    transform: scaleX(-1) scaleY(-1);
  }

  .dark-overlay {
    width: 100%;
    height: 80%;
    background: #13233b;
  }

  .form-header-section {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    margin: 0 auto 24px;
    padding: 0 20px;
    gap: 14px;
  }

  .form-main-title {
    font-size: 30px;
    line-height: 110%;
  }

  .form-description-text {
    font-size: 13px;
    line-height: 120%;
  }

  .header-container .slider-controls {
    display: none;
  }

  .form-description-text br {
    display: none;
  }

  .form-fields-section {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    margin: 0 auto;
    padding: 0 20px;
    gap: 16px;
  }

  .contact-inputs-group {
    gap: 8px;
  }

  .input-field-wrapper {
    gap: 5px;
  }

  .input-field-wrapper.phone,
  .input-field-wrapper.email {
    gap: 4px;
  }

  .field-label {
    font-size: 13px;
  }

  .text-input {
    height: 30px;
    font-size: 12px;
    padding: 14px 12px;
    border-radius: 6px;
  }

  .submit-action-btn {
    height: 30px;
    border-radius: 6px;
    gap: 6px;
  }

  .submit-btn-text {
    font-size: 14px;
  }

  .submit-btn-icon {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 1616px) {
  .contact-engagement-form {
    height: 775.68px;
  }

  .dark-overlay {
    width: 629.5936px;
  }

  .form-header-section {
    width: 435.3504px;
    left: 81.9312px;
    top: 129.28px;
    gap: 26.9872px;
  }

  .form-main-title {
    font-size: 50px;
  }

  .form-description-text {
    font-size: 21.008px;
  }

  .form-fields-section {
    width: 462.2576px;
    left: 81.9312px;
    top: 307.04px;
    gap: 26.9872px;
  }

  .contact-inputs-group {
    gap: 13.4128px;
  }

  .input-field-wrapper {
    gap: 9.0496px;
  }

  .input-field-wrapper.phone,
  .input-field-wrapper.email {
    gap: 5.656px;
  }

  .field-label {
    font-size: 20.2px;
  }

  .text-input {
    height: 40.4px;
    padding: 25.856px 23.5936px;
    font-size: 17.9376px;
    border-radius: 9.0496px;
  }

  .submit-action-btn {
    height: 40.4px;
    padding: 6.7872px 11.1504px;
    gap: 9.0496px;
    border-radius: 9.0496px;
  }

  .submit-btn-text {
    font-size: 22.4624px;
  }

  .submit-btn-icon {
    width: 33.6128px;
    height: 33.6128px;
  }
}

/* testimonials section */
.testimonials-section {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  padding: 110px 0;
}

.testimonials-frame {
  position: relative;
  height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 359px;
  position: relative;
  width: 100%;
  max-width: 1311px;
  height: auto;
  left: 0;
  margin-bottom: 60px;
}

.section-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
  max-width: 822px;
  height: auto;
}

.heading-subtitle {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.16em;
  font-variant: small-caps;
  color: #393939;
}

.heading-title {
  width: 100%;
  height: auto;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 100%;
  color: #393939;
  order: 1;
  flex-grow: 0;
}

.testimonials-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 27px;
  position: relative;
  width: 100%;
  max-width: 1314px;
  height: auto;
  min-height: 676px;
  left: 0;
  top: 0;
  overflow: visible;
}

.review-card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 15px;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
  width: calc((100% - 54px) / 3);
  height: auto;
  min-height: 676px;
  background: #f4f4f4;
  border-radius: 30px;
  transition: none;
}

.review-card:nth-child(1) {
  order: 0;
}

.review-card:nth-child(2) {
  order: 1;
}

.review-card:nth-child(3) {
  order: 2;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 96px;
  width: 100%;
  max-width: 373px;
  height: 100%;
}

.user-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: auto;
}

.avatar-image {
  width: 83px;
  height: 83px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 0.4px;
  flex-shrink: 0;
}

.company-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  min-width: 100px;
  height: 75px;
  border: 1px solid #939393;
  border-radius: 58px;
  order: 1;
  flex-shrink: 0;
}

.company-logo {
  height: 26px;
}

.quote-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  order: 1;
  flex-grow: 1;
}

.quote-mark-wrapper {
  width: 41px;
  height: 45px;
  position: relative;
  flex-shrink: 0;
}

.quote-text {
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  color: #393939;
  order: 1;
  flex-grow: 0;
}

.slider-controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  width: 131px;
  height: 61px;
  order: 1;
  flex-grow: 0;
}

.button-prev,
.button-next {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5px 6px;
  gap: 10px;
  width: 52px;
  height: 52px;
  background: #0c47a0;
  border-radius: 38.5px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.button-prev svg path,
.button-next svg path {
  fill: #a5c6f6;
  transition: fill 0.3s ease;
}

.button-prev.active svg path,
.button-next.active svg path {
  fill: white;
}

.button-prev svg,
.button-next svg {
  width: 24px;
  height: 24px;
}

.button-prev {
  order: 0;
}

.button-next {
  order: 1;
}

.arrow-icon {
  width: 38px;
  height: 38px;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}

.button-prev .arrow-icon {
  transform: rotate(-90deg);
}

.arrow-icon path {
  fill: #a5c6f6;
  transition: fill 0.3s ease;
}

.button-next .arrow-icon path {
  fill: white;
}

.button-prev.active .arrow-icon path,
.button-next.active .arrow-icon path {
  fill: white;
}

.button-prev:not(.active) .arrow-icon path {
  fill: #a5c6f6;
}

.author-divider {
  display: flex;
  flex-direction: row;
  position: relative;
  align-items: center;
  gap: 13px;
  width: 100%;
  height: auto;
  order: 2;
  flex-grow: 0;
  margin-top: auto;
}

.author-divider .divider-line {
  position: absolute;
  width: 77px;
  height: 0;
  border: 2px solid #dcdcdc;
  transform: rotate(90deg);
  top: 37px;
  left: -38px;
}

.author-info-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  margin-left: 16px;
  height: auto;
  order: 1;
  flex-grow: 1;
}

.author-name {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #393939;
}

.author-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  height: auto;
  order: 1;
  flex-grow: 0;
}

.author-role,
.author-project {
  width: 100%;
  height: auto;
  font-size: 14px;
  line-height: 100%;
  color: #393939;
}

.author-role {
  order: 0;
}

.author-project {
  order: 1;
}

.slider-controls-mobile {
  display: none;
}

@media (min-width: 980px) and (max-width: 1616px) {
  .testimonials-section {
    padding: 90px 0;
  }

  .testimonials-frame {
    height: auto;
  }

  .header-container {
    gap: 100px;
    width: 100%;
    height: auto;
    position: relative;
    overflow: visible;
    margin-bottom: 40px;
  }

  .section-text {
    width: auto;
    max-width: 500px;
    height: auto;
  }

  .heading-subtitle {
    width: 100%;
    height: auto;
    font-size: 16px;
  }

  .heading-title {
    width: 100%;
    height: auto;
    font-size: 2.4rem;
  }

  .testimonials-grid {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 460px;
    top: 0;
    left: 0;
  }

  .review-card {
    height: auto;
    min-height: 460px;
    padding: 26px 14px;
    border-radius: 26px;
  }

  .testimonial-content {
    max-width: 100%;
    height: 100%;
    gap: 60px;
    justify-content: flex-start;
  }

  .user-header {
    width: 100%;
    height: auto;
    gap: 40px;
  }

  .avatar-image {
    width: 70px;
    height: 70px;
  }

  .company-badge {
    min-width: 100px;
    height: 64px;
    padding: 8px 14px;
    border-radius: 50px;
  }

  .company-logo {
    height: 22px;
  }

  .quote-container {
    width: 100%;
    gap: 5px;
  }

  .section-text {
    gap: 14px;
  }

  .quote-mark-wrapper {
    width: 35px;
    height: 30px;
  }

  .quote-mark-wrapper svg {
    width: 28px;
    height: 18px;
  }

  .quote-text {
    width: 100%;
    font-size: 27px;
  }

  .author-divider {
    width: 100%;
    height: auto;
    gap: 12px;
    margin-top: auto;
  }

  .author-divider .divider-line {
    width: 64px;
    top: 32px;
    left: -32px;
  }

  .author-info-container {
    width: 100%;
    height: auto;
    gap: 8px;
    margin-left: 14px;
  }

  .author-name {
    width: 100%;
    height: auto;
    font-size: 18px;
  }

  .author-details {
    width: 100%;
    height: auto;
    gap: 3px;
  }

  .author-role,
  .author-project {
    width: 100%;
    height: auto;
    font-size: 13px;
    line-height: 110%;
  }
}

@media (min-width: 720px) and (max-width: 980px) {
  .testimonials-section {
    padding: 70px 0;
  }

  .testimonials-frame {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .header-container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 28px;
    order: 0;
  }

  .section-text {
    width: 100%;
    height: auto;
    gap: 16px;
  }

  .heading-subtitle {
    width: 100%;
    height: auto;
    font-size: 15px;
  }

  .heading-title {
    width: 100%;
    height: auto;
    font-size: 2.2rem;
  }

  .testimonials-grid {
    position: relative;
    width: 100%;
    height: auto;
    min-height: auto;
    top: 0;
    left: 0;
    gap: 0;
    order: 1;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: visible;
  }

  .testimonials-grid-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 100%;
    min-width: 100%;
  }

  .review-card {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 20px 16px;
    border-radius: 20px;
  }

  .testimonial-content {
    max-width: 100%;
    height: auto;
    gap: 20px;
  }

  .quote-mark-wrapper {
    margin-bottom: -16px;
  }

  .user-header {
    width: 100%;
    height: auto;
    gap: 30px;
  }

  .avatar-image {
    width: 58px;
    height: 58px;
  }

  .company-badge {
    min-width: 90px;
    height: 52px;
    padding: 7px 10px;
    border-radius: 40px;
  }

  .company-logo {
    height: 18px;
  }

  .quote-container {
    width: 100%;
    gap: 4px;
  }

  .quote-mark-wrapper {
    width: 28px;
    height: 42px;
  }

  .quote-mark-wrapper svg {
    width: 23px;
    height: 14px;
  }

  .quote-text {
    width: 100%;
    font-size: 22px;
    line-height: 110%;
  }

  .author-divider {
    width: 100%;
    height: auto;
    gap: 8px;
  }

  .author-divider .divider-line {
    width: 52px;
    top: 26px;
    left: -26px;
  }

  .author-info-container {
    width: 100%;
    height: auto;
    gap: 6px;
    margin-left: 10px;
  }

  .author-name {
    width: 100%;
    height: auto;
    font-size: 16px;
  }

  .author-details {
    width: 100%;
    height: auto;
    gap: 2px;
  }

  .author-role,
  .author-project {
    width: 100%;
    height: auto;
    font-size: 12px;
    line-height: 115%;
  }

  .slider-controls {
    display: none;
  }

  .slider-controls-mobile {
    display: flex;
    position: relative;
    width: 138px;
    height: 52px;
    gap: 6px;
    margin: 32px auto 0;
    order: 10;
  }

  .button-prev,
  .button-next {
    width: 52px;
    height: 52px;
  }
}

@media (min-width: 480px) and (max-width: 720px) {
  .testimonials-section {
    padding: 70px 0;
  }

  .testimonials-frame {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .header-container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 28px;
    order: 0;
  }

  .section-text {
    width: 100%;
    height: auto;
    gap: 16px;
  }

  .heading-subtitle {
    width: 100%;
    height: auto;
    font-size: 15px;
  }

  .heading-title {
    width: 100%;
    height: auto;
    font-size: 2.2rem;
  }

  .testimonials-grid {
    position: relative;
    width: 100%;
    height: auto;
    min-height: auto;
    top: 0;
    left: 0;
    gap: 0;
    order: 1;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: visible;
  }

  .testimonials-grid-column {
    display: flex;
    flex-direction: column;
    gap: 19.5px;
    flex: 0 0 100%;
    min-width: 100%;
  }

  .review-card {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 20px 16px;
    border-radius: 20px;
  }

  .testimonial-content {
    max-width: 100%;
    height: auto;
    gap: 20px;
  }

  .quote-mark-wrapper {
    margin-bottom: -16px;
  }

  .user-header {
    width: 100%;
    height: auto;
    gap: 30px;
  }

  .avatar-image {
    width: 58px;
    height: 58px;
  }

  .company-badge {
    min-width: 90px;
    height: 52px;
    padding: 7px 10px;
    border-radius: 40px;
  }

  .company-logo {
    height: 18px;
  }

  .quote-container {
    width: 100%;
    gap: 4px;
  }

  .quote-mark-wrapper {
    width: 28px;
    height: 42px;
  }

  .quote-mark-wrapper svg {
    width: 23px;
    height: 14px;
  }

  .quote-text {
    width: 100%;
    font-size: 22px;
    line-height: 110%;
  }

  .author-divider {
    width: 100%;
    height: auto;
    gap: 8px;
  }

  .author-divider .divider-line {
    width: 52px;
    top: 26px;
    left: -26px;
  }

  .author-info-container {
    width: 100%;
    height: auto;
    gap: 6px;
    margin-left: 10px;
  }

  .author-name {
    width: 100%;
    height: auto;
    font-size: 16px;
  }

  .author-details {
    width: 100%;
    height: auto;
    gap: 2px;
  }

  .author-role,
  .author-project {
    width: 100%;
    height: auto;
    font-size: 12px;
    line-height: 115%;
  }

  .slider-controls {
    display: none;
  }

  .slider-controls-mobile {
    display: flex;
    position: relative;
    width: 128px;
    height: 52px;
    gap: 4px;
    margin: 28px auto 0;
    order: 10;
  }

  .button-prev,
  .button-next {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 70px 0;
  }

  .testimonials-frame {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .header-container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 24px;
    order: 0;
  }

  .section-text {
    width: 100%;
    height: auto;
    gap: 14px;
  }

  .heading-subtitle {
    width: 100%;
    height: auto;
    font-size: 15px;
  }

  .heading-title {
    width: 100%;
    height: auto;
    font-size: 2.2rem;
    line-height: 110%;
  }

  .company-badge svg {
    width: 50px;
  }

  .testimonials-grid {
    position: relative;
    width: 100%;
    height: auto;
    min-height: auto;
    top: 0;
    left: 0;
    gap: 0;
    order: 1;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: visible;
  }

  .testimonials-grid-column {
    display: flex;
    flex-direction: column;
    gap: 19.7px;
    flex: 0 0 100%;
    min-width: 100%;
  }

  .review-card {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 18px 14px;
    border-radius: 18px;
  }

  .testimonial-content {
    max-width: 100%;
    height: auto;
    gap: 20px;
  }

  .quote-mark-wrapper {
    margin-bottom: -16px;
  }

  .user-header {
    width: 100%;
    height: auto;
    gap: 24px;
  }

  .avatar-image {
    width: 44px;
    height: 44px;
  }

  .company-badge {
    min-width: 80px;
    height: 44px;
    padding: 6px 9px;
    border-radius: 35px;
  }

  .company-logo {
    height: 16px;
  }

  .quote-container {
    width: 100%;
    gap: 4px;
  }

  .quote-mark-wrapper {
    width: 25px;
    height: 38px;
  }

  .quote-mark-wrapper svg {
    width: 20px;
    height: 13px;
  }

  .quote-text {
    width: 100%;
    font-size: 19px;
    line-height: 115%;
  }

  .author-divider {
    width: 100%;
    height: auto;
    gap: 8px;
  }

  .author-divider .divider-line {
    width: 46px;
    top: 23px;
    left: -23px;
  }

  .author-info-container {
    width: 100%;
    height: auto;
    gap: 5px;
    margin-left: 8px;
  }

  .author-name {
    width: 100%;
    height: auto;
    font-size: 15px;
    line-height: 110%;
  }

  .author-details {
    width: 100%;
    height: auto;
    gap: 2px;
  }

  .author-role,
  .author-project {
    width: 100%;
    height: auto;
    font-size: 10px;
    line-height: 120%;
  }

  .slider-controls {
    display: none;
  }

  .slider-controls-mobile {
    display: flex;
    position: relative;
    width: 108px;
    height: 48px;
    gap: 4px;
    margin: 24px auto 0;
    order: 10;
  }

  .button-prev,
  .button-next {
    width: 48px;
    height: 48px;
  }

  .button-prev svg,
  .button-next svg {
    width: 22px;
    height: 22px;
  }
}

@media (min-width: 1616px) {
  .testimonials-section {
    padding: 110px 0;
  }

  .testimonials-frame {
    height: auto;
  }

  .header-container {
    gap: 161.6px;
    width: 100%;
    max-width: 1583.68px;
    height: auto;
    margin-bottom: 60px;
  }

  .section-text {
    width: 100%;
    max-width: 917.888px;
    height: auto;
    gap: 16.16px;
  }

  .heading-subtitle {
    width: 100%;
    height: auto;
    font-size: 21px;
  }

  .heading-title {
    width: 100%;
    height: auto;
    font-size: 50px;
  }

  .testimonials-grid {
    width: 100%;
    max-width: 1512px;
    height: auto;
    min-height: 549.44px;
    top: 0;
  }

  .review-card {
    height: auto;
    min-height: 517.12px;
    padding: 33.4512px 16.8064px;
    border-radius: 33.4512px;
  }

  .testimonial-content {
    max-width: 100%;
    height: 100%;
    gap: 67.872px;
  }

  .user-header {
    width: 100%;
    height: auto;
    gap: 48.48px;
  }

  .avatar-image {
    width: 80.8px;
    height: 80.8px;
  }

  .company-badge {
    min-width: 105.04px;
    height: 83.6928px;
    padding: 11.1504px 17.9376px;
    border-radius: 64.8016px;
  }

  .company-logo {
    height: 29.088px;
  }

  .quote-container {
    width: 100%;
    gap: 6.6256px;
  }

  .quote-mark-wrapper {
    width: 45.7328px;
  }

  .quote-text {
    width: 100%;
    font-size: 32px;
  }

  .author-divider {
    width: 100%;
    height: auto;
    gap: 14.544px;
  }

  .author-divider .divider-line {
    width: 85.9712px;
    top: 41.3696px;
    left: -42.4208px;
  }

  .author-info-container {
    width: 100%;
    margin-left: 17.9376px;
    height: auto;
    gap: 11.1504px;
  }

  .author-name {
    width: 100%;
    height: auto;
    font-size: 22.2848px;
  }

  .author-details {
    width: 100%;
    height: auto;
    gap: 4.5248px;
  }

  .author-role,
  .author-project {
    width: 100%;
    height: auto;
    font-size: 15.6752px;
  }

  .slider-controls {
    width: 146.248px;
    height: 68.0336px;
    gap: 7.7568px;
  }

  .button-prev,
  .button-next {
    width: 62px;
    height: 62px;
  }

  .button-prev svg,
  .button-next svg {
    width: 30px;
    height: 30px;
  }
}

/* portfolio section */
.portfolio-section-wrapper {
  position: relative;
}

.portfolio-main-frame {
  position: relative;
}

.portfolio-header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 113px;
  margin-bottom: 54px;
}

.portfolio-main-heading {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 100%;
  color: #393939;
  width: 402px;
}

.portfolio-description-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  background: linear-gradient(90deg, #434343 0%, #4258be 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 359px;
}

.portfolio-action-buttons-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 220px;
}

.portfolio-btn-primary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  width: 210px;
  text-decoration: none;
  height: 34px;
  background: #0c47a0;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  gap: 2px;
  transition: background var(--transition-base);
  position: relative;
  overflow: hidden;
}

.portfolio-btn-primary:hover {
  background: #223aa6;
}

.portfolio-btn-primary:focus {
  background: #0c47a0;
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.portfolio-btn-primary:focus:hover {
  background: #223aa6;
}

.portfolio-btn-primary:active {
  background: #7a8ad1;
}

.portfolio-btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.4s,
    height 0.4s,
    opacity 0.4s;
  opacity: 0;
}

.portfolio-btn-primary:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.portfolio-btn-primary-text {
  font-size: 14px;
  line-height: 150%;
  text-decoration: none;
  color: #ffffff;
}

.portfolio-btn-arrow-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-btn-arrow-icon svg {
  width: 100%;
  height: 100%;
  fill: #ffffff;
}

.portfolio-grid-wrapper {
  overflow: visible;
  position: relative;
}

.portfolio-grid-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 27px;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 1.5rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.portfolio-grid-container::-webkit-scrollbar {
  display: none;
}

@media (max-width: 480px) {
  .portfolio-grid-container {
    gap: 20px;
    padding: 0 1.5rem;
    margin-left: -1.5rem;
    margin-right: -1.2rem;
  }
}

@media (min-width: 480px) and (max-width: 980px) {
  .portfolio-grid-container {
    margin-left: -1.875rem;
    margin-right: -1.875rem;
    padding: 0 1.875rem;
  }
}

@media (min-width: 980px) and (max-width: 1080px) {
  .portfolio-grid-container {
    margin-left: -1.875rem;
    margin-right: -1.875rem;
    padding: 0 1.875rem;
  }
}

@media (min-width: 1080px) and (max-width: 1616px) {
  .portfolio-grid-container {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    overflow: hidden;
  }

  .portfolio-grid-wrapper {
    overflow: hidden;
  }
}

@media (min-width: 1616px) {
  .portfolio-grid-container {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
  }

  .portfolio-grid-wrapper {
    overflow: hidden;
  }
}

.portfolio-card-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  width: 420px;
  height: 637px;
  border-radius: 30px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.portfolio-card-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 71, 160, 0) 47.1%,
    #0c47a0 87.44%
  );
  border-radius: 30px;
  pointer-events: none;
  z-index: 1;
}

.portfolio-card-item > *:not(.portfolio-card-bg-image) {
  position: relative;
  z-index: 2;
}

.portfolio-card-header-badge {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background: #ffffff;
  border-radius: 33px;
  width: fit-content;
}

.portfolio-card-title-text {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: #393939;
}

.portfolio-card-project-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 60px;
}

.portfolio-card-action-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 5px 6px;
  width: 77px;
  height: 77px;
  background: #ffffff;
  border-radius: 38.5px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.portfolio-card-action-btn:hover {
  transform: scale(1.05);
}

.portfolio-card-arrow-icon svg {
  width: 100%;
  height: 100%;
}

.portfolio-card-services-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  align-content: flex-end;
  gap: 6px;
  width: 200px;
}

.portfolio-service-tag-outline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid #ffffff;
  border-radius: 16px;
  width: fit-content;
}

.portfolio-service-tag-filled {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px 10px;
  background: #0c47a0;
  border-radius: 16px;
  width: fit-content;
}

.portfolio-service-tag-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}

.portfolio-view-all-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 26px 15px;
  gap: 4px;
  width: 95px;
  height: 95px;
  background: #ffffff;
  border-radius: 53px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.portfolio-view-all-btn:hover {
  transform: scale(1.05);
}

.portfolio-view-all-text {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: #0c47a0;
}

.portfolio-view-all-arrow {
  width: 23px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-nav-arrows {
  display: none;
}

@media (min-width: 1080px) {
  .portfolio-section-wrapper {
    position: relative;
    overflow: visible;
  }

  .portfolio-main-frame {
    position: relative;
    overflow: visible;
  }

  .portfolio-grid-wrapper {
    overflow: hidden;
    position: relative;
  }

  .portfolio-grid-container {
    overflow: visible;
    justify-content: flex-start;
    transition: transform 0.5s ease;
    padding: 0;
    margin: 0;
  }

  .portfolio-view-all-btn {
    display: none !important;
  }

  .portfolio-card-item {
    flex: 0 0 calc(33.333% - 18px);
    width: calc(33.333% - 18px);
    max-width: none;
  }

  .portfolio-nav-arrows {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    top: 58%;
    left: -80px;
    right: -80px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
    justify-content: space-between;
    padding: 0;
  }

  .portfolio-arrow-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: #0c47a0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
  }

  .portfolio-arrow-btn:hover {
    background: #223aa6;
  }

  .portfolio-arrow-btn:disabled {
    background: #d3d3d3;
    cursor: not-allowed;
    opacity: 0.5;
  }

  .portfolio-arrow-btn svg {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 980px) and (max-width: 1616px) {
  .portfolio-header-container {
    gap: 60px;
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .portfolio-main-heading {
    font-size: 2.4rem;
    width: 320px;
  }

  .portfolio-description-text {
    font-size: 1rem;
    width: 280px;
  }

  .portfolio-action-buttons-wrapper {
    width: 200px;
  }

  .portfolio-btn-primary {
    width: 194px;
    height: 32px;
    font-size: 13px;
  }

  .portfolio-card-title-text {
    font-size: 20px;
  }

  .portfolio-card-action-btn {
    width: 65px;
    height: 65px;
  }

  .portfolio-card-services-list {
    width: 170px;
    gap: 5px;
  }

  .portfolio-service-tag-text {
    font-size: 12px;
  }

  .portfolio-view-all-text {
    font-size: 20px;
  }
}

@media (min-width: 980px) and (max-width: 1616px) {
  .portfolio-card-item {
    width: calc(33.333% - 18px);
    height: 470px;
    padding: 32px;
    border-radius: 26px;
  }
}

@media (min-width: 1616px) {
  .portfolio-card-item {
    width: calc(33.333% - 18px);
    height: 550px;
    padding: 38px;
    border-radius: 28px;
  }
}

@media (min-width: 480px) and (max-width: 980px) {
  .portfolio-header-container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .portfolio-main-heading {
    font-size: 2.2rem;
    width: 100%;
  }

  .portfolio-description-text {
    font-size: 0.95rem;
    max-width: 285px;
    line-height: 110%;
  }

  .portfolio-action-buttons-wrapper {
    width: 100%;
  }

  .portfolio-btn-primary {
    width: 190px;
    height: 30px;
    padding: 5px 8px;
    border-radius: 9px;
  }

  .portfolio-btn-primary-text {
    font-size: 14px;
  }

  .portfolio-btn-arrow-icon {
    width: 18px;
    height: 18px;
  }

  .portfolio-card-arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    height: 60%;
  }

  .portfolio-card-item {
    width: 270px;
    height: 410px;
    padding: 24px;
  }

  .portfolio-card-header-badge {
    padding: 7px 14px;
    border-radius: 24px;
  }

  .portfolio-card-title-text {
    font-size: 16px;
  }

  .portfolio-card-project-info {
    gap: 30px;
  }

  .portfolio-card-action-btn {
    width: 52px;
    height: 52px;
    border-radius: 26px;
  }

  .portfolio-card-services-list {
    width: 130px;
    gap: 4px;
  }

  .portfolio-service-tag-outline,
  .portfolio-service-tag-filled {
    padding: 3px 7px;
    border-radius: 12px;
  }

  .portfolio-service-tag-text {
    font-size: 10px;
  }

  .portfolio-view-all-btn {
    width: 64px;
    height: 64px;
    padding: 18px 10px;
    border-radius: 36px;
  }

  .portfolio-view-all-text {
    font-size: 16px;
  }

  .portfolio-view-all-arrow {
    width: 18px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .portfolio-header-container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .portfolio-main-heading {
    font-size: 2.2rem;
    width: 100%;
    line-height: 110%;
  }

  .portfolio-description-text {
    font-size: 0.9rem;
    max-width: 285px;
    line-height: 120%;
  }

  .portfolio-action-buttons-wrapper {
    width: 100%;
  }

  .portfolio-btn-primary {
    width: 170px;
    height: 28px;
    padding: 4px 7px;
    gap: 1px;
  }

  .portfolio-btn-primary-text {
    font-size: 12px;
  }

  .portfolio-btn-arrow-icon {
    width: 16px;
    height: 16px;
  }

  .portfolio-card-item {
    width: 240px;
    height: 360px;
    padding: 20px;
  }

  .portfolio-card-header-badge {
    padding: 6px 12px;
    border-radius: 20px;
  }

  .portfolio-card-title-text {
    font-size: 15px;
  }

  .portfolio-card-project-info {
    gap: 24px;
  }

  .portfolio-card-action-btn {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .portfolio-card-arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .portfolio-card-arrow-icon svg {
    width: 58%;
    height: 58%;
  }

  .portfolio-card-services-list {
    width: 120px;
    gap: 4px;
  }

  .portfolio-service-tag-outline,
  .portfolio-service-tag-filled {
    padding: 2px 6px;
    border-radius: 10px;
  }

  .portfolio-service-tag-text {
    font-size: 9px;
  }

  .portfolio-view-all-btn {
    width: 58px;
    height: 58px;
    padding: 16px 9px;
    border-radius: 32px;
  }

  .portfolio-view-all-text {
    font-size: 14px;
  }

  .portfolio-view-all-arrow {
    width: 16px;
    height: 36px;
  }

  .portfolio-grid-container {
    gap: 20px;
  }
}

@media (min-width: 1616px) {
  .portfolio-header-container {
    gap: 127.0176px;
    margin-bottom: 60.6px;
  }

  .portfolio-main-heading {
    font-size: 50px;
    width: 451.1872px;
  }

  .portfolio-description-text {
    font-size: 24px;
    width: 402.8688px;
  }

  .portfolio-action-buttons-wrapper {
    width: 220px;
  }

  .portfolio-btn-primary {
    width: 210px;
    height: 38.1376px;
    padding: 6.7872px 11.1504px;
    border-radius: 9px;
    gap: 2.2624px;
  }

  .portfolio-btn-primary-text {
    font-size: 19.392px;
  }

  .portfolio-btn-arrow-icon {
    width: 24.7248px;
    height: 24.7248px;
  }

  .portfolio-card-item {
    width: 471.3872px;
    height: 646.4px;
    padding: 44.9248px;
    border-radius: 33.6128px;
  }

  .services-title {
    font-size: 50px;
  }

  .portfolio-card-header-badge {
    padding: 11.1504px 22.4624px;
    border-radius: 37.0064px;
  }

  .portfolio-card-project-info {
    gap: 67.3872px;
  }

  .portfolio-card-action-btn {
    width: 86.456px;
    height: 86.456px;
    padding: 5.656px 6.7872px;
    border-radius: 43.1472px;
  }

  .portfolio-card-services-list {
    width: 224.4704px;
    gap: 6.7872px;
  }

  .portfolio-service-tag-outline,
  .portfolio-service-tag-filled {
    padding: 4.5248px 11.1504px;
    border-radius: 17.9376px;
  }

  .portfolio-service-tag-text {
    font-size: 15.6752px;
  }

  .portfolio-view-all-btn {
    width: 106.656px;
    height: 106.656px;
    padding: 29.2496px 16.8064px;
    border-radius: 59.4688px;
  }

  .portfolio-view-all-text {
    font-size: 26.9872px;
  }

  .portfolio-view-all-arrow {
    width: 25.856px;
    height: 57.2064px;
  }
}

@media (max-width: 1368px) {
  .portfolio-nav-arrows {
    display: none !important;
  }
}

@media (min-width: 1616px) and (max-width: 1698px) {
  .portfolio-nav-arrows {
    display: none !important;
  }
}

/* team section*/
.team-header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 36px;
}

.team-main-heading {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 100%;
  color: #393939;
  max-width: 533px;
}

.team-primary-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 4px;
  width: 198px;
  height: 36px;
  background: #0c47a0;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  gap: 2px;
  transition: background var(--transition-base);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.team-primary-button:hover {
  background: #223aa6;
}

.team-primary-button:focus {
  background: #0c47a0;
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.team-primary-button:focus:hover {
  background: #223aa6;
}

.team-primary-button:active {
  background: #7a8ad1;
}

.team-primary-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.4s,
    height 0.4s,
    opacity 0.4s;
  opacity: 0;
}

.team-primary-button:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.team-button-text {
  font-size: 13.5px;
  line-height: 150%;
  color: #ffffff;
  text-align: center;
}

.team-arrow-icon {
  width: 24px;
  height: 24px;
}

.team-information-container {
  margin-bottom: 52px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.team-secondary-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  background: linear-gradient(90deg, #434343 0%, #4258be 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 428px;
}

.team-main-description {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  text-align: justify;
  color: #939393;
  max-width: 636px;
}

.team-members-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 17px;
}

.team-member-card-wrapper {
  width: 315px;
  height: 450px;
  flex-shrink: 0;
}

.team-member-card-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
  width: 100%;
}

.team-member-photo {
  width: 100%;
  height: 360px;
  background: #d4cdc5;
  overflow: hidden;
  border-radius: 30px;
  object-fit: cover;
}

.team-member-info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.team-member-name-frame {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid #393939;
  border-radius: 16px;
  height: 28px;
}

.team-member-name-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #393939;
  white-space: nowrap;
}

.team-member-position-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #939393;
  width: 100%;
}

@media (min-width: 1028px) and (max-width: 1270px) {
  .team-section-wrapper {
    padding: 90px 0;
  }

  .team-header-container {
    gap: 30px;
    margin-bottom: 30px;
  }

  .team-main-heading {
    font-size: 40px;
    max-width: 400px;
  }

  .team-primary-button {
    width: 218px;
    height: 34px;
  }

  .team-button-text {
    font-size: 15px;
  }

  .team-arrow-icon svg {
    width: 20px;
    height: 20px;
  }

  .team-information-container {
    margin-bottom: 40px;
    gap: 30px;
  }

  .team-secondary-text {
    font-size: clamp(16px, 1.8vw, 19px);
    max-width: 350px;
  }

  .team-main-description {
    font-size: clamp(15px, 1.6vw, 17px);
    max-width: 500px;
  }

  .team-members-row {
    gap: clamp(12px, 1.2vw, 15px);
    margin-bottom: 15px;
  }

  .team-member-card-wrapper {
    width: calc((100% - 45px) / 4);
    height: auto;
    min-width: 0;
  }

  .team-member-card-inner {
    gap: 16px;
  }

  .team-member-photo {
    height: calc((100vw - 80px - 45px) / 4 * 1.14);
    min-height: 240px;
    max-height: 220px;
    border-radius: 24px;
  }

  .team-member-info-wrapper {
    gap: 10px;
  }

  .team-member-name-frame {
    padding: 3px 8px;
    border-radius: 14px;
    height: 26px;
  }

  .team-member-name-text {
    font-size: clamp(16px, 1.6vw, 18px);
  }

  .team-member-position-text {
    font-size: clamp(13px, 1.3vw, 15px);
  }
}

@media (min-width: 1270px) and (max-width: 1616px) {
  .team-section-wrapper {
    padding: 90px 0;
  }

  .team-header-container {
    gap: 40px;
    margin-bottom: 34px;
  }

  .team-main-heading {
    font-size: 40px;
    max-width: 450px;
  }

  .team-primary-button {
    width: 218px;
    height: 35px;
  }

  .team-button-text {
    font-size: 15px;
  }

  .team-arrow-icon svg {
    width: 22px;
    height: 22px;
  }

  .team-information-container {
    margin-bottom: 48px;
    gap: 38px;
  }

  .team-secondary-text {
    font-size: 19px;
    max-width: 400px;
  }

  .team-main-description {
    font-size: 17px;
    max-width: 580px;
  }

  .team-members-row {
    gap: 15px;
    margin-bottom: 15px;
  }

  .team-member-card-wrapper {
    width: 282px;
    height: 316px;
  }

  .team-member-card-inner {
    gap: 18px;
  }

  .team-member-photo {
    height: 240px;
    border-radius: 28px;
  }

  .team-member-info-wrapper {
    gap: 11px;
  }

  .team-member-name-frame {
    padding: 3px 9px;
    border-radius: 15px;
    height: 27px;
  }

  .team-member-name-text {
    font-size: 19px;
  }

  .team-member-position-text {
    font-size: 15px;
  }
}

@media (max-width: 1028px) {
  .team-section-wrapper {
    padding: 70px 0;
  }
}

@media (min-width: 1616px) {
  .team-section-wrapper {
    padding: 110px 0;
  }

  .team-header-container {
    gap: 161.6px;
    margin-bottom: 40.4px;
  }

  .team-main-heading {
    font-size: 50px;
    max-width: 597.92px;
  }

  .team-primary-button {
    width: 264px;
    height: 40.4px;
    padding: 12.928px 3.232px;
    border-radius: 9px;
    gap: 2.2624px;
  }

  .team-button-text {
    font-size: 18.7456px;
  }

  .team-information-container {
    margin-bottom: 48.48px;
    gap: 44.9248px;
  }

  .team-secondary-text {
    font-size: 24px;
    max-width: 480.1152px;
  }

  .team-main-description {
    font-size: 22.4px;
    max-width: 713.7872px;
  }

  .team-members-row {
    gap: 17.776px;
    margin-bottom: 17.776px;
  }

  .team-member-card-wrapper {
    width: calc((100% - 56.56px) / 4.11);
    height: auto;
  }

  .team-member-card-inner {
    gap: 16.16px;
  }

  .team-member-photo {
    width: 100%;
    border-radius: 33.6128px;
  }

  .team-members-row {
    gap: 32px !important;
  }

  .team-member-info-wrapper {
    gap: 13.4128px;
  }

  .team-member-name-frame {
    padding: 16.16px 12.928px;
    border-radius: 17.9376px;
    height: 31.3504px;
  }

  .team-member-name-text {
    font-size: 22.4px;
  }

  .team-member-position-text {
    font-size: 20.8px;
  }

  .team-arrow-icon svg {
    width: 100%;
    height: 100%;
    fill: #ffffff;
  }
}

@media (min-width: 720px) and (max-width: 1028px) {
  .team-header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 28px;
  }

  .team-main-heading {
    font-size: 2.5rem;
    max-width: 100%;
  }

  .team-primary-button {
    width: 210px;
    height: 32px;
    padding: 4px 3px;
  }

  .team-button-text {
    font-size: 14px;
  }

  .team-information-container {
    flex-direction: column;
    margin-bottom: 36px;
    gap: 20px;
  }

  .team-secondary-text {
    font-size: 17px;
    max-width: 100%;
  }

  .team-main-description {
    font-size: 15px;
    max-width: 100%;
    text-align: left;
  }

  .team-members-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
  }

  .team-member-card-wrapper {
    width: 100%;
    height: auto;
  }

  .team-member-card-inner {
    gap: 16px;
  }

  .team-member-photo {
    width: 100%;
    height: 260px;
    border-radius: 24px;
  }

  .team-member-info-wrapper {
    gap: 8px;
    width: 100%;
  }

  .team-member-name-frame {
    padding: 3px 8px;
    border-radius: 12px;
    height: 24px;
  }

  .team-member-name-text {
    font-size: 16px;
  }

  .team-member-position-text {
    font-size: 13px;
  }
}

@media (min-width: 480px) and (max-width: 720px) {
  .team-header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
  }

  .team-main-heading {
    font-size: 2.2rem;
    max-width: 100%;
    line-height: 110%;
  }

  .team-primary-button {
    width: 210px;
    height: 30px;
    padding: 4px 3px;
  }

  .team-button-text {
    font-size: 14px;
  }

  .team-information-container {
    flex-direction: column;
    margin-bottom: 32px;
    gap: 18px;
  }

  .team-secondary-text {
    font-size: 16px;
    max-width: 100%;
    line-height: 110%;
  }

  .team-main-description {
    font-size: 14px;
    max-width: 100%;
    text-align: left;
    line-height: 120%;
  }

  .team-members-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 14px;
  }

  .team-member-card-wrapper {
    width: 100%;
    height: auto;
  }

  .team-member-card-inner {
    gap: 14px;
  }

  .team-member-photo {
    width: 100%;
    height: 210px;
    border-radius: 20px;
  }

  .team-member-info-wrapper {
    gap: 8px;
    width: 100%;
  }

  .team-member-name-frame {
    padding: 2px 7px;
    border-radius: 10px;
    height: 22px;
  }

  .team-member-name-text {
    font-size: 15px;
  }

  .team-member-position-text {
    font-size: 12px;
    line-height: 110%;
  }
}

@media (max-width: 480px) {
  .team-header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
  }

  .team-main-heading {
    font-size: 2rem;
    max-width: 100%;
    line-height: 110%;
  }

  .team-primary-button {
    width: 100%;
    max-width: 190px;
    height: 28px;
    padding: 8px 3px;
    gap: 1px;
  }

  .team-button-text {
    font-size: 13px;
  }

  .team-information-container {
    flex-direction: column;
    margin-bottom: 28px;
    gap: 16px;
  }

  .team-secondary-text {
    font-size: 17px;
    max-width: 100%;
    line-height: 120%;
  }

  .team-main-description {
    font-size: 14px;
    max-width: 100%;
    text-align: left;
    line-height: 130%;
  }

  .team-members-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }

  .team-member-card-wrapper {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .team-member-card-inner {
    gap: 12px;
  }

  .team-member-photo {
    width: 100%;
    height: 200px;
    border-radius: 18px;
  }

  .team-member-info-wrapper {
    gap: 8px;
    width: 100%;
  }

  .team-member-name-frame {
    padding: 2px 6px;
    border-radius: 8px;
    height: 20px;
  }

  .team-member-name-text {
    font-size: 14px;
  }

  .team-slider-controls {
    margin-top: 20px !important;
  }

  .team-member-position-text {
    font-size: 11px;
    line-height: 120%;
  }
}

@media (max-width: 370px) {
  .team-main-heading {
    font-size: 1.8rem;
  }

  .team-button-text {
    font-size: 12px;
  }

  .team-secondary-text {
    font-size: 15px;
  }

  .team-main-description {
    font-size: 13px;
  }

  .team-member-photo {
    height: 180px;
  }

  .team-member-name-text {
    font-size: 13px;
  }

  .team-member-position-text {
    font-size: 11px;
  }
}

.team-slider-controls {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 20px;
  margin-top: 40px;
}

.slider-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13px;
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border: 1px solid #ffffff;
  border-radius: 51px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-button svg {
  width: 22px;
  height: 22px;
}

.slider-button.next svg {
  transform: rotate(180deg);
}

.status-circles {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.team-slider-controls .status-circle {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #d9d9d9;
  transition: background 0.3s ease;
}

.team-slider-controls .status-circle.active {
  background: #0c47a0;
}

@media (max-width: 1028px) {
  .team-slider-controls {
    display: flex;
  }

  .team-members-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
    margin-bottom: 0 !important;
  }

  .team-members-row:not(.active-slide) {
    display: none !important;
  }
}

@media (min-width: 1028px) {
  .team-slider-controls {
    display: none !important;
  }

  .team-members-row {
    display: flex !important;
    margin-bottom: 17px !important;
  }

  .team-members-row.active-slide {
    display: flex !important;
  }
}

/* seo section */
.seo-section {
  position: relative;
  padding: 0 0 200px 0;
}

.seo-section .container {
  display: flex;
  gap: 67px;
}

.header-wrapper {
  flex-shrink: 0;
  width: 460px;
}

.main-heading-text {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 42px;
  color: #393939;
}

.intro-description-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #393939;
}

.content-sections-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.hero-section-layout {
  display: flex;
  gap: 20px;
}

.benefits-frame-container,
.results-frame-container {
  flex: 1;
}

.services-heading-title {
  font-weight: 500;
  -webkit-text-stroke: 0.3px #393939;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  color: #393939;
  margin-bottom: 7px;
}

.services-list-container,
.results-frame-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-item,
.case-study {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #393939;
}

.strategies-frame-layout {
  display: flex;
  gap: 26px;
}

.strategy-technical {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #393939;
  flex: 1;
}

.security-guarantees-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #393939;
}

@media (min-width: 980px) and (max-width: 1616px) {
  .seo-section {
    padding: 0 0 150px 0;
  }

  .seo-section .container {
    gap: 50px;
  }

  .header-wrapper {
    width: 380px;
  }

  .main-heading-text {
    font-size: 52px;
    margin-bottom: 32px;
  }

  .intro-description-text {
    font-size: 15px;
  }

  .services-heading-title {
    font-size: 15px;
  }

  .service-item,
  .case-study,
  .strategy-technical,
  .security-guarantees-text {
    font-size: 15px;
  }
}

@media (min-width: 720px) and (max-width: 980px) {
  .seo-section {
    padding: 0 0 100px 0;
  }

  .seo-section .container {
    flex-direction: column;
    gap: 40px;
  }

  .header-wrapper {
    width: 100%;
  }

  .main-heading-text {
    font-size: 2.5rem;
    margin-bottom: 28px;
  }

  .intro-description-text {
    font-size: 15px;
    max-width: 100%;
  }

  .hero-section-layout {
    flex-direction: column;
  }

  .services-heading-title {
    font-size: 15px;
  }

  .service-item,
  .case-study,
  .strategy-technical,
  .security-guarantees-text {
    font-size: 15px;
  }

  .strategies-frame-layout {
    flex-direction: column;
    gap: 20px;
  }
}

@media (min-width: 480px) and (max-width: 720px) {
  .seo-section {
    padding: 0 0 80px 0;
  }

  .seo-section .container {
    flex-direction: column;
    gap: 32px;
  }

  .header-wrapper {
    width: 100%;
  }

  .main-heading-text {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }

  .intro-description-text {
    font-size: 14px;
    max-width: 100%;
  }

  .hero-section-layout {
    flex-direction: column;
  }

  .services-heading-title {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .services-list-container,
  .results-frame-container {
    gap: 10px;
  }

  .service-item,
  .case-study,
  .strategy-technical,
  .security-guarantees-text {
    font-size: 14px;
  }

  .strategies-frame-layout {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .seo-section {
    padding: 0 0 60px 0;
  }

  .seo-section .container {
    flex-direction: column;
    gap: 28px;
  }

  .header-wrapper {
    width: 100%;
  }

  .main-heading-text {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 110%;
  }

  .intro-description-text {
    font-size: 15px;
    max-width: 100%;
    line-height: 130%;
  }

  .hero-section-layout {
    flex-direction: column;
    gap: 16px;
  }

  .services-heading-title {
    font-size: 15.9px;
    margin-bottom: 7px;
  }

  .services-list-container,
  .results-frame-container {
    gap: 8px;
  }

  .service-item,
  .case-study,
  .strategy-technical,
  .security-guarantees-text {
    font-size: 15px;
    line-height: 130%;
  }

  .strategies-frame-layout {
    flex-direction: column;
    gap: 14px;
  }
}

@media (min-width: 1616px) {
  .seo-section {
    padding: 0 0 224.4704px 0;
  }

  .seo-section .container {
    gap: 75.144px;
  }

  .header-wrapper {
    width: 516.1504px;
  }

  .main-heading-text {
    font-size: 66px;
    margin-bottom: 47.1872px;
  }

  .intro-description-text {
    font-size: 20.2px;
  }

  .hero-section-layout {
    gap: 22.4624px;
  }

  .services-heading-title {
    font-size: 20.2px;
    margin-bottom: 7px;
  }

  .services-list-container,
  .results-frame-container {
    gap: 13.4128px;
  }

  .service-item,
  .case-study,
  .strategy-technical,
  .security-guarantees-text {
    font-size: 20.2px;
  }

  .strategies-frame-layout {
    gap: 29.2496px;
  }
}

.team-members-row {
  opacity: 0;
  transform: translateX(100%);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  position: absolute;
  width: 100%;
}

.team-members-row.active-slide {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.team-members-row.slide-out-left {
  opacity: 0;
  transform: translateX(-100%);
}

.team-members-row.slide-out-right {
  opacity: 0;
  transform: translateX(100%);
}

.team-frame-container {
  position: relative;
  overflow: hidden;
}

.slider-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13px;
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  border: 1px solid #ffffff;
  border-radius: 51px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-button svg {
  width: 22px;
  height: 22px;
  transition: fill 0.3s ease;
}

.slider-button.next svg {
  transform: rotate(180deg);
}

.status-circles {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.team-slider-controls .status-circle {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #d9d9d9;
  transition: background 0.3s ease;
}

.team-slider-controls .status-circle.active {
  background: #0c47a0;
}

@media (max-width: 1028px) {
  .team-slider-controls {
    display: flex;
  }

  .team-members-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
    margin-bottom: 0 !important;
  }

  .team-members-row:not(.active-slide) {
    display: none !important;
  }
}

.slider-button.clicked svg path {
  fill: #0c47a0;
}

/* footer */
.site-footer {
  background: #f4f4f4;
  width: 100%;
  padding: 79px 30px 50px 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 40px;
}

.brand-column {
  max-width: 303px;
}

.brand-mission {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  background: linear-gradient(89.73deg, #000000 0.23%, #4258be 67.58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 22px;
}

.social-links {
  display: flex;
  gap: 22px;
}

.social-icon {
  width: 34px;
  height: 34px;
  background: #ffffff;
  box-shadow: 0px 13px 18px rgba(17, 19, 35, 0.08);
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(1.1);
}

.footer-nav-group {
  min-width: 150px;
}

.nav-heading {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #393939;
  margin-bottom: 12px;
}

.nav-list {
  list-style: none;
  text-align: left;
}

.nav-list li {
  margin-bottom: 8px;
}

.nav-list li:last-child {
  margin-bottom: 0;
}

.footer-nav-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  padding: 4px 0;
  letter-spacing: -0.02em;
  color: #393939;
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-block;
}

.footer-nav-link:hover {
  opacity: 0.7;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #393939;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.site-footer .container .divider-line {
  width: 100%;
  height: 1px;
  background: #939393;
  margin-bottom: 34px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.copyright-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #393939;
}

.legal-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.legal-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #393939;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

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

@media (min-width: 760px) and (max-width: 1616px) {
  .site-footer {
    padding: 50px 0;
  }

  .footer-content {
    gap: 30px;
    margin-bottom: 32px;
  }

  .brand-column {
    max-width: 260px;
  }

  .brand-logo span {
    font-size: 22px;
    margin-top: 2px;
  }

  .brand-logo img {
    width: 28px;
  }

  .brand-mission,
  .footer-nav-link,
  .contact-info-item {
    font-size: 14px;
  }

  .nav-heading {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .legal-links {
    gap: 40px;
  }
}

@media (min-width: 480px) and (max-width: 760px) {
  .site-footer {
    padding: 50px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 24px;
  }

  .brand-column {
    max-width: 100%;
  }

  .brand-logo span {
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.1px;
    margin-top: 2px;
    font-size: 20px;
  }

  .brand-logo {
    height: 26px;
    gap: 7px;
    margin-top: 6px;
  }

  .brand-logo img {
    width: 26px;
  }

  .brand-mission,
  .footer-nav-link,
  .contact-info-item {
    font-size: 13px;
  }

  .nav-heading {
    font-size: 16px;
    text-align: left !important;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-links {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 50px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 20px;
  }

  .brand-column {
    max-width: 100%;
  }

  .brand-logo span {
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.1px;
    margin-top: 2px;
    font-size: 20px;
  }

  .brand-logo {
    height: 26px;
    gap: 7px;
    margin-top: 6px;
  }

  .brand-logo img {
    width: 26px;
  }

  .brand-mission,
  .footer-nav-link,
  .contact-info-item,
  .copyright-text,
  .legal-link {
    font-size: 15px;
  }

  .nav-heading {
    font-size: 15px;
    text-align: left !important;
  }

  .social-icon {
    width: 28px;
    height: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .legal-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (min-width: 1616px) {
  .site-footer {
    padding: 88.7184px 33.6128px 56.0752px 33.6128px;
  }

  .footer-content {
    gap: 44.9248px;
    margin-bottom: 49.4496px;
  }

  .brand-column {
    max-width: 340.0064px;
  }

  .brand-logo span {
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.1px;
    font-size: 28px;
  }

  .brand-logo {
    height: 34px;
    gap: 10px;
  }

  .brand-logo img {
    width: 34px;
  }

  .brand-mission {
    font-size: 17.9376px;
    margin-bottom: 24.7248px;
  }

  .social-links {
    gap: 24.7248px;
  }

  .social-icon {
    width: 38.1376px;
    height: 38.1376px;
    border-radius: 19.0688px;
  }

  .nav-heading {
    font-size: 22.4624px;
    margin-bottom: 26.9872px;
  }

  .nav-list li {
    margin-bottom: 17.9376px;
  }

  .footer-nav-link,
  .contact-info-item,
  .copyright-text,
  .legal-link {
    font-size: 17.9376px;
  }

  .contact-icon {
    width: 22.4624px;
    height: 22.4624px;
  }

  .site-footer .container .divider-line {
    margin-bottom: 38.1376px;
  }

  .legal-links {
    gap: 67.3872px;
  }
}

@media (min-width: 1616px) {
  .top-margin {
    margin-top: 110px;
  }
}

@media (min-width: 968px) {
  .top-margin {
    margin-top: 90px;
  }
}

@media (max-width: 968px) {
  .top-margin {
    margin-top: 70px;
  }
}

/* media queries */
@media (max-width: 1616px) {
  .hero-description p {
    font-size: var(--font-size-base);
    line-height: 100%;
  }

  .category-links a:nth-child(6),
  .category-links a:nth-child(7),
  .category-links a:nth-child(8) {
    display: none;
  }

  .primary-nav-inner {
    max-width: 1010px;
    margin: 0 auto;
  }

  .preview-card-narrow {
    width: 58px;
  }

  .countdown-timer {
    margin-top: -0.5rem;
  }

  .countdown-display {
    width: 80.3%;
  }

  .countdown-block {
    height: 120px;
  }

  .countdown-labels {
    gap: 5.875rem;
    left: 40px;
    margin-top: -0.875rem;
  }

  .timer-group {
    font-size: 6rem;
  }

  .timer-separator {
    margin-top: -1.125rem;
    font-size: 6.375rem;
  }

  .advantage-card-gray::before {
    background-image: radial-gradient(
      circle 270px at center center,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0.7) 60%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 1) 100%
    );
  }

  .category-links {
    gap: 0.98rem;
  }

  .service-card-body {
    left: -8px;
  }

  .statistics {
    gap: 2.75rem;
  }

  .if-small {
    margin-top: -2.625rem !important;
  }

  .category-link {
    font-size: 14px;
  }

  .hero-title-block p {
    font-size: 2rem;
  }

  .hero-description {
    width: 260px;
  }

  .section-title,
  .mobile-dev-heading {
    font-size: 2.4rem;
  }

  .card-title {
    font-size: 1.875rem;
  }

  .card-number {
    bottom: 0;
  }

  .service-card {
    height: 400px;
    padding: 1.25rem;
  }

  .services-title {
    font-size: 2.4rem;
  }

  .service-badge {
    margin-top: 1.25rem;
  }

  .service-card-number {
    font-size: 8.438rem;
    margin-top: -0.75rem;
  }

  .service-card-footer {
    bottom: 22px;
    right: -8px;
  }

  .advantage-card {
    height: 527px;
  }

  .card-hover-divider {
    position: absolute;
    top: 0;
  }

  .card-hover-divider-grey {
    top: -60px;
    width: 100%;
  }

  .is-tall {
    font-size: 1.769rem !important;
  }

  .card-hover-text {
    margin-top: -2.5rem;
  }

  .services-grid {
    gap: 30px;
  }

  .service-card-title {
    font-size: 1.95rem;
    margin-bottom: 0.5rem;
  }

  .stat-card {
    padding: 0.875rem 0.375rem;
  }

  .stat-value {
    font-size: 1.25rem;
  }

  .big-a-letter {
    font-size: 2.7rem;
  }

  .cta-button {
    width: 170px;
  }

  .promo-title,
  .stack-hero-heading {
    font-size: 2.4rem;
  }

  .stats-cards {
    gap: 16px;
  }

  .service-card-title .desktop-title {
    display: none;
  }

  .service-card-title .mobile-title {
    display: block;
  }
}

@media (max-width: 1616px) {
  .container {
    padding: 0 2.625rem;
  }

  .nav-link,
  .category-link {
    font-size: 13px !important;
  }

  .phone-number {
    font-size: 0.813rem;
  }

  .cta-button {
    font-size: 0.9rem;
  }

  .primary-nav-inner {
    max-width: 950px;
  }

  .category-link:nth-child(4) {
    display: none;
  }

  .category-links {
    gap: 3.1rem;
  }

  .geo-icon-small {
    margin-bottom: -0.3rem;
    width: 72px;
  }

  .hero {
    padding: 1rem 0 0 0;
  }

  .hero-content {
    gap: 40px;
    margin-bottom: 1.25rem;
  }

  .hero-title-block p {
    font-size: 1.6rem !important;
  }

  .big-letter {
    font-size: 2.4rem;
  }

  .big-a-letter {
    font-size: 2.2rem !important;
  }

  .hero-title-block {
    max-width: 100%;
  }

  .hero-description {
    width: 100%;
    max-width: 322px;
  }

  .hero-description p {
    font-size: var(--font-size-base);
    line-height: 112%;
  }

  .services-preview-grid {
    height: 300px;
    gap: 8px;
  }

  .preview-card {
    height: 300px;
  }

  .preview-card-narrow {
    width: 50px;
  }

  .preview-card-narrow.expanded {
    width: 220px;
  }

  .preview-card-content-medium {
    max-width: 190px;
    padding: 0.75rem;
    height: 270px;
    gap: 0.875rem;
  }

  .large-icon {
    width: 60px;
    height: 60px;
  }

  .large-icon svg {
    width: 35px;
    height: 35px;
  }

  .medium-card-text p:nth-child(1) {
    font-size: 1.25rem;
  }

  .medium-card-text p:nth-child(2) {
    font-size: 0.863rem;
  }

  .details-button {
    width: 110px;
    height: 32px;
    font-size: 0.813rem;
  }

  .card-info {
    margin-left: 10px;
  }

  .card-info svg {
    width: 20px;
    height: 20px;
  }

  .info-text {
    font-size: var(--font-size-base);
  }

  .card-number {
    width: 36px;
    height: 36px;
    font-size: var(--font-size-base);
  }

  .narrow-number {
    top: 250px;
  }

  .vertical-text {
    font-size: var(--font-size-base);
  }

  .feature-item {
    font-size: var(--font-size-sm);
  }

  .statistics {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    margin-top: 1.875rem;
  }

  .statistics-header {
    width: 100%;
    display: flex;
    flex-direction: row;
  }

  .statistics-header p {
    font-size: 1.8rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
  }

  .stat-value {
    font-size: 1.375rem;
  }

  .advantages {
    padding: 90px 0;
  }

  .advantages-intro {
    gap: 1.875rem;
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .advantages-text {
    width: 100%;
    max-width: 400px;
  }

  .advantage-point {
    font-size: var(--font-size-base);
    line-height: 120%;
  }

  .advantages-cards {
    gap: 20px;
  }

  .advantage-card {
    height: 460px;
    padding: 1.875rem;
  }

  .advantage-card-gray::before {
    background-image: radial-gradient(
      circle 250px at center center,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0.7) 60%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 1) 100%
    );
  }

  .card-title {
    font-size: 1.75rem;
  }

  .card-bottom {
    bottom: 2rem;
    left: 2.2rem;
  }

  .card-hover-text {
    font-size: var(--font-size-base);
    top: 150px;
    left: 1.875rem;
    right: 1.875rem;
  }

  .number-badge {
    width: 65px;
    height: 65px;
  }

  .number-text {
    font-size: var(--font-size-md);
  }

  .mobile-title {
    font-size: 1.75rem;
  }

  .services-title {
    font-size: 2.4rem;
  }

  .services-grid {
    gap: 20px;
  }

  .service-card {
    height: 360px;
  }

  .service-card-wrapper {
    width: calc(100% - 50px);
    height: 320px;
  }

  .service-card-body {
    gap: 3.125rem;
  }

  .service-card-title {
    font-size: 1.875rem;
  }

  .service-card-number {
    font-size: 7.5rem;
  }

  .service-card-footer {
    bottom: 10px;
  }

  .gradient-dot svg {
    width: 50px;
    height: 52px;
  }

  .promo {
    padding: 90px 0;
  }

  .promo-wrapper {
    padding: 1.875rem;
  }

  .promo-info-card {
    top: 80px;
  }

  .promo-content {
    gap: 1.25rem;
  }

  .promo-title {
    font-size: 2.1rem;
  }

  .countdown-display {
    height: 110px;
    width: 64%;
  }

  .countdown-block {
    height: 90px;
    border-radius: 28px;
  }

  .countdown-timer {
    height: 90px;
    top: 10px;
    left: 8px;
  }

  .timer-group {
    font-size: 4.775rem;
  }

  .timer-separator {
    font-size: 5.063rem;
  }

  .countdown-labels {
    gap: 4.46rem;
    left: 30px;
  }

  .if-small {
    margin-top: -0.625rem !important;
  }

  .countdown-unit {
    font-size: var(--font-size-base);
  }

  .promo-text {
    font-size: var(--font-size-base);
  }
}

@media (min-width: 981px) {
  .features-list {
    order: 2;
    margin: 20px 0;
  }

  .slider-dots {
    display: none;
  }
}

@media (min-width: 760px) and (max-width: 1120px) {
  .pricing-main-heading {
    font-size: 40px;
  }
}

@media (max-width: 1028px) {
  .container {
    padding: 0 1.875rem;
  }

  .phone-number {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    height: 30px;
  }

  .phone-number svg {
    width: 16px;
    height: 16px;
  }

  .cta-button {
    width: auto;
    height: 30px;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }

  .hero-title-block {
    margin-right: auto;
  }

  .hero-title-block p svg {
    width: 70px;
    height: 34px;
    position: relative;
    top: 5px;
  }

  .hero-description {
    max-width: 700px;
    gap: 0.25rem;
    margin-left: auto;
  }

  .hero {
    padding: 1.875rem 0 0 0;
  }

  .hero-content {
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
  }

  .hero-title-block {
    max-width: 100%;
  }

  .hero-title-block p {
    font-size: 1.4rem;
    letter-spacing: 0.08rem;
  }

  .big-letter {
    font-size: 2.2rem;
  }

  .show-more-button {
    font-size: 1rem;
    width: 164px;
  }

  .big-a-letter {
    font-size: 1.9rem;
  }

  .hero-description p {
    font-size: var(--font-size-sm);
    line-height: 120%;
  }

  .icon-stars svg {
    width: 16px;
    height: 16px;
  }

  .services-preview {
    margin-bottom: 1rem;
  }

  .services-preview-grid {
    flex-direction: column;
    height: auto;
    gap: 0;
  }

  .preview-card-large {
    width: 100%;
    height: 348px;
    min-width: 100%;
  }

  .feature-item {
    font-size: 0.75rem;
  }

  .preview-card-narrow {
    width: 252px;
    min-width: 252px;
    height: 348px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    cursor: default;
  }

  .preview-card-narrow.expanded {
    width: 252px;
  }

  .preview-card-narrow .vertical-text,
  .preview-card-narrow > .card-number.narrow-number {
    display: none !important;
  }

  .preview-card-narrow .preview-card-content-medium {
    opacity: 1 !important;
    pointer-events: auto !important;
    padding: 0.875rem;
    height: 320px;
    min-width: 220px;
  }

  .medium-card-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .large-icon {
    width: 73px;
    height: 73px;
  }

  .large-icon svg {
    width: 40px;
    height: 40px;
  }

  .medium-card-text p:nth-child(1) {
    font-size: 1.5rem;
  }

  .medium-card-text p:nth-child(2) {
    font-size: var(--font-size-base);
  }

  .details-button {
    width: 117px;
    height: 36px;
    font-size: var(--font-size-sm);
  }

  .card-info {
    margin-left: 0.875rem;
  }

  .card-info svg {
    width: 24px;
    height: 24px;
  }

  .info-text {
    font-size: 1.25rem;
  }

  .promo-wrapper {
    padding: 0;
  }

  .card-number {
    width: 42px;
    height: 42px;
    font-size: var(--font-size-md);
    flex-shrink: 0;
  }

  .statistics {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
  }

  .statistics-header {
    width: 100%;
    margin-top: 1.25rem;
    gap: 1rem;
  }

  .statistics-header p {
    font-size: 1.75rem;
  }

  .stats-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1rem 0.75rem;
  }

  .stat-mobile {
    display: inline;
  }

  .stat-desktop {
    display: none;
  }

  .stat-icon svg.stat-mobile {
    display: block;
  }

  .stat-icon svg.stat-desktop {
    display: none;
  }

  .stat-icon {
    width: 45px;
    height: 45px;
  }

  .stat-icon svg {
    width: 24px;
    height: 24px;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .stat-value {
    font-size: var(--font-size-md);
  }

  .advantages {
    padding: 70px 0;
  }

  .advantages-intro {
    gap: 0;
    margin-bottom: 1.875rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .advantages-text {
    width: 100%;
  }

  .advantage-point {
    font-size: var(--font-size-sm);
    line-height: 120%;
  }

  .advantages-cards {
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
    scroll-padding-left: 30px;
  }

  .advantages-cards::-webkit-scrollbar {
    display: none;
  }

  .advantage-card {
    min-width: 280px;
    height: 450px;
    padding: 1.5rem;
    flex-shrink: 0;
  }

  .advantage-card-gray::before {
    background-image: radial-gradient(
      circle 230px at center center,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0.7) 60%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 1) 100%
    );
  }

  .card-title {
    font-size: 1.5rem;
  }

  .card-hover-text {
    font-size: var(--font-size-sm);
  }

  .number-badge {
    width: 55px;
    height: 55px;
    padding: 0.938rem 0.75rem;
  }

  .number-text {
    font-size: var(--font-size-base);
  }

  .services-intro {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .services-title {
    font-size: 2rem;
  }

  .services-description {
    font-size: var(--font-size-sm);
  }

  .services-grid {
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    min-width: 280px;
    height: 341px;
    flex-shrink: 0;
  }

  .service-card-wrapper {
    width: calc(100% - 40px);
    height: 340px;
  }

  .service-card-body {
    gap: 2.5rem;
    left: 0;
  }

  .service-badge {
    font-size: 0.75rem;
    height: 26px;
    padding: 0.188rem 0.5rem;
  }

  .service-card-title {
    font-size: 1.5rem;
  }

  .service-card-title.smaller {
    font-size: 1.375rem;
  }

  .service-card-number {
    font-size: 6.25rem;
    margin-top: 2.375rem;
  }

  .services-grid .service-card:nth-child(1) .service-card-number {
    font-size: 6.25rem;
    margin-top: 2.375rem;
  }

  .mobile-title {
    display: none !important;
  }

  .desktop-title {
    display: block !important;
    font-size: 1.813rem;
    line-height: 100%;
  }

  .if-small {
    margin-top: 2.438rem !important;
  }

  .service-card-footer {
    bottom: 24px;
    right: 0;
  }

  .footer-badge {
    font-size: 0.75rem;
    height: 26px;
  }

  .icon-circle {
    width: 28px;
    height: 28px;
  }

  .gradient-dot svg {
    width: 40px;
    height: 42px;
  }

  .promo {
    padding: 70px 0;
  }

  .promo-bg-image {
    object-position: left center;
  }

  .promo-content {
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .promo-title {
    font-size: 2rem;
    line-height: 120%;
  }

  .countdown-display {
    height: 110px;
    width: 58%;
    margin-bottom: -0.625rem;
  }

  .countdown-block {
    height: 90px;
    border-radius: 28px;
  }

  .countdown-timer {
    height: 90px;
    top: 10px;
    left: 9px;
  }

  .timer-group {
    font-size: 4.75rem;
  }

  .timer-separator {
    font-size: 5.063rem;
    margin-top: -0.75rem;
  }

  .countdown-display {
    min-width: 443px;
  }

  .countdown-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .countdown-label {
    font-size: var(--font-size-sm);
    margin-bottom: 0.625rem;
  }

  .countdown-block {
    width: 94px !important;
  }

  .countdown-labels {
    gap: 5.375rem;
    left: 34px;
    margin-top: 0;
  }

  .countdown-unit {
    font-size: 0.688rem;
  }

  .promo-text {
    font-size: var(--font-size-sm);
    max-width: 100%;
  }

  .promo-button {
    font-size: var(--font-size-sm);
  }

  .promo-info-card {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
    padding: 1.625rem;
  }

  .promo-info-card svg {
    display: none;
  }

  .info-card-label {
    font-size: 0.688rem;
  }

  .info-card-title {
    font-size: var(--font-size-md);
    max-width: 100%;
  }

  .info-card-description {
    font-size: 0.688rem;
    max-width: 100%;
  }

  .numbers {
    display: none;
  }

  .category-links a:nth-child(2) {
    display: none;
  }

  .primary-nav-inner {
    max-width: 750px;
  }

  .main-navigation {
    margin-top: 0.313rem;
  }

  .advantage-point {
    font-size: var(--font-size-base);
  }

  .advantage-card {
    min-width: 310px;
    min-height: 460px;
  }

  .services-description {
    font-size: var(--font-size-base);
  }

  .services-title {
    font-size: 2.5rem;
  }

  .statistics-header {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .card-title {
    font-size: 2rem;
  }

  .number-badge {
    width: 76px;
    height: 76px;
  }

  .number-text {
    font-size: 1.25rem;
  }

  .card-hover-divider {
    width: 100%;
    left: 0;
    top: 6px;
  }

  .card-hover-divider-grey {
    top: -40px;
    width: 100%;
  }

  .advantage-card-gray::before {
    background-image: radial-gradient(
      circle 262px at center center,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0.7) 60%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 1) 100%
    );
  }

  .advantage-card-blue .card-hover-text,
  .advantage-card-dark .card-hover-text,
  .advantage-card-gray .card-hover-text {
    font-size: var(--font-size-base);
  }

  .advantage-card-gray .card-hover-text {
    margin-bottom: 30px;
  }

  .service-badge {
    font-size: var(--font-size-sm);
  }

  .desktop-title {
    font-size: 1.5rem;
    width: 200px;
  }

  .service-card-number {
    font-size: 8rem;
    margin-top: 1.563rem;
  }

  .if-small {
    margin-top: 1.563rem !important;
  }

  .service-card {
    min-width: 314px;
    min-height: 341px;
  }

  .services-grid .service-card:nth-child(1) .service-card-number {
    font-size: 8rem;
    margin-top: 1.5rem;
  }

  .info-card-label {
    font-size: 0.75rem;
  }

  .info-card-title {
    font-size: 1.25rem;
  }

  .info-card-description {
    font-size: 0.75rem;
  }

  .services-preview {
    width: 100%;
  }

  .services-preview-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
  }

  .preview-card-large {
    width: 100%;
    max-width: 100%;
    min-height: 320px;
  }

  .preview-card-narrow {
    min-width: 212px;
    width: 212px;
    height: 348px;
    flex-shrink: 0;
  }

  .preview-card-narrow.expanded {
    width: 212px;
  }

  .preview-card-narrow .preview-card-content-medium {
    display: flex;
    opacity: 1;
    visibility: visible;
    position: relative;
  }

  .preview-card-narrow .preview-card-content-medium.active {
    display: flex;
  }

  .preview-card-narrow .vertical-text {
    display: none;
  }

  .preview-card-narrow .narrow-number {
    display: none;
  }

  .preview-card-narrow:hover .preview-card-content-medium {
    display: flex;
  }

  .narrow-cards-scroll-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1.125rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.25rem 0 0 0;
    order: 3;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .advantages-cards {
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
  }

  .advantages-cards::-webkit-scrollbar {
    display: none;
  }

  .advantage-card {
    scroll-snap-align: start;
  }

  .services-grid {
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .preview-card-narrow {
    min-width: 240px;
    width: 240px;
  }

  .preview-card-narrow.expanded {
    width: 240px;
  }

  .hero,
  .advantages,
  .services {
    overflow: hidden;
  }

  .hero .container,
  .advantages .container,
  .services .container {
    overflow: visible;
  }

  .narrow-cards-scroll-wrapper {
    width: calc(100% + 6rem);
    display: flex;
    flex-direction: row;
    gap: 1.125rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.25rem 2.2rem 0 3.88rem;
    margin-left: -1.875rem;
    order: 3;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .advantages-cards {
    width: calc(100% + 3.75rem);
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 1.875rem 1rem 1.875rem;
    scroll-snap-type: x mandatory;
    margin-left: -1.875rem;
  }

  .services-grid {
    width: calc(100% + 3.75rem);
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 1.875rem 1rem 1.875rem;
    scroll-snap-type: x mandatory;
    margin-left: -1.875rem;
  }

  .narrow-cards-scroll-wrapper::-webkit-scrollbar,
  .advantages-cards::-webkit-scrollbar,
  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .features-list-mobile {
    display: flex;
    width: 100%;
    gap: 0.75rem;
    align-items: flex-start;
    order: 2;
    padding-left: 0.75rem;
  }

  .features-list-desktop {
    display: none;
  }

  .slider-dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.938rem;
    width: 100%;
    height: 20px;
    margin-top: 1.25rem;
    order: 4;
  }
}

@media (max-width: 840px) {
  .cta-button {
    display: none;
  }

  .primary-nav-inner {
    max-width: 565px;
  }

  .category-links a:nth-child(3) {
    display: none;
  }

  .advantages-intro {
    flex-direction: column;
  }

  .advantages-heading {
    margin-right: auto;
  }

  .advantages-text {
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  .statistics-header {
    flex-direction: column;
  }

  .services-intro {
    flex-direction: column;
  }

  .services-title {
    margin-right: auto;
  }

  .services-description {
    margin-left: auto;
  }

  .hero-description {
    width: 78%;
  }

  .geo-icon-small {
    display: inline-block;
  }
}

@media (max-width: 630px) {
  .burger-menu-icon {
    display: flex;
    margin-left: 0.875rem;
    border: none;
    background: none;
    margin-top: 4px;
  }

  .primary-nav {
    padding: 0.938rem 0;
  }

  .primary-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 0 1.25rem;
  }

  .logo {
    position: absolute;
    margin-top: 5px;
    left: 50%;
    transform: translateX(-50%);
    order: 2;
  }

  .main-navigation {
    display: none;
  }

  .header-contacts .phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-contacts .phone-number .numbers {
    display: none;
  }

  .header-contacts .phone-number svg {
    width: 24px;
    height: 24px;
    margin-top: 0.438rem;
  }

  .cta-button {
    display: none;
  }

  .info-card-title {
    max-width: 204px;
  }

  .info-card-description {
    max-width: 176px;
  }

  .statistics {
    margin-top: 0.875rem;
  }

  .feature-item {
    font-size: 0.64rem;
  }

  .features-list-mobile {
    margin-left: 0.25rem;
    gap: 0.813rem;
  }

  .slider-dots {
    margin-top: 0;
  }

  .hero-title-block p {
    font-size: 1.5rem !important;
  }

  .big-letter {
    font-size: 2.125rem;
  }

  .big-a-letter {
    font-size: 2.04rem !important;
  }
}

@media (max-width: 630px) {
  .hero-mobile-layout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 0.938rem;
    width: 100%;
  }

  .hero-title-block,
  .hero-description {
    display: none !important;
  }

  .mobile-hero-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 0.938rem;
    width: 100%;
    order: 0;
  }

  .mobile-hero-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 100%;
    font-variant: small-caps;
    color: #393939;
    margin: 0;
    width: 100%;
  }

  .why-us-section-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    color: #393939;
    max-width: 300px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .why-us-section-title::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }

  .test-drive-section-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    color: #393939;
    max-width: 300px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .test-drive-section-title::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }

  .niches-main-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    max-width: 400px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .niches-main-title::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }

  .main-title-h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    max-width: 400px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .main-title-h1::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }

  .portfolio-main-heading {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    max-width: 400px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .portfolio-main-heading::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }

  .team-main-heading {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    max-width: 400px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .team-main-heading::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }

  .geo-icon-small {
    width: 54px;
    position: relative;
    top: 0.1rem;
  }

  #header-icon {
    position: relative;
    top: 1px;
    width: 30px;
  }

  .mobile-hero-subtitle {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 0.25rem;
    width: 100%;
  }

  .mobile-hero-subtitle p {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 100%;
    color: #393939;
    margin: 0;
    width: 100%;
  }

  .mobile-consultation-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.375rem 0.625rem;
    width: 100%;
    height: 36px;
    background: linear-gradient(90deg, #0c47a0 0%, #8fecfc 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .mobile-consultation-button:active {
    transform: scale(0.98);
  }

  .features-list-mobile-top {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    order: 1;
  }

  .feature-item-check {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 150%;
    color: #393939;
  }

  .feature-item-check svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .features-list-mobile {
    display: none !important;
  }

  .preview-card-large {
    order: 2;
  }

  .services-preview-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .narrow-cards-scroll-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 1.125rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.25rem 0 0 0;
    margin-left: 0;
    order: 3;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
  }

  .narrow-cards-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }

  .preview-card-narrow {
    scroll-snap-align: start;
  }

  .slider-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
    padding: 0 0.5rem;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(12, 71, 160, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .slider-arrow:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 1);
  }

  .slider-arrow svg {
    color: #0c47a0;
  }

  .slider-arrow-prev {
    margin-left: -0.5rem;
  }

  .slider-arrow-next {
    margin-right: -0.5rem;
  }
}

@media (max-width: 1026px) {
  .slider-navigation {
    display: none !important;
  }
  .slider-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 20px;
    width: 343px;
    height: 42px;
    margin: 1.25rem auto 0;
    order: 4;
  }

  .slider-arrow {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13px;
    gap: 10px;
    width: 37px;
    height: 38px;
    background: #f4f4f4;
    border: 1px solid #ffffff;
    border-radius: 51px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: none;
    order: 0;
    flex-grow: 0;
  }

  .slider-arrow:active {
    transform: scale(0.95);
    background: #ffffff;
  }

  .slider-arrow-prev svg path {
    stroke: #939393;
    transition: stroke 0.2s ease;
  }

  .slider-arrow-next {
    order: 2;
  }

  .slider-arrow-next svg {
    width: 30px;
    height: 30px;
    transform: rotate(36.3611px);
  }

  .slider-arrow-next svg path {
    stroke: #939393;
    transition: stroke 0.2s ease;
  }

  .slider-arrow.active svg path {
    stroke: #0c47a0;
  }

  .slider-arrow svg {
    width: 31px;
    height: 31px;
    flex: none;
    flex-grow: 0;
  }

  .slider-arrow-prev {
    order: 0;
  }

  .slider-arrow-prev svg {
    transform: rotate(360deg);
  }

  .slider-container .slider-dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 12px;
    width: 113px;
    height: 13px;
    margin: 0;
    flex: none;
    order: 1;
    flex-grow: 0;
  }

  .slider-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #d9d9d9;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    flex: none;
    flex-grow: 0;
    padding: 0;
  }

  .slider-dot.active {
    background: #0c47a0;
  }

  .slider-dot:hover {
    background: #0c47a0;
    opacity: 0.7;
  }

  .slider-dot:hover {
    background: #0c47a0;
    opacity: 0.7;
  }

  @media (max-width: 375px) {
    .slider-container {
      width: 100%;
      max-width: 343px;
      padding: 0 16px;
    }
  }
}

@media (min-width: 1026px) {
  .slider-container {
    display: none !important;
  }
}

@media (min-width: 630px) {
  .hero-mobile-layout {
    display: none;
  }
}

@media (max-width: 620px) {
  .countdown-display {
    height: 110px;
    margin-bottom: -0.625rem;
  }

  .countdown-block {
    height: 70px;
    border-radius: 21px;
    width: 70px !important;
  }

  .countdown-block:nth-child(1) {
    left: 0;
  }

  .countdown-block:nth-child(2) {
    left: calc(70px + 20px);
  }

  .countdown-block:nth-child(3) {
    left: calc((80px * 2) + 19px);
  }

  .countdown-block:nth-child(4) {
    left: calc((90px * 3) - 1px);
  }

  .countdown-timer {
    height: 90px;
    top: -2px;
    left: 7px;
  }

  .timer-group {
    font-size: 3.581rem;
  }

  .timer-separator {
    font-size: 3.75rem;
    margin-top: -0.625rem;
  }

  .countdown-label {
    font-size: var(--font-size-sm);
    margin-bottom: 0.625rem;
  }

  .countdown-labels {
    gap: 3.65rem;
    left: 24px;
    margin-top: -1.938rem;
  }

  .advantage-card {
    max-width: 300px;
    min-width: 300px;
    max-height: 460px;
    min-height: 460px;
  }

  .countdown-unit {
    font-size: 0.688rem;
  }
}

@media (max-width: 540px) {
  .hero-title-block p {
    font-size: 1.5rem !important;
  }

  .big-letter {
    font-size: 2.125rem;
  }

  .big-a-letter {
    font-size: 2.1rem !important;
  }

  .hero-title-block p:last-child {
    display: inline;
    margin-left: 0;
  }

  .card-bottom {
    left: 2rem;
  }
}

@media (max-width: 516px) {
  .hero-title-block {
    max-width: 410px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }

  .info-text {
    font-size: var(--font-size-base);
  }

  .medium-card-text p:nth-child(1) {
    font-size: 1.25rem;
  }

  .medium-card-text p:nth-child(2) {
    font-size: var(--font-size-sm);
  }

  .section-title {
    font-size: 2.2rem;
  }

  .show-more-button {
    font-size: 0.9rem;
  }

  .services-description {
    max-width: 320px;
    text-align: right;
  }

  .features-list-mobile {
    font-size: 0.5625rem;
  }

  .narrow-cards-scroll-wrapper {
    padding: 0.25rem 1.5rem 0 1.5rem !important;
  }
}

@media (max-width: 450px) {
  .promo-title {
    font-size: 1.625rem;
  }

  .countdown-label {
    font-size: 0.781rem;
  }

  .promo-text {
    font-size: 0.813rem;
  }

  .countdown-display {
    height: 110px;
    margin-bottom: -0.625rem;
  }

  .countdown-block {
    height: 50px;
    border-radius: 16px;
    width: 52px !important;
  }

  .countdown-block:nth-child(1) {
    left: 0;
  }

  .countdown-block:nth-child(2) {
    left: calc(50px + 16px);
  }

  .countdown-block:nth-child(3) {
    left: calc((50px * 2) + 32px);
  }

  .countdown-block:nth-child(4) {
    left: calc((50px * 3) + 48px);
  }

  .countdown-timer {
    height: 90px;
    top: -0.75rem;
    left: 7px;
  }

  .timer-group {
    font-size: 2.525rem;
  }

  .timer-separator {
    font-size: 2.563rem;
    margin-top: -0.375rem;
  }

  .countdown-labels {
    gap: 2.338rem;
    left: 16px;
    margin-top: -3.438rem;
  }

  .countdown-unit {
    font-size: 0.625rem;
  }

  .hero-title-block {
    margin-bottom: 0.25rem;
  }

  .container {
    padding: 0 1.2rem;
  }

  .primary-nav-inner {
    padding: 0 !important;
  }
}

@media (max-width: 400px) {
  .advantage-card {
    min-height: 440px;
    min-width: 290px;
  }

  .card-title {
    font-size: 1.74rem;
  }

  .card-hover-text {
    font-size: 1rem;
  }

  .is-tall {
    font-size: 1.74rem !important;
  }

  .service-card {
    min-width: 290px;
  }

  .service-card-number {
    font-size: 6.8rem;
    margin-top: 2.56rem;
  }

  .if-small {
    font-size: 6.8rem !important;
    margin-top: 2.64rem !important;
  }

  .services-grid .service-card:nth-child(1) .service-card-number {
    font-size: 6.8rem;
    margin-top: 2.5rem;
  }
}

@media (max-width: 370px) {
  .promo-info-card svg {
    margin-right: 0 !important;
  }

  .hero-title-block p {
    font-size: 1.32rem !important;
  }

  .big-letter {
    font-size: 2.1rem;
  }

  .big-a-letter {
    font-size: 1.875rem !important;
  }

  .hero {
    padding: 1.25rem 0 0 0;
  }

  .stat-card {
    padding: 0.875rem 0.39rem;
    border-radius: 24px;
  }

  .stat-card-content {
    gap: 0.4rem;
  }

  .stats-cards {
    gap: 0.5rem;
  }
}

@media (max-width: 340px) {
  .promo-info-card svg {
    width: 220px;
  }
}

.geo-icon-large {
  display: none;
}

.geo-icon-small {
  display: inline-block;
}

.card-icon-large {
  display: none;
}

.card-icon-small {
  display: inline-block;
}

.icon-small {
  display: inline-block;
}

.icon-large {
  display: none;
}

@media (max-width: 630px) {
  .services-preview-section {
    overflow: visible;
  }

  .stat-card {
    border-radius: 12px;
  }

  .services-preview-grid {
    overflow: visible;
  }

  .narrow-cards-scroll-wrapper {
    width: 100vw;
    display: flex;
    flex-direction: row;
    gap: 1.125rem;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0.25rem 1.875rem 0 1.875rem;
    margin-left: 0;
    order: 3;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 1.875rem;
  }

  .narrow-cards-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }

  .category-links {
    width: 100%;
    justify-content: center;
  }

  .preview-card-narrow {
    min-width: 240px;
    width: 240px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .preview-card-narrow.expanded {
    width: 240px;
  }

  .hero-title-block,
  .hero-description {
    display: none !important;
  }
}

.portfolio-grid-container {
  position: relative !important;
}

@media (min-width: 1616px) {
  .primary-nav {
    max-width: 1500px;
  }

  .category-links {
    gap: 20px;
  }

  .cta-button {
    width: 180px;
  }

  .desktop-title {
    font-size: 44.8px;
    line-height: 106%;
  }

  .service-badge,
  .footer-badge {
    font-size: 14px;
  }

  .advantage-card:nth-child(3) .card-bg-image {
    object-position: 74% center;
  }

  .category-link,
  .nav-link {
    font-size: 16px;
  }

  .vertical-text {
    max-height: 160px;
  }

  .show-more-button {
    width: 176px;
  }

  .statistics-header {
    width: 340px;
  }

  .statistics-header p {
    font-size: 36px;
  }

  .advantage-card {
    max-height: 750px;
  }

  .card-title {
    font-size: 40px;
  }

  .number-text {
    font-size: 27.2px;
  }

  .advantages-cards {
    gap: 40px;
  }

  .card-hover-text {
    font-size: 23px;
  }

  .card-title:nth-child(2) {
    max-width: 340px;
    margin-right: auto;
  }

  .why-us-section-subtitle {
    max-width: 420px;
  }

  .number-badge {
    width: 88px;
    height: 88px;
    border-radius: 50%;
  }

  .service-card-title {
    flex-shrink: 0;
  }

  .service-card-number {
    margin-top: auto;
    position: relative;
  }

  .service-card-footer {
    position: absolute;
    bottom: 14px;
    right: 0;
  }

  .show-more-button {
    font-size: 16px;
  }

  .service-card {
    min-height: 530px;
  }

  .service-card-wrapper {
    height: 470px;
  }

  .service-card-body {
    gap: 64px;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .countdown-timer {
    font-size: 120.3px;
  }

  .promo-button {
    width: 174px;
  }

  .advantage-card-gray::before {
    background-image: radial-gradient(
      circle 330px at center center,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0.7) 60%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 1) 100%
    );
    mask-image: linear-gradient(
      to bottom,
      black 0%,
      black 45%,
      transparent 50%,
      transparent 100%
    );
  }

  .section-title {
    font-size: 50px;
  }

  .advantages {
    padding: 110px 0;
  }

  .feature-item {
    font-size: 14.5px;
  }

  .card-hover-divider {
    position: absolute;
    width: 100%;
    left: 0;
    top: -8px;
    margin-bottom: 100px !important;
  }

  .card-hover-text {
    margin-bottom: 50px;
  }

  .card-hover-divider-grey {
    top: -30px !important;
    width: 100%;
  }

  .countdown-label,
  .countdown-unit {
    font-size: 15.5px;
  }

  .services-description {
    font-size: 24px;
  }

  .promo-button {
    font-size: 15px;
  }

  .countdown-labels {
    gap: 132px;
  }

  .category-link svg {
    display: none;
  }

  .business-improvement-frame {
    min-width: 1470px;
    height: 619px;
  }

  .business-improvement-frame .divider-line {
    width: 1518px;
    left: 15px;
    top: 483px;
  }

  .process-header-wrapper {
    gap: 1px;
    width: 1470px;
    height: 296px;
  }

  .main-title-h1 {
    width: 1470px;
    height: 166px;
    font-size: 50px;
  }

  .header-text-container {
    gap: 487px;
    width: 1470px;
    height: 108px;
  }

  .blue-badge svg:nth-child(1) {
    margin-right: -10px;
  }

  .description-text-large {
    width: 760px;
    height: 108px;
    font-size: 30px;
  }

  .steps-container-grid {
    gap: 120px;
    width: 1470px;
    top: 349px;
  }

  .step-card-item {
    gap: 34px;
    width: 286px;
  }

  .step-heading-wrapper {
    gap: 23px;
    width: 286px;
    height: 85px;
  }

  .number-badge-circle {
    padding: 22px 18px;
    width: 86.6px;
    height: 85px;
    border-radius: 42px;
  }

  .badge-number-text {
    width: 26px;
    height: 23px;
    font-size: 23px;
  }

  .step-title-h5 {
    width: 177px;
    font-size: 23px;
  }

  .step-title-h5.title-01 {
    height: 23px;
  }

  .step-title-h5.title-02,
  .step-title-h5.title-03,
  .step-title-h5.title-04 {
    height: 45px;
  }

  .step-content-wrapper {
    gap: 40px;
    width: 286px;
  }

  .ellipse-indicator-container {
    width: 29px;
    height: 29px;
    border-radius: 15px;
    margin-top: 2px;
  }

  .ellipse-dot {
    width: 18px;
    height: 18px;
  }

  .step-description-text {
    width: 286px;
    font-size: 18px;
  }

  .portfolio-header-container {
    gap: 135px;
    margin-bottom: 64px;
  }

  .portfolio-main-heading {
    font-size: 50px;
    width: 480px;
  }

  .portfolio-description-text {
    font-size: 24px;
    width: 428px;
  }

  .portfolio-action-buttons-wrapper {
    width: 240px;
  }

  .portfolio-btn-primary {
    width: 230px;
    height: 41px;
    padding: 7px 12px;
    border-radius: 9px;
    gap: 2px;
  }

  .portfolio-btn-primary-text {
    font-size: 17px;
  }

  .portfolio-btn-arrow-icon {
    width: 26px;
    height: 26px;
  }

  .portfolio-grid-container {
    padding: 0 42px 0 42px;
    margin-left: -42px;
    margin-right: -42px;
  }

  .portfolio-card-item {
    width: calc(33.333% - 21.33px);
    height: 600px;
    padding: 48px;
    border-radius: 36px;
  }

  .portfolio-card-header-badge {
    padding: 12px 24px;
    border-radius: 40px;
  }

  .portfolio-card-title-text {
    font-size: 29px;
  }

  .portfolio-card-project-info {
    gap: 72px;
  }

  .portfolio-card-action-btn {
    width: 92px;
    height: 92px;
    padding: 6px 7px;
    border-radius: 46px;
  }

  .portfolio-card-services-list {
    width: 239px;
    gap: 7px;
  }

  .portfolio-service-tag-outline,
  .portfolio-service-tag-filled {
    padding: 5px 12px;
    border-radius: 19px;
  }

  .portfolio-service-tag-text {
    font-size: 17px;
  }

  .portfolio-view-all-btn {
    width: 113px;
    height: 113px;
    padding: 31px 18px;
    border-radius: 63px;
  }

  .portfolio-view-all-text {
    font-size: 29px;
  }

  .portfolio-view-all-arrow {
    width: 27px;
    height: 61px;
  }

  .hero-title-block h1 {
    font-size: 2.2rem;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    transform-origin: left center;
    letter-spacing: 0.12rem;
    line-height: 1;
    margin: 0;
  }

  .hero-title-block .big-letter,
  .hero-title-block .big-a-letter {
    font-size: 3.05rem !important;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    transform-origin: left center;
    letter-spacing: 0.12rem;
    line-height: 1;
    margin: 0;
  }
}

@media (max-width: 1616px) and (min-width: 980px) {
  body {
    max-width: 1290px;
    margin: 0 auto;
    overflow-x: hidden;
  }

  .contact-engagement-form {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
  }

  .form-container-wrapper {
    max-width: 1270px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .contact-engagement-form .background-image {
    position: absolute;
    width: 100%;
    height: 120%;
    object-fit: cover;
    top: 0;
    left: 0;
    right: 0;
    transform: scaleX(-1) scaleY(-1);
    object-position: 10% 40%;
    z-index: 0;
  }

  .contact-engagement-form .dark-overlay {
    position: absolute;
    width: calc((100vw - 1270px) / 2 + 561px);
    height: 100%;
    left: 0;
    top: 0;
    background: #13233b;
    z-index: 1;
  }

  .site-footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
  }

  .site-footer .container {
    max-width: 1270px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .presentation-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .presentation-section .container {
    width: 100%;
    max-width: 100%;
  }

  .presentation-section .presentation-content {
    max-width: 1270px;
    margin-left: auto;
    margin-right: auto;
  }

  .partners-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}

@media (min-width: 1616px) {
  .seo-case-studies-showcase {
    margin-top: 110px;
  }
}

@media (min-width: 968px) {
  .seo-case-studies-showcase {
    margin-top: 90px;
  }
}

@media (max-width: 968px) {
  .seo-case-studies-showcase {
    margin-top: 70px;
  }
}

@media (max-width: 630px) {
  .burger-menu-icon {
    display: flex;
    margin-left: 0;
    z-index: 1002;
  }

  .primary-nav-inner {
    padding: 0 1.25rem;
  }

  .logo img {
    height: 26px;
  }
}

@media (max-width: 1616px) {
  .primary-nav-inner {
    max-width: none;
    padding: 0 2.625rem;
  }

  .primary-nav {
    max-width: none;
  }
}

@media (min-width: 1616px) and (max-width: 2100px) {
  .primary-nav-inner {
    max-width: none;
    padding: 0 4rem;
  }

  .nav-link {
    font-size: 17px;
    padding: 1.22rem 1.25rem;
  }

  .primary-nav {
    max-width: none;
    padding: 1.5rem 1rem;
  }

  .cta-button {
    font-size: 17px;
    height: 42px;
  }

  .numbers {
    font-size: 17px;
  }

  .main-navigation {
    height: 42px;
  }

  .logo {
    height: 40px;
  }
}

@media (min-width: 2100px) {
  .primary-nav-inner {
    max-width: 2600px;
    padding: 0 5rem;
  }

  .nav-link {
    font-size: 19px;
    padding: 1.22rem 1.35rem;
  }

  .primary-nav {
    max-width: none;
    padding: 1.75rem 1rem;
  }

  .cta-button {
    font-size: 19px;
    height: 42px;
    width: 190px;
  }

  .numbers {
    font-size: 19px;
  }

  .main-navigation {
    height: 42px;
  }

  .brand-logo span {
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.1px;
    font-size: 32px;
  }

  .brand-logo {
    height: 38px;
    gap: 10px;
  }

  .brand-logo img {
    width: 38px;
  }
}

@media (min-width: 1616px) {
  body {
    max-width: 1630px;
    margin: 0 auto;
    overflow-x: hidden;
  }

  .contact-engagement-form {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
  }

  .form-container-wrapper {
    max-width: 1616px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .contact-engagement-form .background-image {
    position: absolute;
    width: 100%;
    height: 120%;
    object-fit: cover;
    top: 0;
    left: 0;
    right: 0;
    transform: scaleX(-1) scaleY(-1);
    object-position: 10% 40%;
    z-index: 0;
  }

  .contact-engagement-form .dark-overlay {
    position: absolute;
    width: calc((100vw - 1616px) / 2 + 790px);
    height: 100%;
    left: 0;
    top: 0;
    background: #13233b;
    z-index: 1;
  }

  .site-footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
  }

  .site-footer .container {
    max-width: 1616px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .presentation-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .presentation-section .container {
    width: 100%;
    max-width: 100%;
  }

  .presentation-section .presentation-content {
    max-width: 1616px;
    margin-left: auto;
    margin-right: auto;
  }

  .presentation-section .presentation-btn {
    position: relative;
    left: auto;
  }

  .partners-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}

@media (min-width: 2120px) {
  html {
    zoom: 1.25;
    overflow-x: hidden;
  }

  body {
    overflow-x: hidden;
    max-width: none !important;
    width: 100%;
  }

  body
    > *:not(.contact-engagement-form):not(.site-footer):not(.header):not(
      .feedback-contact-section-container
    ):not(.presentation-section):not(.partners-section):not(
      .grosville-hero
    ):not(.grosville-bar):not(.grosville-preview):not(#imageModal) {
    max-width: 1616px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-engagement-form,
  .site-footer,
  .presentation-section,
  .partners-section {
    max-width: none !important;
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .grosville-hero,
  .grosville-bar,
  .grosville-preview {
    max-width: none !important;
    width: 100% !important;
    position: static !important;
    left: auto !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .grosville-bar::after {
    display: none;
  }

  .presentation-section .container {
    width: 100%;
    max-width: 100%;
  }
}

/* uslugi/yandex*/

.hero-image-container {
  display: flex;
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

@media (min-width: 1616px) {
  .hero-image-container {
    height: 348px;
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

@media (max-width: 980px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-description {
    width: 100%;
  }

  .hero-image-container {
    height: 280px;
  }
}

/* yandex promotion section*/
.yandex-benefits-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}

.yandex-benefits-main-heading {
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 74px;
  margin-bottom: 40px;
  line-height: 100%;
}

.yandex-benefits-content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
}

.yandex-benefits-hero-card {
  width: 432px;
  height: 610px;
  position: relative;
  border-radius: 33.5867px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(67, 67, 67, 0) 53.88%, #0c47a0 90%);
  flex-shrink: 0;
}

.yandex-benefits-hero-card-image {
  width: 100%;
  height: 100%;
  object-position: 90% 0%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.yandex-benefits-hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(67, 67, 67, 0) 0%, #0c47a0 60%);
  z-index: 2;
}

.yandex-benefits-hero-card-title {
  position: absolute;
  width: 386.76px;
  left: 28.5px;
  bottom: 66.79px;
  font-family: 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  color: #ffffff;
  z-index: 3;
}

.yandex-benefits-grid-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.yandex-benefits-card-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 142px;
  padding: 25px 29px;
  gap: 10px;
  width: 100%;
  background: #f4f4f4;
  border-radius: 33px;
}

.yandex-benefits-card-inner-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 85px;
  width: 100%;
}

.yandex-benefits-card-number-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 120px;
  line-height: 86px;
  color: #0c47a0;
  flex-shrink: 0;
}

.yandex-benefits-card-heading-title {
  width: 206px;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: #393939;
  flex-shrink: 0;
}

.yandex-benefits-card-description-text {
  flex: 1;
  min-width: 0;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #393939;
}

@media (min-width: 1312px) and (max-width: 1616px) {
  .yandex-benefits-main-heading {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }

  .onetimeservices-main-heading {
    font-size: 2.4rem;
  }

  .yandex-benefits-content-wrapper {
    gap: 18px;
  }

  .yandex-benefits-hero-card {
    width: 432px;
    height: 626px;
  }

  .yandex-benefits-hero-card-title {
    font-size: 48px;
    width: 386.76px;
    left: 28.5px;
    bottom: 66.79px;
  }

  .yandex-benefits-grid-container {
    gap: 14px;
  }

  .yandex-benefits-card-item {
    min-height: 142px;
    padding: 25px 29px;
  }

  .yandex-benefits-card-inner-wrapper {
    gap: 65px;
  }

  .yandex-benefits-card-number-icon {
    min-width: 58px;
    font-size: 120px;
    line-height: 86px;
  }

  .yandex-benefits-card-heading-title {
    width: 206px;
    font-size: 20px;
  }

  .yandex-benefits-card-description-text {
    font-size: 16px;
  }
}

@media (min-width: 1616px) {
  .yandex-benefits-section {
    padding: 60px 0 0 0;
  }

  .yandex-benefits-main-heading {
    font-size: 50px;
    margin-bottom: 45px;
  }

  .onetimeservices-main-heading {
    font-size: 50px;
  }

  .yandex-benefits-content-wrapper {
    gap: 20px;
  }

  .yandex-benefits-hero-card {
    width: 470px;
    height: 665px;
  }

  .yandex-benefits-hero-card-title {
    font-size: 52px;
    width: 420px;
    left: 31px;
    bottom: 73px;
  }

  .yandex-benefits-grid-container {
    gap: 16px;
  }

  .yandex-benefits-card-item {
    min-height: 155px;
    padding: 28px 32px;
  }

  .yandex-benefits-card-inner-wrapper {
    gap: 95px;
  }

  .yandex-benefits-card-number-icon {
    min-width: 63px;
    font-size: 130px;
    line-height: 94px;
  }

  .yandex-benefits-card-heading-title {
    width: 225px;
    font-size: 25px;
  }

  .yandex-benefits-card-description-text {
    font-size: 18px;
  }
}

@media (min-width: 1312px) and (max-width: 1616px) {
  .yandex-benefits-section {
    padding: 65px 0 0 0;
  }
}

@media (min-width: 968px) and (max-width: 1312px) {
  .yandex-benefits-section {
    gap: 35px;
    padding: 70px 0 0 0;
  }

  .yandex-benefits-main-heading {
    font-size: 2.4rem;
    margin-bottom: 35px;
  }

  .onetimeservices-main-heading {
    font-size: 2.4rem;
  }

  .yandex-benefits-content-wrapper {
    gap: 16px;
  }

  .yandex-benefits-hero-card {
    width: 360px;
    height: 556px;
    border-radius: 30px;
  }

  .yandex-benefits-hero-card-title {
    width: 320px;
    left: 25px;
    bottom: 55px;
    font-size: 40px;
  }

  .yandex-benefits-grid-container {
    gap: 12px;
  }

  .yandex-benefits-card-item {
    min-height: 130px;
    padding: 22px 26px;
    border-radius: 30px;
  }

  .yandex-benefits-card-inner-wrapper {
    gap: 40px;
  }

  .yandex-benefits-card-number-icon {
    min-width: 50px;
    font-size: 100px;
    line-height: 75px;
  }

  .yandex-benefits-card-heading-title {
    width: 170px;
    font-size: 19px;
  }

  .yandex-benefits-card-description-text {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  .yandex-benefits-section {
    gap: 20px;
    padding: 70px 0 0 0;
  }

  .yandex-benefits-main-heading {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .onetimeservices-main-heading {
    font-size: 40px;
  }

  .yandex-benefits-content-wrapper {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .yandex-benefits-hero-card {
    width: 100%;
    height: 197.19px;
    border-radius: 33.5867px;
  }

  .yandex-benefits-hero-card-title {
    font-size: 32px;
    width: 314px;
    left: 28px;
    bottom: 50px;
  }

  .yandex-benefits-grid-container {
    width: 100%;
    gap: 10px;
  }

  .yandex-benefits-card-item {
    min-height: auto;
    padding: 25px 29px;
  }

  .yandex-benefits-card-inner-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .yandex-benefits-card-number-icon {
    min-width: 40px;
    width: 40px;
    font-size: 60px;
    line-height: 60px;
    padding: 10px 10px 10px 0;
    align-self: flex-start;
  }

  .yandex-benefits-card-heading-title {
    width: 100%;
    font-size: 19px;
  }

  .yandex-benefits-card-description-text {
    width: 100%;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .yandex-benefits-main-heading,
  .onetimeservices-main-heading {
    font-size: 2.2rem;
  }

  .yandex-benefits-hero-card {
    height: 180px;
  }

  .yandex-benefits-hero-card-title {
    font-size: 28px !important;
    width: 280px;
    left: 20px;
    bottom: 40px;
  }

  .yandex-benefits-card-item {
    padding: 22px 25px;
  }

  .yandex-benefits-card-inner-wrapper {
    gap: 18px;
  }

  .yandex-benefits-card-heading-title {
    font-size: 18px;
  }

  .yandex-benefits-card-description-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .yandex-benefits-section {
    gap: 15px;
  }

  .yandex-benefits-main-heading {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .yandex-benefits-hero-card {
    height: 160px;
  }

  .yandex-benefits-hero-card-title {
    font-size: 24px;
    width: 250px;
    left: 18px;
    bottom: 30px;
  }

  .yandex-benefits-card-item {
    padding: 20px;
  }

  .yandex-benefits-card-inner-wrapper {
    gap: 15px;
  }

  .yandex-benefits-card-number-icon {
    font-size: 50px;
    line-height: 50px;
  }

  .yandex-benefits-card-heading-title {
    font-size: 16px;
  }

  .yandex-benefits-card-description-text {
    font-size: 14px;
  }
}

/* onetime services section*/
.onetimeservices-section-wrapper {
  width: 100%;
  padding: 10px 0 80px 0;
}

.discount-badge-container {
  position: absolute;
  overflow: hidden;
  height: 49px;
  right: 0px;
  top: 30px;
  z-index: 10;
}

.flag {
  position: relative;
  width: 77px;
  height: 39px;
}

.flag svg {
  width: 100%;
  height: 100%;
}

.flag-text {
  position: absolute;
  top: 52%;
  left: 50%;
  color: white;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: 500;
}

.onetimeservices-header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.onetimeservices-main-heading {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 100%;
  color: #393939;
}

.onetimeservices-sub-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #393939;
}

.onetimeservices-cards-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10.5px;
  row-gap: 13px;
}

.servicecard-individual-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 24px;
  background: #f4f4f4;
  box-shadow:
    inset 0px 0px 34.0148px rgba(255, 255, 255, 0.05),
    inset 0px 2.26765px 2.26765px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(36.3611px);
  border-radius: 30px;
  position: relative;
  isolation: isolate;
}

.servicecard-content-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  width: 100%;
  z-index: 0;
}

.servicecard-textblock-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.servicecard-title-heading {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  max-width: 200px;
  font-size: 24px;
  line-height: 100%;
  color: #393939;
}

.servicecard-body-info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.servicecard-description-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
}

.servicecard-description-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.02em;
  color: #393939;
}

.servicecard-timeline-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #393939;
}

.servicecard-price-text {
  display: flex;
  align-items: center;
  gap: 5px;
}

.price-label {
  font-size: 12px;
  font-weight: 400;
  margin-top: 8px;
  color: #939393;
}

.price-amount {
  font-size: 24px;
  font-weight: 500;
  color: #393939;
}

.servicecard-cta-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  width: 103px;
  height: 34px;
  border: 1px solid #393939;
  background: #ffffff;
  border-radius: 9px;
  background: transparent;
  gap: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.servicecard-cta-button:hover {
  background: #eaeaea;
}

.servicecard-cta-button:focus {
  background: #ffffff;
  outline: none;
}

.servicecard-cta-button:focus:hover {
  background: #edecec;
}

.servicecard-cta-button:active {
  background: #f4f4f4;
}

.servicecard-cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(159, 159, 159, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s,
    opacity 0.6s;
  opacity: 0;
}

.servicecard-cta-button:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.servicecard-button-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #393939;
  transition: color 0.3s ease;
}

@media (max-width: 1400px) {
  .onetimeservices-cards-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .onetimeservices-header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .onetimeservices-section-wrapper {
    margin-bottom: 20px;
  }

  .onetimeservices-cards-grid-container {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }
}

@media (max-width: 630px) {
  .onetimeservices-main-heading,
  .yandex-benefits-main-heading {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    max-width: 400px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .onetimeservices-main-heading::first-letter,
  .yandex-benefits-main-heading::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }
}

.dropdown-item.active,
.mobile-submenu-link.active {
  color: #0c47a0;
  text-decoration: none;
}

@media (max-width: 630px) {
  .mobile-visible {
    display: block !important;
    width: 80%;
  }
}

/* form feedback */
.seo-feedback-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  align-items: center;
  justify-content: center;
}

.seo-feedback-overlay.is-visible {
  display: flex;
}

.seo-feedback-wrapper {
  position: relative;
  width: 616px;
  height: 640px;
  background: #f4f4f4;
  border-radius: 9px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 79px 48px;
  animation: seofeedbackSlideIn 0.3s ease-out;
}

@keyframes seofeedbackSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.seo-feedback-inner-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 520px;
  height: 537.45px;
}

.seo-feedback-header-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 443px;
}

.seo-feedback-main-title {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 100%;
  color: #393939;
  text-align: center;
  width: 386px;
  height: 45px;
}

.seo-feedback-subtitle-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #393939;
  text-align: center;
  width: 403px;
  height: 18px;
}

.seo-feedback-form-element {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  width: 520px;
  align-self: stretch;
}

.seo-feedback-header-section .brand-logo {
  height: 26px;
}

.seo-feedback-header-section .brand-logo span {
  font-size: 20px;
}

.seo-feedback-inputs-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 520px;
  align-self: stretch;
}

.seo-feedback-input-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 520px;
  height: 55px;
  background: #ffffff;
  border-radius: 9px;
}

.seo-feedback-input-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 23px 21px;
  gap: 22px;
  width: 520px;
  height: 36px;
  border: 1px solid #ffffff;
  box-shadow:
    inset 0px 0px 34.0148px rgba(255, 255, 255, 0.05),
    inset 0px 2.26765px 2.26765px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(36.3611px);
  border-radius: 8px;
}

.seo-feedback-text-input {
  width: 100%;
  height: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #393939;
  border: none;
  outline: none;
  background: transparent;
}

.seo-feedback-text-input::placeholder {
  color: #939393;
}

.seo-feedback-submit-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  gap: 15px;
  width: 520px;
  height: 55px;
  background: linear-gradient(90deg, #0c47a0 0%, #8fecfc 100%);
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  align-self: stretch;
}

.seo-feedback-submit-btn:hover {
  box-shadow: 0 4px 12px rgba(12, 71, 160, 0.2);
}

.seo-feedback-submit-btn:active {
  transform: translateY(0);
}

.seo-feedback-btn-label {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
  text-align: center;
}

.seo-feedback-send-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seo-feedback-send-icon svg {
  width: 100%;
  height: 100%;
}

.seo-feedback-close-button {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 46px;
  height: 46px;
  background: #f4f4f4;
  cursor: pointer;
  display: flex;
  border: none;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.seo-feedback-close-button:hover {
  transform: rotate(90deg);
}

.seo-feedback-close-button svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 650px) {
  .seo-feedback-wrapper {
    width: 95%;
    max-width: 500px;
    padding: 50px 30px;
    height: auto;
  }

  .seo-feedback-inner-container {
    width: 100%;
    height: auto;
  }

  .seo-feedback-header-section {
    width: 100%;
  }

  .seo-feedback-main-title {
    font-size: 24px;
    height: 30px;
    width: 100%;
  }

  .seo-feedback-subtitle-text {
    width: 100%;
    font-size: 16px;
  }

  .seo-feedback-form-element,
  .seo-feedback-inputs-container,
  .seo-feedback-input-group,
  .seo-feedback-input-box,
  .seo-feedback-submit-btn {
    width: 100%;
  }
}

/* index.php */
/* commercial queries */
.commercial-queries-block {
  position: relative;
  width: 100%;
  max-width: 474px;
  height: 221px;
  background: linear-gradient(
    135deg,
    rgba(0, 91, 198, 0.95) 0%,
    rgba(12, 71, 160, 0.95) 100%
  );
  border-radius: 16px;
  margin: 20px auto;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.commercial-queries-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 40%
    );
  opacity: 0.5;
  z-index: 1;
}

.commercial-queries-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 20px;
  position: absolute;
  width: 274px;
  left: 20px;
  top: 28px;
  z-index: 2;
}

.commercial-queries-title {
  width: 274px;
  height: 16px;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.16em;
  color: #ffffff;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.commercial-queries-heading {
  width: 274px;
  height: 129px;
  font-family:
    'Segoe UI',
    -apple-system,
    sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 108%;
  color: #ffffff;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.commercial-queries-benefit {
  width: 274px;
  height: 36px;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #ffffff;
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 0;
}

.commercial-queries-button-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  align-content: flex-end;
  padding: 0;
  gap: 6px 8px;
  position: absolute;
  width: 214px;
  height: 36px;
  right: 20px;
  top: 28px;
  z-index: 2;
}

.commercial-queries-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  width: 214px;
  height: 36px;
  background:
    linear-gradient(90.01deg, #005bc6 0.01%, #7ed6ff 155.59%), #0c47a0;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  flex: none;
  order: 0;
  flex-grow: 0;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 91, 198, 0.3);
}

.commercial-queries-button:hover {
  opacity: 0.92;
}

.commercial-queries-button span {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  flex: none;
  order: 1;
  flex-grow: 0;
  white-space: nowrap;
}

.commercial-queries-button svg {
  width: 24px;
  height: 24px;
  flex: none;
  order: 2;
  flex-grow: 0;
  transition: transform 0.3s ease;
}

@media (max-width: 1616px) and (min-width: 768px) {
  .commercial-queries-title {
    font-size: 15px;
  }

  .commercial-queries-heading {
    font-size: 34px;
  }

  .commercial-queries-benefit {
    font-size: 16px;
  }

  .commercial-queries-content {
    gap: 10px;
  }
}

@media (min-width: 768px) {
  .commercial-queries-block {
    max-width: 728px;
    height: 221px;
  }

  .commercial-queries-button-wrapper {
    width: 389px;
    right: 20px;
  }

  .commercial-queries-content {
    width: 274px;
    left: 20px;
  }
}

@media (max-width: 768px) {
  .commercial-queries-block {
    max-width: 728px;
    height: auto;
    min-height: 280px;
    padding-bottom: 20px;
  }

  .commercial-queries-content {
    width: calc(100% - 40px);
    left: 20px;
  }

  .commercial-queries-button-wrapper {
    position: absolute;
    width: 214px;
    left: 20px;
    right: auto;
    top: auto;
    bottom: 72px;
  }

  .commercial-queries-heading {
    font-size: 28px;
    height: 92px;
  }

  .commercial-queries-title {
    font-size: 13px;
  }

  .commercial-queries-benefit {
    font-size: 14px;
  }

  .commercial-queries-content {
    gap: 14px;
  }

  .info-text {
    font-size: 14px;
  }
}

@media (min-width: 1026px) {
  .commercial-queries-block {
    max-width: 1200px;
    margin: 20px auto;
  }

  .commercial-queries-content {
    left: 30px;
  }

  .commercial-queries-button-wrapper {
    right: 20px;
  }
}

.title-text {
  font-weight: 600;
  letter-spacing: 0.06rem;
  line-height: 1;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@media (min-width: 1616px) {
  .title-text {
    font-weight: 600;
    letter-spacing: 0.06rem;
    line-height: 1;
    font-size: 36px;
  }
}

/* yandex.php */
/* seo promotion */
.seo-promotion-card-large-format {
  position: relative;
  width: 100%;
  max-width: 474px;
  height: 221px;
  border-radius: 16px;
  margin: 20px auto;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.seo-promotion-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.seo-promotion-primary-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 20px;
  position: absolute;
  width: 274px;
  left: 20px;
  top: 28px;
  z-index: 2;
}

.seo-promotion-category-label {
  width: 274px;
  height: 16px;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.16em;
  color: #ffffff;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}

.seo-promotion-main-heading {
  width: 274px;
  height: 129px;
  font-family:
    'Segoe UI',
    -apple-system,
    sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 108%;
  color: #ffffff;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}

.seo-promotion-benefit-description {
  width: 274px;
  height: 36px;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #ffffff;
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}

.seo-promotion-secondary-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 20px;
  position: absolute;
  width: 389px;
  right: 20px;
  top: 28px;
  z-index: 2;
}

.seo-promotion-experience-heading {
  width: 100%;
  font-family:
    'Segoe UI',
    -apple-system,
    sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 108%;
  color: #ffffff;
  flex: none;
  order: 0;
  flex-grow: 0;
  margin: 0;
}

.seo-promotion-experience-description {
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #ffffff;
  flex: none;
  order: 1;
  flex-grow: 0;
  margin: 0;
}

.seo-promotion-call-to-action-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  width: 214px;
  height: 36px;
  background:
    linear-gradient(90.01deg, #005bc6 0.01%, #7ed6ff 155.59%), #0c47a0;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  flex: none;
  order: 2;
  flex-grow: 0;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 91, 198, 0.3);
}

.seo-promotion-call-to-action-button:hover {
  opacity: 0.92;
}

.seo-promotion-call-to-action-button span {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  flex: none;
  order: 1;
  flex-grow: 0;
  white-space: nowrap;
}

.seo-promotion-call-to-action-button svg {
  width: 24px;
  height: 24px;
  flex: none;
  order: 2;
  flex-grow: 0;
  transition: transform 0.3s ease;
}

@media (max-width: 1616px) and (min-width: 768px) {
  .seo-promotion-category-label {
    font-size: 15px;
  }

  .seo-promotion-main-heading {
    font-size: 34px;
  }

  .seo-promotion-benefit-description {
    font-size: 16px;
  }

  .seo-promotion-primary-content-wrapper {
    gap: 10px;
  }

  .seo-promotion-experience-heading {
    font-size: 34px;
  }

  .seo-promotion-experience-description {
    font-size: 16px;
  }
}

@media (min-width: 1616px) {
  .seo-promotion-card-large-format {
    max-width: 728px;
    height: 221px;
  }

  .seo-promotion-secondary-content-wrapper {
    width: 260px;
    top: 60px;
    right: 20px;
  }

  .seo-promotion-primary-content-wrapper {
    width: 274px;
    left: 20px;
    top: 64px;
  }
}

@media (min-width: 768px) {
  .seo-promotion-card-large-format {
    max-width: 728px;
    height: 221px;
  }

  .seo-promotion-secondary-content-wrapper {
    width: 230px;
    top: 50px;
    right: 20px;
  }

  .seo-promotion-primary-content-wrapper {
    width: 274px;
    left: 20px;
    top: 52px;
  }
}

@media (max-width: 768px) {
  .hero-image-container {
    height: 380px;
  }

  .seo-promotion-card-large-format {
    max-width: 728px;
    height: auto;
    min-height: 380px;
    padding-bottom: 20px;
  }

  .seo-promotion-primary-content-wrapper {
    width: calc(100% - 40px);
    left: 20px;
  }

  .seo-promotion-experience-heading {
    font-size: 22px;
    max-width: 230px;
    height: auto;
    display: block;
  }

  .seo-promotion-experience-description {
    font-size: 14px;
    display: block;
    max-width: 200px;
  }

  .seo-promotion-secondary-content-wrapper {
    position: absolute;
    width: calc(100% - 40px);
    left: 20px;
    right: auto;
    top: auto;
    bottom: 20px;
    gap: 14px;
  }

  .seo-promotion-main-heading {
    font-size: 28px;
    height: 92px;
  }

  .seo-promotion-category-label {
    font-size: 13px;
  }

  .seo-promotion-benefit-description {
    font-size: 14px;
  }

  .seo-promotion-primary-content-wrapper {
    gap: 14px;
  }

  .seo-promotion-call-to-action-button {
    margin-top: 28px;
  }
}

@media (min-width: 1026px) {
  .seo-promotion-card-large-format {
    max-width: 1200px;
    margin: 20px auto;
  }

  .seo-promotion-primary-content-wrapper {
    left: 30px;
  }

  .seo-promotion-secondary-content-wrapper {
    right: 20px;
  }
}

@media (max-width: 720px) {
  .pricing-tariffs-section {
    padding-bottom: 170px;
  }

  .pricing-small-padding {
    padding-bottom: 70px;
  }
}

@media (max-width: 480px) {
  .preview-card-large::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    border-radius: 30px;
    z-index: 1;
    pointer-events: none;
  }

  .preview-card-content-main {
    z-index: 2;
  }
}

@media (max-width: 768px) {
  .yandex-hero-image {
    object-position: 26% center;
  }
}

@media (max-width: 630px) {
  .hero-image.google-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .hero-image-container.google-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      270deg,
      rgba(34, 41, 55, 0) 0%,
      rgba(34, 41, 55, 0) 30%,
      #222937 50%,
      #222937 98.87%
    );
    pointer-events: none;
    z-index: 2;
  }

  .seo-promotion-primary-content-wrapper,
  .seo-promotion-secondary-content-wrapper {
    z-index: 10;
    color: #ffffff;
  }
}

.portfolio-image,
.showcase-image {
  cursor: zoom-in;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.portfolio-image:active,
.showcase-image:active {
  opacity: 0.9;
}

/* seo cases */
.services-preview-section > .seo-case-studies-showcase {
  display: none;
}

.menu-mobile-cases {
  display: none;
}

@media (max-width: 1028px) {
  body > section.seo-case-studies-showcase,
  .hero + .seo-case-studies-showcase {
    display: none !important;
  }

  .services-preview {
    display: flex;
    flex-direction: column;
  }

  .services-preview {
    order: 1;
  }

  .features-list-desktop {
    order: 2;
  }

  .services-preview > .seo-case-studies-showcase {
    display: block;
    order: 3;
  }

  .slider-container {
    order: 4;
  }

  .features-list-mobile {
    order: 5;
  }

  .statistics {
    order: 6;
  }

  .menu-mobile-cases {
    display: block;
    order: 2;
  }

  .seo-case-background-image {
    border-radius: 33px;
  }

  .seo-case-months-list {
    gap: 0;
  }

  .seo-case-main-card,
  .seo-case-card-header {
    padding: 0 !important;
  }

  .seo-case-portfolio-image {
    margin: 0 !important;
  }
}

.seo-case-controls-wrapper {
  display: none;
}

@media (max-width: 1028px) {
  .seo-case-controls-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
  }
  .seo-case-card-header .seo-case-months-list,
  .seo-case-card-header .seo-case-navigation-controls {
    display: none;
  }
  .preview-card-large,
  .hero-image-container,
  .features-list-mobile-top .feature-item-check {
    z-index: 10;
  }
  .seo-case-studies-showcase {
    z-index: 0;
    overflow-x: hidden;
    border-radius: 33px;
  }
  .seo-case-background-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 31.6%,
      #ffffff 100%
    );
  }
  .seo-case-card-layers {
    width: 100%;
  }
  .seo-case-main-card {
    padding: 30px 20px;
    overflow: visible;
  }
  .seo-case-controls-wrapper {
    max-width: 100%;
    overflow: hidden;
  }
  .seo-case-layer-1 {
    width: 91%;
  }
  .seo-case-layer-2 {
    width: 92%;
  }
  .seo-case-layer-3 {
    width: 93%;
  }
  .seo-case-layer-4 {
    width: 94%;
  }
  .seo-case-main-card {
    width: 95%;
  }
  .seo-case-month-item:nth-child(5),
  .seo-case-month-item:nth-child(6) {
    display: none;
  }
  .seo-case-card-header {
    padding: 0 20px;
  }
  .seo-case-portfolio-image {
    width: auto;
    max-width: none;
    min-width: 100%;
    margin-left: 12px;
    margin-right: -120px;
  }
  .seo-case-portfolio-image img {
    min-width: 100%;
    width: auto;
  }
  .seo-case-navigation-controls {
    margin-right: 24px;
  }
  .seo-case-months-list,
  .seo-case-navigation-controls {
    width: auto;
  }
}

@media (max-width: 500px) {
  .seo-case-months-list {
    gap: 0px;
  }

  .seo-case-navigation-controls {
    gap: 12px;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .seo-case-month-item {
    width: 50px;
  }

  .seo-case-main-card {
    padding: 20px 6px;
  }
}

/* faq section */
.faq-main-section-wrapper {
  background: white;
}

.faq-main-section-wrapper .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20.2px;
  padding: 101px 40.4px;
}

.faq-header-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 30.3px;
  width: 428.24px;
  flex-shrink: 0;
}

.faq-small-heading-text {
  width: 100%;
  font-family: 'Segoe UI';
  font-style: normal;
  font-weight: 600;
  font-size: 36.36px;
  line-height: 100%;
  color: #0c47a0;
  margin: 0;
}

.faq-large-heading-text {
  width: 100%;
  font-family: 'Segoe UI';
  font-style: normal;
  font-weight: 600;
  font-size: 74.74px;
  line-height: 100%;
  color: #393939;
  margin: 0;
}

.faq-accordion-wrapper-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  max-width: 675.49px;
}

.faq-questions-list-container {
  width: 100%;
  max-width: 636.3px;
}

.faq-accordion-list-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  width: 100%;
}

.faq-accordion-item-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  width: 100%;
}

.faq-accordion-item-block:last-child {
  border-bottom: none;
}

.faq-item-surface-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  width: 100%;
}

.faq-header-clickable-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16.16px 0;
  gap: 16.16px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.2s;
}

.faq-title-text-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  flex: 1;
}

.faq-question-title-text {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 21.17px;
  line-height: 120%;
  display: flex;
  align-items: center;
  color: #000000;
  flex: 1;
  margin: 0;
}

.faq-icon-toggle-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 24.24px;
  height: 24.24px;
  flex-shrink: 0;
}

.faq-icon-svg-element {
  width: 24.24px;
  height: 24.24px;
  transition: transform 0.3s ease;
}

.faq-icon-svg-element.rotated {
  transform: rotate(45deg);
}

.faq-answer-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24.24px;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq-answer-content-wrapper.open {
  max-height: 505px;
  padding: 16.16px 24.24px 32.32px;
}

.faq-answer-text-content {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 19.39px;
  line-height: 140%;
  color: rgba(60, 60, 67, 0.85);
  width: 100%;
  margin: 0;
}

@media (min-width: 1280px) and (max-width: 1616px) {
  .faq-main-section-wrapper .container {
    padding: clamp(80px, 101px, 160px) clamp(40px, 40.4px, 64px);
  }

  .faq-answer-content-wrapper.open {
    max-height: clamp(200px, 505px, 800px);
  }
}

@media (max-width: 1024px) {
  .faq-main-section-wrapper .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 4vw;
    padding: 8vw 3.5vw;
  }

  .faq-header-text-container {
    width: 100%;
    max-width: 100%;
    gap: 2.5vw;
  }

  .faq-small-heading-text {
    font-size: 3vw;
  }

  .faq-large-heading-text {
    font-size: 6vw;
  }

  .faq-accordion-wrapper-container {
    max-width: 100%;
  }

  .faq-questions-list-container {
    max-width: 100%;
  }

  .faq-question-title-text {
    font-size: 20px;
  }

  .faq-answer-text-content {
    font-size: 16px;
  }

  .faq-icon-toggle-wrapper {
    width: 2.5vw;
    height: 2.5vw;
  }

  .faq-icon-svg-element {
    width: 2.5vw;
    height: 2.5vw;
  }

  .faq-header-clickable-area {
    padding: 1.5vw 0;
  }

  .faq-answer-content-wrapper.open {
    padding: 1.5vw 2vw 2.5vw;
  }
}

@media (max-width: 768px) {
  .faq-main-section-wrapper .container {
    padding: 10vw 5vw;
    gap: 6vw;
  }

  .faq-header-text-container {
    gap: 3vw;
  }

  .faq-icon-toggle-wrapper {
    width: 3.5vw;
    height: 3.5vw;
  }

  .faq-icon-svg-element {
    width: 3.5vw;
    height: 3.5vw;
  }

  .faq-header-clickable-area {
    padding: 2vw 0;
    gap: 1.5vw;
  }

  .faq-answer-content-wrapper {
    padding: 0 2.5vw;
  }

  .faq-answer-content-wrapper.open {
    padding: 2vw 2.5vw 3vw;
    max-height: 50vw;
  }
}

@media (max-width: 480px) {
  .faq-question-title-text {
    font-size: 16px !important;
    line-height: 130%;
  }

  .faq-icon-svg-element {
    min-width: 16px;
    min-height: 16px;
  }

  .faq-answer-text-content {
    font-size: 14px !important;
    line-height: 150%;
  }
}

/* razrabotka-sajta */
/* hero section */
.hero-development-section {
  position: relative;
  width: 100%;
  height: 636px;
}

.hero-development-section .container {
  position: relative;
  width: 100%;
  max-width: calc(100% - 84px);
  height: 100%;
  margin: 0 auto;
  padding: 0;
}

.hero-development-desktop-content {
  display: block;
}

.hero-development-mobile-content {
  display: none;
}

.hero-development-rects-wrapper {
  position: absolute;
  width: 100%;
  height: 636px;
  left: 0;
  top: 0;
  z-index: 0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='1312' height='636' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 0 262 L 0 606 Q 0 636 30 636 L 868 636 Q 898 636 898 606 L 898 469 Q 898 439 923 439 L 1282 439 Q 1312 439 1312 409 L 1312 30 Q 1312 0 1282 0 L 645 0 Q 615 0 615 30 L 615 202 Q 615 232 590 232 L 30 232 Q 0 232 0 262 Z' fill='white'/%3E%3C/svg%3E")
    no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg width='1312' height='636' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 0 262 L 0 606 Q 0 636 30 636 L 868 636 Q 898 636 898 606 L 898 469 Q 898 439 923 439 L 1282 439 Q 1312 439 1312 409 L 1312 30 Q 1312 0 1282 0 L 645 0 Q 615 0 615 30 L 615 202 Q 615 232 590 232 L 30 232 Q 0 232 0 262 Z' fill='white'/%3E%3C/svg%3E")
    no-repeat center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero-development-rects-background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}

.hero-development-rect-bottom {
  position: absolute;
  width: min(898px, 68%);
  height: min(404px, 63.5%);
  left: 0;
  top: min(232px, 36.5%);
  background: transparent;
  border-radius: min(30px, 3vw);
  z-index: 1;
}

.hero-development-rect-top-right {
  position: absolute;
  width: min(696px, 53%);
  height: min(439px, 69%);
  left: min(615px, 49%);
  top: 0px;
  background: transparent;
  border-radius: min(30px, 3vw);
  z-index: 1;
}

.hero-title-block {
  margin-top: 20px;
}

.hero-development-description-text {
  position: absolute;
  width: min(613px, 46.7%);
  height: auto;
  min-height: 51px;
  left: 0px;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 120%;
  color: #393939;
  z-index: 3;
}

.hero-development-goal-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 11px 25px 16px;
  gap: 10px;
  isolation: isolate;
  position: absolute;
  width: min(355px, 27%);
  height: min(214px, 33.6%);
  left: min(641px, 48.9%);
  top: min(19px, 3%);
  z-index: 3;
  overflow: hidden;
  backdrop-filter: blur(72.72px);
  box-shadow:
    inset 0px 0px 2.27px rgba(255, 255, 255, 0.15),
    inset 0px 2.27px 2.27px rgba(255, 255, 255, 0.15),
    inset 0px 0px 34.01px rgba(255, 255, 255, 0.05);
  border-radius: 30px;
}

.hero-development-goal-subtract {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: rgba(255, 255, 255, 0.21);
  border-radius: 30px;
  flex: none;
  order: 0;
  flex-grow: 0;
  z-index: 0;
}

.hero-development-goal-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  width: 100%;
  max-width: 305px;
  height: auto;
  flex: none;
  order: 1;
  flex-grow: 0;
  z-index: 1;
}

.hero-development-goal-heading {
  width: 100%;
  height: auto;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 19px;
  line-height: 120%;
  color: #ffffff;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.hero-development-goal-text {
  width: 100%;
  height: auto;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: #ffffff;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 1;
}

.hero-development-service-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 11px 22px;
  gap: 10px;
  position: absolute;
  width: min(274px, 20.9%);
  height: min(214px, 33.6%);
  left: min(1008px, 76.8%);
  top: min(19px, 3%);
  background: #ffffff;
  border-radius: min(30px, 3vw);
  z-index: 3;
}

.hero-development-service-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 20px;
  width: 100%;
  max-width: 227px;
  height: auto;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.hero-development-service-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 20px;
  width: 100%;
  height: auto;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.hero-development-service-heading {
  width: 100%;
  height: auto;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #393939;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.hero-development-service-text {
  width: 100%;
  height: auto;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 120%;
  color: #939393;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.hero-development-service-button {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding: 0px;
  gap: 11px;
  width: 100%;
  height: 34px;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.hero-development-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-decoration: none;
  align-items: center;
  padding: 6px 10px;
  color: #393939;
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 34px;
  gap: 4px;
  background: #ffffff;
  font-size: 14px;
  border: 1px solid #393939;
  border-radius: 9px;
  flex: none;
  order: 0;
  flex-grow: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-development-button:hover {
  background: #f0efef;
}

.hero-development-button:focus {
  background: #ffffff;
  outline: none;
}

.hero-development-button:focus:hover {
  background: #edecec;
}

.hero-development-button:active {
  background: #f4f4f4;
}

.hero-development-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(159, 159, 159, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s,
    opacity 0.6s;
  opacity: 0;
}

.hero-development-button:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.hero-development-button:hover {
  background: #f0efef;
}

.hero-development-arrow-icon {
  width: 15px;
  height: 15px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.hero-development-bottom-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 6px;
  gap: 10px;
  position: absolute;
  width: min(853px, 65%);
  height: min(159px, 25%);
  left: min(22px, 1.7%);
  top: min(460px, 72.3%);
  background: #ffffff;
  border-radius: min(30px, 3vw);
  z-index: 3;
  overflow: hidden;
}

.hero-development-bottom-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 12px;
  gap: 15px;
  width: 100%;
  max-width: 825px;
  height: auto;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.hero-development-bottom-heading {
  width: 100%;
  height: auto;
  min-height: 26px;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #393939;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  position: relative;
  overflow: hidden;
}

.hero-development-slide-text {
  display: block;
  width: 100%;
  min-height: inherit;
  transition:
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.hero-development-slide-text.active {
  transform: translateX(0);
  opacity: 1;
  position: relative;
}

.hero-development-bottom-text {
  width: 100%;
  height: auto;
  min-height: 45px;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 120%;
  color: #939393;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 1;
  position: relative;
  overflow: hidden;
}

.hero-development-slider-controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  height: 24px;
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 0;
}

.hero-development-counter-badge {
  width: auto;
  min-width: 22px;
  height: 14px;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #939393;
  flex: none;
  order: 0;
  flex-grow: 0;
  flex-shrink: 0;
}

.hero-development-button-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 6px;
  width: 54px;
  height: 24px;
  flex: none;
  order: 1;
  flex-grow: 0;
  flex-shrink: 0;
}

.hero-development-btn-prev,
.hero-development-btn-next {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5px 6px;
  gap: 10px;
  width: 24px;
  height: 24px;
  background: #f4f4f4;
  border-radius: 38.5px;
  flex: none;
  flex-grow: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-development-btn-prev:hover,
.hero-development-btn-next:hover {
  background: #e0e0e0;
}

.hero-development-btn-prev.clicked,
.hero-development-btn-next.clicked {
  background: #0c47a0;
}

.hero-development-btn-prev {
  order: 0;
}

.hero-development-btn-next {
  order: 1;
}

.hero-development-arrow-prev,
.hero-development-arrow-next {
  width: 12px;
  height: 12px;
  flex: none;
  order: 0;
  flex-grow: 0;
  transition: stroke 0.3s ease;
}

.hero-development-arrow-prev {
  transform: rotate(-90deg);
}

.hero-development-arrow-next {
  transform: rotate(270deg);
}

.hero-development-btn-prev.clicked .hero-development-arrow-prev path,
.hero-development-btn-next.clicked .hero-development-arrow-next path {
  stroke: #ffffff;
}

.hero-development-indicators-dots {
  width: 100%;
  max-width: calc(100% - 110px);
  height: 3px;
  position: relative;
  flex: none;
  order: 2;
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
}

.hero-development-line-bg {
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0px;
  top: 0px;
  background: #d9d9d9;
}

.hero-development-line-active {
  position: absolute;
  width: 25%;
  height: 3px;
  left: 0px;
  top: 0px;
  background: #0c47a0;
  transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-development-stat-project {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14px 12px;
  gap: 10px;
  position: absolute;
  width: min(196px, 14.9%);
  height: min(183px, 28.8%);
  left: min(910px, 69.4%);
  top: min(453px, 71.2%);
  border-radius: 15px;
  z-index: 3;
  overflow: hidden;
}

.hero-development-stat-project-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: 0;
  border-radius: 15px;
}

.hero-development-stat-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  width: 100%;
  max-width: 169px;
  height: auto;
  flex: none;
  order: 0;
  flex-grow: 0;
  z-index: 1;
}

.hero-development-stat-number {
  width: 100%;
  height: auto;
  font-family:
    'Segoe UI',
    system-ui,
    -apple-system,
    sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 34px;
  line-height: 100%;
  color: #ffffff;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.hero-development-stat-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 8px;
  width: 100%;
  height: auto;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.hero-development-stat-label {
  width: 100%;
  height: auto;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 120%;
  color: #ffffff;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.hero-development-stat-text {
  width: 100%;
  height: auto;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 120%;
  color: #ffffff;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.hero-development-stat-conversion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 13px;
  gap: 10px;
  isolation: isolate;
  position: absolute;
  width: min(196px, 14.9%);
  height: min(183px, 28.8%);
  left: min(1115px, 85%);
  top: min(453px, 71.2%);
  border-radius: 15px;
  z-index: 3;
  overflow: hidden;
}

.hero-development-conversion-bg-container {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  flex: none;
  order: 0;
  flex-grow: 0;
  z-index: 0;
}

.hero-development-conversion-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  object-fit: cover;
  border-radius: 15px;
}

.hero-development-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  width: 100%;
  max-width: 171px;
  height: auto;
  flex: none;
  order: 1;
  flex-grow: 0;
  z-index: 1;
}

.hero-development-icon-star-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 10px;
  width: auto;
  height: 25px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.hero-development-conversion-text {
  width: 100%;
  height: auto;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 13.5px;
  line-height: 120%;
  color: #ffffff;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.hero-development-stat-badge {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 155px;
  height: 36px;
  flex: none;
  order: 2;
  flex-grow: 0;
}

.hero-development-badge-number {
  width: auto;
  height: 36px;
  font-family:
    'Segoe UI',
    system-ui,
    -apple-system,
    sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  color: #ffffff;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.hero-development-badge-label {
  width: auto;
  height: auto;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: #7c7d80;
  flex: none;
  order: 1;
  flex-grow: 0;
  margin-left: 8px;
}

@media (min-width: 1616px) {
  .hero-development-section {
    height: 700px;
    margin-top: 50px;
  }

  .hero-development-section .container {
    max-width: 1520px;
    padding: 0 48px;
  }

  .hero-development-rects-wrapper {
    height: 700px;
  }

  .hero-development-rects-background-image {
    height: 700px;
  }

  .hero-development-rect-bottom {
    width: 898px;
    height: 445px;
    top: 255px;
    border-radius: 30px;
  }

  .hero-development-rect-top-right {
    width: 696px;
    height: 483px;
    left: 615px;
    top: 0;
    border-radius: 30px;
  }

  .hero-development-main-heading {
    width: 457px;
    top: 21px;
    font-size: 52px;
  }

  .hero-development-aim-icon {
    width: 44px;
    height: 44px;
    left: 342px;
    top: 87px;
  }

  .hero-development-description-text {
    width: 673px;
    top: 166px;
    font-size: 22px;
  }

  .hero-development-goal-card {
    width: 355px;
    height: 235px;
    left: 641px;
    top: 21px;
  }

  .hero-development-service-card {
    width: 330px;
    height: 235px;
    left: 1164px;
    top: 21px;
    border-radius: 30px;
  }

  .hero-development-service-content-wrapper {
    max-width: 270px;
  }

  .hero-development-service-text {
    font-size: 19.5px;
  }

  .hero-development-service-heading {
    font-size: 22px;
  }

  .hero-development-button-text {
    font-size: 16px;
    color: #393939;
  }

  .hero-development-goal-card {
    left: 740px;
    width: 404px;
  }

  .hero-development-goal-content {
    max-width: 348px;
    margin: 0 auto;
  }

  .hero-development-bottom-card {
    width: 996px;
    height: 175px;
    left: 22px;
    top: 506px;
    border-radius: 30px;
  }

  .hero-development-bottom-card-content {
    max-width: 970px;
  }

  .hero-development-bottom-heading {
    min-height: 29px;
    font-size: 24px;
  }

  .hero-development-stat-project {
    width: 226px;
    height: 201px;
    left: 1056px;
    top: 499px;
  }

  .hero-development-stat-conversion {
    width: 226px;
    height: 201px;
    left: 1295px;
    top: 499px;
  }

  .hero-development-goal-heading {
    font-size: 21px;
  }

  .hero-development-goal-text {
    font-size: 17px;
  }

  .hero-development-stat-header {
    max-width: 190px;
  }

  .hero-development-stat-number {
    font-size: 38px;
  }

  .hero-development-stat-label {
    font-size: 18px;
  }

  .hero-development-stat-text {
    font-size: 13px;
  }

  .hero-development-stat-content {
    gap: 6px;
  }

  .hero-development-text-content {
    max-width: 190px;
  }

  .hero-development-conversion-text {
    font-size: 14px;
  }

  .hero-development-badge-number {
    font-size: 38px;
  }

  .hero-development-badge-label {
    font-size: 15px;
  }
}

@media (max-width: 1616px) {
  .hero-development-section {
    height: 636px;
  }

  .hero-development-section .container {
    max-width: calc(100% - 84px);
    padding: 0;
  }

  .hero-development-rects-wrapper {
    height: 636px;
  }

  .hero-development-rects-background-image {
    height: 636px;
  }

  .hero-development-rect-bottom {
    width: 68%;
    height: 63.5%;
    top: 36.5%;
    border-radius: clamp(20px, 2.5vw, 30px);
  }

  .hero-development-rect-top-right {
    width: 53%;
    height: 69%;
    left: 49%;
    top: 0;
    border-radius: clamp(20px, 2.5vw, 30px);
  }

  .hero-development-main-heading {
    width: 34.8%;
    top: 3%;
    font-size: clamp(36px, 3.5vw, 52px);
  }

  .hero-development-aim-icon {
    width: 3.35%;
    height: 6.9%;
    left: 26%;
    top: 12.4%;
  }

  .hero-development-description-text {
    width: 46.7%;
    top: 146px;
    font-size: 18px;
  }

  .hero-development-goal-card {
    width: 27%;
    height: 33.6%;
    left: 48.9%;
    top: 3%;
  }

  .hero-development-goal-heading {
    font-size: 17px;
  }

  .hero-development-goal-text {
    font-size: 14px;
  }

  .hero-development-service-card {
    width: 20.9%;
    height: 33.6%;
    left: 76.8%;
    top: 3%;
    border-radius: clamp(20px, 2.5vw, 30px);
  }

  .hero-development-service-heading {
    font-size: 18px;
  }

  .hero-development-service-text {
    font-size: 15px;
  }

  .hero-development-bottom-card {
    width: 65%;
    height: 25%;
    left: 1.7%;
    top: 72.3%;
    border-radius: clamp(20px, 2.5vw, 30px);
  }

  .hero-development-bottom-heading {
    font-size: 22px;
  }

  .hero-development-bottom-text {
    font-size: 16px;
  }

  .hero-development-stat-project {
    width: 14.9%;
    height: 28.8%;
    left: 69.4%;
    top: 71.2%;
  }

  .hero-development-stat-number {
    font-size: 34px;
  }

  .hero-development-stat-label {
    font-size: 17px;
  }

  .hero-development-stat-text {
    font-size: 11px;
  }

  .hero-development-stat-conversion {
    width: 14.9%;
    height: 28.8%;
    left: 85%;
    top: 71.2%;
  }

  .hero-development-conversion-text {
    font-size: 13.5px;
  }

  .hero-development-badge-number {
    font-size: 32px;
  }

  .hero-development-badge-label {
    font-size: 14px;
  }
}

@media (max-width: 1180px) {
  .hero-development-goal-text {
    font-size: 13px;
  }

  .hero-development-goal-content {
    gap: 8px;
  }

  .hero-development-button-text {
    font-size: 13px;
  }

  .hero-development-service-text {
    font-size: 13px;
  }

  .hero-development-conversion-text {
    font-size: 12px;
  }

  .hero-development-text-content {
    gap: 8px;
  }

  .hero-development-stat-header {
    gap: 6px;
  }

  .hero-development-stat-content {
    gap: 6px;
  }
}

@media (max-width: 1080px) {
  .hero-development-desktop-content {
    display: none !important;
  }

  .hero-development-mobile-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .hero-development-section {
    height: auto;
    padding-bottom: 20px;
  }

  .hero-development-section .container {
    max-width: 100%;
    padding: 0 clamp(16px, 4vw, 42px);
  }

  .hero-development-rects-wrapper {
    display: none;
  }

  .hero-development-mobile-bg {
    width: 100%;
    padding: 24px 20px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .mobile-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .hero-development-description-text {
    position: static;
    width: 100%;
    margin: 16px 0 20px 0;
    font-size: 16px;
  }

  .mobile-goal-card {
    width: 100%;
    min-height: 220px;
    margin-bottom: 40px;
    padding: 24px 20px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  .mobile-goal-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d4a7c 0%, #1e3a5f 100%);
    box-shadow:
      inset 0px 0px 2.27px rgba(255, 255, 255, 0.15),
      inset 0px 2.27px 2.27px rgba(255, 255, 255, 0.15),
      inset 0px 0px 34.01px rgba(255, 255, 255, 0.05);
    z-index: 0;
  }

  .mobile-goal-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-goal-heading {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #ffffff;
    margin: 0;
  }

  .mobile-goal-text {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #ffffff;
    margin: 0;
  }

  .mobile-service-card {
    width: 100%;
    padding: 24px 20px;
    background: #ffffff;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
  }

  .mobile-service-heading {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #393939;
    margin: 0;
  }

  .mobile-service-text {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #939393;
    margin: 0;
  }

  .mobile-service-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid #393939;
    border-radius: 9px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #393939;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .mobile-service-button:hover {
    background: #f0efef;
  }

  .mobile-service-button svg {
    width: 15px;
    height: 13px;
  }

  .mobile-bottom-card {
    width: 100%;
    padding: 24px 20px;
    background: #ffffff;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
  }

  .mobile-bottom-heading {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: #393939;
    margin: 0;
    overflow: hidden;
    min-height: 26px;
    position: relative;
  }

  .mobile-bottom-text {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #939393;
    margin: 0;
    overflow: hidden;
    min-height: 118px;
    position: relative;
  }

  .mobile-slider-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
  }

  .mobile-counter-badge {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #939393;
    white-space: nowrap;
  }

  .mobile-button-group {
    display: flex;
    gap: 6px;
  }

  .mobile-indicators-dots {
    flex: 1;
    height: 3px;
    position: relative;
    min-width: 0;
  }

  .mobile-stats-row {
    display: flex;
    gap: 15px;
    width: 100%;
  }

  .mobile-stat-card {
    position: relative;
    flex: 1;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    padding: 12px 12px;
    display: flex;
    flex-direction: column;
  }

  .mobile-stat-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .mobile-stat-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .mobile-stat-blue .mobile-stat-number {
    font-family:
      'Segoe UI',
      system-ui,
      -apple-system,
      sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    color: #ffffff;
    margin: 0 0 4px 0;
  }

  .mobile-stat-blue .mobile-stat-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .mobile-stat-blue .mobile-stat-label {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #ffffff;
    margin: 0;
  }

  .mobile-stat-blue .mobile-stat-text {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 130%;
    color: #ffffff;
    margin: 0;
  }

  .mobile-stat-dark .mobile-stars {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
  }

  .mobile-stat-dark .mobile-stars svg {
    width: 18px;
    height: 18px;
  }

  .mobile-stat-dark .mobile-conversion-text {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 130%;
    color: #ffffff;
    margin: 0 0 auto 0;
  }

  .mobile-stat-dark .mobile-stat-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
  }

  .mobile-stat-dark .mobile-badge-number {
    font-family:
      'Segoe UI',
      system-ui,
      -apple-system,
      sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    color: #ffffff;
    margin: 0;
  }

  .mobile-stat-dark .mobile-badge-label {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 120%;
    color: #7c7d80;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .hero-development-section .container {
    padding: 0 16px;
  }

  .hero-development-description-text {
    font-size: 14px;
  }
}

@media (min-width: 630px) {
  .mobile-hero-title {
    display: none;
  }
}

@media (max-width: 630px) {
  .hero-development-section {
    padding-top: 40px;
  }
}

/* website types section */
.website-types-section {
  padding: 60px 0;
}

.website-types-hero-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  margin-bottom: 30px;
  width: 100%;
  position: relative;
}

.website-types-hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 20px;
  width: 476px;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.website-types-hero-subtitle {
  width: 476px;
  height: 18px;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.16em;
  color: #393939;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.website-types-hero-title {
  width: 476px;
  height: 148px;
  font-family: 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 50px;
  line-height: 100%;
  color: #393939;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.website-types-hero-description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 15px;
  width: 431px;
  height: 141px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.website-types-hero-description p {
  width: 431px;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #393939;
  margin: 0;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.website-types-hero-description p:first-child {
  order: 0;
}

.website-types-hero-description p:last-child {
  order: 1;
}

.website-types-services-grid-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.website-types-services-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 11px;
  width: 100%;
  height: 562px;
  position: relative;
}

.website-types-service-card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 27px 24px;
  gap: 10px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  flex: none;
  flex-grow: 0;
  height: 560px;
}

.website-types-service-card.website-types-service-card-large {
  flex: 1;
  min-width: 280px;
  order: 0;
}

.website-types-service-card.website-types-service-card-medium {
  flex: 0.57;
  min-width: 200px;
}

.website-types-service-card.website-types-service-card-medium:nth-child(2) {
  order: 1;
}

.website-types-service-card.website-types-service-card-medium:nth-child(3) {
  order: 2;
}

.website-types-service-card.website-types-service-card-medium:nth-child(4) {
  order: 3;
}

.website-types-service-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background: #000000;
}

.website-types-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(12, 53, 114, 0) 53.9%,
    #010413 72.64%
  );
  z-index: 2;
}

.website-types-service-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0px;
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.website-types-service-content.website-types-service-content-large {
  width: 100%;
  max-width: 100%;
}

.website-types-service-content.website-types-service-content-medium {
  width: 100%;
  max-width: 100%;
}

.website-types-tag-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  gap: 20px;
  width: 100%;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.website-types-tag-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 0px;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}

.website-types-tag-ellipse {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 3px;
  gap: 10px;
  width: 19px;
  height: 19px;
  border: 1px solid #ffffff;
  border-radius: 10.5px;
  flex: none;
  flex-grow: 0;
}

.website-types-tag-ellipse:first-child {
  order: 0;
}

.website-types-tag-ellipse:last-child {
  order: 5;
}

.website-types-tag-ellipse-inner {
  width: 11px;
  height: 11px;
  background: #d9d9d9;
  border-radius: 50%;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.website-types-service-tag {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4px 10px;
  height: 22px;
  border: 1px solid #ffffff;
  border-radius: 16px;
  white-space: nowrap;
  flex: none;
  flex-grow: 0;
}

.website-types-service-tag:nth-child(2) {
  order: 1;
}

.website-types-service-tag:nth-child(3) {
  order: 2;
}

.website-types-service-tag:nth-child(4) {
  order: 3;
}

.website-types-service-tag:nth-child(5) {
  order: 4;
}

.website-types-service-tag span {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.website-types-badge-number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 19px 16px;
  gap: 10px;
  width: 77.21px;
  height: 76px;
  border: 1px solid #ffffff;
  border-radius: 38px;
  flex: none;
  order: 1;
  flex-grow: 0;
  flex-shrink: 0;
}

.website-types-badge-number span {
  width: 23px;
  height: 20px;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #ffffff;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.website-types-service-content-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 19px;
  width: 100%;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.website-types-service-title {
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  color: #ffffff;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.website-types-service-description {
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #ffffff;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.website-types-service-button {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  width: 100%;
  height: 34px;
  background: #ffffff;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  flex: none;
  order: 2;
  align-self: stretch;
  flex-grow: 0;
  transition: opacity 0.3s ease-in-out;
}

.website-types-service-button:hover {
  opacity: 0.9;
}

.website-types-service-button span {
  width: 110px;
  height: 21px;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #393939;
  flex: none;
  order: 0;
  flex-grow: 0;
}

@media (min-width: 1616px) {
  .website-types-hero-title,
  .overload-title {
    font-size: 50px;
  }

  .website-types-section {
    padding: 110px 0 0 0;
  }

  .website-types-service-description {
    font-size: 17px;
  }

  .website-types-service-title {
    font-size: 30px;
  }
}

@media (max-width: 1616px) {
  .website-types-hero-title {
    font-size: 2.4rem;
  }

  .website-types-section {
    padding: 90px 0 0 0;
  }
}

@media (max-width: 1020px) {
  .website-types-section {
    padding: 70px 0 0 0;
    max-width: 100%;
  }

  .website-types-hero-section {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .website-types-hero-text {
    width: 100%;
    max-width: 476px;
    gap: 20px;
  }

  .website-types-hero-subtitle {
    width: 100%;
    height: auto;
  }

  .website-types-hero-title {
    width: 100%;
    height: auto;
    font-size: 2.2rem;
  }

  .website-types-hero-description {
    width: 100%;
    max-width: 431px;
    gap: 15px;
  }

  .website-types-hero-description p {
    width: 100%;
    height: auto;
  }

  .website-types-services-grid-container {
    overflow-x: scroll;
    overflow-y: hidden;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    width: calc(100% + 40px);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .website-types-services-grid-container::-webkit-scrollbar {
    display: none;
  }

  .website-types-services-grid {
    width: max-content;
    min-width: max-content;
  }

  .website-types-service-card {
    flex: none;
    flex-shrink: 0;
  }

  .website-types-service-card.website-types-service-card-large {
    width: 471px;
  }

  .website-types-service-card.website-types-service-card-medium {
    width: 269px;
  }

  .website-types-service-card {
    height: 480px;
  }

  .website-types-services-grid {
    height: 488px;
  }
}

@media (max-width: 868px) {
  .onetimeservices-cards-grid-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 520px) {
  .website-types-hero-section {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 5px;
  }

  .website-types-hero-text {
    width: 100%;
    max-width: 100%;
    gap: 15px;
  }

  .website-types-hero-subtitle {
    width: 100%;
    font-size: 14px;
    height: auto;
    letter-spacing: 0.12em;
  }

  .website-types-hero-title {
    width: 100%;
    font-size: 2.2rem;
    height: auto;
    line-height: 110%;
  }

  .website-types-hero-description {
    width: 100%;
    max-width: 100%;
    gap: 12px;
  }

  .website-types-hero-description p {
    width: 100%;
    font-size: 16px;
    line-height: 120%;
    height: auto;
  }

  .website-types-services-grid-container {
    overflow-x: scroll;
    padding-left: 15px;
    padding-right: 15px;
    width: calc(100% + 39px);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .website-types-services-grid-container::-webkit-scrollbar {
    display: none;
  }

  .website-types-services-grid {
    width: max-content;
    min-width: max-content;
    gap: 11px;
  }

  .website-types-service-card.website-types-service-card-large {
    width: 280px;
    padding: 24px 20px;
  }

  .website-types-service-card.website-types-service-card-medium {
    width: 220px;
    padding: 24px 18px;
  }

  .website-types-tag-container {
    gap: 20px;
    width: 100%;
  }

  .website-types-tag-group {
    width: 100%;
    max-width: 200px;
  }

  .website-types-service-title {
    font-size: 24px;
    height: auto;
    line-height: 110%;
  }

  .website-types-service-description {
    font-size: 16px;
    height: auto;
    line-height: 120%;
  }

  .website-types-badge-number {
    width: 62px;
    height: 62px;
  }

  .website-types-tag-container {
    gap: 6px;
  }

  .website-types-tag-group {
    max-width: 240px;
  }

  .website-types-service-tag {
    padding: 3px 8px;
  }

  .website-types-service-tag span {
    font-size: 12px;
  }

  .website-types-hero-description p {
    font-size: 15px;
  }

  .website-types-hero-description {
    gap: 10px;
  }

  .onetimeservices-cards-grid-container {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

@media (max-width: 390px) {
  .website-types-hero-section {
    margin-bottom: 30px;
  }
}

/* razrabotka includes section */
.nova-pixel-container-section-hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  width: 100%;
  height: 186px;
  margin-bottom: 70px;
}

.nova-pixel-section-hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 20px;
  height: 186px;
  flex: none;
  flex-grow: 0;
}

.nova-pixel-heading-h3-label {
  height: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #393939;
  flex: none;
  align-self: stretch;
}

.nova-pixel-heading-h1 {
  height: 148px;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  font-size: 74px;
  line-height: 100%;
  color: #393939;
  flex: none;
  align-self: stretch;
}

.nova-pixel-body-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 15px;
  width: 404px;
  height: 159px;
  flex: none;
  flex-grow: 0;
}

.nova-pixel-benefit-item {
  width: 404px;
  height: 72px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #393939;
  flex: none;
  align-self: stretch;
}

.nova-pixel-frame-features {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 44px;
  width: 891px;
  max-width: 100%;
  height: 242px;
  margin-left: auto;
}

.nova-pixel-icon-text-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  gap: 34px;
  width: 190px;
  height: 242px;
  flex: none;
  flex-grow: 0;
}

.nova-pixel-icon-wrap {
  width: 80px;
  height: 80px;
  flex: none;
  flex-shrink: 0;
}
.nova-pixel-icon-wrap svg {
  width: 80px;
  height: 80px;
  display: block;
}

.nova-pixel-container-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  gap: 6px;
  width: 190px;
  height: 128px;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.nova-pixel-card-heading {
  width: 190px;
  height: 43px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 101%;
  color: #393939;
  flex: none;
  align-self: stretch;
}

.nova-pixel-card-body {
  width: 190px;
  height: 79px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #939393;
  flex: none;
  align-self: stretch;
}

@media (max-width: 968px) {
  .nova-pixel-container-section-hero {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 24px;
    margin-bottom: 40px;
  }

  .nova-pixel-section-hero-text {
    width: 100%;
    height: auto;
  }

  .nova-pixel-heading-h3-label {
    width: 100%;
    height: auto;
    font-size: 14px;
  }

  .nova-pixel-heading-h1 {
    width: 100%;
    height: auto;
    font-size: 40px;
  }

  .nova-pixel-body-text-col {
    width: 100%;
    height: auto;
  }

  .nova-pixel-benefit-item {
    width: 100%;
    height: auto;
    font-size: 16px;
  }

  .nova-pixel-frame-features {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    width: 100%;
    margin-left: 0;
    gap: 28px;
  }

  .nova-pixel-icon-text-card {
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    height: auto;
    gap: 16px;
  }

  .nova-pixel-container-text {
    width: auto;
    flex: 1;
    height: auto;
    justify-content: flex-start;
    gap: 8px;
  }

  .nova-pixel-card-heading {
    width: 100%;
    height: auto;
    font-size: 16px;
  }

  .nova-pixel-card-body {
    width: 100%;
    height: auto;
    font-size: 13px;
  }
}

@media (min-width: 1616px) {
  .nova-pixel-heading-h1 {
    font-size: 50px;
  }

  .nova-pixel-benefit-item {
    font-size: 17px;
  }
}

@media (max-width: 1616px) {
  .nova-pixel-heading-h1 {
    font-size: 2.4rem;
  }

  .nova-pixel-benefit-item {
    font-size: 15px;
  }

  .nova-pixel-body-text-col {
    gap: 0;
  }

  .nova-pixel-container-section-hero {
    margin-bottom: 30px;
  }
}

@media (max-width: 968px) {
  .nova-pixel-heading-h1 {
    font-size: 2.4rem;
  }

  .nova-pixel-body-text-col {
    gap: 10px;
  }
}

@media (min-width: 1616px) {
  .is-margin {
    padding: 110px 0;
  }

  .is-bottom-margin {
    padding: 0 0 110px 0;
  }
}

@media (max-width: 1616px) {
  .is-margin {
    padding: 90px 0;
  }

  .is-botttom-margin {
    padding: 0 0 90px 0;
  }
}

@media (max-width: 968px) {
  .is-margin {
    padding: 70px 0;
  }

  .is-bottom-margin {
    padding: 0 0 70px 0;
  }
}

/* razrabotka-portalov.php*/
.portal-benefits-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.portal-hero-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 74px;
  width: 100%;
}

.portal-hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  max-width: 822px;
}

.portal-heading-h3 {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #393939;
}

.portal-heading-h1 {
  font-family: 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 74px;
  line-height: 100%;
  color: #393939;
}

.portal-body-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.portal-benefit-item {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #393939;
}

.portal-features-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
}

.portal-feature-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.portal-header-row {
  display: flex;
  flex-direction: row;
  gap: 108px;
  width: 100%;
}

.portal-header-item {
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1;
  min-width: 0;
}

.portal-number-line {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.portal-line {
  width: 100%;
  max-width: 282px;
  height: 0px;
  border: 2px solid #dcdcdc;
}

.portal-number {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #939393;
}

.portal-header {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #393939;
}

.portal-body-row {
  display: flex;
  flex-direction: row;
  gap: 110px;
  width: 100%;
}

.portal-body-item {
  flex: 1;
  min-width: 0;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #393939;
}

.portal-mobile-description {
  display: none;
}

.portal-desktop-only {
  display: flex;
}

.portal-button-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  gap: 100px;
  width: 100%;
  background: linear-gradient(104.25deg, #97c7f8 0%, #0c47a0 86%);
  border-radius: 30px;
  min-height: 60px;
}

.portal-section-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.portal-ellipse {
  width: 11px;
  height: 11px;
  background: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
}

.portal-text {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 101%;
  color: #ffffff;
  flex: 1;
}

.portal-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  gap: 10px;
  background: #ffffff;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.portal-button:hover {
  background: #f0efef;
}

.portal-button:focus {
  background: #ffffff;
  outline: none;
}

.portal-button:focus:hover {
  background: #edecec;
}

.portal-button:active {
  background: #f4f4f4;
}

.portal-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(159, 159, 159, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s,
    opacity 0.6s;
  opacity: 0;
}

.portal-button:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.portal-button-text {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #393939;
  white-space: nowrap;
}

.portal-arrow-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.portal-arrow-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1400px) {
  .portal-hero-container {
    gap: 50px;
  }

  .portal-heading-h1 {
    font-size: 60px;
  }

  .portal-header-row {
    gap: 60px;
  }

  .portal-body-row {
    gap: 60px;
  }

  .portal-button-container {
    gap: 50px;
  }

  .portal-text {
    font-size: 20px;
  }
}

@media (max-width: 1024px) {
  .portal-benefits-section {
    gap: 50px;
  }

  .portal-heading-h1 {
    font-size: 48px;
  }

  .portal-header-row {
    gap: 30px;
    flex-wrap: wrap;
  }

  .portal-header-item {
    flex: 0 0 calc(50% - 15px);
  }

  .portal-body-row {
    gap: 30px;
    flex-wrap: wrap;
  }

  .portal-body-item {
    flex: 0 0 calc(50% - 15px);
  }

  .portal-button-container {
    gap: 30px;
    flex-wrap: wrap;
    padding: 15px 20px;
  }

  .portal-section-text {
    min-width: 100%;
  }

  .portal-text {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .portal-benefits-section {
    gap: 40px;
  }

  .portal-hero-container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .portal-hero-text {
    max-width: 100%;
  }

  .portal-heading-h3 {
    font-size: 14px;
  }

  .portal-heading-h1 {
    font-size: 36px;
    line-height: 110%;
  }

  .portal-body-text {
    flex: 1;
    width: 100%;
  }

  .portal-benefit-item {
    font-size: 16px;
    line-height: 140%;
  }

  .portal-features-container {
    gap: 40px;
  }

  .portal-feature-section {
    gap: 35px;
  }

  .portal-header-row {
    gap: 25px 15px;
  }

  .portal-header-item {
    flex: 0 0 calc(50% - 7.5px);
    gap: 15px;
  }

  .portal-number {
    font-size: 14px;
  }

  .portal-header {
    font-size: 18px;
    line-height: 120%;
  }

  .portal-mobile-description {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    line-height: 140%;
  }

  .portal-desktop-only {
    display: none;
  }

  .portal-button-container {
    flex-direction: column;
    gap: 20px;
    padding: 20px 15px;
  }

  .portal-section-text {
    width: 100%;
    gap: 12px;
  }

  .portal-text {
    font-size: 16px;
    line-height: 130%;
  }

  .portal-button {
    width: 100%;
    max-width: 280px;
    padding: 12px 20px;
  }

  .portal-button-text {
    font-size: 14px;
  }

  .portal-arrow-icon {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 1616px) {
  .portal-heading-h1 {
    font-size: 50px;
  }

  .portal-features-container {
    padding: 70px 0;
  }

  .portal-features-container {
    gap: 30px;
  }

  .portal-button {
    gap: 2px;
  }

  .portal-button-container {
    padding: 10px 80px;
  }

  .portal-hero-text {
    min-width: 700px;
  }
}

@media (max-width: 1616px) {
  .portal-heading-h1 {
    font-size: 2.4rem;
  }

  .portal-features-container {
    padding: 46px 0;
  }

  .portal-features-container {
    gap: 30px;
  }

  .portal-button {
    gap: 2px;
  }

  .portal-button-container {
    padding: 10px 80px;
  }

  .portal-benefit-item {
    font-size: 16px;
  }

  .portal-hero-text {
    min-width: 500px;
  }
}

@media (max-width: 968px) {
  .portal-heading-h1 {
    font-size: 2.2rem;
  }

  .portal-hero-text {
    min-width: 100px;
  }
}

@media (max-width: 630px) {
  .portal-heading-h3 {
    letter-spacing: 0.16em;
    font-variant: small-caps;
  }

  .portal-heading-h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    max-width: 400px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .portal-heading-h1::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }
}

@media (max-width: 480px) {
  .portal-benefit-item {
    font-size: 15px;
  }

  .portal-header {
    font-size: 16px;
  }

  .portal-button-container {
    padding: 8px 50px;
  }

  .portal-button {
    padding: 8px 6px;
    max-width: 220px;
  }
}

/* posibilities section */
.possibilities-section .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.possibilities-group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}

.possibilities-heading {
  flex: 0 0 260px;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
}

.possibilities-heading-blue {
  color: #0c47a0;
  display: block;
}

.possibilities-heading-black {
  color: #1a1a1a;
  display: block;
}

.possibilities-lists {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.possibilities-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.possibilities-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 6px;
}

.possibilities-item-num {
  flex-shrink: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #939393;
  width: 20px;
}

.possibilities-item-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #393939;
}

@media (max-width: 1024px) {
  .possibilities-heading {
    flex: 0 0 200px;
    font-size: 44px;
  }

  .possibilities-item-text {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  .possibilities-section {
    gap: 36px;
  }

  .possibilities-group {
    flex-direction: column;
    gap: 20px;
  }

  .possibilities-heading {
    flex: none;
    font-size: 36px;
  }

  .possibilities-lists {
    flex-direction: column;
    gap: 16px;
  }

  .possibilities-col {
    gap: 12px;
  }

  .possibilities-item-text {
    font-size: 15px;
  }

  .possibilities-heading {
    margin-bottom: 40px;
    min-width: 100px !important;
  }
}

@media (max-width: 400px) {
  .possibilities-heading {
    font-size: 28px;
  }
}

@media (min-width: 1616px) {
  .possibilities-heading {
    min-width: 500px;
  }

  .possibilities-group {
    gap: 0;
  }

  .possibilities-heading {
    font-size: 50px;
  }

  .possibilities-item-text {
    font-size: 18px;
  }

  .possibilities-item-num {
    font-size: 16px;
  }
}

@media (max-width: 1616px) {
  .possibilities-heading {
    font-size: 2.4rem;
  }

  .possibilities-heading {
    min-width: 375px;
  }

  .possibilities-group {
    gap: 0;
  }

  .possibilities-item-text {
    font-size: 17px;
  }

  .possibilities-item-num {
    font-size: 15px;
  }
}

@media (max-width: 630px) {
  .possibilities-heading {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    max-width: 400px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .possibilities-heading::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }
}

/* presentation section */
.presentation-section .container {
  position: relative;
  width: 100%;
  min-height: 839px;
  overflow: hidden;
  background: linear-gradient(180deg, #03051e 0%, #0d1684 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.presentation-ellipse {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
}

.presentation-ellipse-8 {
  width: 2099px;
  height: 1203px;
  top: 126px;
  background: linear-gradient(
    180deg,
    rgba(17, 14, 67, 0.57) 0%,
    rgba(11, 10, 52, 0.57) 100%
  );
  border-radius: 609px;
  z-index: 1;
}
.presentation-ellipse-7 {
  width: 1851px;
  height: 1060px;
  top: 198px;
  background: linear-gradient(
    180deg,
    rgba(8, 16, 115, 0.28) 0%,
    rgba(11, 10, 52, 0.28) 100%
  );
  border-radius: 577px;
  z-index: 2;
}
.presentation-ellipse-6 {
  width: 1638px;
  height: 937px;
  top: 259px;
  background: linear-gradient(
    180deg,
    rgba(8, 16, 115, 0.64) 0%,
    rgba(9, 12, 115, 0.64) 100%
  );
  border-radius: 529px;
  z-index: 3;
}
.presentation-ellipse-5 {
  width: 1373px;
  height: 787px;
  top: 321px;
  background: linear-gradient(
    180deg,
    rgba(6, 41, 196, 0.46) 0%,
    rgba(3, 12, 67, 0.46) 100%
  );
  border-radius: 433px;
  z-index: 4;
}
.presentation-ellipse-4 {
  width: 1160px;
  height: 665px;
  top: 388px;
  background: linear-gradient(
    180deg,
    rgba(7, 40, 197, 0.59) 0%,
    rgba(10, 13, 116, 0.59) 100%
  );
  border-radius: 388px;
  z-index: 5;
}
.presentation-ellipse-3 {
  width: 940px;
  height: 539px;
  top: 458px;
  background: linear-gradient(
    180deg,
    rgba(48, 103, 253, 0.7) 0%,
    rgba(8, 14, 115, 0.7) 100%
  );
  border-radius: 328px;
  z-index: 6;
}
.presentation-ellipse-2 {
  width: 674px;
  height: 387px;
  top: 534px;
  background: linear-gradient(
    180deg,
    rgba(100, 142, 255, 0.74) 0%,
    rgba(38, 56, 180, 0.74) 100%
  );
  border-radius: 200px;
  z-index: 7;
}
.presentation-ellipse-1 {
  width: 457px;
  height: 263px;
  top: 607px;
  background: linear-gradient(
    180deg,
    rgba(171, 199, 253, 0.8) 0%,
    rgba(34, 83, 216, 0.8) 100%
  );
  border-radius: 131.5px;
  z-index: 8;
}

.presentation-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 41px;
  width: 891px;
  margin-top: 197px;
}

.presentation-heading {
  width: 100%;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  font-size: 52px;
  line-height: 1;
  text-align: center;
  color: #fff;
}

.presentation-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 568px;
}

.presentation-label {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: #939393;
  width: 100%;
}

@media (min-width: 1616px) {
  .presentation-heading {
    width: 100%;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 1;
    text-align: center;
    color: #fff;
  }

  .presentation-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 568px;
  }

  .presentation-label {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: #939393;
    width: 100%;
  }
}

.presentation-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.presentation-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.presentation-item-num {
  flex-shrink: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #939393;
  width: 18px;
}

.presentation-item-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: #fff;
}

.presentation-btn {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 348px;
  height: 103px;
  margin-top: calc(687px - 197px - 318px - 41px);
  background: radial-gradient(
    147.13% 779.18% at 50% 50%,
    #060a3c 0%,
    #101ba2 100%
  );
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.presentation-btn:hover {
  opacity: 0.85;
}

.presentation-btn-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: #fff;
}

.presentation-btn-arrow {
  font-size: 22px;
  color: #fff;
  line-height: 1;
}

@media (min-width: 1616px) {
  .presentation-section {
    margin-top: 110px;
    margin-bottom: 110px;
  }

  .presentation-content {
    margin-top: 50px;
  }

  .presentation-btn {
    margin-top: 290px;
  }

  .presentation-label {
    font-size: 16px;
  }

  .presentation-item-text {
    font-size: 20px;
  }

  .presentation-text-block {
    width: 640px;
  }
}

@media (max-width: 1616px) {
  .presentation-section {
    margin-top: 110px;
    margin-bottom: 110px;
  }

  .presentation-content {
    margin-top: 50px;
  }

  .presentation-btn {
    margin-top: 290px;
  }

  .presentation-label {
    font-size: 16px;
  }

  .presentation-item-text {
    font-size: 18px;
  }

  .presentation-text-block {
    width: 640px;
  }

  .presentation-item-num {
    font-size: 15px;
  }

  .presentation-btn-text {
    font-size: 21px;
  }
}

@media (max-width: 968px) {
  .presentation-heading {
    text-align: left;
    max-width: 320px;
  }

  .presentation-text-block {
    align-items: flex-start;
  }

  .presentation-content {
    align-items: flex-start;
    width: 100%;
  }

  .presentation-text-block {
    width: 100%;
  }

  .presentation-btn {
    margin-top: 260px;
  }

  .presentation-heading {
    font-size: 40px;
  }

  .presentation-section .container {
    min-height: 790px;
  }
}

@media (max-width: 480px) {
  .presentation-item-text {
    font-size: 18px;
  }

  .presentation-btn {
    margin-bottom: 30px;
    width: 310px;
  }

  .presentation-btn-text {
    font-size: 21px;
  }
}

/* solutions section */
.solutions-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.solutions-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}

.solutions-heading-h1 {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 74px;
  line-height: 100%;
  color: #393939;
  max-width: 55%;
}

.solutions-paragraph {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  color: #393939;
  margin-left: 34.38%;
  max-width: 50%;
}

.solutions-paragraph .highlight {
  color: #0c47a0;
}

.solutions-cards {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 27px;
}

.solutions-card:nth-child(1) .solutions-card-bg {
  object-position: 0% center;
}

.solutions-card:nth-child(2) .solutions-card-bg {
  object-position: 50% center;
}

.solutions-card:nth-child(3) .solutions-card-bg {
  object-position: 100% center;
}

.solutions-card {
  flex: 1 1 0;
  min-width: 0;
  min-height: 637px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 41px 26px;
  gap: 78px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: #d9d9d9;
}

.solutions-card-bg {
  position: absolute;
  inset: 0;
  width: 150%;
  height: 166%;
  object-fit: cover;
  z-index: 0;
}

.solutions-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 71, 160, 0.29) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

.solutions-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.solutions-card-heading-h2 {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  color: #ffffff;
  width: 100%;
}

.solutions-card-line {
  width: 100%;
  height: 0;
  border: 1px solid #ffffff;
}

.solutions-card-body {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: #ffffff;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 1616px) {
  .solutions-heading-h1,
  .telegram-platform-heading-h1 {
    font-size: 50px;
  }

  .solutions-header {
    margin-bottom: 46px;
  }

  .solutions-paragraph {
    font-size: 30px;
    max-width: 40%;
  }

  .solutions-card {
    min-height: 600px;
  }
}

@media (max-width: 1616px) {
  .solutions-heading-h1,
  .telegram-platform-heading-h1 {
    font-size: 2.4rem;
  }

  .solutions-paragraph {
    font-size: 22px;
    max-width: 39%;
  }

  .solutions-header {
    margin-bottom: 36px;
  }

  .solutions-card {
    min-height: 480px;
  }

  .solutions-card-heading-h2 {
    font-size: 26px;
  }

  .solutions-card-body {
    font-size: 19px;
  }
}

@media (max-width: 968px) {
  .solutions-header {
    gap: 16px;
  }

  .solutions-heading-h1,
  .telegram-platform-heading-h1 {
    font-size: 2.5rem;
    max-width: 100%;
  }

  .solutions-paragraph {
    font-size: 18px;
    margin-left: 0;
    max-width: 100%;
  }

  .solutions-cards {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .solutions-card {
    width: 100%;
    min-height: 167px;
    height: auto;
    padding: 20px 18px;
    gap: 16px;
  }

  .solutions-card-heading-h2 {
    font-size: 22px;
  }

  .solutions-card-body {
    font-size: 14px;
  }

  .solutions-card-bg {
    width: 150%;
    height: 166%;
  }

  .solutions-card:nth-child(1) .solutions-card-bg {
    object-position: center 23%;
  }

  .solutions-card:nth-child(2) .solutions-card-bg {
    object-position: center 62%;
  }

  .solutions-card:nth-child(3) .solutions-card-bg {
    object-position: center 100%;
  }
}

@media (max-width: 630px) {
  .solutions-heading-h1 {
    font-size: 2.4rem;
  }

  .solutions-paragraph {
    font-size: 16px;
  }

  .solutions-heading-h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    max-width: 400px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .solutions-heading-h1::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }
}

/* integration section */
.integration-section .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.integration-group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}

.integration-heading {
  flex: 0 0 260px;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1;
}

.integration-heading-blue {
  color: #0c47a0;
  display: block;
}

.integration-heading-black {
  color: #1a1a1a;
  display: block;
}

.integration-lists {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.integration-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.integration-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 7px;
}

.integration-item-num {
  flex-shrink: 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #939393;
  width: 20px;
}

.integration-item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  flex: 1;
}

.integration-item-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: #393939;
}

.integration-item-description {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #939393;
}

@media (max-width: 1024px) {
  .integration-heading {
    flex: 0 0 200px;
    font-size: 44px;
  }

  .integration-item-text {
    font-size: 15px;
  }

  .integration-item-description {
    font-size: 13px;
  }
}

@media (max-width: 968px) {
  .integration-section {
    gap: 36px;
  }

  .integration-group {
    flex-direction: column;
    gap: 20px;
  }

  .integration-heading {
    flex: none;
    font-size: 36px;
  }

  .integration-lists {
    flex-direction: column;
    gap: 16px;
  }

  .integration-col {
    gap: 12px;
  }

  .integration-item-text {
    font-size: 15px;
  }

  .integration-item-description {
    font-size: 13px;
  }

  .integration-heading {
    margin-bottom: 40px;
    min-width: 100px !important;
  }
}

@media (max-width: 400px) {
  .integration-heading {
    font-size: 28px;
  }
}

@media (min-width: 1616px) {
  .integration-heading {
    min-width: 500px;
  }

  .integration-group {
    gap: 0;
  }

  .integration-heading {
    font-size: 50px;
  }

  .integration-item-text {
    font-size: 18px;
  }

  .integration-item-num {
    font-size: 16px;
  }

  .integration-item-description {
    font-size: 14px;
  }
}

@media (max-width: 1616px) {
  .integration-heading {
    font-size: 2.4rem;
  }

  .integration-heading {
    min-width: 375px;
  }

  .integration-group {
    gap: 0;
  }

  .integration-item-text {
    font-size: 17px;
  }

  .integration-item-num {
    font-size: 15px;
  }

  .integration-item-description {
    font-size: 14px;
  }
}

@media (max-width: 630px) {
  .integration-heading,
  .our-portfolio-heading-h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    max-width: 400px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .integration-heading::first-letter,
  .our-portfolio-heading-h1::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }
}

/* free presentations section */
.free-presentations-section {
  width: 100%;
  position: relative;
}

.free-presentations-frame {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: none;
  order: 6;
  flex-grow: 0;
}

.free-presentations-group-all {
  position: absolute;
  width: 1945.28px;
  height: 928.61px;
  left: -64.5px;
  top: -186px;
  pointer-events: none;
}

.free-presentations-heading-h1 {
  position: relative;
  width: 100%;
  max-width: 1223px;
  margin: 0 auto 16px;
  font-family: 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 38px;
  line-height: 101%;
  text-align: center;
  color: #393939;
}

.free-presentations-heading-h1 br {
  display: inline;
}

.free-presentations-text-blue {
  color: #0c47a0;
}

.free-presentations-button-primary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  gap: 4px;
  width: 210px;
  height: 36px;
  background: #0c47a0;
  border-radius: 9px;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
  margin: 0 auto;
  border: none;
}

.free-presentations-button-primary:hover {
  background: #223aa6;
}

.free-presentations-button-primary:focus {
  background: #0c47a0;
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.free-presentations-button-primary:focus:hover {
  background: #223aa6;
}

.free-presentations-button-primary:active {
  background: #7a8ad1;
}

.free-presentations-button-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.4s,
    height 0.4s,
    opacity 0.4s;
  opacity: 0;
}

.free-presentations-button-primary:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.free-presentations-button-text {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  flex: none;
  flex-grow: 0;
  white-space: nowrap;
}

@media (min-width: 1616px) {
  .free-presentations-group-all svg {
    width: 2000px;
    position: relative;
    top: 100px;
  }

  .free-presentations-section {
    height: 400px;
  }

  .free-presentations-section .container {
    position: relative;
    top: 60px;
  }

  .free-presentations-section .free-presentations-group-all {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }

  .free-presentations-section .free-presentations-group-all svg {
    width: 100%;
    height: auto;
  }

  .free-presentations-heading-h1 {
    margin-bottom: 24px;
  }

  .free-presentations-button-text {
    font-size: 17px;
  }

  .free-presentations-button-primary {
    width: 270px;
    height: 42px;
  }
}

@media (max-width: 1400px) {
  .free-presentations-heading-h1 {
    font-size: 34px;
    max-width: 1000px;
  }

  .free-presentations-frame {
    height: 300px;
  }
}

@media (max-width: 1200px) {
  .free-presentations-heading-h1 {
    font-size: 30px;
    max-width: 900px;
  }

  .free-presentations-frame {
    height: 280px;
  }
}

@media (max-width: 968px) {
  .free-presentations-heading-h1 {
    font-size: 26px;
    max-width: 700px;
  }

  .free-presentations-heading-h1 br {
    display: none;
  }

  .free-presentations-frame {
    height: auto;
  }

  .free-presentations-group-all {
    display: block;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: 0;
    height: auto;
  }

  .free-presentations-group-all svg {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    top: -70px !important;
  }
}

@media (max-width: 768px) {
  .free-presentations-heading-h1 {
    font-size: 22px;
    max-width: 100%;
  }

  .free-presentations-button-primary {
    width: 190px;
    height: 34px;
  }

  .free-presentations-button-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .free-presentations-heading-h1 {
    font-size: 18px;
  }

  .free-presentations-button-primary {
    width: 180px;
    height: 32px;
  }

  .free-presentations-button-text {
    font-size: 12px;
  }
}

@media (max-width: 1616px) and (min-width: 980px) {
  .free-presentations-section .free-presentations-group-all {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }

  .free-presentations-section .free-presentations-group-all svg {
    max-width: 2000px;
    height: auto;
    position: relative;
    top: 140px;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 1480px) {
  .free-presentations-section {
    overflow: hidden;
  }

  .free-presentations-section .free-presentations-group-all svg {
    position: relative;
    top: 190px;
  }

  .free-presentations-frame {
    height: 340px;
  }
}

@media (min-width: 2400px) {
  .free-presentations-section .free-presentations-group-all svg {
    width: 2000px;
    max-width: 2000px;
    height: auto;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 980px) {
  .free-presentations-frame {
    height: 282px;
  }
}

@media (max-width: 630px) {
  .free-presentations-frame {
    height: 210px;
  }
}

@media (max-width: 480px) {
  .free-presentations-frame {
    height: 178px;
  }
}

@media (max-width: 360px) {
  .free-presentations-frame {
    height: 210px;
  }
}

/* our roles section */
.our-roles-section {
  width: 100%;
}

.our-roles-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 54px;
  width: 100%;
}

.our-roles-container-all-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 60px;
  width: 100%;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.our-roles-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 24px 20px;
  gap: 10px;
  width: 385px;
  min-width: 385px;
  height: 534px;
  background: #000f2c;
  border-radius: 30px;
  flex: none;
  flex-grow: 0;
  position: relative;
  overflow: hidden;
}

.our-roles-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-position: 84% center;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.our-roles-number {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 100%;
  color: #0c47a0;
  flex: none;
  flex-grow: 0;
  position: relative;
  z-index: 1;
}

.our-roles-container-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 32px;
  width: 100%;
  z-index: 10;
}

.our-roles-heading-h1 {
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 101%;
  color: #393939;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}

.our-roles-container-description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 22px;
  width: 100%;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.our-roles-section-heading-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 11px;
  width: 100%;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.our-roles-heading-h2 {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #393939;
  flex: none;
  flex-grow: 0;
  margin: 0;
}

.our-roles-text {
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #939393;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}

@media (max-width: 1200px) {
  .our-roles-frame {
    max-width: 100%;
  }

  .our-roles-container-all-text {
    gap: 40px;
  }

  .our-roles-card {
    width: 320px;
    min-width: 320px;
    height: 450px;
  }

  .our-roles-heading-h1 {
    font-size: 30px;
  }

  .our-roles-heading-h2 {
    font-size: 18px;
  }

  .our-roles-text {
    font-size: 16px;
  }

  .our-roles-number {
    font-size: 40px;
  }
}

@media (max-width: 1616px) {
  .our-roles-heading-h1 {
    font-size: 30px;
  }

  .our-roles-heading-h2 {
    font-size: 18px;
  }

  .our-roles-text {
    font-size: 16px;
  }
}

@media (max-width: 968px) {
  .our-roles-frame {
    gap: 40px;
  }

  .our-roles-container-all-text,
  .our-roles-container-all-text:nth-child(odd) {
    flex-direction: column;
    gap: 30px;
  }

  .our-roles-card {
    width: 100%;
    min-width: 100%;
    max-width: 385px;
    max-height: 240px;
    margin: 0 auto;
  }

  .our-roles-container-text {
    max-width: 100%;
  }

  .our-roles-heading-h1 {
    font-size: 26px;
  }

  .our-roles-heading-h2 {
    font-size: 17px;
  }

  .our-roles-text {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .our-roles-frame {
    gap: 35px;
  }

  .our-roles-card {
    height: 400px;
  }

  .our-roles-heading-h1 {
    font-size: 24px;
  }

  .our-roles-heading-h2 {
    font-size: 16px;
  }

  .our-roles-text {
    font-size: 14px;
  }

  .our-roles-number {
    font-size: 36px;
  }

  .our-roles-container-description {
    gap: 18px;
  }

  .our-roles-section-heading-text {
    gap: 9px;
  }
}

@media (max-width: 480px) {
  .our-roles-frame {
    gap: 30px;
  }

  .our-roles-card {
    height: 350px;
  }

  .our-roles-heading-h1 {
    font-size: 20px;
  }

  .our-roles-heading-h2 {
    font-size: 16px;
  }

  .our-roles-text {
    font-size: 14px;
  }

  .our-roles-number {
    font-size: 32px;
  }

  .our-roles-container-text {
    gap: 24px;
  }

  .our-roles-container-description {
    gap: 16px;
  }
}

/* development process section */
.development-process-section {
  width: 100%;
}

.development-process-frame {
  width: 100%;
  position: relative;
}

.development-process-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 41px;
  width: 100%;
  max-width: 888px;
  margin: 0 auto 40px;
}

.development-process-heading-h1 {
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 64px;
  line-height: 100%;
  text-align: center;
  color: #393939;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.development-process-text-description {
  width: 100%;
  max-width: 626px;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: #939393;
  flex: none;
  flex-grow: 0;
}

.development-process-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  gap: 8px;
  width: 152px;
  height: 34px;
  background: #0c47a0;
  border-radius: 9px;
  flex: none;
  flex-grow: 0;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s ease;
}

.development-process-button:hover {
  background: #223aa6;
}

.development-process-button:focus {
  background: #0c47a0;
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.development-process-button:focus:hover {
  background: #223aa6;
}

.development-process-button:active {
  background: #7a8ad1;
}

.development-process-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.4s,
    height 0.4s,
    opacity 0.4s;
  opacity: 0;
}

.development-process-button:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.development-process-button-text {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  flex: none;
  flex-grow: 0;
}

.development-process-all-cards {
  position: relative;
  width: 100%;
  height: 654px;
}

.development-process-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 26px;
  gap: 10px;
  position: absolute;
  width: 432px;
  height: 313px;
  border: 3px solid #f4f4f4;
  border-radius: 30px;
}

.development-process-card-1 {
  left: 0;
  top: 0;
}

.development-process-card-2 {
  left: 0;
  top: 341px;
}

.development-process-card-3 {
  right: 0;
  top: 0;
}

.development-process-card-4 {
  right: 0;
  top: 341px;
}

.development-process-section-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
  width: 100%;
  flex: none;
  flex-grow: 0;
}

.development-process-heading-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex: none;
  flex-grow: 0;
}

.development-process-heading-h4 {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  color: #393939;
  flex: none;
  flex-grow: 0;
}

.development-process-icon {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 4px 5px;
  gap: 10px;
  width: 81px;
  height: 81px;
  border: 3px solid #f4f4f4;
  border-radius: 10px;
  flex: none;
  flex-grow: 0;
}

.development-process-container-description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.development-process-text-number {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 5px;
  width: 100%;
  flex: none;
  align-self: stretch;
  flex-grow: 0;
}

.development-process-number {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #939393;
  flex: none;
  flex-grow: 0;
  min-width: 18px;
}

.development-process-text {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #939393;
  flex: 1;
}

.development-process-connection-graphic {
  position: absolute;
  width: 234px;
  height: 344px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.development-process-center-icon {
  position: absolute;
  width: 72px;
  height: 72px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    67.36% 67.36% at 50% 50%,
    #a5c6f6 0%,
    #0c47a0 100%
  );
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.development-process-center-icon-img {
  width: 40px;
  height: 40px;
}

.development-process-line {
  position: absolute;
}

.development-process-line-top-left {
  left: 0;
  top: 0;
}

.development-process-line-bottom-left {
  left: 0;
  bottom: 0;
  transform: scaleY(-1);
}

.development-process-line-top-right {
  right: 0;
  top: 0;
  transform: scaleX(-1);
}

.development-process-line-bottom-right {
  right: 0;
  bottom: 0;
  transform: scale(-1, -1);
}

.development-process-line {
  position: absolute;
  transition: all 0.3s ease;
  transform: scale(1.5, 1.3);
}

.development-process-line-top-left {
  left: -158px;
  top: -28px;
}

.development-process-line-top-right {
  right: -158px;
  top: -28px;
}

.development-process-line-bottom-left {
  left: -158px;
  bottom: -28px;
}

.development-process-line-bottom-right {
  right: -158px;
  bottom: -28px;
}

@media (max-width: 1200px) {
  .development-process-line-top-left {
    left: -80px;
    top: -70px;
  }

  .development-process-line-top-right {
    right: -80px;
    top: -70px;
  }

  .development-process-line-bottom-left {
    left: -80px;
    bottom: -70px;
  }

  .development-process-line-bottom-right {
    right: -80px;
    bottom: -70px;
  }
}

@media (max-width: 968px) {
  .development-process-connection-graphic {
    display: none;
  }
}

@media (max-width: 1200px) {
  .development-process-text-description {
    font-size: 18px;
  }

  .development-process-all-cards {
    height: 580px;
  }

  .development-process-card {
    width: 380px;
    height: 280px;
    padding: 25px 20px;
  }

  .development-process-card-2 {
    top: 300px;
  }

  .development-process-card-4 {
    top: 300px;
  }

  .development-process-heading-h4 {
    font-size: 22px;
  }

  .development-process-text {
    font-size: 16px;
  }

  .development-process-icon {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 968px) {
  .development-process-hero {
    margin-bottom: 40px;
  }

  .development-process-heading-h1,
  .yandex-benefits-hero-card-title,
  .stack-hero-heading {
    font-size: 2.5rem;
  }

  .development-process-text-description {
    font-size: 16px;
  }

  .development-process-all-cards {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .development-process-card {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100%;
    height: auto;
  }

  .development-process-connection-graphic {
    display: none;
  }
}

@media (max-width: 768px) {
  .development-process-text-description {
    font-size: 15px;
  }

  .development-process-button {
    width: 140px;
    height: 32px;
  }

  .development-process-button-text {
    font-size: 13px;
  }

  .development-process-heading-h4 {
    font-size: 20px;
  }

  .development-process-text {
    font-size: 15px;
  }

  .development-process-number {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .development-process-text-description {
    font-size: 14px;
  }

  .development-process-card {
    padding: 20px 18px;
  }

  .development-process-heading-h4 {
    font-size: 18px;
  }

  .development-process-text {
    font-size: 14px;
  }

  .development-process-icon {
    width: 60px;
    height: 60px;
  }

  .development-process-container-description {
    gap: 15px;
  }
}

@media (min-width: 1616px) {
  .development-process-heading-h1,
  .yandex-benefits-hero-card-title {
    font-size: 50px;
  }

  .development-process-button {
    width: 190px;
    height: 42px;
  }

  .development-process-button-text {
    font-size: 17px;
  }
}

@media (max-width: 1616px) {
  .development-process-heading-h1,
  .yandex-benefits-hero-card-title {
    font-size: 2.4rem;
  }

  .development-process-line {
    transform: scale(0.9, 0.9);
  }

  .development-process-line-top-left {
    left: -102px;
    top: 2px;
  }

  .development-process-line-top-right {
    right: -102px;
    top: 2px;
  }

  .development-process-line-bottom-left {
    left: -102px;
    bottom: 2px;
  }

  .development-process-line-bottom-right {
    right: -102px;
    bottom: 2px;
  }

  .development-process-card {
    width: 386px;
  }

  .development-process-text-description {
    font-size: 17px;
  }

  .development-process-heading-h4 {
    font-size: 19px;
  }

  .development-process-text {
    font-size: 16px;
  }

  .development-process-button {
    gap: 3px;
  }
}

@media (max-width: 1220px) {
  .development-process-line {
    display: none;
  }
}

@media (max-width: 968px) {
  .development-process-card {
    width: 100%;
  }

  .development-process-hero {
    gap: 28px;
  }
}

@media (max-width: 630px) {
  .development-process-heading-h1,
  .our-services-main-heading {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    max-width: 400px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .development-process-heading-h1::first-letter,
  .our-services-main-heading::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }
}

/* our-services-section */
.our-services-section {
  width: 100%;
}

.our-services-main-heading {
  font-family: 'Segoe UI';
  font-style: normal;
  font-weight: 600;
  font-size: 74px;
  line-height: 100%;
  color: #393939;
  margin-bottom: 50px;
}

.our-services-cards-container {
  display: flex;
  flex-direction: row;
  gap: 52px;
  flex-wrap: wrap;
}

.our-services-card-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0px;
  gap: 30px;
  flex: 1;
  min-width: 300px;
}

.our-services-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.our-services-card {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding: 21px 29px;
  gap: 10px;
  width: 100%;
  height: 335px;
  background: #d9d9d9;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.our-services-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.our-services-card-number {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 100%;
  color: #0c47a0;
  z-index: 1;
}

.our-services-card-title {
  font-family: 'Segoe UI';
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 101%;
  color: #393939;
  margin-top: 10px;
}

.our-services-description-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 22px;
  width: 100%;
}

.our-services-feature-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 11px;
  width: 100%;
}

.our-services-feature-heading {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #393939;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.our-services-feature-text {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #939393;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.our-services-cta-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  gap: 10px;
  width: 152px;
  height: 34px;
  background: #0c47a0;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  flex: none;
  order: 4;
  flex-grow: 0;
}

.our-services-cta-button:hover {
  background: #223aa6;
}

.our-services-cta-button:focus {
  background: #0c47a0;
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.our-services-cta-button:focus:hover {
  background: #223aa6;
}

.our-services-cta-button:active {
  background: #7a8ad1;
}

.our-services-cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.4s,
    height 0.4s,
    opacity 0.4s;
  opacity: 0;
}

.our-services-cta-button:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.our-services-button-text {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #ffffff;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.our-services-button-icon {
  width: 18px;
  height: 18px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.our-services-button-icon svg {
  width: 100%;
  height: 100%;
}

@media (min-width: 1616px) {
  .our-services-main-heading {
    font-size: 50px;
  }
}

@media (max-width: 1616px) {
  .our-services-main-heading {
    font-size: 2.4rem;
  }
}

@media (max-width: 968px) {
  .our-services-main-heading {
    font-size: 2.5rem;
  }
}

@media (min-width: 1616px) {
  .our-services-cta-button {
    width: 190px;
    height: 44px;
    gap: 5px;
  }

  .our-services-button-text {
    font-size: 17px;
  }

  .our-services-button-icon {
    width: 22px;
    height: 22px;
  }

  .our-services-feature-heading {
    font-size: 22px;
  }

  .our-services-feature-text {
    font-size: 19px;
  }

  .our-services-card {
    max-height: 300px;
  }
}

@media (max-width: 1616px) {
  .our-services-card-title {
    font-size: 30px;
  }

  .our-services-feature-heading {
    font-size: 17px;
  }

  .our-services-feature-text {
    font-size: 15px;
  }

  .our-services-card {
    max-height: 240px;
  }

  .our-services-main-heading {
    margin-bottom: 30px;
  }
}

@media (max-width: 968px) {
  .our-services-cards-container {
    flex-direction: column;
  }

  .our-services-card-column {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .our-services-card {
    height: 250px;
  }

  .our-services-card-title {
    font-size: 28px;
  }

  .our-services-card-number {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .our-services-card {
    height: 200px;
  }

  .our-services-card-title {
    font-size: 24px;
  }

  .our-services-feature-heading {
    font-size: 18px;
  }

  .our-services-feature-text {
    font-size: 16px;
  }
}

/* partners section */
.partners-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  margin-top: 30px;
  gap: 10px;
  width: 100%;
  height: 110px;
  background: #f4f4f4;
  overflow: hidden;
  position: relative;
}

.partners-marquee-container {
  width: 100%;
  height: 42px;
  overflow: hidden;
  position: relative;
}

.partners-marquee-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 71px;
  height: 42px;
  animation: scroll-right 20s linear infinite;
  will-change: transform;
}

.partners-logo {
  width: 161px;
  height: 42px;
  flex: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
  .partners-section {
    padding: 20px 0;
    height: 90px;
  }

  .partners-marquee-track {
    gap: 50px;
    animation: scroll-right 15s linear infinite;
  }

  .partners-logo {
    width: 120px;
    height: 35px;
  }

  .partners-section {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .partners-section {
    padding: 15px 0;
    height: 70px;
  }

  .partners-marquee-track {
    gap: 40px;
    animation: scroll-right 12s linear infinite;
  }

  .partners-logo {
    width: 100px;
    height: 30px;
  }
}

@media (max-width: 1616px) and (min-width: 980px) {
  .partners-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}

@media (min-width: 1616px) {
  .partners-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}

/* our portfolio section */
.our-portfolio-container {
  width: 100%;
}

.our-portfolio-header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}

.our-portfolio-header-text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.our-portfolio-heading-wrapper {
  display: inline-block;
  position: relative;
}

.our-portfolio-heading-h1 {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 100%;
  color: #393939;
  position: relative;
  z-index: 1;
}

.our-portfolio-paragraph-h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #939393;
}

.our-portfolio-selection-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.our-portfolio-menu-1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.our-portfolio-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  background: transparent;
}

.our-portfolio-button-primary {
  border: 1px solid #0c47a0;
}

.our-portfolio-button-primary .our-portfolio-button-text {
  color: #0c47a0;
}

.our-portfolio-button-secondary {
  border: 1px solid #393939;
}

.our-portfolio-button-secondary .our-portfolio-button-text {
  color: #393939;
}

.our-portfolio-button-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}

.our-portfolio-menu-2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  justify-content: center;
}

.our-portfolio-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 10px;
  background: #f4f4f4;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.our-portfolio-item:hover {
  background: #e8e8e8;
}

.our-portfolio-item-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #0c47a0;
  white-space: nowrap;
}

.our-portfolio-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.our-portfolio-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
}

.our-portfolio-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 calc(33.333% - 7px);
  min-width: 300px;
}

.our-portfolio-image {
  width: 100%;
  height: 312px;
  border-radius: 14px;
  object-fit: cover;
  background: #9eb7e6;
}

.our-portfolio-sub-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  height: 93px;
}

.our-portfolio-card-title-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  background: #f4f4f4;
  border-radius: 10px;
  flex: 1;
}

.our-portfolio-heading {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  text-transform: capitalize;
  color: #393939;
}

.our-portfolio-details-button-container {
  display: none;
}

.our-portfolio-tags-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 30px;
  gap: 16px;
  background: #f4f4f4;
  border-radius: 10px;
  width: 100%;
}

.our-portfolio-tags-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.our-portfolio-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid #393939;
  border-radius: 16px;
}

.our-portfolio-tag-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #393939;
  white-space: nowrap;
}

.our-portfolio-load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.our-portfolio-load-more-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  gap: 10px;
  background: #0c47a0;
  border-radius: 9px;
  border: none;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.our-portfolio-load-more-button:hover {
  background: #223aa6;
}

.our-portfolio-load-more-button:focus {
  background: #0c47a0;
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.our-portfolio-load-more-button:focus:hover {
  background: #223aa6;
}

.our-portfolio-load-more-button:active {
  background: #7a8ad1;
}

.our-portfolio-load-more-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.4s,
    height 0.4s,
    opacity 0.4s;
  opacity: 0;
}

.our-portfolio-load-more-button:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.our-portfolio-load-more-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #ffffff;
}

.our-portfolio-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

@media (min-width: 1616px) {
  .our-portfolio-heading-h1 {
    font-size: 50px;
  }

  .our-portfolio-header {
    margin-bottom: 30px;
  }

  .our-portfolio-button-primary {
    min-width: 180px;
  }

  .our-portfolio-card-title-container {
    height: 100%;
    min-width: 160px;
  }

  .our-portfolio-tag-text {
    font-size: 16px;
  }

  .our-portfolio-tag {
    padding: 2px 10px;
  }

  .our-portfolio-heading {
    font-size: 20px;
  }

  .our-portfolio-item-text {
    font-size: 16px;
  }

  .our-portfolio-load-more-text {
    font-size: 18px;
  }

  .our-portfolio-load-more-button {
    padding: 10px 14px;
    gap: 4px;
  }
}

@media (max-width: 1616px) {
  .our-portfolio-heading-h1 {
    font-size: 2.4rem;
  }

  .our-portfolio-header {
    margin-bottom: 30px;
  }

  .our-portfolio-card-title-container {
    height: 100%;
    min-width: 100px;
  }

  .our-portfolio-tags-container {
    padding: 30px 15px;
  }

  .our-portfolio-tag {
    padding: 3px 8px;
  }

  .our-portfolio-image {
    height: 232px;
  }

  .our-portfolio-button-primary {
    min-width: 180px;
  }

  .our-portfolio-load-more-button {
    gap: 4px;
  }
}

@media (max-width: 968px) {
  .our-portfolio-heading-h1,
  .overload-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 968px) {
  .our-portfolio-container {
    max-width: 100%;
  }

  .our-portfolio-paragraph-h2 {
    font-size: 16px;
  }

  .our-portfolio-header {
    margin-bottom: 20px;
    gap: 20px;
  }

  .our-portfolio-header-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .our-portfolio-button-text {
    font-size: 16px;
  }

  .our-portfolio-item-text {
    font-size: 14px;
  }

  .our-portfolio-row {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .our-portfolio-card {
    width: 100%;
    padding: 10px;
    flex: 1 1 100%;
    min-width: 0;
  }

  .our-portfolio-image {
    height: 184px;
  }

  .our-portfolio-sub-container {
    flex-direction: row;
    gap: 10px;
    height: auto;
  }

  .our-portfolio-left-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 200px;
    flex: 0 0 100px;
  }

  .our-portfolio-card-title-container {
    width: 100%;
    padding: 16px 20px;
    flex: 0 0 46px;
    height: 46px;
  }

  .our-portfolio-heading {
    font-size: 16px;
    font-weight: 500;
  }

  .our-portfolio-details-button-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    gap: 13px;
    background: #f4f4f4;
    border-radius: 10px;
    flex: 0 0 47px;
    height: 47px;
  }

  .our-portfolio-details-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .our-portfolio-arrow-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 29px;
    height: 29px;
    background: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .our-portfolio-arrow-icon {
    width: 16px;
    height: 16px;
  }

  .our-portfolio-details-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    font-variant: small-caps;
    color: #393939;
    white-space: nowrap;
  }

  .our-portfolio-tags-container {
    flex: 1;
    width: auto;
    padding: 30px 10px;
  }

  .our-portfolio-tag-text {
    font-size: 14px;
  }

  .our-portfolio-grid {
    gap: 20px;
  }

  .our-portfolio-load-more-container {
    margin-top: 20px;
  }
}

@media (min-width: 969px) and (max-width: 1270px) {
  .our-portfolio-card {
    flex: 1 1 calc(50% - 5px);
    min-width: 300px;
  }
}

@media (min-width: 1270px) {
  .our-portfolio-card {
    flex: 1 1 calc(33.333% - 7px);
    min-width: 300px;
  }
}

@media (max-width: 736px) {
  .our-portfolio-card-title-container,
  .our-portfolio-details-button-container {
    height: 60px;
  }

  .our-portfolio-left-column {
    width: 130px;
  }
}

@media (max-width: 480px) {
  .our-portfolio-card-title-container,
  .our-portfolio-details-button-container {
    height: 45px;
  }

  .our-portfolio-tags-container {
    padding: 10px 8px;
  }

  .our-portfolio-tag {
    padding: 3px 6px;
  }

  .our-portfolio-tag-text {
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .our-portfolio-card-title-container,
  .our-portfolio-details-button-container {
    height: 60px;
  }

  .our-portfolio-tag-text {
    white-space: wrap;
  }

  .our-portfolio-card-title-container {
    flex: none;
  }
}

/* telegram platform section */
.telegram-platform-heading-h1 {
  max-width: 800px;
  margin-bottom: 40px;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 100%;
  color: #393939;
}

.telegram-platform-card {
  position: relative;
  width: 100%;
  height: 435px;
  background: #f4f4f4;
  border-radius: 33px;
  overflow: hidden;
}

.telegram-platform-card-image {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 46.04%;
}

.telegram-platform-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 33px 0 0 33px;
  display: block;
}

.telegram-platform-section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 40px;
  position: absolute;
  height: auto;
  left: 38.27%;
  right: 3.05%;
  top: 80px;
}

.telegram-platform-heading-h2 {
  width: 100%;
  max-width: 665px;
  height: auto;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 100%;
  color: #393939;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.telegram-platform-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  width: 154px;
  height: 36px;
  background: #0c47a0;
  border-radius: 9px;
  flex: none;
  order: 1;
  flex-grow: 0;
  gap: 4px;
  cursor: pointer;
  border: none;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.telegram-platform-btn:hover {
  background: #223aa6;
}

.telegram-platform-btn:focus {
  background: #0c47a0;
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.telegram-platform-btn:focus:hover {
  background: #223aa6;
}

.telegram-platform-btn:active {
  background: #7a8ad1;
}

.telegram-platform-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.4s,
    height 0.4s,
    opacity 0.4s;
  opacity: 0;
}

.telegram-platform-btn:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.telegram-platform-btn-text {
  width: 110px;
  height: 21px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.telegram-platform-btn-arrow {
  width: 24px;
  height: 24px;
  flex: none;
  order: 2;
  flex-grow: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.telegram-platform-btn-arrow svg {
  width: 21px;
  height: 21px;
  stroke: #fff;
  fill: none;
}

.telegram-platform-paragraph {
  width: 100%;
  max-width: 548px;
  height: auto;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  color: #393939;
  flex: none;
  order: 2;
  flex-grow: 0;
}

@media (min-width: 1616px) {
  .telegram-platform-btn-text {
    font-size: 16px;
  }

  .telegram-platform-btn {
    width: 178px;
    height: 40px;
    gap: 18px;
  }

  .telegram-platform-heading-h2 {
    font-size: 36px;
    max-width: 500px;
  }

  .telegram-platform-paragraph {
    max-width: 800px;
  }
}

@media (max-width: 1616px) {
  .telegram-platform-heading-h1 {
    max-width: 800px;
  }

  .telegram-platform-heading-h2 {
    font-size: 29px;
    max-width: 400px;
  }

  .telegram-platform-paragraph {
    font-size: 17px;
  }

  .telegram-platform-card {
    height: 350px;
  }

  .telegram-platform-section-heading {
    top: 60px;
  }
}

@media (max-width: 968px) {
  .telegram-platform-section {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
  }

  .telegram-platform-heading-h1 {
    width: auto;
    margin-bottom: 16px;
  }

  .telegram-platform-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    margin-top: 0px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .telegram-platform-card-image {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: 420px;
  }

  .telegram-platform-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 40px 40px 0 0;
    display: block;
  }

  .telegram-platform-section-heading {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    height: auto;
    width: 100%;
    padding: 20px 20px 28px 17px;
    gap: 25px;
    background: #f4f4f4;
    border-radius: 0 0 40px 40px;
  }

  .telegram-platform-heading-h2 {
    max-width: 100%;
    height: auto;
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
    color: #393939;
  }

  .telegram-platform-paragraph {
    width: 100%;
    height: auto;
    font-size: 20px;
    line-height: 100%;
  }

  .telegram-platform-card-image img {
    position: relative;
    left: -20px;
  }
}

@media (max-width: 630px) {
  .telegram-platform-heading-h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    line-height: 100%;
    font-variant: small-caps;
    max-width: 400px;
    letter-spacing: 1.05px;
    -webkit-text-stroke: 0.6px #393939;
  }

  .telegram-platform-heading-h1::first-letter {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    -webkit-text-stroke: 0.7px #393939;
  }

  .telegram-platform-paragraph {
    font-size: 18px;
  }
}

@media (max-width: 440px) {
  .mobile-conversion-text {
    font-size: 11px !important;
  }

  .mobile-stat-label {
    font-size: 14px !important;
  }

  .mobile-badge-label {
    font-size: 12px !important;
  }
}

/* grosville page */
.grosville-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 28px;
  height: 56px;
}

.grosville-logo {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  font-family: 'Segoe UI', sans-serif;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.grosville-icon-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #1450b5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.grosville-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 600px;
  overflow: hidden;
}

.grosville-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

.grosville-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 13px 28px;
  background: #484848;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.grosville-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 56px;
  right: 56px;
  height: 1px;
  background: white;
}

.grosville-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.grosville-bar-num {
  font-size: 12px;
  font-weight: 500;
  color: #81807e;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.grosville-bar-title {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.grosville-bar-right {
  font-size: 12px;
  font-weight: 400;
  color: #81807e;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.grosville-preview {
  background: #484848;
  padding: 28px 28px 48px;
  display: flex;
  justify-content: center;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.grosville-preview img {
  width: 100%;
  max-width: 1200px;
}

@media (min-width: 1616px) {
  .grosville-logo {
    font-size: 50px;
  }

  .grosville-header {
    margin-top: 70px;
  }

  .grosville-hero {
    margin-top: 50px;
    height: 940px;
  }

  .grosville-bar-title,
  .grosville-bar-right {
    font-size: 30px;
  }

  .grosville-bar {
    padding: 50px 60px 20px 60px;
    line-height: normal;
  }
}

@media (max-width: 1616px) {
  .grosville-logo {
    font-size: 2.4rem;
  }
}

@media (max-width: 968px) {
  .grosville-logo {
    font-size: 2.5rem;
  }

  .grosville-hero {
    height: 400px;
  }
}

/* mobile development section */
.mobile-dev-section {
  width: 100%;
  overflow: hidden;
}

.mobile-dev-top-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 90px;
  margin-bottom: 60px;
}

.mobile-dev-heading {
  flex-shrink: 0;
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 100%;
  color: #393939;
}

.mobile-dev-heading span {
  color: #0c47a0;
}

.mobile-dev-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.mobile-dev-paragraphs p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #393939;
}

.mobile-dev-phones-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.mobile-dev-phones-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 50px 40px;
  width: 299px;
  flex-shrink: 0;
}

.mobile-dev-phone-center-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.mobile-dev-phone-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 112px;
}

.mobile-dev-phone-item img {
  width: 112px;
  height: 243px;
  object-fit: contain;
  display: block;
}

.mobile-dev-phone-center-wrap img {
  width: 100%;
  max-width: 231px;
  height: auto;
  aspect-ratio: 231 / 502;
  object-fit: contain;
  display: block;
}

.mobile-dev-phone-label {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  color: #939393;
  width: 100%;
}

@media (min-width: 1616px) {
  .mobile-dev-top-row {
    gap: 220px;
  }

  .mobile-dev-section {
    margin-top: 20px;
  }

  .mobile-dev-phones-grid {
    padding: 0 80px;
  }

  .mobile-dev-phone-center-wrap {
    margin-bottom: 40px;
  }
}

@media (max-width: 1616px) {
  .mobile-dev-top-row {
    gap: 320px;
  }

  .mobile-dev-heading {
    max-width: 300px;
  }

  .mobile-dev-section {
    margin-top: 20px;
  }

  .mobile-dev-phone-center-wrap {
    margin-bottom: 30px;
  }

  .mobile-dev-phones-grid {
    padding: 0 40px;
  }

  .mobile-dev-paragraphs p {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  .mobile-dev-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .mobile-dev-heading {
    font-size: 2.4rem;
    flex-wrap: wrap;
    word-break: break-word;
    flex-shrink: unset;
    max-width: 400px;
  }

  .mobile-dev-phones-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .mobile-dev-phones-group {
    width: 100%;
    justify-content: center;
    gap: 24px 80px;
  }

  .mobile-dev-phone-item {
    width: calc(25% - 16px);
    min-width: 60px;
    max-width: 112px;
  }

  .mobile-dev-phone-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 112 / 243;
  }

  .mobile-dev-phone-label {
    font-size: 12px;
  }

  .mobile-dev-phone-center-wrap img {
    max-width: 180px;
  }

  .mobile-dev-top-row {
    margin-bottom: 30px;
  }

  .mobile-dev-phones-grid {
    padding: 0;
  }
}

@media (max-width: 580px) {
  .mobile-dev-phone-center-wrap img {
    aspect-ratio: 230 / 380;
  }
}

@media (max-width: 480px) {
  .mobile-dev-paragraphs p {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .mobile-dev-phones-group {
    width: 100%;
    justify-content: center;
    gap: 24px 72px;
  }

  .mobile-dev-phone-center-wrap img {
    aspect-ratio: 230 / 330;
  }
}

/* technologies section */
.tech-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.tech-group + .tech-group {
  margin-top: 40px;
}

.platform-title {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.16em;
  color: #393939;
}

.tech-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 42px;
  width: 1109px;
}

.tech-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 277px;
}

.tech-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 5px;
  width: 277px;
  height: 18px;
}

.tech-num {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #939393;
  flex: none;
  min-width: 18px;
}

.tech-name {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #393939;
  flex: none;
}

@media (min-width: 1616px) {
  .tech-grid {
    gap: 150px;
  }

  .platform-title {
    font-size: 22px;
    letter-spacing: 0.12em;
  }

  .tech-name {
    font-size: 19px;
  }
}

@media (max-width: 1616px) {
  .tech-grid {
    gap: 44px;
  }

  .platform-title {
    font-size: 21px;
    letter-spacing: 0.12em;
  }

  .tech-name {
    font-size: 17px;
  }
}

@media (max-width: 1340px) {
  .tech-grid {
    gap: 0;
    width: 1000px;
  }

  .tech-column {
    width: 250px;
  }

  .platform-title {
    font-size: 21px;
    letter-spacing: 0.12em;
  }

  .tech-name {
    font-size: 17px;
  }
}

@media (max-width: 1140px) {
  .technologies-section {
    width: 100%;
  }

  .tech-group,
  .tech-grid,
  .platform-title {
    width: 100%;
  }

  .tech-grid {
    flex-wrap: wrap;
    gap: 32px 42px;
  }

  .tech-column {
    width: calc(50% - 21px);
    min-width: 200px;
  }

  .tech-item {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 968px) {
  .section-title {
    font-size: 48px;
    margin-bottom: 60px;
  }

  .tech-grid {
    gap: 24px 32px;
  }

  .tech-column {
    width: calc(50% - 16px);
  }
}

@media (max-width: 560px) {
  .section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .tech-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 20px;
  }

  .tech-column {
    width: calc(50% - 10px);
    min-width: 0;
  }

  .tech-item {
    height: auto;
    width: 100%;
  }

  .tech-name {
    font-size: 15px;
    white-space: normal;
    flex: 1;
  }

  .tech-num {
    font-size: 13px;
    min-width: 16px;
  }

  .tech-group {
    gap: 24px;
  }

  .tech-group + .tech-group {
    margin-top: 24px;
  }

  .platform-title {
    font-size: 20px;
  }
}

@media (max-width: 360px) {
  .tech-name {
    font-size: 13px;
  }
}

/* stack section */
.stack-hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 268px;
  width: 100%;
  height: 148px;
  margin-bottom: 40px;
}

.stack-hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 408px;
  flex: none;
}

.stack-hero-desc {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #393939;
}

.stack-all-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.stack-cards-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  width: 100%;
}

.stack-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  gap: 25px;
  flex: 1;
  min-height: 327px;
  overflow: hidden;
  background: #f4f4f4;
  border-radius: 30px;
}

.stack-card-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 12px;
  width: 100%;
  height: 61px;
  flex: none;
  align-self: stretch;
}

.stack-card-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 101%;
  color: #393939;
  flex: 1;
}

.stack-hero-heading {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 100%;
  color: #393939;
}

.stack-card-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 18px;
  width: 100%;
  flex: none;
  align-self: stretch;
}

.stack-card-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 5px;
  width: 100%;
  flex: none;
  align-self: stretch;
}

.stack-card-item-num {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #939393;
  flex: none;
  min-width: 18px;
}

.stack-card-item-text {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #939393;
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.stack-card-item-text strong {
  font-weight: 600;
  color: #393939;
}

@media (min-width: 1616px) {
  .stack-card-title {
    font-size: 23px;
  }

  .stack-card-item-num {
    margin-top: 2px;
    font-size: 17px;
  }
}

@media (max-width: 1616px) {
  .stack-card-title {
    font-size: 19px;
  }

  .stack-hero-desc {
    font-size: 17px;
  }

  .stack-card-item-text {
    font-size: 16px;
  }
}

@media (max-width: 1340px) {
  .stack-section {
    width: 100%;
  }
  .stack-hero {
    gap: 40px;
    height: auto;
  }
  .stack-hero-text {
    width: 340px;
  }
}

@media (max-width: 968px) {
  .stack-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
  }
  .stack-hero-text {
    width: 100%;
  }
  .stack-cards-row {
    flex-direction: column;
  }
  .stack-card {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .stack-hero-desc,
  .stack-card-title,
  .stack-card-item-text {
    font-size: 15px;
  }
  .stack-card {
    padding: 20px;
    border-radius: 20px;
  }
  .stack-hero-heading {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    min-width: 0;
    width: 100%;
  }
}

/* overload section */
.overload-section {
  width: 100%;
}

.overload-card {
  position: relative;
  width: 100%;
  height: 546px;
  background: linear-gradient(270deg, #0184fd 0%, #505050 100%);
  border-radius: 33px;
  display: flex;
  align-items: center;
}

.overload-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding-left: 65px;
  width: 55%;
  position: relative;
  z-index: 2;
}

.overload-title {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 113%;
  color: #ffffff;
}

.overload-description {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  color: #ffffff;
  max-width: 548px;
}

.overload-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.overload-list-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 5px;
}

.overload-list-number {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #939393;
  min-width: 18px;
}

.overload-list-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: #ffffff;
}

.overload-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.overload-btn-primary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  gap: 6px;
  height: 47px;
  background: linear-gradient(90deg, #005bc6 0%, #7ed6ff 100%);
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.overload-btn-primary:hover {
  opacity: 0.85;
}

.overload-btn-outline {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  gap: 6px;
  height: 47px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.overload-btn-outline:hover {
  opacity: 0.85;
}

.overload-image {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: 50%;
  object-fit: contain;
  object-position: right bottom;
  z-index: 1;
}

@media (min-width: 1616px) {
  .overload-description {
    font-size: 21px;
  }

  .overload-list-text {
    font-size: 19px;
  }

  .overload-image {
    right: 160px;
    height: 112%;
  }
}

@media (max-width: 1616px) {
  .overload-description {
    font-size: 19px;
  }

  .overload-list-text {
    font-size: 15px;
  }

  .overload-list-number {
    font-size: 14px;
  }

  .overload-btn-primary,
  .overload-btn-outline {
    font-size: 16px;
    padding: 4px 20px;
  }

  .overload-card {
    height: 440px;
  }

  .overload-content {
    gap: 30px;
  }

  .overload-image {
    right: 40px;
    height: 112%;
  }
}

@media (max-width: 968px) {
  .overload-card {
    height: 430px;
    border-radius: 33px;
    justify-content: flex-start;
    align-items: center;
  }

  .overload-content {
    padding-left: 20px;
    gap: 23px;
    z-index: 2;
  }

  .overload-title {
    line-height: 113%;
  }

  .overload-description {
    font-size: 16px;
  }

  .overload-list {
    gap: 18px;
  }

  .overload-list-item {
    width: 277px;
  }

  .overload-list-text {
    font-size: 14px;
  }

  .overload-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 160px;
  }

  .overload-btn-primary {
    width: 160px;
    height: 36px;
    font-size: 12px;
    padding: 10px 16px;
    justify-content: center;
  }

  .overload-btn-outline {
    width: 160px;
    height: 36px;
    font-size: 12px;
    padding: 10px 24px;
    justify-content: center;
  }

  .overload-image {
    position: absolute;
    max-width: 130px;
    max-height: 206px;
    right: 20px;
    bottom: 0;
    max-width: none;
    object-fit: cover;
  }
}

@media (max-width: 740px) {
  .overload-card {
    height: 521px;
    border-radius: 33px;
    justify-content: flex-start;
    align-items: center;
  }

  .overload-content {
    width: 303px;
    padding-left: 20px;
    gap: 23px;
    z-index: 2;
  }

  .overload-title {
    font-size: 40px;
    line-height: 113%;
    max-width: 184px;
  }

  .overload-description {
    font-size: 16px;
    max-width: 303px;
  }

  .overload-image {
    position: absolute;
    width: 116px;
    height: 156px;
    right: 20px;
    bottom: 0;
    max-width: none;
    object-fit: cover;
  }
}

/* zoom modal */
#imageModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#imageModal.active {
  display: flex;
}

.modal-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.72) 0%,
    transparent 100%
  );
  z-index: 1010;
  box-sizing: border-box;
}

.modal-toolbar-left {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.modal-zoom-btns {
  display: flex;
  gap: 8px;
}

.modal-zoom-btns button {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
  backdrop-filter: blur(4px);
}

.modal-zoom-btns button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-info {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  pointer-events: none;
}

#modalCounter {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1;
}

#modalCaseTitle {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

#closeModal {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s;
  backdrop-filter: blur(4px);
  flex-shrink: 0;
}

#closeModal:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1010;
  transition:
    background 0.2s,
    transform 0.2s;
  backdrop-filter: blur(4px);
}

.modal-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

#modalPrev {
  left: 20px;
}

#modalNext {
  right: 20px;
}

#modalStage {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#modalImage {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  user-select: none;
  transition: transform 0.1s;
}

@media (max-width: 460px) {
  .modal-info {
    left: 54%;
    text-align: center;
  }
}

/* case showcase section */
.seo-case-studies-showcase {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.seo-case-studies-showcase .container {
  position: relative;
  z-index: 10;
}

.seo-case-logo {
  position: absolute;
  width: 78px;
  height: 78px;
  left: 72px;
  top: 164px;
  opacity: 0.57;
  z-index: 10;
}

.seo-case-background-wrapper {
  position: absolute;
  width: 100%;
  height: 761px;
  left: 0;
  top: 0;
  z-index: 0;
}

.seo-case-background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

.seo-case-background-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 31.6%,
    #ffffff 100%
  );
}

.seo-case-showcase-header {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 174px 0 0 0;
  gap: 545px;
  margin-bottom: 44px;
  z-index: 10;
}

.seo-case-header-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 455px;
}

.seo-case-showcase-title {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
  font-size: 54px;
  line-height: 100%;
  color: #ffffff;
}

.seo-case-showcase-subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #ffffff;
}

.seo-case-header-actions {
  display: flex;
  flex-direction: row;
  gap: 9px;
  align-items: flex-start;
  width: 310px;
}

.seo-case-btn-primary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  gap: 5px;
  width: 173px;
  height: 34px;
  background: linear-gradient(90deg, #005bc6 0%, #7ed6ff 100%);
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.seo-case-btn-primary:hover {
  opacity: 0.9;
}

.seo-case-btn-primary span {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #ffffff;
}

.seo-case-btn-primary svg {
  flex-shrink: 0;
}

.seo-case-btn-secondary {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  width: 142px;
  height: 33px;
  background: #ffffff;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
  overflow: hidden;
  box-sizing: border-box;
}

.seo-case-btn-secondary span {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #393939;
}

.seo-case-btn-secondary:hover {
  background: #223aa6;
}

.seo-case-btn-secondary:focus {
  background: #0c47a0;
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.seo-case-btn-secondary:focus:hover {
  background: #223aa6;
}

.seo-case-btn-secondary:active {
  background: #7a8ad1;
}

.seo-case-btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition:
    width 0.4s,
    height 0.4s,
    opacity 0.4s;
  opacity: 0;
}

.seo-case-btn-secondary:active::before {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0s;
}

.seo-case-card-layers {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1100px;
  height: auto;
  margin: 0 auto;
  z-index: 10;
  box-sizing: border-box;
}

.seo-case-layer {
  height: 1198px;
  border-radius: 0;
  flex: none;
  flex-grow: 0;
}

.seo-case-layer-1 {
  width: 1055px;
  background: rgba(255, 255, 255, 0.2);
  order: 0;
  margin: 0 0 -1191px 0;
}

.seo-case-layer-2 {
  width: 1075px;
  background: rgba(255, 255, 255, 0.4);
  order: 1;
  margin: 0 0 -1191px 0;
}

.seo-case-layer-3 {
  width: 1095px;
  background: rgba(255, 255, 255, 0.6);
  order: 2;
  margin: 0 0 -1191px 0;
}

.seo-case-layer-4 {
  width: 1115px;
  background: rgba(255, 255, 255, 0.8);
  order: 3;
  margin: 0 0 -1191px 0;
}

.seo-case-main-card {
  width: 1135px;
  background: #ffffff;
  order: 4;
  flex: none;
  flex-grow: 0;
  border-radius: 0;
  padding: 50px 66px;
  position: relative;
  box-sizing: border-box;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
  opacity: 1;
}

.seo-case-card-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}

.seo-case-title-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 250px;
}

.seo-case-case-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  color: #0c47a0;
}

.seo-case-case-date {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  color: #393939;
}

.seo-case-months-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.seo-case-month-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  width: 74px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.seo-case-month-item:hover {
  opacity: 0.85;
}

.seo-case-month-number {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  color: #393939;
}

.seo-case-month-label {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: #393939;
}

.seo-case-month-item--active .seo-case-month-number,
.seo-case-month-item--active .seo-case-month-label {
  color: #0c47a0;
}

.seo-case-navigation-controls {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 36px;
}

.seo-case-nav-arrow {
  width: 23px;
  height: 51px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition:
    opacity 0.3s ease,
    transform 0.2s ease;
}

.seo-case-prev-arrow svg path {
  fill: #939393;
  transition: fill 0.3s ease;
}

.seo-case-next-arrow svg path {
  fill: #939393;
  transition: fill 0.3s ease;
}

.seo-case-prev-arrow:hover svg path {
  fill: #0c47a0;
}

.seo-case-next-arrow:hover svg path {
  fill: #1e5ad5;
}

.seo-case-nav-arrow.active svg path {
  fill: #0c47a0;
  transition: fill 0s;
}

.seo-case-portfolio-image {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 524px;
  margin: 0 auto;
  border: 4px solid #0c47a0;
  border-radius: 9px;
  overflow: hidden;
  cursor: zoom-in;
}

.seo-case-portfolio-image img,
.seo-case-portfolio-image .case-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.seo-case-mobile-header {
  display: none;
}

.seo-case-desktop-header {
  display: flex;
}

.seo-case-controls-wrapper {
  display: none;
}

.seo-case-portfolio-image .case-slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  object-fit: cover;
}

.seo-case-portfolio-image .case-slide-img.active {
  display: block;
}

.seo-case-portfolio-image .case-slide-img.slide-out-left {
  animation: caseSlideOutLeft 0.3s ease forwards;
}

.seo-case-portfolio-image .case-slide-img.slide-out-right {
  animation: caseSlideOutRight 0.3s ease forwards;
}

.seo-case-portfolio-image .case-slide-img.slide-in-right {
  animation: caseSlideInRight 0.3s ease forwards;
}

.seo-case-portfolio-image .case-slide-img.slide-in-left {
  animation: caseSlideInLeft 0.3s ease forwards;
}

@keyframes caseSlideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-30%);
  }
}

@keyframes caseSlideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(30%);
  }
}

@keyframes caseSlideInRight {
  from {
    opacity: 0;
    transform: translateX(30%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes caseSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes numSlideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-60%);
  }
}

@keyframes numSlideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(60%);
  }
}

@keyframes numSlideInRight {
  from {
    opacity: 0;
    transform: translateX(60%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes numSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.seo-case-mobile-number span.slide-out-left {
  animation: numSlideOutLeft 0.25s ease forwards;
}

.seo-case-mobile-number span.slide-out-right {
  animation: numSlideOutRight 0.25s ease forwards;
}

.seo-case-mobile-number span.slide-in-right {
  animation: numSlideInRight 0.25s ease forwards;
}

.seo-case-mobile-number span.slide-in-left {
  animation: numSlideInLeft 0.25s ease forwards;
}

@media (min-width: 1028px) {
  .seo-case-background-image {
    border-radius: 33px 33px 0 0;
  }
}

@media (min-width: 1616px) {
  .seo-case-showcase-header {
    max-width: 1520px;
    margin: 0 auto 60px auto;
    padding: 100px 0 0 0;
  }

  .seo-case-showcase-title,
  .stack-hero-heading {
    font-size: 50px;
  }

  .seo-case-layer-1 {
    width: 1355px;
  }

  .seo-case-layer-2 {
    width: 1375px;
  }

  .seo-case-layer-3 {
    width: 1395px;
  }

  .seo-case-layer-4 {
    width: 1415px;
  }

  .seo-case-main-card {
    width: 1435px;
  }

  .seo-case-portfolio-image {
    max-width: 1320px;
    height: 500px;
  }

  .seo-case-studies-showcase .container {
    max-width: 1534px;
    margin: 0 auto;
  }

  .seo-case-case-title {
    height: 36px;
  }

  .seo-case-logo {
    top: 174px;
    left: 76px;
  }

  .zoom-button {
    width: 62px;
    height: 62px;
  }

  .zoom-icon {
    width: 34px;
    height: 34px;
  }

  .seo-case-case-date {
    font-size: 16px;
  }

  .seo-case-showcase-subtitle {
    font-size: 17px;
  }
}

@media (max-width: 1616px) and (min-width: 1280px) {
  .seo-case-showcase-header {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 100px 0 0 0;
  }
}

@media (max-width: 1616px) {
  .seo-case-portfolio-image {
    height: 400px;
  }

  .seo-case-showcase-title,
  .overload-title {
    font-size: 2.4rem;
  }

  .seo-case-studies-showcase .container {
    max-width: 1206px;
    margin: 0 auto;
  }

  .seo-case-case-title {
    height: 42px;
    font-size: 20px;
  }

  .seo-case-month-number {
    font-size: 24px;
  }

  .seo-case-month-label {
    font-size: 18px;
  }

  .seo-case-logo {
    left: 74px;
    top: 174px;
    width: 66px;
    height: 66px;
  }
}

@media (max-width: 1280px) {
  .seo-case-showcase-title {
    font-size: 48px;
  }

  .seo-case-card-header {
    gap: 70px;
    margin-bottom: 30px;
  }

  .seo-case-showcase-header {
    gap: 150px;
    padding: 90px 0 0 0;
  }

  .seo-case-months-list {
    gap: 8px;
  }

  .seo-case-month-number {
    font-size: 32px;
  }

  .seo-case-month-label {
    font-size: 16px;
  }

  .seo-case-month-item {
    width: 60px;
  }

  .seo-case-layer-1 {
    width: 76%;
  }

  .seo-case-layer-2 {
    width: 77%;
  }

  .seo-case-layer-3 {
    width: 78%;
  }

  .seo-case-layer-4 {
    width: 79%;
  }

  .seo-case-main-card {
    width: 80%;
  }

  .seo-case-portfolio-image {
    width: 100%;
    height: 360px;
  }

  .seo-case-case-title {
    overflow: hidden;
  }

  .seo-case-logo {
    left: 72px;
    top: 170px;
    width: 66px;
    height: 66px;
  }
}

@media (max-width: 1024px) {
  .seo-case-showcase-header {
    padding-top: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .seo-case-case-title {
    height: 20px;
  }

  .seo-case-header-content {
    width: 100%;
  }

  .seo-case-header-actions {
    width: auto;
  }

  .seo-case-card-header {
    flex-wrap: wrap;
    height: auto;
    gap: 20px;
    padding: 20px;
  }

  .seo-case-title-block {
    width: 100%;
  }

  .seo-case-months-list {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .seo-case-navigation-controls {
    width: 100%;
    justify-content: flex-end;
  }

  .seo-case-showcase-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 1028px) {
  .seo-case-background-wrapper {
    display: none;
  }

  .seo-case-showcase-title,
  .seo-case-showcase-subtitle {
    color: #393939;
  }

  .seo-case-showcase-header {
    padding-top: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 34px;
  }

  .seo-case-showcase-header .seo-case-header-actions {
    display: none;
  }

  .seo-case-layer {
    display: none;
  }

  .seo-case-card-layers {
    width: 100%;
    align-items: stretch;
    overflow: visible;
  }

  .seo-case-main-card {
    width: 100%;
    overflow: visible;
  }

  .seo-case-desktop-header {
    display: none;
  }

  .seo-case-mobile-header {
    display: flex;
    padding: 16px 16px 16px 16px;
    margin-bottom: 0;
  }

  .seo-case-mobile-header .seo-case-title-block {
    width: 100%;
  }

  .seo-case-portfolio-image {
    width: 100%;
    max-width: 100%;
    height: 280px;
    border-top: 4px solid #0c47a0;
    border-bottom: 4px solid #0c47a0;
    border-radius: 9px;
  }

  .seo-case-title-block {
    margin-bottom: 16px;
  }

  .seo-case-portfolio-image img,
  .seo-case-portfolio-image .case-slide-img {
    object-position: center center;
    background-color: #ffffff;
  }

  .seo-case-controls-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    width: 100%;
    gap: 12px;
  }

  .seo-case-mobile-portfolio-btn {
    display: flex;
    width: 160px;
    height: 36px;
    flex-shrink: 0;
  }

  .seo-case-mobile-number-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .seo-case-mobile-number {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
    color: #939393;
    min-width: 48px;
    height: 48px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
  }

  .seo-case-mobile-number span {
    display: block;
  }

  .seo-case-navigation-controls {
    gap: 20px;
  }

  .seo-case-nav-arrow {
    width: 14px;
    height: 31px;
  }

  .seo-case-logo {
    left: 6px;
    top: 71px;
  }

  .seo-case-showcase-subtitle {
    font-size: 15px;
  }

  .seo-case-btn-secondary {
    padding: 6px 10px;
    width: 172px;
    height: 33px;
    background: var(--color-primary);
    border-radius: 9px;
  }

  .seo-case-btn-secondary span {
    color: var(--color-white);
  }
}

@media (max-width: 520px) {
  .seo-case-month-number {
    font-size: 22px;
  }

  .seo-case-month-label {
    font-size: 16px;
  }

  .seo-case-month-item {
    width: 42px;
  }

  .seo-case-months-list {
    gap: 8px;
  }

  .seo-case-btn-primary {
    width: 158px;
  }
}

@media (max-width: 420px) {
  .seo-case-logo {
    left: 3px;
    top: 69px;
  }
}

@media (max-width: 380px) {
  .seo-case-header-actions {
    flex-direction: column;
  }
}

.seo-case-portfolio-image:hover img {
  transform: scale(1.05);
}
